In [ ]:
# Author: Pamela Tan
# Date: 2022/09/01

Using SQL with Python dataframes and Pandas via pandasql
¶

image.png

Using Pandasql

Pandas is a fast, powerful, flexible and easy to use open source data analysis and manipulation tool, built on the top of Python Programming language. That’s why Pandas is a widely-used data analysis and manipulation library for Python.

Use Cases¶

  • Don't want to use SQL database tables but want to use SQL
  • Data fits in memory
  • Volume of data not a performance issue
  • Don't need a fully functional SQL Server database
In [85]:
import pandas as pd
from pandasql import sqldf
from pandasql import load_births

births = load_births()

print(sqldf("SELECT * FROM births where births > 250000 limit 5;", locals()))
                         date  births
0  1975-01-01 00:00:00.000000  265775
1  1975-03-01 00:00:00.000000  268849
2  1975-05-01 00:00:00.000000  254545
3  1975-06-01 00:00:00.000000  254096
4  1975-07-01 00:00:00.000000  275163
In [92]:
# a query to use multiple lines
q = """
      select
        date(date) as DOB,
        sum(births) as "Total Births"
      from
        births
      group by
        date
        limit 10;  
"""
print(sqldf(q, locals()))
          DOB  Total Births
0  1975-01-01        265775
1  1975-02-01        241045
2  1975-03-01        268849
3  1975-04-01        247455
4  1975-05-01        254545
5  1975-06-01        254096
6  1975-07-01        275163
7  1975-08-01        281300
8  1975-09-01        270738
9  1975-10-01        265494
In [90]:
# this is the script to call global variable 
def pysqldf(q):
    
    return sqldf(q, globals())
In [89]:
print(sqldf(q, globals()))
          DOB  Total Births
0  1975-01-01        265775
1  1975-02-01        241045
2  1975-03-01        268849
3  1975-04-01        247455
4  1975-05-01        254545
5  1975-06-01        254096
6  1975-07-01        275163
7  1975-08-01        281300
8  1975-09-01        270738
9  1975-10-01        265494
In [31]:
#Steps to read a CSV file:

#1. Import the csv library

import csv
In [32]:
#2. Open the CSV file
#The .open() method in python is used to open files and return a file object
#The type of file is “_io.TextIOWrapper” which is a file object that is returned by the open() method.

file = open('DimCustomer.csv')

type(file)
Out[32]:
_io.TextIOWrapper
In [34]:
#3. Use the csv.reader object to read the CSV file

csvreader = csv.reader(file)
In [35]:
#4. Extract the field names
#Create an empty list called header. Use the next() method to obtain the header.

#The .next() method returns the current row and moves to the next row.

#The first time you run next() it returns the header and the next time you run it returns the first record and so on.

header = []
header = next(csvreader)
header
Out[35]:
['CustomerKey',
 'GeographyKey',
 'CustomerAlternateKey',
 'Title',
 'FirstName',
 'MiddleName',
 'LastName',
 'NameStyle',
 'BirthDate',
 'MaritalStatus',
 'Suffix',
 'Gender',
 'EmailAddress',
 'YearlyIncome',
 'TotalChildren',
 'NumberChildrenAtHome',
 'EnglishEducation',
 'SpanishEducation',
 'FrenchEducation',
 'EnglishOccupation',
 'SpanishOccupation',
 'FrenchOccupation',
 'HouseOwnerFlag',
 'NumberCarsOwned',
 'AddressLine1',
 'AddressLine2',
 'Phone',
 'DateFirstPurchase',
 'CommuteDistance']
In [113]:
#5. Extract the rows/records
#Create an empty list called rows and iterate through the csvreader object and append each row to the rows list.

rows = []
for row in csvreader:
        rows.append(row)
rows
Out[113]:
[['11000',
  '26',
  'AW00011000',
  'NULL',
  'Jon',
  'V',
  'Yang',
  '0',
  '1971-10-06',
  'M',
  'NULL',
  'M',
  'jon24@adventure-works.com',
  '90000.00',
  '2',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '3761 N. 14th St',
  'NULL',
  '1 (11) 500 555-0162',
  '2011-01-19',
  '1-2 Miles'],
 ['11001',
  '37',
  'AW00011001',
  'NULL',
  'Eugene',
  'L',
  'Huang',
  '0',
  '1976-05-10',
  'S',
  'NULL',
  'M',
  'eugene10@adventure-works.com',
  '60000.00',
  '3',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '2243 W St.',
  'NULL',
  '1 (11) 500 555-0110',
  '2011-01-15',
  '0-1 Miles'],
 ['11002',
  '31',
  'AW00011002',
  'NULL',
  'Ruben',
  'NULL',
  'Torres',
  '0',
  '1971-02-09',
  'M',
  'NULL',
  'M',
  'ruben35@adventure-works.com',
  '60000.00',
  '3',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '5844 Linden Land',
  'NULL',
  '1 (11) 500 555-0184',
  '2011-01-07',
  '2-5 Miles'],
 ['11003',
  '11',
  'AW00011003',
  'NULL',
  'Christy',
  'NULL',
  'Zhu',
  '0',
  '1973-08-14',
  'S',
  'NULL',
  'F',
  'christy12@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '1825 Village Pl.',
  'NULL',
  '1 (11) 500 555-0162',
  '2010-12-29',
  '5-10 Miles'],
 ['11004',
  '19',
  'AW00011004',
  'NULL',
  'Elizabeth',
  'NULL',
  'Johnson',
  '0',
  '1979-08-05',
  'S',
  'NULL',
  'F',
  'elizabeth5@adventure-works.com',
  '80000.00',
  '5',
  '5',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '4',
  '7553 Harness Circle',
  'NULL',
  '1 (11) 500 555-0131',
  '2011-01-23',
  '1-2 Miles'],
 ['11005',
  '22',
  'AW00011005',
  'NULL',
  'Julio',
  'NULL',
  'Ruiz',
  '0',
  '1976-08-01',
  'S',
  'NULL',
  'M',
  'julio1@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '7305 Humphrey Drive',
  'NULL',
  '1 (11) 500 555-0151',
  '2010-12-30',
  '5-10 Miles'],
 ['11006',
  '8',
  'AW00011006',
  'NULL',
  'Janet',
  'G',
  'Alvarez',
  '0',
  '1976-12-02',
  'S',
  'NULL',
  'F',
  'janet9@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '2612 Berry Dr',
  'NULL',
  '1 (11) 500 555-0184',
  '2011-01-24',
  '5-10 Miles'],
 ['11007',
  '40',
  'AW00011007',
  'NULL',
  'Marco',
  'NULL',
  'Mehta',
  '0',
  '1969-11-06',
  'M',
  'NULL',
  'M',
  'marco14@adventure-works.com',
  '60000.00',
  '3',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '942 Brook Street',
  'NULL',
  '1 (11) 500 555-0126',
  '2011-01-09',
  '0-1 Miles'],
 ['11008',
  '32',
  'AW00011008',
  'NULL',
  'Rob',
  'NULL',
  'Verhoff',
  '0',
  '1975-07-04',
  'S',
  'NULL',
  'F',
  'rob4@adventure-works.com',
  '60000.00',
  '4',
  '4',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '3',
  '624 Peabody Road',
  'NULL',
  '1 (11) 500 555-0164',
  '2011-01-25',
  '10+ Miles'],
 ['11009',
  '25',
  'AW00011009',
  'NULL',
  'Shannon',
  'C',
  'Carlson',
  '0',
  '1969-09-29',
  'S',
  'NULL',
  'M',
  'shannon38@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '3839 Northgate Road',
  'NULL',
  '1 (11) 500 555-0110',
  '2011-01-27',
  '5-10 Miles'],
 ['11010',
  '22',
  'AW00011010',
  'NULL',
  'Jacquelyn',
  'C',
  'Suarez',
  '0',
  '1969-08-05',
  'S',
  'NULL',
  'F',
  'jacquelyn20@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '7800 Corrinne Court',
  'NULL',
  '1 (11) 500 555-0169',
  '2011-01-14',
  '5-10 Miles'],
 ['11011',
  '22',
  'AW00011011',
  'NULL',
  'Curtis',
  'NULL',
  'Lu',
  '0',
  '1969-05-03',
  'M',
  'NULL',
  'M',
  'curtis9@adventure-works.com',
  '60000.00',
  '4',
  '4',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '4',
  '1224 Shoenic',
  'NULL',
  '1 (11) 500 555-0117',
  '2010-12-30',
  '10+ Miles'],
 ['11012',
  '611',
  'AW00011012',
  'NULL',
  'Lauren',
  'M',
  'Walker',
  '0',
  '1979-01-14',
  'M',
  'NULL',
  'F',
  'lauren41@adventure-works.com',
  '100000.00',
  '2',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '4785 Scott Street',
  'NULL',
  '717-555-0164',
  '2013-03-16',
  '1-2 Miles'],
 ['11013',
  '543',
  'AW00011013',
  'NULL',
  'Ian',
  'M',
  'Jenkins',
  '0',
  '1979-08-03',
  'M',
  'NULL',
  'M',
  'ian47@adventure-works.com',
  '100000.00',
  '2',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '3',
  '7902 Hudson Ave.',
  'NULL',
  '817-555-0185',
  '2013-04-13',
  '0-1 Miles'],
 ['11014',
  '634',
  'AW00011014',
  'NULL',
  'Sydney',
  'NULL',
  'Bennett',
  '0',
  '1973-11-06',
  'S',
  'NULL',
  'F',
  'sydney23@adventure-works.com',
  '100000.00',
  '3',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '0',
  '3',
  '9011 Tank Drive',
  'NULL',
  '431-555-0156',
  '2013-03-23',
  '1-2 Miles'],
 ['11015',
  '301',
  'AW00011015',
  'NULL',
  'Chloe',
  'NULL',
  'Young',
  '0',
  '1984-08-26',
  'S',
  'NULL',
  'F',
  'chloe23@adventure-works.com',
  '30000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '1',
  '244 Willow Pass Road',
  'NULL',
  '208-555-0142',
  '2013-01-18',
  '5-10 Miles'],
 ['11016',
  '329',
  'AW00011016',
  'NULL',
  'Wyatt',
  'L',
  'Hill',
  '0',
  '1984-10-25',
  'M',
  'NULL',
  'M',
  'wyatt32@adventure-works.com',
  '30000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '9666 Northridge Ct.',
  'NULL',
  '135-555-0171',
  '2013-02-09',
  '5-10 Miles'],
 ['11017',
  '39',
  'AW00011017',
  'NULL',
  'Shannon',
  'NULL',
  'Wang',
  '0',
  '1949-12-24',
  'S',
  'NULL',
  'F',
  'shannon1@adventure-works.com',
  '20000.00',
  '4',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '7330 Saddlehill Lane',
  'NULL',
  '1 (11) 500 555-0195',
  '2011-01-12',
  '5-10 Miles'],
 ['11018',
  '32',
  'AW00011018',
  'NULL',
  'Clarence',
  'D',
  'Rai',
  '0',
  '1955-10-06',
  'S',
  'NULL',
  'M',
  'clarence32@adventure-works.com',
  '30000.00',
  '2',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '2',
  '244 Rivewview',
  'NULL',
  '1 (11) 500 555-0137',
  '2011-01-17',
  '5-10 Miles'],
 ['11019',
  '52',
  'AW00011019',
  'NULL',
  'Luke',
  'L',
  'Lal',
  '0',
  '1983-09-04',
  'S',
  'NULL',
  'M',
  'luke18@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '7832 Landing Dr',
  'NULL',
  '262-555-0112',
  '2013-02-12',
  '5-10 Miles'],
 ['11020',
  '53',
  'AW00011020',
  'NULL',
  'Jordan',
  'C',
  'King',
  '0',
  '1984-03-19',
  'S',
  'NULL',
  'M',
  'jordan73@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '7156 Rose Dr.',
  'NULL',
  '550-555-0163',
  '2012-12-29',
  '1-2 Miles'],
 ['11021',
  '536',
  'AW00011021',
  'NULL',
  'Destiny',
  'NULL',
  'Wilson',
  '0',
  '1984-03-02',
  'S',
  'NULL',
  'F',
  'destiny7@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '1',
  '8148 W. Lake Dr.',
  'NULL',
  '622-555-0158',
  '2013-01-23',
  '1-2 Miles'],
 ['11022',
  '609',
  'AW00011022',
  'NULL',
  'Ethan',
  'G',
  'Zhang',
  '0',
  '1984-04-10',
  'M',
  'NULL',
  'M',
  'ethan20@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '1769 Nicholas Drive',
  'NULL',
  '589-555-0185',
  '2013-01-20',
  '5-10 Miles'],
 ['11023',
  '298',
  'AW00011023',
  'NULL',
  'Seth',
  'M',
  'Edwards',
  '0',
  '1984-04-09',
  'M',
  'NULL',
  'M',
  'seth46@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '4499 Valley Crest',
  'NULL',
  '452-555-0188',
  '2013-02-17',
  '1-2 Miles'],
 ['11024',
  '311',
  'AW00011024',
  'NULL',
  'Russell',
  'NULL',
  'Xie',
  '0',
  '1984-03-16',
  'M',
  'NULL',
  'M',
  'russell7@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '8734 Oxford Place',
  'NULL',
  '746-555-0186',
  '2013-06-27',
  '5-10 Miles'],
 ['11025',
  '24',
  'AW00011025',
  'NULL',
  'Alejandro',
  'NULL',
  'Beck',
  '0',
  '1951-06-22',
  'M',
  'NULL',
  'M',
  'alejandro45@adventure-works.com',
  '10000.00',
  '2',
  '1',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '2',
  '2596 Franklin Canyon Road',
  'NULL',
  '1 (11) 500 555-0178',
  '2011-01-06',
  '1-2 Miles'],
 ['11026',
  '4',
  'AW00011026',
  'NULL',
  'Harold',
  'NULL',
  'Sai',
  '0',
  '1951-10-01',
  'S',
  'NULL',
  'M',
  'harold3@adventure-works.com',
  '30000.00',
  '2',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '0',
  '2',
  '8211 Leeds Ct.',
  'NULL',
  '1 (11) 500 555-0131',
  '2011-01-23',
  '1-2 Miles'],
 ['11027',
  '40',
  'AW00011027',
  'NULL',
  'Jessie',
  'R',
  'Zhao',
  '0',
  '1952-06-05',
  'M',
  'NULL',
  'M',
  'jessie16@adventure-works.com',
  '30000.00',
  '2',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '2',
  '213 Valencia Place',
  'NULL',
  '1 (11) 500 555-0184',
  '2011-01-16',
  '5-10 Miles'],
 ['11028',
  '17',
  'AW00011028',
  'NULL',
  'Jill',
  'NULL',
  'Jimenez',
  '0',
  '1951-10-09',
  'M',
  'NULL',
  'F',
  'jill13@adventure-works.com',
  '30000.00',
  '2',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '2',
  '9111 Rose Ann Ave',
  'NULL',
  '1 (11) 500 555-0116',
  '2011-01-26',
  '1-2 Miles'],
 ['11029',
  '32',
  'AW00011029',
  'NULL',
  'Jimmy',
  'L',
  'Moreno',
  '0',
  '1952-06-19',
  'M',
  'NULL',
  'M',
  'jimmy9@adventure-works.com',
  '30000.00',
  '2',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '2',
  '6385 Mark Twain',
  'NULL',
  '1 (11) 500 555-0146',
  '2011-01-19',
  '1-2 Miles'],
 ['11030',
  '28',
  'AW00011030',
  'NULL',
  'Bethany',
  'G',
  'Yuan',
  '0',
  '1958-02-18',
  'M',
  'NULL',
  'F',
  'bethany10@adventure-works.com',
  '10000.00',
  '2',
  '1',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '2',
  '636 Vine Hill Way',
  'NULL',
  '1 (11) 500 555-0182',
  '2011-02-05',
  '1-2 Miles'],
 ['11031',
  '8',
  'AW00011031',
  'NULL',
  'Theresa',
  'G',
  'Ramos',
  '0',
  '1953-02-18',
  'M',
  'NULL',
  'F',
  'theresa13@adventure-works.com',
  '20000.00',
  '4',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '6465 Detroit Ave.',
  'NULL',
  '1 (11) 500 555-0195',
  '2011-02-01',
  '1-2 Miles'],
 ['11032',
  '35',
  'AW00011032',
  'NULL',
  'Denise',
  'NULL',
  'Stone',
  '0',
  '1952-12-08',
  'M',
  'NULL',
  'F',
  'denise10@adventure-works.com',
  '20000.00',
  '4',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '626 Bentley Street',
  'NULL',
  '1 (11) 500 555-0169',
  '2011-02-18',
  '1-2 Miles'],
 ['11033',
  '9',
  'AW00011033',
  'NULL',
  'Jaime',
  'NULL',
  'Nath',
  '0',
  '1958-09-19',
  'M',
  'NULL',
  'M',
  'jaime41@adventure-works.com',
  '20000.00',
  '4',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '5927 Rainbow Dr',
  'NULL',
  '1 (11) 500 555-0137',
  '2011-02-15',
  '5-10 Miles'],
 ['11034',
  '12',
  'AW00011034',
  'NULL',
  'Ebony',
  'NULL',
  'Gonzalez',
  '0',
  '1952-12-16',
  'M',
  'NULL',
  'F',
  'ebony19@adventure-works.com',
  '20000.00',
  '4',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '5167 Condor Place',
  'NULL',
  '1 (11) 500 555-0136',
  '2011-02-01',
  '5-10 Miles'],
 ['11035',
  '33',
  'AW00011035',
  'NULL',
  'Wendy',
  'NULL',
  'Dominguez',
  '0',
  '1953-08-23',
  'M',
  'NULL',
  'F',
  'wendy12@adventure-works.com',
  '10000.00',
  '2',
  '1',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '2',
  '1873 Mt. Whitney Dr',
  'NULL',
  '1 (11) 500 555-0177',
  '2011-02-06',
  '1-2 Miles'],
 ['11036',
  '343',
  'AW00011036',
  'NULL',
  'Jennifer',
  'C',
  'Russell',
  '0',
  '1984-06-16',
  'M',
  'NULL',
  'F',
  'jennifer93@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '3981 Augustine Drive',
  'NULL',
  '115-555-0183',
  '2013-01-22',
  '1-2 Miles'],
 ['11037',
  '49',
  'AW00011037',
  'NULL',
  'Chloe',
  'M',
  'Garcia',
  '0',
  '1983-05-27',
  'S',
  'NULL',
  'F',
  'chloe27@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Clerical',
  'Administrativo',
  'Employé',
  '0',
  '2',
  '8915 Woodside Way',
  'NULL',
  '229-555-0112',
  '2013-01-20',
  '5-10 Miles'],
 ['11038',
  '6',
  'AW00011038',
  'NULL',
  'Diana',
  'F',
  'Hernandez',
  '0',
  '1953-09-20',
  'M',
  'NULL',
  'F',
  'diana2@adventure-works.com',
  '10000.00',
  '2',
  '1',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '2',
  '8357 Sandy Cove Lane',
  'NULL',
  '1 (11) 500 555-0114',
  '2011-02-07',
  '5-10 Miles'],
 ['11039',
  '19',
  'AW00011039',
  'NULL',
  'Marc',
  'J',
  'Martin',
  '0',
  '1954-06-16',
  'M',
  'NULL',
  'M',
  'marc3@adventure-works.com',
  '30000.00',
  '3',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '2',
  '9353 Creekside Dr.',
  'NULL',
  '1 (11) 500 555-0183',
  '2011-02-07',
  '5-10 Miles'],
 ['11040',
  '642',
  'AW00011040',
  'NULL',
  'Jesse',
  'NULL',
  'Murphy',
  '0',
  '1983-01-29',
  'M',
  'NULL',
  'M',
  'jesse15@adventure-works.com',
  '30000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '3350 Kingswood Circle',
  'NULL',
  '961-555-0176',
  '2013-04-03',
  '1-2 Miles'],
 ['11041',
  '325',
  'AW00011041',
  'NULL',
  'Amanda',
  'M',
  'Carter',
  '0',
  '1983-04-15',
  'M',
  'NULL',
  'F',
  'amanda53@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '5826 Escobar',
  'NULL',
  '295-555-0145',
  '2013-01-14',
  '1-2 Miles'],
 ['11042',
  '338',
  'AW00011042',
  'NULL',
  'Megan',
  'J',
  'Sanchez',
  '0',
  '1982-12-11',
  'M',
  'NULL',
  'F',
  'megan28@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '1397 Paraiso Ct.',
  'NULL',
  '404-555-0199',
  '2013-01-21',
  '0-1 Miles'],
 ['11043',
  '325',
  'AW00011043',
  'NULL',
  'Nathan',
  'M',
  'Simmons',
  '0',
  '1981-08-23',
  'M',
  'NULL',
  'M',
  'nathan11@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '1170 Shaw Rd',
  'NULL',
  '296-555-0181',
  '2013-05-08',
  '5-10 Miles'],
 ['11044',
  '25',
  'AW00011044',
  'NULL',
  'Adam',
  'L',
  'Flores',
  '0',
  '1954-11-21',
  'M',
  'NULL',
  'M',
  'adam10@adventure-works.com',
  '20000.00',
  '2',
  '1',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '2',
  '6935 Candle Dr',
  'NULL',
  '1 (11) 500 555-0163',
  '2011-02-28',
  '1-2 Miles'],
 ['11045',
  '8',
  'AW00011045',
  'NULL',
  'Leonard',
  'G',
  'Nara',
  '0',
  '1955-11-16',
  'S',
  'NULL',
  'M',
  'leonard18@adventure-works.com',
  '30000.00',
  '3',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '7466 La Vista Ave.',
  'NULL',
  '1 (11) 500 555-0151',
  '2013-04-10',
  '1-2 Miles'],
 ['11046',
  '6',
  'AW00011046',
  'NULL',
  'Christine',
  'NULL',
  'Yuan',
  '0',
  '1955-09-19',
  'M',
  'NULL',
  'F',
  'christine4@adventure-works.com',
  '30000.00',
  '3',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '2356 Orange St',
  'NULL',
  '1 (11) 500 555-0113',
  '2011-02-06',
  '5-10 Miles'],
 ['11047',
  '34',
  'AW00011047',
  'NULL',
  'Jaclyn',
  'D',
  'Lu',
  '0',
  '1955-08-27',
  'M',
  'NULL',
  'F',
  'jaclyn12@adventure-works.com',
  '30000.00',
  '3',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '2812 Mazatlan',
  'NULL',
  '1 (11) 500 555-0137',
  '2011-02-03',
  '1-2 Miles'],
 ['11048',
  '39',
  'AW00011048',
  'NULL',
  'Jeremy',
  'NULL',
  'Powell',
  '0',
  '1956-05-21',
  'M',
  'NULL',
  'M',
  'jeremy26@adventure-works.com',
  '30000.00',
  '3',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '1803 Potomac Dr.',
  'NULL',
  '1 (11) 500 555-0183',
  '2011-02-10',
  '5-10 Miles'],
 ['11049',
  '307',
  'AW00011049',
  'NULL',
  'Carol',
  'C',
  'Rai',
  '0',
  '1986-01-15',
  'S',
  'NULL',
  'F',
  'carol8@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '2',
  '6064 Madrid',
  'NULL',
  '654-555-0180',
  '2013-03-09',
  '5-10 Miles'],
 ['11050',
  '31',
  'AW00011050',
  'NULL',
  'Alan',
  'NULL',
  'Zheng',
  '0',
  '1957-03-06',
  'M',
  'NULL',
  'M',
  'alan23@adventure-works.com',
  '30000.00',
  '3',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '2741 Gainborough Dr.',
  'NULL',
  '1 (11) 500 555-0135',
  '2011-02-20',
  '5-10 Miles'],
 ['11051',
  '21',
  'AW00011051',
  'NULL',
  'Daniel',
  'NULL',
  'Johnson',
  '0',
  '1957-01-31',
  'S',
  'NULL',
  'M',
  'daniel18@adventure-works.com',
  '30000.00',
  '3',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '8085 Sunnyvale Avenue',
  'NULL',
  '1 (11) 500 555-0155',
  '2013-12-29',
  '1-2 Miles'],
 ['11052',
  '8',
  'AW00011052',
  'NULL',
  'Heidi',
  'NULL',
  'Lopez',
  '0',
  '1957-02-03',
  'S',
  'NULL',
  'F',
  'heidi19@adventure-works.com',
  '40000.00',
  '2',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '0',
  '2',
  '2514 Via Cordona',
  'NULL',
  '1 (11) 500 555-0168',
  '2011-02-17',
  '5-10 Miles'],
 ['11053',
  '359',
  'AW00011053',
  'NULL',
  'Ana',
  'E',
  'Price',
  '0',
  '1986-02-17',
  'M',
  'NULL',
  'F',
  'ana0@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '1660 Stonyhill Circle',
  'NULL',
  '859-555-0113',
  '2013-01-17',
  '1-2 Miles'],
 ['11054',
  '34',
  'AW00011054',
  'NULL',
  'Deanna',
  'NULL',
  'Munoz',
  '0',
  '1957-09-07',
  'M',
  'NULL',
  'F',
  'deanna33@adventure-works.com',
  '40000.00',
  '2',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '5825 B Way',
  'NULL',
  '1 (11) 500 555-0192',
  '2011-02-03',
  '5-10 Miles'],
 ['11055',
  '22',
  'AW00011055',
  'NULL',
  'Gilbert',
  'NULL',
  'Raje',
  '0',
  '1957-09-02',
  'M',
  'NULL',
  'M',
  'gilbert35@adventure-works.com',
  '40000.00',
  '2',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '8811 The Trees Dr.',
  'NULL',
  '1 (11) 500 555-0129',
  '2011-01-31',
  '5-10 Miles'],
 ['11056',
  '10',
  'AW00011056',
  'NULL',
  'Michele',
  'L',
  'Nath',
  '0',
  '1958-10-01',
  'M',
  'NULL',
  'F',
  'michele19@adventure-works.com',
  '40000.00',
  '3',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '5464 Janin Pl.',
  'NULL',
  '1 (11) 500 555-0178',
  '2011-02-26',
  '5-10 Miles'],
 ['11057',
  '5',
  'AW00011057',
  'NULL',
  'Carl',
  'J',
  'Andersen',
  '0',
  '1970-04-07',
  'M',
  'NULL',
  'M',
  'carl12@adventure-works.com',
  '70000.00',
  '2',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '6930 Lake Nadine Place',
  'NULL',
  '1 (11) 500 555-0181',
  '2011-02-22',
  '1-2 Miles'],
 ['11058',
  '29',
  'AW00011058',
  'NULL',
  'Marc',
  'NULL',
  'Diaz',
  '0',
  '1965-04-23',
  'M',
  'NULL',
  'M',
  'marc6@adventure-works.com',
  '80000.00',
  '2',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '6645 Sinaloa',
  'NULL',
  '1 (11) 500 555-0149',
  '2011-03-09',
  '1-2 Miles'],
 ['11059',
  '27',
  'AW00011059',
  'NULL',
  'Ashlee',
  'J',
  'Andersen',
  '0',
  '1959-09-29',
  'S',
  'NULL',
  'F',
  'ashlee19@adventure-works.com',
  '80000.00',
  '2',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '8255 Highland Road',
  'NULL',
  '1 (11) 500 555-0112',
  '2013-02-18',
  '5-10 Miles'],
 ['11060',
  '40',
  'AW00011060',
  'NULL',
  'Jon',
  'L',
  'Zhou',
  '0',
  '1959-09-14',
  'M',
  'NULL',
  'M',
  'jon28@adventure-works.com',
  '80000.00',
  '2',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '6574 Hemlock Ave.',
  'NULL',
  '1 (11) 500 555-0174',
  '2011-03-19',
  '5-10 Miles'],
 ['11061',
  '23',
  'AW00011061',
  'NULL',
  'Todd',
  'M',
  'Gao',
  '0',
  '1976-02-20',
  'M',
  'NULL',
  'M',
  'todd14@adventure-works.com',
  '80000.00',
  '2',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '8808 Geneva Ave',
  'NULL',
  '1 (11) 500 555-0191',
  '2011-03-13',
  '5-10 Miles'],
 ['11062',
  '547',
  'AW00011062',
  'NULL',
  'Noah',
  'D',
  'Powell',
  '0',
  '1981-03-01',
  'M',
  'NULL',
  'M',
  'noah5@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '9794 Marion Ct',
  'NULL',
  '767-555-0113',
  '2013-01-07',
  '5-10 Miles'],
 ['11063',
  '634',
  'AW00011063',
  'NULL',
  'Angela',
  'NULL',
  'Murphy',
  '0',
  '1980-10-04',
  'S',
  'NULL',
  'F',
  'angela41@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '4927 Virgil Street',
  '# 21',
  '451-555-0162',
  '2013-01-12',
  '5-10 Miles'],
 ['11064',
  '315',
  'AW00011064',
  'NULL',
  'Chase',
  'NULL',
  'Reed',
  '0',
  '1981-06-05',
  'M',
  'NULL',
  'M',
  'chase21@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '2721 Alexander Pl.',
  'NULL',
  '892-555-0184',
  '2013-01-25',
  '5-10 Miles'],
 ['11065',
  '331',
  'AW00011065',
  'NULL',
  'Jessica',
  'NULL',
  'Henderson',
  '0',
  '1979-04-08',
  'M',
  'NULL',
  'F',
  'jessica29@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '9343 Ironwood Way',
  'NULL',
  '278-555-0186',
  '2013-02-10',
  '1-2 Miles'],
 ['11066',
  '543',
  'AW00011066',
  'NULL',
  'Grace',
  'T',
  'Butler',
  '0',
  '1979-05-27',
  'M',
  'NULL',
  'F',
  'grace62@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '4739 Garden Ave.',
  'NULL',
  '712-555-0141',
  '2013-05-31',
  '5-10 Miles'],
 ['11067',
  '632',
  'AW00011067',
  'NULL',
  'Caleb',
  'F',
  'Carter',
  '0',
  '1982-03-25',
  'S',
  'NULL',
  'M',
  'caleb40@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '9563 Pennsylvania Blvd.',
  'NULL',
  '944-555-0167',
  '2013-08-18',
  '5-10 Miles'],
 ['11068',
  '40',
  'AW00011068',
  'NULL',
  'Tiffany',
  'NULL',
  'Liang',
  '0',
  '1966-09-19',
  'S',
  'NULL',
  'F',
  'tiffany17@adventure-works.com',
  '80000.00',
  '2',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '3608 Sinclair Avenue',
  '# 701',
  '1 (11) 500 555-0177',
  '2013-04-30',
  '5-10 Miles'],
 ['11069',
  '23',
  'AW00011069',
  'NULL',
  'Carolyn',
  'NULL',
  'Navarro',
  '0',
  '1966-09-17',
  'S',
  'NULL',
  'F',
  'carolyn30@adventure-works.com',
  '80000.00',
  '2',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '4606 Springwood Court',
  'NULL',
  '1 (11) 500 555-0145',
  '2011-04-17',
  '1-2 Miles'],
 ['11070',
  '39',
  'AW00011070',
  'NULL',
  'Willie',
  'T',
  'Raji',
  '0',
  '1960-10-02',
  'M',
  'NULL',
  'M',
  'willie40@adventure-works.com',
  '80000.00',
  '2',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '6260 Vernal Drive',
  'NULL',
  '1 (11) 500 555-0151',
  '2011-04-28',
  '5-10 Miles'],
 ['11071',
  '24',
  'AW00011071',
  'NULL',
  'Linda',
  'NULL',
  'Serrano',
  '0',
  '1960-12-23',
  'S',
  'NULL',
  'F',
  'linda31@adventure-works.com',
  '80000.00',
  '2',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '9808 Shaw Rd.',
  'NULL',
  '1 (11) 500 555-0130',
  '2013-03-01',
  '5-10 Miles'],
 ['11072',
  '17',
  'AW00011072',
  'NULL',
  'Casey',
  'NULL',
  'Luo',
  '0',
  '1960-08-05',
  'S',
  'NULL',
  'F',
  'casey6@adventure-works.com',
  '80000.00',
  '2',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '9513 Roslyn Drive',
  'NULL',
  '1 (11) 500 555-0125',
  '2011-03-31',
  '1-2 Miles'],
 ['11073',
  '16',
  'AW00011073',
  'NULL',
  'Amy',
  'NULL',
  'Ye',
  '0',
  '1962-02-11',
  'S',
  'NULL',
  'F',
  'amy16@adventure-works.com',
  '70000.00',
  '2',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '2262 Kirkwood Ct.',
  'NULL',
  '1 (11) 500 555-0185',
  '2013-03-23',
  '5-10 Miles'],
 ['11074',
  '28',
  'AW00011074',
  'NULL',
  'Levi',
  'A',
  'Arun',
  '0',
  '1962-02-25',
  'S',
  'NULL',
  'M',
  'levi6@adventure-works.com',
  '70000.00',
  '2',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '4661 Bluetail',
  'NULL',
  '1 (11) 500 555-0127',
  '2013-03-23',
  '5-10 Miles'],
 ['11075',
  '32',
  'AW00011075',
  'NULL',
  'Felicia',
  'L',
  'Jimenez',
  '0',
  '1963-05-16',
  'S',
  'NULL',
  'F',
  'felicia4@adventure-works.com',
  '80000.00',
  '2',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '786 Eastgate Ave',
  'NULL',
  '1 (11) 500 555-0165',
  '2011-04-28',
  '5-10 Miles'],
 ['11076',
  '19',
  'AW00011076',
  'NULL',
  'Blake',
  'NULL',
  'Anderson',
  '0',
  '1963-01-10',
  'S',
  'NULL',
  'M',
  'blake9@adventure-works.com',
  '80000.00',
  '2',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '5436 Clear',
  '# 101',
  '1 (11) 500 555-0113',
  '2011-04-21',
  '5-10 Miles'],
 ['11077',
  '36',
  'AW00011077',
  'NULL',
  'Leah',
  'NULL',
  'Ye',
  '0',
  '1963-03-19',
  'S',
  'NULL',
  'F',
  'leah7@adventure-works.com',
  '80000.00',
  '2',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '2',
  '1291 Arguello Blvd.',
  'NULL',
  '1 (11) 500 555-0154',
  '2011-04-15',
  '1-2 Miles'],
 ['11078',
  '49',
  'AW00011078',
  'NULL',
  'Gina',
  'E',
  'Martin',
  '0',
  '1985-01-06',
  'S',
  'NULL',
  'F',
  'gina1@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '2',
  '1349 Sol St.',
  'NULL',
  '196-555-0114',
  '2013-02-15',
  '1-2 Miles'],
 ['11079',
  '34',
  'AW00011079',
  'NULL',
  'Donald',
  'NULL',
  'Gonzalez',
  '0',
  '1970-03-07',
  'S',
  'NULL',
  'M',
  'donald20@adventure-works.com',
  '160000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '4236 Malibu Place',
  'NULL',
  '1 (11) 500 555-0137',
  '2013-03-15',
  '0-1 Miles'],
 ['11080',
  '30',
  'AW00011080',
  'NULL',
  'Damien',
  'NULL',
  'Chander',
  '0',
  '1965-01-13',
  'M',
  'NULL',
  'M',
  'damien32@adventure-works.com',
  '170000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '9941 Stonehedge Dr.',
  'NULL',
  '1 (11) 500 555-0111',
  '2011-04-10',
  '0-1 Miles'],
 ['11081',
  '311',
  'AW00011081',
  'NULL',
  'Savannah',
  'C',
  'Baker',
  '0',
  '1972-01-21',
  'M',
  'NULL',
  'F',
  'savannah39@adventure-works.com',
  '120000.00',
  '2',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '3',
  '1210 Trafalgar Circle',
  'NULL',
  '478-555-0117',
  '2013-02-12',
  '2-5 Miles'],
 ['11082',
  '322',
  'AW00011082',
  'NULL',
  'Angela',
  'L',
  'Butler',
  '0',
  '1972-02-01',
  'S',
  'NULL',
  'F',
  'angela17@adventure-works.com',
  '130000.00',
  '0',
  '1',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '0',
  '3',
  '6040 Listing Ct',
  'NULL',
  '579-555-0195',
  '2013-01-22',
  '1-2 Miles'],
 ['11083',
  '336',
  'AW00011083',
  'NULL',
  'Alyssa',
  'F',
  'Cox',
  '0',
  '1977-03-11',
  'M',
  'NULL',
  'F',
  'alyssa37@adventure-works.com',
  '130000.00',
  '0',
  '1',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '3',
  '867 La Orinda Place',
  'NULL',
  '561-555-0140',
  '2013-01-06',
  '1-2 Miles'],
 ['11084',
  '543',
  'AW00011084',
  'NULL',
  'Lucas',
  'NULL',
  'Phillips',
  '0',
  '1963-03-12',
  'S',
  'NULL',
  'M',
  'lucas7@adventure-works.com',
  '80000.00',
  '2',
  '0',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '8668 St. Celestine Court',
  'NULL',
  '863-555-0172',
  '2013-01-04',
  '1-2 Miles'],
 ['11085',
  '345',
  'AW00011085',
  'NULL',
  'Emily',
  'NULL',
  'Johnson',
  '0',
  '1963-01-16',
  'S',
  'NULL',
  'F',
  'emily1@adventure-works.com',
  '60000.00',
  '2',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '2',
  '7926 Stephanie Way',
  'NULL',
  '850-555-0184',
  '2013-12-06',
  '5-10 Miles'],
 ['11086',
  '369',
  'AW00011086',
  'NULL',
  'Ryan',
  'NULL',
  'Brown',
  '0',
  '1963-06-22',
  'M',
  'NULL',
  'M',
  'ryan43@adventure-works.com',
  '70000.00',
  '2',
  '1',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '2939 Wesley Ct.',
  'NULL',
  '539-555-0198',
  '2013-07-02',
  '0-1 Miles'],
 ['11087',
  '307',
  'AW00011087',
  'NULL',
  'Tamara',
  'L',
  'Liang',
  '0',
  '1963-04-02',
  'M',
  'NULL',
  'F',
  'tamara6@adventure-works.com',
  '70000.00',
  '3',
  '2',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '0',
  '3791 Rossmor Parkway',
  'NULL',
  '178-555-0152',
  '2013-02-25',
  '0-1 Miles'],
 ['11088',
  '359',
  'AW00011088',
  'NULL',
  'Hunter',
  'NULL',
  'Davis',
  '0',
  '1963-05-25',
  'M',
  'NULL',
  'M',
  'hunter64@adventure-works.com',
  '80000.00',
  '2',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '0',
  '4308 Sand Pointe Lane',
  'NULL',
  '612-555-0141',
  '2013-01-13',
  '2-5 Miles'],
 ['11089',
  '337',
  'AW00011089',
  'NULL',
  'Abigail',
  'M',
  'Price',
  '0',
  '1962-08-05',
  'S',
  'NULL',
  'F',
  'abigail25@adventure-works.com',
  '80000.00',
  '2',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '1',
  '2685 Blackburn Ct',
  'NULL',
  '532-555-0117',
  '2012-12-29',
  '2-5 Miles'],
 ['11090',
  '338',
  'AW00011090',
  'NULL',
  'Trevor',
  'NULL',
  'Bryant',
  '0',
  '1968-12-13',
  'S',
  'NULL',
  'M',
  'trevor18@adventure-works.com',
  '90000.00',
  '2',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '5781 Sharon Dr.',
  'NULL',
  '853-555-0174',
  '2011-08-07',
  '2-5 Miles'],
 ['11091',
  '50',
  'AW00011091',
  'NULL',
  'Dalton',
  'NULL',
  'Perez',
  '0',
  '1962-10-02',
  'M',
  'NULL',
  'M',
  'dalton37@adventure-works.com',
  '90000.00',
  '2',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '6083 San Jose',
  'NULL',
  '559-555-0115',
  '2013-01-29',
  '5-10 Miles'],
 ['11092',
  '22',
  'AW00011092',
  'NULL',
  'Cheryl',
  'A',
  'Diaz',
  '0',
  '1972-11-02',
  'M',
  'NULL',
  'F',
  'cheryl4@adventure-works.com',
  '90000.00',
  '2',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '7297 Kaywood Drive',
  'NULL',
  '1 (11) 500 555-0192',
  '2011-04-08',
  '1-2 Miles'],
 ['11093',
  '19',
  'AW00011093',
  'NULL',
  'Aimee',
  'A',
  'He',
  '0',
  '1978-09-06',
  'M',
  'NULL',
  'F',
  'aimee13@adventure-works.com',
  '100000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '0',
  '1833 Olympic Drive',
  'NULL',
  '1 (11) 500 555-0161',
  '2011-04-07',
  '0-1 Miles'],
 ['11094',
  '33',
  'AW00011094',
  'NULL',
  'Cedric',
  'W',
  'Ma',
  '0',
  '1967-09-29',
  'S',
  'NULL',
  'M',
  'cedric15@adventure-works.com',
  '70000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '1',
  '3407 Oak Brook Place',
  'NULL',
  '1 (11) 500 555-0115',
  '2013-04-07',
  '0-1 Miles'],
 ['11095',
  '13',
  'AW00011095',
  'NULL',
  'Chad',
  'NULL',
  'Kumar',
  '0',
  '1968-02-29',
  'S',
  'NULL',
  'M',
  'chad9@adventure-works.com',
  '70000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '1681 Lighthouse Way',
  'NULL',
  '1 (11) 500 555-0151',
  '2011-04-01',
  '5-10 Miles'],
 ['11096',
  '12',
  'AW00011096',
  'NULL',
  'Andrés',
  'NULL',
  'Anand',
  '0',
  '1968-02-07',
  'M',
  'NULL',
  'M',
  'andrés18@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '5423 Los Gatos Ct.',
  'NULL',
  '1 (11) 500 555-0184',
  '2011-04-11',
  '5-10 Miles'],
 ['11097',
  '40',
  'AW00011097',
  'NULL',
  'Edwin',
  'R',
  'Nara',
  '0',
  '1972-10-23',
  'M',
  'NULL',
  'M',
  'edwin39@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '719 William Way',
  'NULL',
  '1 (11) 500 555-0112',
  '2011-04-04',
  '5-10 Miles'],
 ['11098',
  '14',
  'AW00011098',
  'NULL',
  'Mallory',
  'S',
  'Rubio',
  '0',
  '1966-10-29',
  'S',
  'NULL',
  'F',
  'mallory7@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '1',
  '6452 Harris Circle',
  'NULL',
  '1 (11) 500 555-0157',
  '2013-02-11',
  '0-1 Miles'],
 ['11099',
  '13',
  'AW00011099',
  'NULL',
  'Adam',
  'NULL',
  'Ross',
  '0',
  '1966-09-05',
  'M',
  'NULL',
  'M',
  'adam2@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '4378 Westminster Place',
  'NULL',
  '1 (11) 500 555-0186',
  '2011-04-07',
  '0-1 Miles'],
 ['11100',
  '28',
  'AW00011100',
  'NULL',
  'Latasha',
  'L',
  'Navarro',
  '0',
  '1966-03-15',
  'S',
  'NULL',
  'F',
  'latasha10@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '6954 Ranch Road',
  'NULL',
  '1 (11) 500 555-0123',
  '2011-04-16',
  '5-10 Miles'],
 ['11101',
  '33',
  'AW00011101',
  'NULL',
  'Abby',
  'L',
  'Sai',
  '0',
  '1970-11-05',
  'S',
  'NULL',
  'F',
  'abby4@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '7074 N. Spoonwood Court',
  'NULL',
  '1 (11) 500 555-0174',
  '2011-04-29',
  '0-1 Miles'],
 ['11102',
  '18',
  'AW00011102',
  'NULL',
  'Julia',
  'L',
  'Nelson',
  '0',
  '1970-10-19',
  'S',
  'NULL',
  'F',
  'julia7@adventure-works.com',
  '80000.00',
  '5',
  '5',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '4',
  '2196 Coat Ct.',
  'NULL',
  '1 (11) 500 555-0124',
  '2013-07-16',
  '1-2 Miles'],
 ['11103',
  '3',
  'AW00011103',
  'NULL',
  'Cassie',
  'NULL',
  'Chande',
  '0',
  '1981-04-12',
  'S',
  'NULL',
  'F',
  'cassie13@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '9448 San Marino Ct.',
  'NULL',
  '1 (11) 500 555-0166',
  '2011-04-15',
  '5-10 Miles'],
 ['11104',
  '23',
  'AW00011104',
  'NULL',
  'Edgar',
  'A',
  'Sara',
  '0',
  '1975-03-08',
  'M',
  'NULL',
  'M',
  'edgar11@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '6127 Lilly Lane',
  'NULL',
  '1 (11) 500 555-0125',
  '2011-05-04',
  '0-1 Miles'],
 ['11105',
  '8',
  'AW00011105',
  'NULL',
  'Candace',
  'NULL',
  'Fernandez',
  '0',
  '1970-06-27',
  'S',
  'NULL',
  'F',
  'candace15@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '5029 Blue Ridge',
  'NULL',
  '1 (11) 500 555-0162',
  '2011-05-14',
  '5-10 Miles'],
 ['11106',
  '40',
  'AW00011106',
  'NULL',
  'Jessie',
  'NULL',
  'Liu',
  '0',
  '1970-03-11',
  'S',
  'NULL',
  'M',
  'jessie9@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '3063 Blue Jay Drive',
  'NULL',
  '1 (11) 500 555-0163',
  '2011-05-18',
  '5-10 Miles'],
 ['11107',
  '17',
  'AW00011107',
  'NULL',
  'Bianca',
  'NULL',
  'Lin',
  '0',
  '1976-03-04',
  'M',
  'NULL',
  'F',
  'bianca7@adventure-works.com',
  '90000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '7530 Eola',
  'NULL',
  '1 (11) 500 555-0121',
  '2011-05-01',
  '5-10 Miles'],
 ['11108',
  '13',
  'AW00011108',
  'NULL',
  'Kari',
  'C',
  'Alvarez',
  '0',
  '1969-01-10',
  'S',
  'NULL',
  'F',
  'kari25@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '2',
  '9178 Thornhill Place',
  'NULL',
  '1 (11) 500 555-0169',
  '2011-05-03',
  '0-1 Miles'],
 ['11109',
  '38',
  'AW00011109',
  'NULL',
  'Ruben',
  'D',
  'Kapoor',
  '0',
  '1980-04-30',
  'S',
  'NULL',
  'M',
  'ruben1@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '2',
  '1984 Glendale Circle',
  'NULL',
  '1 (11) 500 555-0132',
  '2011-05-10',
  '0-1 Miles'],
 ['11110',
  '3',
  'AW00011110',
  'NULL',
  'Curtis',
  'NULL',
  'Yang',
  '0',
  '1967-12-04',
  'M',
  'NULL',
  'M',
  'curtis5@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '4052 Mt. Wilson Way',
  'NULL',
  '1 (11) 500 555-0127',
  '2011-05-01',
  '5-10 Miles'],
 ['11111',
  '34',
  'AW00011111',
  'NULL',
  'Meredith',
  'T',
  'Gutierrez',
  '0',
  '1967-08-23',
  'M',
  'NULL',
  'F',
  'meredith34@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '7610 Northridge Ct.',
  'NULL',
  '1 (11) 500 555-0179',
  '2011-05-20',
  '0-1 Miles'],
 ['11112',
  '25',
  'AW00011112',
  'NULL',
  'Crystal',
  'C',
  'Wang',
  '0',
  '1968-03-08',
  'M',
  'NULL',
  'F',
  'crystal3@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '2773 Kirkwood Dr',
  'NULL',
  '1 (11) 500 555-0134',
  '2011-05-25',
  '0-1 Miles'],
 ['11113',
  '30',
  'AW00011113',
  'NULL',
  'Micheal',
  'A',
  'Blanco',
  '0',
  '1973-02-17',
  'M',
  'NULL',
  'M',
  'micheal11@adventure-works.com',
  '70000.00',
  '5',
  '4',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '596 Marfargoa Drive',
  'NULL',
  '1 (11) 500 555-0131',
  '2013-02-01',
  '5-10 Miles'],
 ['11114',
  '14',
  'AW00011114',
  'NULL',
  'Leslie',
  'C',
  'Moreno',
  '0',
  '1967-11-25',
  'S',
  'NULL',
  'F',
  'leslie7@adventure-works.com',
  '70000.00',
  '5',
  '4',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '7941 Cristobal',
  'NULL',
  '1 (11) 500 555-0115',
  '2013-03-18',
  '5-10 Miles'],
 ['11115',
  '17',
  'AW00011115',
  'NULL',
  'Alvin',
  'D',
  'Cai',
  '0',
  '1967-08-12',
  'M',
  'NULL',
  'M',
  'alvin20@adventure-works.com',
  '70000.00',
  '5',
  '4',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '7759 Azalea Avenue',
  'NULL',
  '1 (11) 500 555-0191',
  '2013-02-10',
  '0-1 Miles'],
 ['11116',
  '18',
  'AW00011116',
  'NULL',
  'Clinton',
  'E',
  'Carlson',
  '0',
  '1979-04-02',
  'M',
  'NULL',
  'M',
  'clinton14@adventure-works.com',
  '70000.00',
  '5',
  '4',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '7943 Cunha Ct.',
  'NULL',
  '1 (11) 500 555-0184',
  '2013-03-15',
  '5-10 Miles'],
 ['11117',
  '8',
  'AW00011117',
  'NULL',
  'April',
  'NULL',
  'Deng',
  '0',
  '1966-08-21',
  'M',
  'NULL',
  'F',
  'april1@adventure-works.com',
  '70000.00',
  '5',
  '4',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '3',
  '485 Ash Lane',
  'NULL',
  '1 (11) 500 555-0182',
  '2011-05-06',
  '10+ Miles'],
 ['11118',
  '6',
  'AW00011118',
  'NULL',
  'Alvin',
  'M',
  'Zeng',
  '0',
  '1962-12-31',
  'S',
  'NULL',
  'M',
  'alvin21@adventure-works.com',
  '80000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '1',
  '3853 Wildcat Circle',
  'Unit 13c12',
  '1 (11) 500 555-0174',
  '2013-07-10',
  '0-1 Miles'],
 ['11119',
  '13',
  'AW00011119',
  'NULL',
  'Evan',
  'V',
  'James',
  '0',
  '1940-10-07',
  'S',
  'NULL',
  'M',
  'evan8@adventure-works.com',
  '30000.00',
  '2',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '0',
  '2',
  '4157 Sierra Ridge',
  'NULL',
  '1 (11) 500 555-0187',
  '2013-02-03',
  '0-1 Miles'],
 ['11120',
  '18',
  'AW00011120',
  'NULL',
  'Beth',
  'H',
  'Jiménez',
  '0',
  '1942-02-06',
  'S',
  'NULL',
  'F',
  'beth8@adventure-works.com',
  '40000.00',
  '2',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '1',
  '7401 Las Palmas',
  'NULL',
  '1 (11) 500 555-0164',
  '2011-05-14',
  '5-10 Miles'],
 ['11121',
  '10',
  'AW00011121',
  'NULL',
  'Orlando',
  'NULL',
  'Suarez',
  '0',
  '1966-05-18',
  'M',
  'NULL',
  'M',
  'orlando19@adventure-works.com',
  '70000.00',
  '5',
  '4',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '3',
  '7743 Hames Dr',
  'NULL',
  '1 (11) 500 555-0198',
  '2013-06-24',
  '10+ Miles'],
 ['11122',
  '12',
  'AW00011122',
  'NULL',
  'Byron',
  'NULL',
  'Vazquez',
  '0',
  '1965-09-30',
  'M',
  'NULL',
  'M',
  'byron9@adventure-works.com',
  '70000.00',
  '5',
  '4',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '3',
  '3187 Hackamore Lane',
  'NULL',
  '1 (11) 500 555-0136',
  '2013-02-21',
  '5-10 Miles'],
 ['11123',
  '39',
  'AW00011123',
  'NULL',
  'Philip',
  'A',
  'Alvarez',
  '0',
  '1965-12-18',
  'M',
  'NULL',
  'M',
  'philip4@adventure-works.com',
  '70000.00',
  '5',
  '4',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '3',
  '2775 Mt. Olivet Pl.',
  'NULL',
  '1 (11) 500 555-0191',
  '2013-04-17',
  '10+ Miles'],
 ['11124',
  '40',
  'AW00011124',
  'NULL',
  'Ross',
  'F',
  'Jordan',
  '0',
  '1968-07-23',
  'S',
  'NULL',
  'M',
  'ross1@adventure-works.com',
  '80000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '6973 Dublin Court',
  'NULL',
  '1 (11) 500 555-0126',
  '2011-05-05',
  '5-10 Miles'],
 ['11125',
  '37',
  'AW00011125',
  'NULL',
  'Dana',
  'J',
  'Navarro',
  '0',
  '1961-10-06',
  'S',
  'NULL',
  'F',
  'dana2@adventure-works.com',
  '70000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '8481 Zartop Street',
  'NULL',
  '1 (11) 500 555-0172',
  '2013-01-31',
  '5-10 Miles'],
 ['11126',
  '11',
  'AW00011126',
  'NULL',
  'Shaun',
  'NULL',
  'Carson',
  '0',
  '1954-10-05',
  'M',
  'NULL',
  'M',
  'shaun16@adventure-works.com',
  '10000.00',
  '2',
  '1',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '57 Wolf Way',
  'NULL',
  '1 (11) 500 555-0155',
  '2011-05-28',
  '0-1 Miles'],
 ['11127',
  '361',
  'AW00011127',
  'NULL',
  'Jan',
  'NULL',
  'Edwards',
  '0',
  '1981-04-19',
  'M',
  'NULL',
  'F',
  'jan11@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '9409 The Alameda',
  'NULL',
  '111-555-0118',
  '2013-04-10',
  '5-10 Miles'],
 ['11128',
  '635',
  'AW00011128',
  'NULL',
  'Samantha',
  'NULL',
  'Long',
  '0',
  '1981-06-03',
  'M',
  'NULL',
  'F',
  'samantha35@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '1606 Alderwood Lane',
  'NULL',
  '175-555-0139',
  '2013-06-19',
  '5-10 Miles'],
 ['11129',
  '638',
  'AW00011129',
  'NULL',
  'Julia',
  'M',
  'Wright',
  '0',
  '1981-02-01',
  'S',
  'NULL',
  'F',
  'julia17@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '7397 Central Blvd.',
  'NULL',
  '456-555-0174',
  '2011-08-06',
  '5-10 Miles'],
 ['11130',
  '543',
  'AW00011130',
  'NULL',
  'Caroline',
  'L',
  'Russell',
  '0',
  '1985-07-05',
  'M',
  'NULL',
  'F',
  'caroline21@adventure-works.com',
  '30000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '3884 Bates Court',
  'NULL',
  '424-555-0137',
  '2013-12-09',
  '5-10 Miles'],
 ['11131',
  '50',
  'AW00011131',
  'NULL',
  'Amanda',
  'NULL',
  'Rivera',
  '0',
  '1985-09-09',
  'M',
  'NULL',
  'F',
  'amanda7@adventure-works.com',
  '30000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '9573 Royal Oak Rd.',
  'NULL',
  '918-555-0126',
  '2013-10-18',
  '0-1 Miles'],
 ['11132',
  '51',
  'AW00011132',
  'NULL',
  'Melissa',
  'E',
  'Richardson',
  '0',
  '1986-04-25',
  'S',
  'NULL',
  'F',
  'melissa31@adventure-works.com',
  '30000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '6832 Fruitwood Dr',
  'NULL',
  '928-555-0118',
  '2013-04-09',
  '5-10 Miles'],
 ['11133',
  '542',
  'AW00011133',
  'NULL',
  'Angela',
  'NULL',
  'Griffin',
  '0',
  '1986-03-08',
  'S',
  'NULL',
  'F',
  'angela23@adventure-works.com',
  '30000.00',
  '0',
  '0',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Clerical',
  'Administrativo',
  'Employé',
  '0',
  '2',
  '3828 Baltic Sea Ct',
  'NULL',
  '598-555-0174',
  '2013-12-30',
  '0-1 Miles'],
 ['11134',
  '30',
  'AW00011134',
  'NULL',
  'Larry',
  'D',
  'Townsend',
  '0',
  '1957-02-22',
  'S',
  'NULL',
  'M',
  'larry14@adventure-works.com',
  '10000.00',
  '5',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '7034 Carson',
  'NULL',
  '1 (11) 500 555-0130',
  '2011-05-03',
  '5-10 Miles'],
 ['11135',
  '302',
  'AW00011135',
  'NULL',
  'Marcus',
  'L',
  'Harris',
  '0',
  '1985-05-02',
  'S',
  'NULL',
  'M',
  'marcus14@adventure-works.com',
  '30000.00',
  '0',
  '0',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Clerical',
  'Administrativo',
  'Employé',
  '0',
  '2',
  '9068 Quiet Place Drive',
  'NULL',
  '442-555-0119',
  '2013-04-18',
  '5-10 Miles'],
 ['11136',
  '53',
  'AW00011136',
  'NULL',
  'Brianna',
  'D',
  'Morgan',
  '0',
  '1984-04-24',
  'S',
  'NULL',
  'F',
  'brianna30@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '9005 Eagle Ct.',
  'NULL',
  '954-555-0117',
  '2013-01-03',
  '0-1 Miles'],
 ['11137',
  '641',
  'AW00011137',
  'NULL',
  'Jasmine',
  'A',
  'Taylor',
  '0',
  '1984-01-17',
  'M',
  'NULL',
  'F',
  'jasmine7@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '2457 Matterhorn Court',
  'NULL',
  '557-555-0146',
  '2013-07-31',
  '5-10 Miles'],
 ['11138',
  '325',
  'AW00011138',
  'NULL',
  'Lauren',
  'NULL',
  'Davis',
  '0',
  '1984-03-14',
  'M',
  'NULL',
  'F',
  'lauren23@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '8105 Pembrook Court',
  'NULL',
  '832-555-0121',
  '2013-09-19',
  '0-1 Miles'],
 ['11139',
  '28',
  'AW00011139',
  'NULL',
  'Tanya',
  'NULL',
  'Moreno',
  '0',
  '1949-11-05',
  'S',
  'NULL',
  'F',
  'tanya2@adventure-works.com',
  '30000.00',
  '2',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '0',
  '2',
  '6155 Wilbur Drive',
  'NULL',
  '1 (11) 500 555-0185',
  '2013-09-14',
  '5-10 Miles'],
 ['11140',
  '301',
  'AW00011140',
  'NULL',
  'Javier',
  'L',
  'Alvarez',
  '0',
  '1982-08-11',
  'S',
  'NULL',
  'M',
  'javier1@adventure-works.com',
  '30000.00',
  '0',
  '0',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Clerical',
  'Administrativo',
  'Employé',
  '0',
  '2',
  '8935 Etcheverry Dr.',
  'NULL',
  '763-555-0134',
  '2013-03-19',
  '5-10 Miles'],
 ['11141',
  '314',
  'AW00011141',
  'NULL',
  'Nicole',
  'NULL',
  'Ramirez',
  '0',
  '1982-12-19',
  'M',
  'NULL',
  'F',
  'nicole42@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '1101 C Street',
  'NULL',
  '152-555-0162',
  '2013-05-16',
  '0-1 Miles'],
 ['11142',
  '51',
  'AW00011142',
  'NULL',
  'Eduardo',
  'NULL',
  'Patterson',
  '0',
  '1983-02-11',
  'S',
  'NULL',
  'M',
  'eduardo55@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '6255 Macalvey Dr.',
  'NULL',
  '190-555-0184',
  '2013-02-13',
  '0-1 Miles'],
 ['11143',
  '334',
  'AW00011143',
  'NULL',
  'Jonathan',
  'M',
  'Henderson',
  '0',
  '1982-08-04',
  'M',
  'NULL',
  'M',
  'jonathan4@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '165 East Lane Road',
  'NULL',
  '149-555-0113',
  '2013-06-15',
  '5-10 Miles'],
 ['11144',
  '607',
  'AW00011144',
  'NULL',
  'Edward',
  'NULL',
  'Hernandez',
  '0',
  '1985-03-08',
  'S',
  'NULL',
  'M',
  'edward48@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '7607 Pine Hollow Road',
  'NULL',
  '178-555-0196',
  '2013-01-25',
  '0-1 Miles'],
 ['11145',
  '536',
  'AW00011145',
  'NULL',
  'Jasmine',
  'L',
  'Coleman',
  '0',
  '1985-06-06',
  'S',
  'NULL',
  'F',
  'jasmine46@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '1961 Oak Grove Road',
  'NULL',
  '857-555-0115',
  '2013-01-25',
  '0-1 Miles'],
 ['11146',
  '8',
  'AW00011146',
  'NULL',
  'Karla',
  'L',
  'Goel',
  '0',
  '1945-02-22',
  'S',
  'NULL',
  'F',
  'karla20@adventure-works.com',
  '40000.00',
  '2',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '3272 Corrie Lane',
  'NULL',
  '1 (11) 500 555-0137',
  '2013-02-05',
  '5-10 Miles'],
 ['11147',
  '40',
  'AW00011147',
  'NULL',
  'Ernest',
  'L',
  'Wu',
  '0',
  '1944-08-04',
  'M',
  'NULL',
  'M',
  'ernest6@adventure-works.com',
  '60000.00',
  '2',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '1',
  '1832 RiverRock Dr',
  'NULL',
  '1 (11) 500 555-0139',
  '2011-05-13',
  '0-1 Miles'],
 ['11148',
  '22',
  'AW00011148',
  'NULL',
  'Ross',
  'NULL',
  'Vazquez',
  '0',
  '1947-02-13',
  'M',
  'NULL',
  'M',
  'ross32@adventure-works.com',
  '40000.00',
  '2',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '1201 Paso Del Rio Way',
  'NULL',
  '1 (11) 500 555-0163',
  '2013-03-07',
  '5-10 Miles'],
 ['11149',
  '25',
  'AW00011149',
  'NULL',
  'Theodore',
  'NULL',
  'Gill',
  '0',
  '1946-10-18',
  'M',
  'NULL',
  'M',
  'theodore14@adventure-works.com',
  '40000.00',
  '2',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '9120 Pinewood Court',
  'NULL',
  '1 (11) 500 555-0194',
  '2013-06-04',
  '0-1 Miles'],
 ['11150',
  '39',
  'AW00011150',
  'NULL',
  'Russell',
  'M',
  'Shen',
  '0',
  '1946-09-12',
  'S',
  'NULL',
  'M',
  'russell6@adventure-works.com',
  '40000.00',
  '2',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '4755 Easley Drive',
  'NULL',
  '1 (11) 500 555-0191',
  '2013-03-27',
  '5-10 Miles'],
 ['11151',
  '18',
  'AW00011151',
  'NULL',
  'Melinda',
  'G',
  'Gill',
  '0',
  '1947-08-25',
  'S',
  'NULL',
  'F',
  'melinda9@adventure-works.com',
  '60000.00',
  '2',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '0',
  '1',
  '805 Rainier Dr.',
  'NULL',
  '1 (11) 500 555-0117',
  '2011-05-15',
  '0-1 Miles'],
 ['11152',
  '633',
  'AW00011152',
  'NULL',
  'James',
  'J',
  'Williams',
  '0',
  '1981-07-09',
  'S',
  'NULL',
  'M',
  'james77@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '6827 Seagull Court',
  'NULL',
  '355-555-0153',
  '2013-01-09',
  '5-10 Miles'],
 ['11153',
  '635',
  'AW00011153',
  'NULL',
  'Angela',
  'R',
  'James',
  '0',
  '1981-12-21',
  'M',
  'NULL',
  'F',
  'angela34@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '8877 Weatherly Drive',
  'NULL',
  '847-555-0111',
  '2013-03-29',
  '5-10 Miles'],
 ['11154',
  '553',
  'AW00011154',
  'NULL',
  'Megan',
  'G',
  'Walker',
  '0',
  '1982-02-18',
  'S',
  'NULL',
  'F',
  'megan25@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '6898 Holiday Hills',
  'NULL',
  '918-555-0186',
  '2013-01-10',
  '5-10 Miles'],
 ['11155',
  '301',
  'AW00011155',
  'NULL',
  'Hunter',
  'J',
  'Robinson',
  '0',
  '1981-07-25',
  'S',
  'NULL',
  'M',
  'hunter50@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '1',
  '8356 Mori Court',
  'NULL',
  '891-555-0125',
  '2013-01-06',
  '1-2 Miles'],
 ['11156',
  '334',
  'AW00011156',
  'NULL',
  'Maria',
  'NULL',
  'Roberts',
  '0',
  '1981-08-06',
  'S',
  'NULL',
  'F',
  'maria47@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '1',
  '9452 Mariposa Ct.',
  'NULL',
  '158-555-0199',
  '2013-01-08',
  '1-2 Miles'],
 ['11157',
  '642',
  'AW00011157',
  'NULL',
  'Hannah',
  'E',
  'Long',
  '0',
  '1980-12-08',
  'M',
  'NULL',
  'F',
  'hannah32@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '1832 Preston Ct.',
  'NULL',
  '974-555-0177',
  '2013-07-24',
  '5-10 Miles'],
 ['11158',
  '361',
  'AW00011158',
  'NULL',
  'Jason',
  'K',
  'Wright',
  '0',
  '1981-04-06',
  'S',
  'NULL',
  'M',
  'jason46@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '6771 Bundros Court',
  'NULL',
  '694-555-0176',
  '2013-01-19',
  '5-10 Miles'],
 ['11159',
  '385',
  'AW00011159',
  'NULL',
  'Brianna',
  'A',
  'Hughes',
  '0',
  '1981-03-16',
  'S',
  'NULL',
  'F',
  'brianna57@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '6793 Bonifacio St.',
  'NULL',
  '319-555-0183',
  '2013-09-08',
  '1-2 Miles'],
 ['11160',
  '311',
  'AW00011160',
  'NULL',
  'Maurice',
  'M',
  'Tang',
  '0',
  '1979-07-08',
  'S',
  'NULL',
  'M',
  'maurice4@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '1',
  '2886 Chaparral Court',
  'Space # 45',
  '947-555-0172',
  '2013-02-21',
  '5-10 Miles'],
 ['11161',
  '311',
  'AW00011161',
  'NULL',
  'Emily',
  'NULL',
  'Wood',
  '0',
  '1979-10-20',
  'S',
  'NULL',
  'F',
  'emily27@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '1',
  '1562 Black Walnut',
  'NULL',
  '184-555-0114',
  '2013-06-01',
  '1-2 Miles'],
 ['11162',
  '331',
  'AW00011162',
  'NULL',
  'Chase',
  'NULL',
  'Cox',
  '0',
  '1979-09-02',
  'S',
  'NULL',
  'M',
  'chase10@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  'P.O. Box 8070',
  'NULL',
  '764-555-0116',
  '2013-02-18',
  '5-10 Miles'],
 ['11163',
  '372',
  'AW00011163',
  'NULL',
  'Gabriel',
  'NULL',
  'Wang',
  '0',
  '1980-06-18',
  'M',
  'NULL',
  'M',
  'gabriel21@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '8002 Crane Court',
  'NULL',
  '617-555-0150',
  '2013-05-01',
  '5-10 Miles'],
 ['11164',
  '374',
  'AW00011164',
  'NULL',
  'Devin',
  'NULL',
  'Brooks',
  '0',
  '1979-11-02',
  'S',
  'NULL',
  'M',
  'devin63@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '1',
  '4231 Highland Dr.',
  'NULL',
  '502-555-0138',
  '2013-04-27',
  '1-2 Miles'],
 ['11165',
  '348',
  'AW00011165',
  'NULL',
  'Jocelyn',
  'NULL',
  'Alexander',
  '0',
  '1979-01-15',
  'M',
  'NULL',
  'F',
  'jocelyn18@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '1',
  '3376 Bank Way',
  'NULL',
  '354-555-0134',
  '2013-05-25',
  '1-2 Miles'],
 ['11166',
  '631',
  'AW00011166',
  'NULL',
  'Ashley',
  'NULL',
  'Martinez',
  '0',
  '1977-10-22',
  'S',
  'NULL',
  'F',
  'ashley18@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '6993 Whyte Park Ave.',
  'NULL',
  '131-555-0194',
  '2013-10-14',
  '0-1 Miles'],
 ['11167',
  '618',
  'AW00011167',
  'NULL',
  'Jasmine',
  'J',
  'Barnes',
  '0',
  '1978-01-29',
  'S',
  'NULL',
  'F',
  'jasmine43@adventure-works.com',
  '80000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '0',
  '1',
  '9183 Via Del Sol',
  'NULL',
  '178-555-0156',
  '2013-01-07',
  '0-1 Miles'],
 ['11168',
  '348',
  'AW00011168',
  'NULL',
  'David',
  'NULL',
  'Rodriguez',
  '0',
  '1973-11-12',
  'S',
  'NULL',
  'M',
  'david83@adventure-works.com',
  '80000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '0',
  '1',
  '38 Shangri-la Rd.',
  'NULL',
  '730-555-0128',
  '2013-01-15',
  '0-1 Miles'],
 ['11169',
  '312',
  'AW00011169',
  'NULL',
  'Bryce',
  'NULL',
  'Richardson',
  '0',
  '1973-12-20',
  'M',
  'NULL',
  'M',
  'bryce8@adventure-works.com',
  '90000.00',
  '4',
  '4',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '1',
  '1841 Blackwood Drive',
  'NULL',
  '178-555-0176',
  '2013-05-26',
  '0-1 Miles'],
 ['11170',
  '612',
  'AW00011170',
  'NULL',
  'Carol',
  'T',
  'Howard',
  '0',
  '1973-08-04',
  'M',
  'NULL',
  'F',
  'carol5@adventure-works.com',
  '90000.00',
  '4',
  '4',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '1',
  '6281 Edward Ave',
  'NULL',
  '845-555-0127',
  '2013-08-26',
  '0-1 Miles'],
 ['11171',
  '385',
  'AW00011171',
  'NULL',
  'Jonathan',
  'E',
  'Hill',
  '0',
  '1978-10-05',
  'S',
  'NULL',
  'M',
  'jonathan43@adventure-works.com',
  '100000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '3731 Chinquapin Ct',
  'NULL',
  '134-555-0196',
  '2011-08-20',
  '1-2 Miles'],
 ['11172',
  '626',
  'AW00011172',
  'NULL',
  'Gabrielle',
  'J',
  'Adams',
  '0',
  '1973-05-20',
  'M',
  'NULL',
  'F',
  'gabrielle58@adventure-works.com',
  '100000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '5621 Arcadia Pl.',
  'NULL',
  '403-555-0152',
  '2013-05-03',
  '1-2 Miles'],
 ['11173',
  '552',
  'AW00011173',
  'NULL',
  'Sarah',
  'F',
  'Thomas',
  '0',
  '1973-02-28',
  'S',
  'NULL',
  'F',
  'sarah13@adventure-works.com',
  '110000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '0',
  '4',
  '5636 Mt. Whitney Dr.',
  'NULL',
  '868-555-0188',
  '2013-03-02',
  '0-1 Miles'],
 ['11174',
  '338',
  'AW00011174',
  'NULL',
  'Nicholas',
  'NULL',
  'Robinson',
  '0',
  '1973-01-09',
  'M',
  'NULL',
  'M',
  'nicholas19@adventure-works.com',
  '110000.00',
  '0',
  '1',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '0',
  '1318 Lasalle Street',
  'NULL',
  '949-555-0138',
  '2013-07-13',
  '2-5 Miles'],
 ['11175',
  '300',
  'AW00011175',
  'NULL',
  'Luis',
  'NULL',
  'Wang',
  '0',
  '1968-09-01',
  'S',
  'NULL',
  'M',
  'luis24@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '6943 Patterson Blvd.',
  'NULL',
  '418-555-0127',
  '2011-08-28',
  '5-10 Miles'],
 ['11176',
  '50',
  'AW00011176',
  'NULL',
  'Mason',
  'D',
  'Roberts',
  '0',
  '1979-01-21',
  'M',
  'NULL',
  'M',
  'mason25@adventure-works.com',
  '90000.00',
  '4',
  '4',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '1',
  '5753 Megan Dr.',
  'NULL',
  '539-555-0162',
  '2013-02-02',
  '1-2 Miles'],
 ['11177',
  '359',
  'AW00011177',
  'NULL',
  'Jose',
  'M',
  'Flores',
  '0',
  '1948-01-01',
  'M',
  'NULL',
  'M',
  'jose6@adventure-works.com',
  '110000.00',
  '2',
  '4',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '3991 Rambling Rose Drive',
  'NULL',
  '157-555-0182',
  '2013-03-29',
  '5-10 Miles'],
 ['11178',
  '334',
  'AW00011178',
  'NULL',
  'Nathan',
  'J',
  'Johnson',
  '0',
  '1954-08-20',
  'M',
  'NULL',
  'M',
  'nathan55@adventure-works.com',
  '100000.00',
  '2',
  '3',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '3',
  '8927 Daylight Place',
  'NULL',
  '117-555-0182',
  '2013-02-21',
  '1-2 Miles'],
 ['11179',
  '300',
  'AW00011179',
  'NULL',
  'Molly',
  'E',
  'Rodriguez',
  '0',
  '1959-12-08',
  'M',
  'NULL',
  'F',
  'molly18@adventure-works.com',
  '120000.00',
  '2',
  '4',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '3',
  '5556 Riverland Dr.',
  'NULL',
  '135-555-0185',
  '2013-03-12',
  '5-10 Miles'],
 ['11180',
  '307',
  'AW00011180',
  'NULL',
  'April',
  'NULL',
  'Anand',
  '0',
  '1948-07-01',
  'M',
  'NULL',
  'F',
  'april18@adventure-works.com',
  '160000.00',
  '1',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '4',
  '3531 Brookview Drive',
  'NULL',
  '702-555-0144',
  '2013-03-17',
  '0-1 Miles'],
 ['11181',
  '338',
  'AW00011181',
  'NULL',
  'Devin',
  'P',
  'Martin',
  '0',
  '1960-02-01',
  'M',
  'NULL',
  'M',
  'devin13@adventure-works.com',
  '170000.00',
  '2',
  '3',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '1085 Greenbelt Way',
  'Unit B-105',
  '735-555-0197',
  '2013-05-07',
  '0-1 Miles'],
 ['11182',
  '638',
  'AW00011182',
  'NULL',
  'Stephanie',
  'NULL',
  'Torres',
  '0',
  '1950-02-22',
  'S',
  'NULL',
  'F',
  'stephanie19@adventure-works.com',
  '70000.00',
  '4',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '6968 Mildred Ln.',
  'NULL',
  '567-555-0176',
  '2013-08-28',
  '10+ Miles'],
 ['11183',
  '368',
  'AW00011183',
  'NULL',
  'Jasmine',
  'W',
  'Lee',
  '0',
  '1950-01-12',
  'S',
  'NULL',
  'F',
  'jasmine19@adventure-works.com',
  '70000.00',
  '4',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '7502 Contuti Avenue',
  'NULL',
  '147-555-0199',
  '2013-04-30',
  '10+ Miles'],
 ['11184',
  '311',
  'AW00011184',
  'NULL',
  'Meghan',
  'NULL',
  'Hernandez',
  '0',
  '1955-11-13',
  'S',
  'NULL',
  'F',
  'meghan3@adventure-works.com',
  '70000.00',
  '4',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '5872 L St.',
  'NULL',
  '967-555-0188',
  '2013-08-10',
  '10+ Miles'],
 ['11185',
  '53',
  'AW00011185',
  'NULL',
  'Ashley',
  'NULL',
  'Henderson',
  '0',
  '1950-04-07',
  'S',
  'NULL',
  'F',
  'ashley31@adventure-works.com',
  '70000.00',
  '4',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '8834 San Jose Ave.',
  'NULL',
  '173-555-0121',
  '2013-02-21',
  '10+ Miles'],
 ['11186',
  '352',
  'AW00011186',
  'NULL',
  'Sarah',
  'C',
  'Price',
  '0',
  '1949-11-18',
  'S',
  'NULL',
  'F',
  'sarah25@adventure-works.com',
  '70000.00',
  '4',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '4815 Paraiso Ct.',
  'NULL',
  '180-555-0133',
  '2013-10-18',
  '10+ Miles'],
 ['11187',
  '612',
  'AW00011187',
  'NULL',
  'Jennifer',
  'S',
  'Cooper',
  '0',
  '1949-08-21',
  'M',
  'NULL',
  'F',
  'jennifer63@adventure-works.com',
  '60000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '2429 Longview Road',
  'NULL',
  '857-555-0111',
  '2013-04-03',
  '10+ Miles'],
 ['11188',
  '361',
  'AW00011188',
  'NULL',
  'Catherine',
  'NULL',
  'Morris',
  '0',
  '1950-03-06',
  'M',
  'NULL',
  'F',
  'catherine16@adventure-works.com',
  '60000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '0',
  '2',
  '6542 Stonewood Drive',
  'NULL',
  '795-555-0117',
  '2013-11-01',
  '1-2 Miles'],
 ['11189',
  '609',
  'AW00011189',
  'NULL',
  'Lawrence',
  'W',
  'Blanco',
  '0',
  '1950-01-12',
  'S',
  'NULL',
  'M',
  'lawrence14@adventure-works.com',
  '60000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '7502 Contuti Avenue',
  'NULL',
  '656-555-0171',
  '2011-08-26',
  '10+ Miles'],
 ['11190',
  '300',
  'AW00011190',
  'NULL',
  'Carson',
  'NULL',
  'Bryant',
  '0',
  '1949-12-20',
  'M',
  'NULL',
  'M',
  'carson17@adventure-works.com',
  '70000.00',
  '5',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '2995 Youngsdale Dr.',
  'NULL',
  '240-555-0142',
  '2013-08-28',
  '10+ Miles'],
 ['11191',
  '310',
  'AW00011191',
  'NULL',
  'Kristi',
  'E',
  'Perez',
  '0',
  '1951-06-17',
  'S',
  'NULL',
  'F',
  'kristi39@adventure-works.com',
  '70000.00',
  '5',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '3',
  '1769 Lislin Ct',
  'NULL',
  '123-555-0181',
  '2011-08-11',
  '10+ Miles'],
 ['11192',
  '637',
  'AW00011192',
  'NULL',
  'James',
  'C',
  'Brown',
  '0',
  '1951-03-13',
  'M',
  'NULL',
  'M',
  'james79@adventure-works.com',
  '60000.00',
  '4',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '673 Old Mountain View Dr.',
  'NULL',
  '725-555-0117',
  '2013-06-23',
  '2-5 Miles'],
 ['11193',
  '553',
  'AW00011193',
  'NULL',
  'Ian',
  'A',
  'Gray',
  '0',
  '1950-08-13',
  'M',
  'NULL',
  'M',
  'ian72@adventure-works.com',
  '60000.00',
  '4',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '5941 Gill Dr.',
  'NULL',
  '596-555-0190',
  '2013-02-25',
  '2-5 Miles'],
 ['11194',
  '352',
  'AW00011194',
  'NULL',
  'Jacqueline',
  'R',
  'Price',
  '0',
  '1950-12-08',
  'M',
  'NULL',
  'F',
  'jacqueline0@adventure-works.com',
  '60000.00',
  '4',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '872 Mark Twain Dr',
  'NULL',
  '266-555-0112',
  '2013-03-13',
  '2-5 Miles'],
 ['11195',
  '635',
  'AW00011195',
  'NULL',
  'Megan',
  'NULL',
  'Henderson',
  '0',
  '1951-08-10',
  'M',
  'NULL',
  'F',
  'megan55@adventure-works.com',
  '60000.00',
  '5',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '3',
  '8411 Mt. Olivet Place',
  'NULL',
  '560-555-0150',
  '2013-04-14',
  '10+ Miles'],
 ['11196',
  '536',
  'AW00011196',
  'NULL',
  'Alfredo',
  'NULL',
  'Romero',
  '0',
  '1951-12-05',
  'M',
  'NULL',
  'M',
  'alfredo10@adventure-works.com',
  '60000.00',
  '5',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '3',
  '2499 Greendell Pl',
  'NULL',
  '342-555-0110',
  '2013-03-03',
  '10+ Miles'],
 ['11197',
  '637',
  'AW00011197',
  'NULL',
  'Andrea',
  'NULL',
  'Morris',
  '0',
  '1951-12-16',
  'M',
  'NULL',
  'F',
  'andrea18@adventure-works.com',
  '70000.00',
  '3',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '0',
  '1',
  '1883 Green View Court',
  'NULL',
  '715-555-0178',
  '2013-05-02',
  '1-2 Miles'],
 ['11198',
  '368',
  'AW00011198',
  'NULL',
  'Brooke',
  'NULL',
  'Sanders',
  '0',
  '1952-05-25',
  'S',
  'NULL',
  'F',
  'brooke3@adventure-works.com',
  '70000.00',
  '4',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '1',
  '5192 Dumbarton Drive',
  'NULL',
  '215-555-0156',
  '2013-02-05',
  '10+ Miles'],
 ['11199',
  '302',
  'AW00011199',
  'NULL',
  'Jacqueline',
  'NULL',
  'Bennett',
  '0',
  '1957-11-02',
  'M',
  'NULL',
  'F',
  'jacqueline1@adventure-works.com',
  '70000.00',
  '4',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '1',
  '8948 Chinquapin Court',
  'NULL',
  '413-555-0174',
  '2013-03-18',
  '10+ Miles'],
 ['11200',
  '69',
  'AW00011200',
  'NULL',
  'Jason',
  'L',
  'Griffin',
  '0',
  '1953-05-21',
  'M',
  'NULL',
  'M',
  'jason18@adventure-works.com',
  '70000.00',
  '4',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '1',
  '7239 Nicholas Drive',
  'NULL',
  '232-555-0160',
  '2013-02-07',
  '1-2 Miles'],
 ['11201',
  '369',
  'AW00011201',
  'NULL',
  'Amanda',
  'NULL',
  'Foster',
  '0',
  '1953-02-14',
  'M',
  'NULL',
  'F',
  'amanda37@adventure-works.com',
  '70000.00',
  '4',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '1',
  '3984 San Francisco',
  'NULL',
  '505-555-0159',
  '2013-07-01',
  '10+ Miles'],
 ['11202',
  '334',
  'AW00011202',
  'NULL',
  'Alexia',
  'L',
  'Price',
  '0',
  '1958-08-22',
  'M',
  'NULL',
  'F',
  'alexia0@adventure-works.com',
  '80000.00',
  '5',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '0',
  '2',
  '2079 Wellington Ct',
  'NULL',
  '552-555-0118',
  '2013-09-15',
  '1-2 Miles'],
 ['11203',
  '60',
  'AW00011203',
  'NULL',
  'Luis',
  'D',
  'Diaz',
  '0',
  '1959-08-18',
  'M',
  'NULL',
  'M',
  'luis21@adventure-works.com',
  '40000.00',
  '2',
  '1',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '3682 Diablo View Road',
  'NULL',
  '171-555-0126',
  '2013-02-20',
  '10+ Miles'],
 ['11204',
  '536',
  'AW00011204',
  'NULL',
  'Destiny',
  'C',
  'Rivera',
  '0',
  '1953-11-29',
  'M',
  'NULL',
  'F',
  'destiny33@adventure-works.com',
  '40000.00',
  '2',
  '1',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '6965 Appalachian Drive',
  'NULL',
  '743-555-0111',
  '2013-08-09',
  '2-5 Miles'],
 ['11205',
  '612',
  'AW00011205',
  'NULL',
  'Abby',
  'NULL',
  'Fernandez',
  '0',
  '1954-01-21',
  'M',
  'NULL',
  'F',
  'abby13@adventure-works.com',
  '40000.00',
  '2',
  '1',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '8330 Glenside Court',
  'NULL',
  '134-555-0119',
  '2013-07-27',
  '10+ Miles'],
 ['11206',
  '626',
  'AW00011206',
  'NULL',
  'Blake',
  'NULL',
  'Flores',
  '0',
  '1954-03-24',
  'M',
  'NULL',
  'M',
  'blake60@adventure-works.com',
  '60000.00',
  '2',
  '1',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '9410 Ferry St.',
  'NULL',
  '975-555-0163',
  '2013-05-11',
  '10+ Miles'],
 ['11207',
  '635',
  'AW00011207',
  'NULL',
  'Danielle',
  'NULL',
  'Cox',
  '0',
  '1954-01-16',
  'S',
  'NULL',
  'F',
  'danielle12@adventure-works.com',
  '60000.00',
  '2',
  '1',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '2346 Wren Ave',
  'NULL',
  '396-555-0158',
  '2013-01-31',
  '10+ Miles'],
 ['11208',
  '325',
  'AW00011208',
  'NULL',
  'Maria',
  'NULL',
  'Reed',
  '0',
  '1953-08-03',
  'M',
  'NULL',
  'F',
  'maria4@adventure-works.com',
  '60000.00',
  '2',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '0',
  '1413 Bridgeview St',
  'NULL',
  '156-555-0163',
  '2013-03-04',
  '10+ Miles'],
 ['11209',
  '336',
  'AW00011209',
  'NULL',
  'Allison',
  'NULL',
  'Evans',
  '0',
  '1953-07-12',
  'M',
  'NULL',
  'F',
  'allison21@adventure-works.com',
  '60000.00',
  '2',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '0',
  '3515 Sutton Circle',
  'NULL',
  '988-555-0151',
  '2013-03-25',
  '10+ Miles'],
 ['11210',
  '383',
  'AW00011210',
  'NULL',
  'Edward',
  'J',
  'Wood',
  '0',
  '1953-12-06',
  'M',
  'NULL',
  'M',
  'edward50@adventure-works.com',
  '70000.00',
  '4',
  '1',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '1039 Adelaide St.',
  'NULL',
  '229-555-0114',
  '2013-05-06',
  '10+ Miles'],
 ['11211',
  '50',
  'AW00011211',
  'NULL',
  'Samantha',
  'NULL',
  'Russell',
  '0',
  '1960-10-08',
  'M',
  'NULL',
  'F',
  'samantha42@adventure-works.com',
  '40000.00',
  '2',
  '1',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '9256 Village Oaks Dr.',
  'NULL',
  '547-555-0121',
  '2013-02-01',
  '2-5 Miles'],
 ['11212',
  '53',
  'AW00011212',
  'NULL',
  'Chloe',
  'NULL',
  'Campbell',
  '0',
  '1955-05-05',
  'M',
  'NULL',
  'F',
  'chloe4@adventure-works.com',
  '40000.00',
  '2',
  '1',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '3562 East Ave.',
  '# 4',
  '205-555-0169',
  '2013-01-30',
  '2-5 Miles'],
 ['11213',
  '614',
  'AW00011213',
  'NULL',
  'Stephanie',
  'B',
  'Murphy',
  '0',
  '1954-11-11',
  'S',
  'NULL',
  'F',
  'stephanie11@adventure-works.com',
  '60000.00',
  '2',
  '1',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '5514 Grant Street',
  'NULL',
  '293-555-0151',
  '2013-03-28',
  '10+ Miles'],
 ['11214',
  '545',
  'AW00011214',
  'NULL',
  'Charles',
  'O',
  'Miller',
  '0',
  '1955-05-07',
  'S',
  'NULL',
  'M',
  'charles9@adventure-works.com',
  '60000.00',
  '2',
  '1',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '2719 Little Dr',
  'NULL',
  '389-555-0115',
  '2013-08-14',
  '10+ Miles'],
 ['11215',
  '62',
  'AW00011215',
  'NULL',
  'Ana',
  'NULL',
  'Perry',
  '0',
  '1961-06-17',
  'M',
  'NULL',
  'F',
  'ana7@adventure-works.com',
  '40000.00',
  '2',
  '1',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '3114 Arlington Way',
  'NULL',
  '446-555-0134',
  '2013-02-15',
  '10+ Miles'],
 ['11216',
  '547',
  'AW00011216',
  'NULL',
  'Jasmine',
  'A',
  'Torres',
  '0',
  '1955-11-17',
  'S',
  'NULL',
  'F',
  'jasmine32@adventure-works.com',
  '60000.00',
  '2',
  '1',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '8328 San Francisco',
  'NULL',
  '939-555-0130',
  '2011-08-15',
  '10+ Miles'],
 ['11217',
  '547',
  'AW00011217',
  'NULL',
  'Natalie',
  'P',
  'Adams',
  '0',
  '1955-08-11',
  'S',
  'NULL',
  'F',
  'natalie58@adventure-works.com',
  '60000.00',
  '2',
  '1',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '6592 Bent Tree Lane',
  'NULL',
  '300-555-0150',
  '2011-08-10',
  '10+ Miles'],
 ['11218',
  '642',
  'AW00011218',
  'NULL',
  'Olivia',
  'NULL',
  'Brown',
  '0',
  '1961-09-07',
  'S',
  'NULL',
  'F',
  'olivia4@adventure-works.com',
  '60000.00',
  '2',
  '1',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '2',
  '3964 Stony Hill Circle',
  'NULL',
  '414-555-0147',
  '2013-02-28',
  '2-5 Miles'],
 ['11219',
  '553',
  'AW00011219',
  'NULL',
  'Charles',
  'NULL',
  'Cook',
  '0',
  '1956-05-31',
  'M',
  'NULL',
  'M',
  'charles69@adventure-works.com',
  '60000.00',
  '2',
  '1',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '6871 Bel Air Dr.',
  'NULL',
  '755-555-0111',
  '2013-10-29',
  '10+ Miles'],
 ['11220',
  '310',
  'AW00011220',
  'NULL',
  'Erica',
  'C',
  'Huang',
  '0',
  '1961-02-19',
  'M',
  'NULL',
  'F',
  'erica5@adventure-works.com',
  '60000.00',
  '2',
  '1',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '9142 All Ways Drive',
  'NULL',
  '618-555-0157',
  '2013-03-14',
  '10+ Miles'],
 ['11221',
  '334',
  'AW00011221',
  'NULL',
  'Nathan',
  'NULL',
  'Perry',
  '0',
  '1955-12-08',
  'M',
  'NULL',
  'M',
  'nathan3@adventure-works.com',
  '70000.00',
  '4',
  '2',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '9714 Nicholas Drive',
  'NULL',
  '271-555-0191',
  '2013-04-07',
  '1-2 Miles'],
 ['11222',
  '369',
  'AW00011222',
  'NULL',
  'Alexandra',
  'NULL',
  'Rivera',
  '0',
  '1956-02-14',
  'M',
  'NULL',
  'F',
  'alexandra11@adventure-works.com',
  '80000.00',
  '3',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '1',
  '4999 Corte Segunda',
  'NULL',
  '488-555-0143',
  '2013-11-01',
  '1-2 Miles'],
 ['11223',
  '52',
  'AW00011223',
  'NULL',
  'Hailey',
  'I',
  'Patterson',
  '0',
  '1957-03-15',
  'S',
  'NULL',
  'F',
  'hailey30@adventure-works.com',
  '70000.00',
  '2',
  '1',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '5045 Vancouver Way',
  '# 133',
  '480-555-0126',
  '2013-01-29',
  '2-5 Miles'],
 ['11224',
  '612',
  'AW00011224',
  'NULL',
  'Tiffany',
  'J',
  'Li',
  '0',
  '1957-03-05',
  'S',
  'NULL',
  'F',
  'tiffany3@adventure-works.com',
  '70000.00',
  '2',
  '1',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '6404 Del Mar Ave',
  'NULL',
  '197-555-0118',
  '2011-08-07',
  '10+ Miles'],
 ['11225',
  '635',
  'AW00011225',
  'NULL',
  'Madison',
  'D',
  'Lee',
  '0',
  '1962-02-12',
  'M',
  'NULL',
  'F',
  'madison22@adventure-works.com',
  '60000.00',
  '2',
  '1',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '5927 Seaview Avenue',
  'NULL',
  '471-555-0142',
  '2013-06-22',
  '10+ Miles'],
 ['11226',
  '552',
  'AW00011226',
  'NULL',
  'Sydney',
  'T',
  'Ross',
  '0',
  '1962-09-23',
  'M',
  'NULL',
  'F',
  'sydney26@adventure-works.com',
  '60000.00',
  '2',
  '1',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '5252 Santa Fe',
  'NULL',
  '219-555-0146',
  '2013-02-21',
  '2-5 Miles'],
 ['11227',
  '310',
  'AW00011227',
  'NULL',
  'Marshall',
  'D',
  'Chavez',
  '0',
  '1962-08-08',
  'S',
  'NULL',
  'M',
  'marshall35@adventure-works.com',
  '60000.00',
  '2',
  '1',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '9022 Estudillo Street',
  'NULL',
  '712-555-0116',
  '2011-08-03',
  '10+ Miles'],
 ['11228',
  '316',
  'AW00011228',
  'NULL',
  'Ashley',
  'R',
  'Jones',
  '0',
  '1956-10-16',
  'M',
  'NULL',
  'F',
  'ashley3@adventure-works.com',
  '60000.00',
  '2',
  '1',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '7681 Willow Pass Road',
  'NULL',
  '996-555-0169',
  '2013-10-25',
  '10+ Miles'],
 ['11229',
  '355',
  'AW00011229',
  'NULL',
  'Adrian',
  'C',
  'Stewart',
  '0',
  '1957-06-01',
  'S',
  'NULL',
  'M',
  'adrian21@adventure-works.com',
  '70000.00',
  '4',
  '2',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '6898 Shaw Rd.',
  'NULL',
  '812-555-0122',
  '2013-07-27',
  '10+ Miles'],
 ['11230',
  '369',
  'AW00011230',
  'NULL',
  'Amber',
  'NULL',
  'Turner',
  '0',
  '1956-09-30',
  'M',
  'NULL',
  'F',
  'amber4@adventure-works.com',
  '70000.00',
  '4',
  '2',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '2',
  '6345 Ridge Circle',
  'NULL',
  '155-555-0131',
  '2013-07-16',
  '2-5 Miles'],
 ['11231',
  '611',
  'AW00011231',
  'NULL',
  'Dennis',
  'NULL',
  'Zhang',
  '0',
  '1963-11-11',
  'M',
  'NULL',
  'M',
  'dennis1@adventure-works.com',
  '60000.00',
  '2',
  '1',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '3951 Calle Verde Drive',
  'NULL',
  '710-555-0134',
  '2013-02-10',
  '10+ Miles'],
 ['11232',
  '616',
  'AW00011232',
  'NULL',
  'Hailey',
  'R',
  'Bryant',
  '0',
  '1958-03-27',
  'M',
  'NULL',
  'F',
  'hailey38@adventure-works.com',
  '60000.00',
  '3',
  '1',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '2',
  '2828 Rogers Ave.',
  'NULL',
  '156-555-0195',
  '2013-09-20',
  '2-5 Miles'],
 ['11233',
  '299',
  'AW00011233',
  'NULL',
  'Todd',
  'NULL',
  'Li',
  '0',
  '1963-09-06',
  'M',
  'NULL',
  'M',
  'todd5@adventure-works.com',
  '70000.00',
  '4',
  '2',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '5897 Scottsdale Rd.',
  'NULL',
  '680-555-0147',
  '2013-02-08',
  '10+ Miles'],
 ['11234',
  '337',
  'AW00011234',
  'NULL',
  'Anna',
  'NULL',
  'Griffin',
  '0',
  '1958-05-19',
  'S',
  'NULL',
  'F',
  'anna46@adventure-works.com',
  '70000.00',
  '4',
  '2',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '7221 Peachwillow Street',
  'NULL',
  '965-555-0146',
  '2013-02-08',
  '10+ Miles'],
 ['11235',
  '607',
  'AW00011235',
  'NULL',
  'Angel',
  'J',
  'Stewart',
  '0',
  '1957-08-07',
  'M',
  'NULL',
  'M',
  'angel24@adventure-works.com',
  '70000.00',
  '4',
  '2',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '2585 La Salle Ct.',
  'NULL',
  '540-555-0122',
  '2013-07-04',
  '10+ Miles'],
 ['11236',
  '609',
  'AW00011236',
  'NULL',
  'Jeremy',
  'NULL',
  'Butler',
  '0',
  '1957-09-02',
  'S',
  'NULL',
  'M',
  'jeremy29@adventure-works.com',
  '70000.00',
  '5',
  '2',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '8811 The Trees Dr.',
  'NULL',
  '980-555-0117',
  '2013-10-03',
  '10+ Miles'],
 ['11237',
  '161',
  'AW00011237',
  'NULL',
  'Clarence',
  'M',
  'Anand',
  '0',
  '1964-03-22',
  'S',
  'NULL',
  'M',
  'clarence36@adventure-works.com',
  '130000.00',
  '2',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '0',
  '4',
  'Welt Platz 6',
  'NULL',
  '1 (11) 500 555-0191',
  '2011-09-05',
  '0-1 Miles'],
 ['11238',
  '232',
  'AW00011238',
  'NULL',
  'Mayra',
  'NULL',
  'Prasad',
  '0',
  '1964-02-07',
  'S',
  'NULL',
  'F',
  'mayra9@adventure-works.com',
  '130000.00',
  '2',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '0',
  '4',
  '1119 Elderwood Dr.',
  '#3',
  '1 (11) 500 555-0116',
  '2011-01-06',
  '0-1 Miles'],
 ['11239',
  '249',
  'AW00011239',
  'NULL',
  'Latoya',
  'C',
  'Goel',
  '0',
  '1969-10-02',
  'M',
  'NULL',
  'F',
  'latoya18@adventure-works.com',
  '130000.00',
  '2',
  '4',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '2',
  '8154 Pheasant Circle',
  'NULL',
  '1 (11) 500 555-0149',
  '2011-01-19',
  '5-10 Miles'],
 ['11240',
  '273',
  'AW00011240',
  'NULL',
  'Anne',
  'B',
  'Hernandez',
  '0',
  '1964-06-09',
  'M',
  'NULL',
  'F',
  'anne4@adventure-works.com',
  '160000.00',
  '2',
  '3',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '4',
  '76 Woodcrest Dr.',
  'NULL',
  '1 (11) 500 555-0119',
  '2011-02-27',
  '5-10 Miles'],
 ['11241',
  '211',
  'AW00011241',
  'NULL',
  'Lisa',
  'NULL',
  'Cai',
  '0',
  '1974-04-06',
  'S',
  'NULL',
  'F',
  'lisa24@adventure-works.com',
  '100000.00',
  '2',
  '3',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '4',
  '102, rue de Berri',
  'NULL',
  '1 (11) 500 555-0125',
  '2012-09-10',
  '5-10 Miles'],
 ['11242',
  '209',
  'AW00011242',
  'NULL',
  'Larry',
  'NULL',
  'Munoz',
  '0',
  '1963-05-11',
  'M',
  'NULL',
  'M',
  'larry9@adventure-works.com',
  '110000.00',
  '2',
  '4',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '3',
  'Midi-Couleurs',
  'NULL',
  '1 (11) 500 555-0193',
  '2012-09-19',
  '5-10 Miles'],
 ['11243',
  '237',
  'AW00011243',
  'NULL',
  'Robin',
  'V',
  'Alvarez',
  '0',
  '1963-04-08',
  'M',
  'NULL',
  'F',
  'robin2@adventure-works.com',
  '150000.00',
  '2',
  '3',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '3',
  '4086 Emmons Canyon Lane',
  'NULL',
  '1 (11) 500 555-0198',
  '2011-02-21',
  '0-1 Miles'],
 ['11244',
  '267',
  'AW00011244',
  'NULL',
  'Alexis',
  'M',
  'Coleman',
  '0',
  '1968-11-22',
  'S',
  'NULL',
  'F',
  'alexis28@adventure-works.com',
  '170000.00',
  '2',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '0',
  '3',
  '7140 Camelback Road',
  'NULL',
  '1 (11) 500 555-0115',
  '2011-02-12',
  '0-1 Miles'],
 ['11245',
  '132',
  'AW00011245',
  'NULL',
  'Ricky',
  'D',
  'Vazquez',
  '0',
  '1962-04-26',
  'M',
  'NULL',
  'M',
  'ricky15@adventure-works.com',
  '120000.00',
  '3',
  '4',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '4',
  'Roßstr 9928',
  'NULL',
  '1 (11) 500 555-0147',
  '2011-09-26',
  '5-10 Miles'],
 ['11246',
  '147',
  'AW00011246',
  'NULL',
  'Latasha',
  'NULL',
  'Rubio',
  '0',
  '1962-04-08',
  'M',
  'NULL',
  'F',
  'latasha21@adventure-works.com',
  '120000.00',
  '3',
  '4',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '4',
  'Alderstr 7690',
  'NULL',
  '1 (11) 500 555-0178',
  '2011-10-03',
  '5-10 Miles'],
 ['11247',
  '242',
  'AW00011247',
  'NULL',
  'Claudia',
  'M',
  'Zhou',
  '0',
  '1961-12-04',
  'S',
  'NULL',
  'F',
  'claudia7@adventure-works.com',
  '130000.00',
  '3',
  '4',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '3',
  '6516 Beauer Lane',
  'NULL',
  '1 (11) 500 555-0116',
  '2011-02-18',
  '0-1 Miles'],
 ['11248',
  '223',
  'AW00011248',
  'NULL',
  'Tristan',
  'P',
  'Alexander',
  '0',
  '1966-03-22',
  'M',
  'NULL',
  'M',
  'tristan19@adventure-works.com',
  '110000.00',
  '3',
  '4',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '4',
  '88, avenue des Champs-Elysées',
  'NULL',
  '1 (11) 500 555-0124',
  '2013-07-14',
  '10+ Miles'],
 ['11249',
  '178',
  'AW00011249',
  'NULL',
  'Cindy',
  'A',
  'Patel',
  '0',
  '1966-07-09',
  'M',
  'NULL',
  'F',
  'cindy3@adventure-works.com',
  '130000.00',
  '3',
  '4',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '3',
  'Essener Straße 123',
  'NULL',
  '1 (11) 500 555-0149',
  '2011-10-09',
  '0-1 Miles'],
 ['11250',
  '276',
  'AW00011250',
  'NULL',
  'Shannon',
  'D',
  'Liu',
  '0',
  '1966-03-08',
  'M',
  'NULL',
  'F',
  'shannon4@adventure-works.com',
  '170000.00',
  '3',
  '4',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '4185 Keywood Ct.',
  'NULL',
  '1 (11) 500 555-0119',
  '2011-03-17',
  '5-10 Miles'],
 ['11251',
  '50',
  'AW00011251',
  'NULL',
  'Xavier',
  'NULL',
  'Long',
  '0',
  '1938-01-01',
  'S',
  'NULL',
  'M',
  'xavier51@adventure-works.com',
  '30000.00',
  '4',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '2',
  '9245 Dantley Way',
  'NULL',
  '243-555-0114',
  '2013-10-18',
  '5-10 Miles'],
 ['11252',
  '335',
  'AW00011252',
  'NULL',
  'Nicholas',
  'D',
  'Thompson',
  '0',
  '1937-12-05',
  'S',
  'NULL',
  'M',
  'nicholas16@adventure-works.com',
  '90000.00',
  '3',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '1',
  '504 O St.',
  'NULL',
  '377-555-0147',
  '2011-08-14',
  '2-5 Miles'],
 ['11253',
  '69',
  'AW00011253',
  'NULL',
  'José',
  'M',
  'Hernandez',
  '0',
  '1949-08-24',
  'M',
  'NULL',
  'M',
  'josé54@adventure-works.com',
  '60000.00',
  '2',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '5703 Donald Dr.',
  'NULL',
  '712-555-0130',
  '2013-03-01',
  '1-2 Miles'],
 ['11254',
  '612',
  'AW00011254',
  'NULL',
  'Johnathan',
  'W',
  'Vance',
  '0',
  '1938-08-31',
  'M',
  'NULL',
  'M',
  'johnathan5@adventure-works.com',
  '70000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '9430 Versailles Pl',
  'NULL',
  '494-555-0166',
  '2013-11-23',
  '5-10 Miles'],
 ['11255',
  '612',
  'AW00011255',
  'NULL',
  'Colin',
  'NULL',
  'Lin',
  '0',
  '1938-10-02',
  'M',
  'NULL',
  'M',
  'colin8@adventure-works.com',
  '70000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '6083 San Jose',
  'NULL',
  '599-555-0132',
  '2013-02-23',
  '5-10 Miles'],
 ['11256',
  '626',
  'AW00011256',
  'NULL',
  'Katelyn',
  'L',
  'Hernandez',
  '0',
  '1939-03-20',
  'M',
  'NULL',
  'F',
  'katelyn42@adventure-works.com',
  '70000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '7496 Deerfield Dr.',
  'NULL',
  '249-555-0116',
  '2013-04-15',
  '5-10 Miles'],
 ['11257',
  '345',
  'AW00011257',
  'NULL',
  'Jacqueline',
  'NULL',
  'Powell',
  '0',
  '1938-07-06',
  'S',
  'NULL',
  'F',
  'jacqueline9@adventure-works.com',
  '120000.00',
  '1',
  '2',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '4',
  '4076 Northwood Dr',
  'NULL',
  '796-555-0111',
  '2011-08-24',
  '2-5 Miles'],
 ['11258',
  '352',
  'AW00011258',
  'NULL',
  'Xavier',
  'NULL',
  'Hill',
  '0',
  '1938-12-26',
  'M',
  'NULL',
  'M',
  'xavier26@adventure-works.com',
  '120000.00',
  '1',
  '2',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '4',
  '2707 Virgil Street',
  'NULL',
  '559-555-0149',
  '2013-05-21',
  '2-5 Miles'],
 ['11259',
  '548',
  'AW00011259',
  'NULL',
  'Victoria',
  'C',
  'Stewart',
  '0',
  '1970-09-24',
  'M',
  'NULL',
  'F',
  'victoria24@adventure-works.com',
  '100000.00',
  '4',
  '1',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '4',
  '3623 Barquentine Court',
  'NULL',
  '230-555-0139',
  '2011-09-04',
  '2-5 Miles'],
 ['11260',
  '302',
  'AW00011260',
  'NULL',
  'Katelyn',
  'L',
  'Kelly',
  '0',
  '1976-04-08',
  'M',
  'NULL',
  'F',
  'katelyn1@adventure-works.com',
  '110000.00',
  '2',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '3',
  '7085 Solano Drive',
  'NULL',
  '507-555-0132',
  '2013-02-05',
  '2-5 Miles'],
 ['11261',
  '359',
  'AW00011261',
  'NULL',
  'Stephanie',
  'NULL',
  'Collins',
  '0',
  '1970-10-22',
  'M',
  'NULL',
  'F',
  'stephanie52@adventure-works.com',
  '130000.00',
  '1',
  '2',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '1',
  '2868 Central Avenue',
  'NULL',
  '209-555-0173',
  '2011-09-27',
  '0-1 Miles'],
 ['11262',
  '60',
  'AW00011262',
  'NULL',
  'Jennifer',
  'NULL',
  'Simmons',
  '0',
  '1975-05-01',
  'M',
  'NULL',
  'F',
  'jennifer88@adventure-works.com',
  '80000.00',
  '4',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '0',
  '7959 Mt. Wilson Way',
  'NULL',
  '148-555-0115',
  '2013-02-27',
  '0-1 Miles'],
 ['11263',
  '612',
  'AW00011263',
  'NULL',
  'Trinity',
  'NULL',
  'Richardson',
  '0',
  '1970-03-11',
  'M',
  'NULL',
  'F',
  'trinity9@adventure-works.com',
  '90000.00',
  '5',
  '5',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '3',
  '3063 Blue Jay Drive',
  'NULL',
  '111-555-0116',
  '2011-08-29',
  '2-5 Miles'],
 ['11264',
  '618',
  'AW00011264',
  'NULL',
  'Eduardo',
  'NULL',
  'Martin',
  '0',
  '1969-12-15',
  'S',
  'NULL',
  'M',
  'eduardo13@adventure-works.com',
  '90000.00',
  '5',
  '5',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '3',
  '5137 Pheasant Court',
  'NULL',
  '342-555-0195',
  '2013-01-02',
  '0-1 Miles'],
 ['11265',
  '623',
  'AW00011265',
  'NULL',
  'Elizabeth',
  'P',
  'Jones',
  '0',
  '1970-01-10',
  'M',
  'NULL',
  'F',
  'elizabeth7@adventure-works.com',
  '90000.00',
  '5',
  '5',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '3',
  '2253 Firestone Dr.',
  'NULL',
  '941-555-0110',
  '2013-01-03',
  '0-1 Miles'],
 ['11266',
  '632',
  'AW00011266',
  'NULL',
  'Taylor',
  'NULL',
  'Howard',
  '0',
  '1969-11-02',
  'S',
  'NULL',
  'F',
  'taylor14@adventure-works.com',
  '90000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '7396 Stratton Circle',
  'NULL',
  '162-555-0131',
  '2011-09-10',
  '5-10 Miles'],
 ['11267',
  '302',
  'AW00011267',
  'NULL',
  'David',
  'NULL',
  'Diaz',
  '0',
  '1975-09-29',
  'S',
  'NULL',
  'M',
  'david55@adventure-works.com',
  '120000.00',
  '4',
  '2',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '4',
  '2075 Browse Ct',
  'NULL',
  '613-555-0119',
  '2011-09-17',
  '2-5 Miles'],
 ['11268',
  '312',
  'AW00011268',
  'NULL',
  'Katelyn',
  'A',
  'Carter',
  '0',
  '1969-10-31',
  'M',
  'NULL',
  'F',
  'katelyn33@adventure-works.com',
  '130000.00',
  '2',
  '2',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '3050 Monte Cresta Avenue',
  'NULL',
  '103-555-0195',
  '2013-05-29',
  '1-2 Miles'],
 ['11269',
  '314',
  'AW00011269',
  'NULL',
  'Ryan',
  'W',
  'Foster',
  '0',
  '1975-10-10',
  'M',
  'NULL',
  'M',
  'ryan19@adventure-works.com',
  '130000.00',
  '2',
  '2',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '5376 Sahara Drive',
  'NULL',
  '961-555-0133',
  '2013-08-22',
  '0-1 Miles'],
 ['11270',
  '334',
  'AW00011270',
  'NULL',
  'Robert',
  'L',
  'Lee',
  '0',
  '1975-05-01',
  'M',
  'NULL',
  'M',
  'robert82@adventure-works.com',
  '130000.00',
  '2',
  '2',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '3',
  '5461 Camino Verde Ct.',
  'NULL',
  '447-555-0174',
  '2011-09-10',
  '0-1 Miles'],
 ['11271',
  '360',
  'AW00011271',
  'NULL',
  'Danielle',
  'C',
  'Reed',
  '0',
  '1969-12-03',
  'S',
  'NULL',
  'F',
  'danielle23@adventure-works.com',
  '150000.00',
  '2',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '0',
  '4',
  '6683 Carrick Ct',
  'NULL',
  '136-555-0114',
  '2011-09-27',
  '1-2 Miles'],
 ['11272',
  '300',
  'AW00011272',
  'NULL',
  'Lauren',
  'L',
  'Martinez',
  '0',
  '1962-05-10',
  'S',
  'NULL',
  'F',
  'lauren35@adventure-works.com',
  '70000.00',
  '4',
  '3',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '4357 Tosca Way',
  'NULL',
  '977-555-0117',
  '2011-09-19',
  '5-10 Miles'],
 ['11273',
  '331',
  'AW00011273',
  'NULL',
  'Nathan',
  'E',
  'Lal',
  '0',
  '1962-03-31',
  'M',
  'NULL',
  'M',
  'nathan26@adventure-works.com',
  '90000.00',
  '2',
  '1',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '7064 Cypress Ave',
  'NULL',
  '147-555-0121',
  '2013-05-14',
  '10+ Miles'],
 ['11274',
  '609',
  'AW00011274',
  'NULL',
  'Kyle',
  'M',
  'Foster',
  '0',
  '1939-10-10',
  'M',
  'NULL',
  'M',
  'kyle11@adventure-works.com',
  '50000.00',
  '2',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '5617 Landing Dr',
  'NULL',
  '846-555-0126',
  '2011-08-29',
  '5-10 Miles'],
 ['11275',
  '310',
  'AW00011275',
  'NULL',
  'Jenny',
  'D',
  'Rai',
  '0',
  '1939-07-18',
  'M',
  'NULL',
  'F',
  'jenny40@adventure-works.com',
  '80000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '1440 Willow Pass Dr.',
  'NULL',
  '780-555-0119',
  '2011-08-30',
  '0-1 Miles'],
 ['11276',
  '49',
  'AW00011276',
  'NULL',
  'Nancy',
  'E',
  'Chapman',
  '0',
  '1974-09-15',
  'M',
  'NULL',
  'F',
  'nancy7@adventure-works.com',
  '80000.00',
  '4',
  '3',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '1480 Shoenic',
  'NULL',
  '909-555-0129',
  '2013-01-29',
  '2-5 Miles'],
 ['11277',
  '62',
  'AW00011277',
  'NULL',
  'Charles',
  'P',
  'Jackson',
  '0',
  '1968-12-07',
  'M',
  'NULL',
  'M',
  'charles15@adventure-works.com',
  '80000.00',
  '4',
  '3',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '3400 Folson Drive',
  'NULL',
  '194-555-0175',
  '2013-02-02',
  '0-1 Miles'],
 ['11278',
  '614',
  'AW00011278',
  'NULL',
  'Jonathan',
  'NULL',
  'Phillips',
  '0',
  '1969-02-16',
  'S',
  'NULL',
  'M',
  'jonathan35@adventure-works.com',
  '90000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '8772 Rock Creek Way',
  'NULL',
  '967-555-0176',
  '2011-09-16',
  '10+ Miles'],
 ['11279',
  '616',
  'AW00011279',
  'NULL',
  'Amanda',
  'S',
  'Cook',
  '0',
  '1974-09-08',
  'M',
  'NULL',
  'F',
  'amanda3@adventure-works.com',
  '90000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '9187 Vista Del Sol',
  'NULL',
  '252-555-0177',
  '2013-03-03',
  '10+ Miles'],
 ['11280',
  '626',
  'AW00011280',
  'NULL',
  'Robert',
  'NULL',
  'Collins',
  '0',
  '1969-02-17',
  'M',
  'NULL',
  'M',
  'robert45@adventure-works.com',
  '90000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '5271 Sierra Road',
  'NULL',
  '966-555-0171',
  '2013-07-01',
  '10+ Miles'],
 ['11281',
  '301',
  'AW00011281',
  'NULL',
  'Megan',
  'J',
  'Barnes',
  '0',
  '1974-10-06',
  'S',
  'NULL',
  'F',
  'megan53@adventure-works.com',
  '110000.00',
  '4',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '4',
  '40 Ellis St.',
  'NULL',
  '807-555-0156',
  '2011-09-13',
  '5-10 Miles'],
 ['11282',
  '612',
  'AW00011282',
  'NULL',
  'Christian',
  'A',
  'Thomas',
  '0',
  '1967-07-16',
  'M',
  'NULL',
  'M',
  'christian46@adventure-works.com',
  '90000.00',
  '5',
  '4',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '4',
  '5205 Coralie Drive',
  'NULL',
  '692-555-0172',
  '2011-08-31',
  '1-2 Miles'],
 ['11283',
  '299',
  'AW00011283',
  'NULL',
  'Arturo',
  'NULL',
  'Lal',
  '0',
  '1968-04-24',
  'M',
  'NULL',
  'M',
  'arturo33@adventure-works.com',
  '110000.00',
  '1',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '4593 Mendouno Dr.',
  'NULL',
  '638-555-0164',
  '2013-05-29',
  '1-2 Miles'],
 ['11284',
  '307',
  'AW00011284',
  'NULL',
  'Theresa',
  'NULL',
  'Serrano',
  '0',
  '1967-09-24',
  'M',
  'NULL',
  'F',
  'theresa12@adventure-works.com',
  '110000.00',
  '1',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '9007 S Royal Links Circle',
  'NULL',
  '777-555-0162',
  '2013-02-06',
  '1-2 Miles'],
 ['11285',
  '322',
  'AW00011285',
  'NULL',
  'Jeremy',
  'J',
  'Anderson',
  '0',
  '1973-03-15',
  'M',
  'NULL',
  'M',
  'jeremy2@adventure-works.com',
  '120000.00',
  '1',
  '3',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '4',
  '7655 Greer Ave',
  'NULL',
  '940-555-0176',
  '2013-07-27',
  '2-5 Miles'],
 ['11286',
  '374',
  'AW00011286',
  'NULL',
  'Hunter',
  'D',
  'Griffin',
  '0',
  '1967-08-31',
  'M',
  'NULL',
  'M',
  'hunter16@adventure-works.com',
  '170000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '4',
  '4079 Redbird Lane',
  'NULL',
  '410-555-0148',
  '2011-09-21',
  '2-5 Miles'],
 ['11287',
  '49',
  'AW00011287',
  'NULL',
  'Henry',
  'B',
  'Garcia',
  '0',
  '1966-07-16',
  'M',
  'NULL',
  'M',
  'henry16@adventure-works.com',
  '70000.00',
  '5',
  '4',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '3',
  '3268 Hazelwood Lane',
  'NULL',
  '282-555-0185',
  '2013-01-29',
  '5-10 Miles'],
 ['11288',
  '301',
  'AW00011288',
  'NULL',
  'Cindy',
  'K',
  'Sanchez',
  '0',
  '1978-03-12',
  'M',
  'NULL',
  'F',
  'cindy19@adventure-works.com',
  '110000.00',
  '1',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '3',
  '7062 Starflower Drive',
  'NULL',
  '198-555-0118',
  '2013-03-05',
  '2-5 Miles'],
 ['11289',
  '315',
  'AW00011289',
  'NULL',
  'Maria',
  'S',
  'Carter',
  '0',
  '1972-03-03',
  'M',
  'NULL',
  'F',
  'maria53@adventure-works.com',
  '130000.00',
  '1',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '1',
  '8603 Elmhurst Lane',
  'NULL',
  '239-555-0158',
  '2011-09-08',
  '0-1 Miles'],
 ['11290',
  '334',
  'AW00011290',
  'NULL',
  'Katelyn',
  'NULL',
  'Sanchez',
  '0',
  '1972-08-14',
  'M',
  'NULL',
  'F',
  'katelyn26@adventure-works.com',
  '130000.00',
  '1',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '3',
  '8869 Climbing Vine Court',
  'NULL',
  '395-555-0150',
  '2011-09-20',
  '2-5 Miles'],
 ['11291',
  '335',
  'AW00011291',
  'NULL',
  'Jenna',
  'NULL',
  'Wright',
  '0',
  '1972-05-01',
  'M',
  'NULL',
  'F',
  'jenna19@adventure-works.com',
  '130000.00',
  '1',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '3',
  '232 Pinnacle Drive',
  'NULL',
  '118-555-0191',
  '2011-09-04',
  '2-5 Miles'],
 ['11292',
  '361',
  'AW00011292',
  'NULL',
  'Seth',
  'NULL',
  'Phillips',
  '0',
  '1967-05-05',
  'S',
  'NULL',
  'M',
  'seth42@adventure-works.com',
  '150000.00',
  '1',
  '2',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '3',
  '4361 Loftus Road',
  'NULL',
  '980-555-0196',
  '2011-09-15',
  '0-1 Miles'],
 ['11293',
  '632',
  'AW00011293',
  'NULL',
  'Luke',
  'S',
  'Long',
  '0',
  '1960-11-23',
  'S',
  'NULL',
  'M',
  'luke28@adventure-works.com',
  '60000.00',
  '2',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '2',
  '3177 Dover Way',
  'NULL',
  '786-555-0117',
  '2013-02-24',
  '1-2 Miles'],
 ['11294',
  '618',
  'AW00011294',
  'NULL',
  'Dalton',
  'P',
  'Clark',
  '0',
  '1961-03-02',
  'M',
  'NULL',
  'M',
  'dalton18@adventure-works.com',
  '60000.00',
  '2',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '2',
  '4381 Amazonas',
  'NULL',
  '388-555-0195',
  '2013-09-25',
  '1-2 Miles'],
 ['11295',
  '311',
  'AW00011295',
  'NULL',
  'Taylor',
  'G',
  'Lewis',
  '0',
  '1959-11-13',
  'S',
  'NULL',
  'F',
  'taylor67@adventure-works.com',
  '80000.00',
  '2',
  '0',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '8827 Ward Court',
  'NULL',
  '291-555-0174',
  '2011-09-25',
  '5-10 Miles'],
 ['11296',
  '616',
  'AW00011296',
  'NULL',
  'Haley',
  'NULL',
  'Richardson',
  '0',
  '1941-04-05',
  'S',
  'NULL',
  'F',
  'haley10@adventure-works.com',
  '50000.00',
  '2',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '6203 Laurel Drive',
  'NULL',
  '620-555-0129',
  '2011-09-01',
  '5-10 Miles'],
 ['11297',
  '301',
  'AW00011297',
  'NULL',
  'Noah',
  'NULL',
  'Coleman',
  '0',
  '1940-08-01',
  'S',
  'NULL',
  'M',
  'noah2@adventure-works.com',
  '70000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '5562 Galindo Street',
  'NULL',
  '847-555-0167',
  '2011-09-26',
  '5-10 Miles'],
 ['11298',
  '307',
  'AW00011298',
  'NULL',
  'Jon',
  'NULL',
  'Luo',
  '0',
  '1940-08-30',
  'M',
  'NULL',
  'M',
  'jon46@adventure-works.com',
  '70000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '3560 River Rock Lane',
  'NULL',
  '127-555-0189',
  '2011-09-12',
  '1-2 Miles'],
 ['11299',
  '301',
  'AW00011299',
  'NULL',
  'Orlando',
  'E',
  'Vazquez',
  '0',
  '1941-09-29',
  'M',
  'NULL',
  'M',
  'orlando14@adventure-works.com',
  '70000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '8547 Catherine Way',
  'NULL',
  '757-555-0143',
  '2011-09-26',
  '1-2 Miles'],
 ['11300',
  '54',
  'AW00011300',
  'NULL',
  'Fernando',
  'NULL',
  'Barnes',
  '0',
  '1965-08-31',
  'M',
  'NULL',
  'M',
  'fernando47@adventure-works.com',
  '80000.00',
  '5',
  '4',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '3',
  '7633 Greenhills Circle',
  'NULL',
  '469-555-0125',
  '2013-01-31',
  '1-2 Miles'],
 ['11301',
  '607',
  'AW00011301',
  'NULL',
  'Cameron',
  'L',
  'Rodriguez',
  '0',
  '1965-12-07',
  'M',
  'NULL',
  'M',
  'cameron38@adventure-works.com',
  '80000.00',
  '5',
  '4',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '4',
  '1217 Mariposa',
  'NULL',
  '727-555-0119',
  '2013-06-09',
  '5-10 Miles'],
 ['11302',
  '539',
  'AW00011302',
  'NULL',
  'Spencer',
  'NULL',
  'Russell',
  '0',
  '1971-12-09',
  'S',
  'NULL',
  'M',
  'spencer22@adventure-works.com',
  '90000.00',
  '4',
  '3',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '3',
  '2396 Mink Court',
  'NULL',
  '834-555-0131',
  '2011-09-06',
  '1-2 Miles'],
 ['11303',
  '614',
  'AW00011303',
  'NULL',
  'Julia',
  'NULL',
  'Coleman',
  '0',
  '1966-04-10',
  'S',
  'NULL',
  'F',
  'julia72@adventure-works.com',
  '90000.00',
  '4',
  '3',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '3',
  '3128 Ramsey Circle',
  'NULL',
  '907-555-0170',
  '2011-09-02',
  '1-2 Miles'],
 ['11304',
  '547',
  'AW00011304',
  'NULL',
  'Julia',
  'B',
  'Garcia',
  '0',
  '1971-03-14',
  'M',
  'NULL',
  'F',
  'julia38@adventure-works.com',
  '100000.00',
  '0',
  '3',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '6179 Mt. Hamilton Dr.',
  'NULL',
  '923-555-0183',
  '2013-03-20',
  '5-10 Miles'],
 ['11305',
  '307',
  'AW00011305',
  'NULL',
  'Sean',
  'A',
  'Evans',
  '0',
  '1965-12-17',
  'M',
  'NULL',
  'M',
  'sean31@adventure-works.com',
  '110000.00',
  '3',
  '3',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '4',
  '7118 Elliott Dr.',
  'NULL',
  '791-555-0174',
  '2013-03-25',
  '2-5 Miles'],
 ['11306',
  '312',
  'AW00011306',
  'NULL',
  'Micah',
  'A',
  'Zhou',
  '0',
  '1965-12-20',
  'M',
  'NULL',
  'M',
  'micah19@adventure-works.com',
  '110000.00',
  '3',
  '3',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '4',
  '6105 Brownstone Rd',
  'NULL',
  '497-555-0185',
  '2013-06-30',
  '2-5 Miles'],
 ['11307',
  '314',
  'AW00011307',
  'NULL',
  'Hunter',
  'P',
  'Rodriguez',
  '0',
  '1965-10-31',
  'M',
  'NULL',
  'M',
  'hunter53@adventure-works.com',
  '80000.00',
  '2',
  '0',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '4343 Cook Street',
  'NULL',
  '996-555-0142',
  '2011-09-04',
  '5-10 Miles'],
 ['11308',
  '546',
  'AW00011308',
  'NULL',
  'Ian',
  'T',
  'Gonzales',
  '0',
  '1959-09-02',
  'M',
  'NULL',
  'M',
  'ian57@adventure-works.com',
  '60000.00',
  '2',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '2',
  '7122 Athene Dr.',
  'NULL',
  '904-555-0153',
  '2013-09-07',
  '1-2 Miles'],
 ['11309',
  '536',
  'AW00011309',
  'NULL',
  'Victoria',
  'NULL',
  'Lewis',
  '0',
  '1959-12-10',
  'S',
  'NULL',
  'F',
  'victoria20@adventure-works.com',
  '60000.00',
  '2',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '4426 Tanager Road',
  'NULL',
  '586-555-0191',
  '2013-07-09',
  '5-10 Miles'],
 ['11310',
  '360',
  'AW00011310',
  'NULL',
  'Erin',
  'A',
  'Sanders',
  '0',
  '1964-07-05',
  'S',
  'NULL',
  'F',
  'erin7@adventure-works.com',
  '70000.00',
  '3',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '7541 Black Point Pl',
  'NULL',
  '233-555-0160',
  '2013-08-12',
  '5-10 Miles'],
 ['11311',
  '626',
  'AW00011311',
  'NULL',
  'Gabrielle',
  'D',
  'Lopez',
  '0',
  '1959-02-21',
  'S',
  'NULL',
  'F',
  'gabrielle63@adventure-works.com',
  '70000.00',
  '3',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '0',
  '2',
  '8619 Parkside Dr.',
  'NULL',
  '783-555-0174',
  '2013-04-18',
  '1-2 Miles'],
 ['11312',
  '626',
  'AW00011312',
  'NULL',
  'Sara',
  'NULL',
  'Richardson',
  '0',
  '1958-10-01',
  'S',
  'NULL',
  'F',
  'sara10@adventure-works.com',
  '70000.00',
  '3',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '7375 Kipling Court',
  'NULL',
  '296-555-0174',
  '2013-05-17',
  '5-10 Miles'],
 ['11313',
  '632',
  'AW00011313',
  'NULL',
  'Trevor',
  'NULL',
  'Jenkins',
  '0',
  '1958-08-27',
  'S',
  'NULL',
  'M',
  'trevor6@adventure-works.com',
  '70000.00',
  '3',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '4697 Yosemite Dr.',
  'NULL',
  '120-555-0129',
  '2013-05-07',
  '5-10 Miles'],
 ['11314',
  '618',
  'AW00011314',
  'NULL',
  'Mya',
  'NULL',
  'Flores',
  '0',
  '1970-06-16',
  'S',
  'NULL',
  'F',
  'mya13@adventure-works.com',
  '70000.00',
  '3',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '0',
  '2',
  '8439 Rio Grande Drive',
  'Unit A',
  '522-555-0140',
  '2013-02-25',
  '1-2 Miles'],
 ['11315',
  '632',
  'AW00011315',
  'NULL',
  'Hailey',
  'J',
  'Ward',
  '0',
  '1959-03-31',
  'S',
  'NULL',
  'F',
  'hailey12@adventure-works.com',
  '70000.00',
  '3',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '0',
  '2',
  '6321 Maya',
  'NULL',
  '767-555-0151',
  '2013-05-20',
  '1-2 Miles'],
 ['11316',
  '51',
  'AW00011316',
  'NULL',
  'Luke',
  'NULL',
  'Allen',
  '0',
  '1959-05-17',
  'M',
  'NULL',
  'M',
  'luke52@adventure-works.com',
  '60000.00',
  '3',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '419 Deermeadow Way',
  'NULL',
  '786-555-0133',
  '2013-01-12',
  '5-10 Miles'],
 ['11317',
  '548',
  'AW00011317',
  'NULL',
  'Victoria',
  'D',
  'Russell',
  '0',
  '1963-09-14',
  'S',
  'NULL',
  'F',
  'victoria66@adventure-works.com',
  '40000.00',
  '3',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '2',
  '9268 Keller Ridge',
  'NULL',
  '663-555-0197',
  '2011-09-01',
  '5-10 Miles'],
 ['11318',
  '614',
  'AW00011318',
  'NULL',
  'Jessica',
  'NULL',
  'Wilson',
  '0',
  '1958-04-25',
  'S',
  'NULL',
  'F',
  'jessica54@adventure-works.com',
  '40000.00',
  '3',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '2',
  '1652 Willcrest Circle',
  'NULL',
  '702-555-0180',
  '2013-10-17',
  '1-2 Miles'],
 ['11319',
  '348',
  'AW00011319',
  'NULL',
  'Jade',
  'E',
  'Bailey',
  '0',
  '1948-04-23',
  'M',
  'NULL',
  'F',
  'jade13@adventure-works.com',
  '70000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '0',
  '2',
  '8119 Northridge Ct',
  '# 1',
  '819-555-0160',
  '2011-09-09',
  '1-2 Miles'],
 ['11320',
  '325',
  'AW00011320',
  'NULL',
  'Morgan',
  'M',
  'Hill',
  '0',
  '1942-12-24',
  'M',
  'NULL',
  'F',
  'morgan19@adventure-works.com',
  '80000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '6951 Harmony Way',
  'NULL',
  '510-555-0120',
  '2013-06-15',
  '5-10 Miles'],
 ['11321',
  '612',
  'AW00011321',
  'NULL',
  'Terrance',
  'D',
  'Raman',
  '0',
  '1944-01-05',
  'M',
  'NULL',
  'M',
  'terrance9@adventure-works.com',
  '90000.00',
  '5',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '2297 Via Valencia',
  'NULL',
  '879-555-0124',
  '2013-02-23',
  '5-10 Miles'],
 ['11322',
  '611',
  'AW00011322',
  'NULL',
  'Sydney',
  'NULL',
  'Garcia',
  '0',
  '1943-09-12',
  'M',
  'NULL',
  'F',
  'sydney78@adventure-works.com',
  '90000.00',
  '5',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '252 Hemlock Drive',
  'NULL',
  '783-555-0116',
  '2013-03-24',
  '5-10 Miles'],
 ['11323',
  '314',
  'AW00011323',
  'NULL',
  'Jose',
  'NULL',
  'Patterson',
  '0',
  '1943-12-18',
  'S',
  'NULL',
  'M',
  'jose33@adventure-works.com',
  '120000.00',
  '2',
  '4',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '3',
  '648 Newport Drive',
  'NULL',
  '768-555-0153',
  '2011-09-10',
  '5-10 Miles'],
 ['11324',
  '325',
  'AW00011324',
  'NULL',
  'Zachary',
  'NULL',
  'Anderson',
  '0',
  '1944-11-10',
  'M',
  'NULL',
  'M',
  'zachary39@adventure-works.com',
  '90000.00',
  '5',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '2476 Mt. Whitney Way',
  'NULL',
  '693-555-0118',
  '2011-09-26',
  '1-2 Miles'],
 ['11325',
  '637',
  'AW00011325',
  'NULL',
  'Elijah',
  'E',
  'Ross',
  '0',
  '1944-12-29',
  'S',
  'NULL',
  'M',
  'elijah7@adventure-works.com',
  '90000.00',
  '5',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '6679 Cornelius Dr',
  'NULL',
  '409-555-0142',
  '2011-09-19',
  '5-10 Miles'],
 ['11326',
  '300',
  'AW00011326',
  'NULL',
  'Rafael',
  'M',
  'Xie',
  '0',
  '1944-12-23',
  'M',
  'NULL',
  'M',
  'rafael26@adventure-works.com',
  '130000.00',
  '2',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '4',
  '369 Peabody Road',
  'NULL',
  '663-555-0137',
  '2011-09-15',
  '0-1 Miles'],
 ['11327',
  '301',
  'AW00011327',
  'NULL',
  'Jaime',
  'C',
  'Moreno',
  '0',
  '1945-09-01',
  'M',
  'NULL',
  'M',
  'jaime48@adventure-works.com',
  '90000.00',
  '5',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '83 Mountain View Blvd',
  'NULL',
  '457-555-0178',
  '2011-09-26',
  '5-10 Miles'],
 ['11328',
  '55',
  'AW00011328',
  'NULL',
  'Julian',
  'M',
  'Griffin',
  '0',
  '1945-06-30',
  'M',
  'NULL',
  'M',
  'julian20@adventure-works.com',
  '90000.00',
  '5',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '7398 Withersed Lane',
  'NULL',
  '636-555-0197',
  '2013-01-05',
  '5-10 Miles'],
 ['11329',
  '311',
  'AW00011329',
  'NULL',
  'Andy',
  'NULL',
  'Alvarez',
  '0',
  '1946-01-22',
  'S',
  'NULL',
  'M',
  'andy9@adventure-works.com',
  '90000.00',
  '5',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '9466 Morning Glory Dr.',
  'NULL',
  '367-555-0172',
  '2011-09-25',
  '5-10 Miles'],
 ['11330',
  '59',
  'AW00011330',
  'NULL',
  'Ryan',
  'M',
  'Thompson',
  '0',
  '1945-11-10',
  'M',
  'NULL',
  'M',
  'ryan38@adventure-works.com',
  '110000.00',
  '2',
  '4',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '1',
  '3407 Pinon Dr.',
  'NULL',
  '138-555-0142',
  '2013-02-12',
  '2-5 Miles'],
 ['11331',
  '63',
  'AW00011331',
  'NULL',
  'Samantha',
  'NULL',
  'Jenkins',
  '0',
  '1974-01-03',
  'M',
  'NULL',
  'F',
  'samantha32@adventure-works.com',
  '90000.00',
  '4',
  '4',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '1046 Cloverleaf Circle',
  'NULL',
  '936-555-0152',
  '2013-02-07',
  '1-2 Miles'],
 ['11332',
  '153',
  'AW00011332',
  'NULL',
  'Deanna',
  'D',
  'Ramos',
  '0',
  '1968-04-02',
  'S',
  'NULL',
  'F',
  'deanna44@adventure-works.com',
  '10000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '0',
  'Roßstr 9938',
  'NULL',
  '1 (11) 500 555-0138',
  '2011-10-15',
  '0-1 Miles'],
 ['11333',
  '261',
  'AW00011333',
  'NULL',
  'Emily',
  'R',
  'Miller',
  '0',
  '1968-01-07',
  'M',
  'NULL',
  'F',
  'emily6@adventure-works.com',
  '20000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '9075 Calle Verde',
  'NULL',
  '1 (11) 500 555-0110',
  '2011-03-21',
  '0-1 Miles'],
 ['11334',
  '269',
  'AW00011334',
  'NULL',
  'Nicole',
  'NULL',
  'Brown',
  '0',
  '1966-09-19',
  'M',
  'NULL',
  'F',
  'nicole4@adventure-works.com',
  '10000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '0',
  '1135 W St.',
  'NULL',
  '1 (11) 500 555-0187',
  '2011-03-04',
  '0-1 Miles'],
 ['11335',
  '120',
  'AW00011335',
  'NULL',
  'Carla',
  'L',
  'Raman',
  '0',
  '1977-12-18',
  'M',
  'NULL',
  'F',
  'carla14@adventure-works.com',
  '10000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '0',
  'Winterfeldtstr 255',
  'NULL',
  '1 (11) 500 555-0124',
  '2011-10-23',
  '0-1 Miles'],
 ['11336',
  '204',
  'AW00011336',
  'NULL',
  'Shaun',
  'NULL',
  'Raji',
  '0',
  '1973-03-08',
  'M',
  'NULL',
  'M',
  'shaun21@adventure-works.com',
  '20000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '44, rue du Départ',
  'NULL',
  '1 (11) 500 555-0122',
  '2012-09-27',
  '0-1 Miles'],
 ['11337',
  '273',
  'AW00011337',
  'NULL',
  'Jerome',
  'NULL',
  'Romero',
  '0',
  '1967-03-21',
  'M',
  'NULL',
  'M',
  'jerome7@adventure-works.com',
  '10000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '0',
  '7289 Brookview Dr.',
  'NULL',
  '1 (11) 500 555-0112',
  '2011-03-09',
  '0-1 Miles'],
 ['11338',
  '154',
  'AW00011338',
  'NULL',
  'Frank',
  'F',
  'Navarro',
  '0',
  '1972-08-06',
  'M',
  'NULL',
  'M',
  'frank17@adventure-works.com',
  '20000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  'Buergermeister-ulrich-str 2987',
  'NULL',
  '1 (11) 500 555-0139',
  '2011-10-11',
  '0-1 Miles'],
 ['11339',
  '202',
  'AW00011339',
  'NULL',
  'Dennis',
  'M',
  'She',
  '0',
  '1967-01-05',
  'S',
  'NULL',
  'M',
  'dennis25@adventure-works.com',
  '20000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '828, rue de Berri',
  'NULL',
  '1 (11) 500 555-0141',
  '2012-10-07',
  '0-1 Miles'],
 ['11340',
  '192',
  'AW00011340',
  'NULL',
  'Melody',
  'C',
  'Munoz',
  '0',
  '1947-04-03',
  'M',
  'NULL',
  'F',
  'melody8@adventure-works.com',
  '10000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '9, avenue Reille',
  'NULL',
  '1 (11) 500 555-0147',
  '2012-10-27',
  '0-1 Miles'],
 ['11341',
  '236',
  'AW00011341',
  'NULL',
  'Randy',
  'A',
  'Zeng',
  '0',
  '1942-02-18',
  'M',
  'NULL',
  'M',
  'randy24@adventure-works.com',
  '20000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '2334 Brandywine Way',
  'NULL',
  '1 (11) 500 555-0144',
  '2011-04-11',
  '0-1 Miles'],
 ['11342',
  '191',
  'AW00011342',
  'NULL',
  'Marshall',
  'L',
  'Wang',
  '0',
  '1973-03-07',
  'M',
  'NULL',
  'M',
  'marshall0@adventure-works.com',
  '30000.00',
  '5',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '68062, rue des Grands Champs',
  'NULL',
  '1 (11) 500 555-0161',
  '2013-07-12',
  '0-1 Miles'],
 ['11343',
  '264',
  'AW00011343',
  'NULL',
  'Arthur',
  'P',
  'Carlson',
  '0',
  '1975-03-09',
  'M',
  'NULL',
  'M',
  'arthur41@adventure-works.com',
  '10000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '0',
  '6507 Fieldcrest Dr.',
  'NULL',
  '1 (11) 500 555-0166',
  '2011-04-04',
  '0-1 Miles'],
 ['11344',
  '262',
  'AW00011344',
  'NULL',
  'Jessie',
  'NULL',
  'Jimenez',
  '0',
  '1963-01-21',
  'M',
  'NULL',
  'F',
  'jessie3@adventure-works.com',
  '10000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '0',
  '5723 C Wharton Way',
  'NULL',
  '1 (11) 500 555-0193',
  '2011-05-13',
  '0-1 Miles'],
 ['11345',
  '224',
  'AW00011345',
  'NULL',
  'Robin',
  'NULL',
  'Ramos',
  '0',
  '1962-09-09',
  'S',
  'NULL',
  'F',
  'robin13@adventure-works.com',
  '10000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '0',
  '6, rue de l´Esplanade',
  'NULL',
  '1 (11) 500 555-0111',
  '2012-10-22',
  '0-1 Miles'],
 ['11346',
  '196',
  'AW00011346',
  'NULL',
  'Deanna',
  'E',
  'Gutierrez',
  '0',
  '1966-05-18',
  'S',
  'NULL',
  'F',
  'deanna37@adventure-works.com',
  '10000.00',
  '2',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '1',
  'Attaché de Presse',
  'Place d´ Armes',
  '1 (11) 500 555-0112',
  '2012-10-01',
  '0-1 Miles'],
 ['11347',
  '156',
  'AW00011347',
  'NULL',
  'Roy',
  'T',
  'Navarro',
  '0',
  '1972-06-17',
  'M',
  'NULL',
  'M',
  'roy30@adventure-works.com',
  '10000.00',
  '2',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '1',
  'Viktoria-Luise-Platz 43',
  'NULL',
  '1 (11) 500 555-0137',
  '2013-03-16',
  '0-1 Miles'],
 ['11348',
  '151',
  'AW00011348',
  'NULL',
  'Shawn',
  'NULL',
  'Rai',
  '0',
  '1961-03-21',
  'M',
  'NULL',
  'M',
  'shawn19@adventure-works.com',
  '10000.00',
  '2',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '1',
  'Westheimer Straße 7606',
  'NULL',
  '1 (11) 500 555-0117',
  '2013-03-31',
  '0-1 Miles'],
 ['11349',
  '134',
  'AW00011349',
  'NULL',
  'Mindy',
  'J',
  'Luo',
  '0',
  '1965-08-30',
  'M',
  'NULL',
  'F',
  'mindy10@adventure-works.com',
  '10000.00',
  '2',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '1',
  'Brunnenstr 7566',
  'Verkaufsabteilung',
  '1 (11) 500 555-0194',
  '2014-01-13',
  '2-5 Miles'],
 ['11350',
  '265',
  'AW00011350',
  'NULL',
  'Cara',
  'NULL',
  'Zhou',
  '0',
  '1942-07-14',
  'M',
  'NULL',
  'F',
  'cara5@adventure-works.com',
  '30000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '7280 Greendell Pl',
  'NULL',
  '1 (11) 500 555-0118',
  '2013-02-05',
  '0-1 Miles'],
 ['11351',
  '253',
  'AW00011351',
  'NULL',
  'Anne',
  'R',
  'Ramos',
  '0',
  '1950-04-02',
  'S',
  'NULL',
  'F',
  'anne19@adventure-works.com',
  '20000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '7113 Eastgate Ave.',
  'NULL',
  '1 (11) 500 555-0148',
  '2011-06-12',
  '0-1 Miles'],
 ['11352',
  '222',
  'AW00011352',
  'NULL',
  'Raymond',
  'A',
  'Rodriguez',
  '0',
  '1945-09-04',
  'M',
  'NULL',
  'M',
  'raymond20@adventure-works.com',
  '10000.00',
  '2',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '1',
  '24, impasse Ste-Madeleine',
  'NULL',
  '1 (11) 500 555-0131',
  '2013-05-01',
  '0-1 Miles'],
 ['11353',
  '271',
  'AW00011353',
  'NULL',
  'Carrie',
  'L',
  'Ortega',
  '0',
  '1946-12-09',
  'S',
  'NULL',
  'F',
  'carrie19@adventure-works.com',
  '30000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '1883 Cowell Rd.',
  'NULL',
  '1 (11) 500 555-0111',
  '2011-06-12',
  '0-1 Miles'],
 ['11354',
  '119',
  'AW00011354',
  'NULL',
  'Deanna',
  'NULL',
  'Suarez',
  '0',
  '1947-08-23',
  'M',
  'NULL',
  'F',
  'deanna45@adventure-works.com',
  '20000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '0',
  'Dunckerstr 22525',
  'NULL',
  '1 (11) 500 555-0146',
  '2013-12-03',
  '0-1 Miles'],
 ['11355',
  '275',
  'AW00011355',
  'NULL',
  'Roberto',
  'NULL',
  'Gutierrez',
  '0',
  '1948-06-26',
  'M',
  'NULL',
  'M',
  'roberto11@adventure-works.com',
  '40000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '3545 Chickpea Ct.',
  'NULL',
  '1 (11) 500 555-0124',
  '2013-09-26',
  '0-1 Miles'],
 ['11356',
  '6',
  'AW00011356',
  'NULL',
  'Terrence',
  'NULL',
  'Carson',
  '0',
  '1985-11-24',
  'S',
  'NULL',
  'M',
  'terrence15@adventure-works.com',
  '10000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '1',
  '6613 Thornhill Place',
  'NULL',
  '1 (11) 500 555-0189',
  '2011-05-10',
  '2-5 Miles'],
 ['11357',
  '21',
  'AW00011357',
  'NULL',
  'Ramon',
  'NULL',
  'Ye',
  '0',
  '1984-09-19',
  'S',
  'NULL',
  'M',
  'ramon9@adventure-works.com',
  '10000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '1',
  '3245 Vista Oak Dr.',
  'NULL',
  '1 (11) 500 555-0143',
  '2011-06-18',
  '2-5 Miles'],
 ['11358',
  '2',
  'AW00011358',
  'NULL',
  'Cynthia',
  'NULL',
  'Malhotra',
  '0',
  '1984-05-10',
  'S',
  'NULL',
  'F',
  'cynthia9@adventure-works.com',
  '10000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '1',
  '6757 Pamplona Ct.',
  'NULL',
  '1 (11) 500 555-0187',
  '2011-06-28',
  '0-1 Miles'],
 ['11359',
  '7',
  'AW00011359',
  'NULL',
  'Jarrod',
  'NULL',
  'Prasad',
  '0',
  '1984-03-03',
  'S',
  'NULL',
  'M',
  'jarrod9@adventure-works.com',
  '10000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '1',
  '7657 H St.',
  'NULL',
  '1 (11) 500 555-0154',
  '2011-06-13',
  '0-1 Miles'],
 ['11360',
  '26',
  'AW00011360',
  'NULL',
  'Tyrone',
  'NULL',
  'Serrano',
  '0',
  '1984-01-30',
  'S',
  'NULL',
  'M',
  'tyrone15@adventure-works.com',
  '10000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '1',
  '3767 View Dr.',
  'NULL',
  '1 (11) 500 555-0176',
  '2011-06-27',
  '2-5 Miles'],
 ['11361',
  '10',
  'AW00011361',
  'NULL',
  'Cindy',
  'G',
  'Ramos',
  '0',
  '1982-10-26',
  'M',
  'NULL',
  'F',
  'cindy22@adventure-works.com',
  '10000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '2',
  '6565 Jamie Way',
  'NULL',
  '1 (11) 500 555-0173',
  '2013-10-01',
  '0-1 Miles'],
 ['11362',
  '33',
  'AW00011362',
  'NULL',
  'Damien',
  'M',
  'Shan',
  '0',
  '1983-05-11',
  'M',
  'NULL',
  'M',
  'damien26@adventure-works.com',
  '10000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '2',
  '5312 Riverwood Circle',
  'NULL',
  '1 (11) 500 555-0142',
  '2013-03-29',
  '0-1 Miles'],
 ['11363',
  '35',
  'AW00011363',
  'NULL',
  'Julian',
  'NULL',
  'Ross',
  '0',
  '1983-04-19',
  'S',
  'NULL',
  'M',
  'julian5@adventure-works.com',
  '10000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '2',
  '3346 Larkwood Ct.',
  'NULL',
  '1 (11) 500 555-0126',
  '2011-06-08',
  '0-1 Miles'],
 ['11364',
  '34',
  'AW00011364',
  'NULL',
  'Jennifer',
  'NULL',
  'Collins',
  '0',
  '1985-03-22',
  'S',
  'NULL',
  'F',
  'jennifer6@adventure-works.com',
  '10000.00',
  '1',
  '1',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '0',
  '4536 Killdeer Court',
  'NULL',
  '1 (11) 500 555-0196',
  '2011-06-07',
  '2-5 Miles'],
 ['11365',
  '29',
  'AW00011365',
  'NULL',
  'Brittney',
  'NULL',
  'Sun',
  '0',
  '1984-12-06',
  'S',
  'NULL',
  'F',
  'brittney12@adventure-works.com',
  '10000.00',
  '1',
  '1',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '0',
  '8856 Mt. Wilson Way',
  'NULL',
  '1 (11) 500 555-0155',
  '2011-05-31',
  '1-2 Miles'],
 ['11366',
  '37',
  'AW00011366',
  'NULL',
  'Virginia',
  'R',
  'Patel',
  '0',
  '1985-04-23',
  'M',
  'NULL',
  'F',
  'virginia4@adventure-works.com',
  '20000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '3118 Creekside Drive',
  'NULL',
  '1 (11) 500 555-0146',
  '2013-06-24',
  '0-1 Miles'],
 ['11367',
  '12',
  'AW00011367',
  'NULL',
  'Calvin',
  'J',
  'Nara',
  '0',
  '1984-08-21',
  'M',
  'NULL',
  'M',
  'calvin15@adventure-works.com',
  '20000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '5795 Morning Glory Dr.',
  'NULL',
  '1 (11) 500 555-0193',
  '2013-07-07',
  '0-1 Miles'],
 ['11368',
  '26',
  'AW00011368',
  'NULL',
  'Edward',
  'NULL',
  'Miller',
  '0',
  '1984-05-24',
  'S',
  'NULL',
  'M',
  'edward28@adventure-works.com',
  '10000.00',
  '1',
  '1',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '0',
  '598 Limeridge Drive',
  'NULL',
  '1 (11) 500 555-0151',
  '2011-06-24',
  '1-2 Miles'],
 ['11369',
  '29',
  'AW00011369',
  'NULL',
  'Ashlee',
  'D',
  'Tang',
  '0',
  '1984-02-01',
  'M',
  'NULL',
  'F',
  'ashlee11@adventure-works.com',
  '20000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Clerical',
  'Administrativo',
  'Employé',
  '0',
  '0',
  '4111 Vista Diablo',
  'NULL',
  '1 (11) 500 555-0187',
  '2013-07-05',
  '0-1 Miles'],
 ['11370',
  '38',
  'AW00011370',
  'NULL',
  'Alicia',
  'NULL',
  'Xu',
  '0',
  '1983-09-29',
  'M',
  'NULL',
  'F',
  'alicia3@adventure-works.com',
  '20000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '3743 Grenadine Way',
  'NULL',
  '1 (11) 500 555-0113',
  '2013-07-13',
  '0-1 Miles'],
 ['11371',
  '26',
  'AW00011371',
  'NULL',
  'Lacey',
  'C',
  'Jai',
  '0',
  '1983-11-24',
  'M',
  'NULL',
  'F',
  'lacey1@adventure-works.com',
  '20000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '6208 Prestwick Dr.',
  'NULL',
  '1 (11) 500 555-0149',
  '2013-11-07',
  '0-1 Miles'],
 ['11372',
  '20',
  'AW00011372',
  'NULL',
  'Wendy',
  'H',
  'Romero',
  '0',
  '1983-11-12',
  'S',
  'NULL',
  'F',
  'wendy8@adventure-works.com',
  '20000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '24 San Vincente Drive',
  'NULL',
  '1 (11) 500 555-0114',
  '2011-06-07',
  '0-1 Miles'],
 ['11373',
  '135',
  'AW00011373',
  'NULL',
  'Carly',
  'H',
  'Luo',
  '0',
  '1954-09-16',
  'M',
  'NULL',
  'F',
  'carly5@adventure-works.com',
  '30000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  'Hellweg 4644',
  'NULL',
  '1 (11) 500 555-0138',
  '2013-08-27',
  '0-1 Miles'],
 ['11374',
  '162',
  'AW00011374',
  'NULL',
  'Jimmy',
  'M',
  'Ortega',
  '0',
  '1948-12-25',
  'S',
  'NULL',
  'M',
  'jimmy26@adventure-works.com',
  '30000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  'Postfach 11 11 22',
  'NULL',
  '1 (11) 500 555-0183',
  '2013-04-15',
  '0-1 Miles'],
 ['11375',
  '240',
  'AW00011375',
  'NULL',
  'Francisco',
  'NULL',
  'Martinez',
  '0',
  '1948-11-05',
  'M',
  'NULL',
  'M',
  'francisco19@adventure-works.com',
  '30000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '5508 Glenmount Dr.',
  'NULL',
  '1 (11) 500 555-0119',
  '2013-10-17',
  '0-1 Miles'],
 ['11376',
  '268',
  'AW00011376',
  'NULL',
  'Lance',
  'NULL',
  'Vazquez',
  '0',
  '1948-12-07',
  'S',
  'NULL',
  'M',
  'lance14@adventure-works.com',
  '40000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '9159 Shepberry Court',
  'NULL',
  '1 (11) 500 555-0112',
  '2013-10-15',
  '0-1 Miles'],
 ['11377',
  '161',
  'AW00011377',
  'Mr.',
  'David',
  'R.',
  'Robinett',
  '0',
  '1966-08-23',
  'M',
  'NULL',
  'M',
  'david22@adventure-works.com',
  '30000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  'Pappelallee 6667',
  'NULL',
  '238-555-0100',
  '2013-02-28',
  '0-1 Miles'],
 ['11378',
  '184',
  'AW00011378',
  'NULL',
  'Shannon',
  'NULL',
  'Liang',
  '0',
  '1965-11-19',
  'S',
  'NULL',
  'F',
  'shannon15@adventure-works.com',
  '10000.00',
  '1',
  '1',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '1',
  '7445 Meaham Drive',
  'NULL',
  '1 (11) 500 555-0159',
  '2012-10-17',
  '2-5 Miles'],
 ['11379',
  '214',
  'AW00011379',
  'NULL',
  'Gary',
  'NULL',
  'Vazquez',
  '0',
  '1976-05-13',
  'M',
  'NULL',
  'M',
  'gary25@adventure-works.com',
  '10000.00',
  '1',
  '1',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '1',
  '5, rue de la Cavalerie',
  'NULL',
  '1 (11) 500 555-0130',
  '2012-10-02',
  '2-5 Miles'],
 ['11380',
  '175',
  'AW00011380',
  'NULL',
  'Mitchell',
  'L',
  'Kumar',
  '0',
  '1964-08-29',
  'S',
  'NULL',
  'M',
  'mitchell7@adventure-works.com',
  '20000.00',
  '2',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '1',
  'Husemann Straße 6464',
  'NULL',
  '1 (11) 500 555-0119',
  '2011-10-11',
  '1-2 Miles'],
 ['11381',
  '249',
  'AW00011381',
  'NULL',
  'Meredith',
  'NULL',
  'Raman',
  '0',
  '1970-08-18',
  'M',
  'NULL',
  'F',
  'meredith11@adventure-works.com',
  '20000.00',
  '2',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '1',
  '6092 Chestnut',
  'NULL',
  '1 (11) 500 555-0162',
  '2011-06-12',
  '2-5 Miles'],
 ['11382',
  '189',
  'AW00011382',
  'NULL',
  'Edward',
  'NULL',
  'Patterson',
  '0',
  '1974-07-15',
  'M',
  'NULL',
  'M',
  'edward59@adventure-works.com',
  '20000.00',
  '2',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '1',
  '211, avenue Foch',
  'NULL',
  '1 (11) 500 555-0118',
  '2012-11-03',
  '2-5 Miles'],
 ['11383',
  '206',
  'AW00011383',
  'NULL',
  'Marie',
  'NULL',
  'Gill',
  '0',
  '1966-02-25',
  'M',
  'NULL',
  'F',
  'marie37@adventure-works.com',
  '30000.00',
  '3',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '571, rue Malar',
  'NULL',
  '1 (11) 500 555-0192',
  '2014-01-01',
  '0-1 Miles'],
 ['11384',
  '211',
  'AW00011384',
  'NULL',
  'Tiffany',
  'E',
  'Wang',
  '0',
  '1971-10-13',
  'M',
  'NULL',
  'F',
  'tiffany1@adventure-works.com',
  '30000.00',
  '3',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '5, rue Malar',
  'NULL',
  '1 (11) 500 555-0192',
  '2013-08-02',
  '0-1 Miles'],
 ['11385',
  '279',
  'AW00011385',
  'NULL',
  'Miguel',
  'C',
  'Allen',
  '0',
  '1971-08-08',
  'S',
  'NULL',
  'M',
  'miguel24@adventure-works.com',
  '30000.00',
  '3',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '6834 Violetta',
  'NULL',
  '1 (11) 500 555-0128',
  '2013-07-06',
  '0-1 Miles'],
 ['11386',
  '127',
  'AW00011386',
  'NULL',
  'Jaclyn',
  'NULL',
  'Cai',
  '0',
  '1971-11-02',
  'M',
  'NULL',
  'F',
  'jaclyn22@adventure-works.com',
  '30000.00',
  '3',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  'Postfach 55 00 00',
  'NULL',
  '1 (11) 500 555-0164',
  '2013-11-02',
  '0-1 Miles'],
 ['11387',
  '238',
  'AW00011387',
  'NULL',
  'Megan',
  'C',
  'Ramirez',
  '0',
  '1964-11-29',
  'S',
  'NULL',
  'F',
  'megan44@adventure-works.com',
  '40000.00',
  '3',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '507 Sahara Drive',
  'NULL',
  '1 (11) 500 555-0192',
  '2011-07-26',
  '0-1 Miles'],
 ['11388',
  '279',
  'AW00011388',
  'NULL',
  'Joseph',
  'NULL',
  'Martin',
  '0',
  '1965-01-20',
  'M',
  'NULL',
  'M',
  'joseph21@adventure-works.com',
  '40000.00',
  '3',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '7028 San Gabriel Dr.',
  'NULL',
  '1 (11) 500 555-0143',
  '2011-07-03',
  '0-1 Miles'],
 ['11389',
  '130',
  'AW00011389',
  'NULL',
  'Karl',
  'J',
  'Shan',
  '0',
  '1981-04-20',
  'S',
  'NULL',
  'M',
  'karl11@adventure-works.com',
  '10000.00',
  '1',
  '1',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '1',
  'Nollendorfplatz 48',
  'NULL',
  '1 (11) 500 555-0198',
  '2013-11-17',
  '2-5 Miles'],
 ['11390',
  '208',
  'AW00011390',
  'NULL',
  'Christine',
  'J',
  'Raji',
  '0',
  '1976-04-17',
  'S',
  'NULL',
  'F',
  'christine16@adventure-works.com',
  '10000.00',
  '1',
  '1',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '1',
  '11, boulevard Tremblay',
  'NULL',
  '1 (11) 500 555-0153',
  '2013-11-07',
  '2-5 Miles'],
 ['11391',
  '135',
  'AW00011391',
  'NULL',
  'Lindsay',
  'T',
  'Xie',
  '0',
  '1976-06-25',
  'S',
  'NULL',
  'F',
  'lindsay3@adventure-works.com',
  '10000.00',
  '2',
  '2',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '0',
  'Am Grossen Dern 4624',
  'NULL',
  '1 (11) 500 555-0115',
  '2013-10-26',
  '0-1 Miles'],
 ['11392',
  '131',
  'AW00011392',
  'NULL',
  'Willie',
  'NULL',
  'Zhao',
  '0',
  '1981-02-03',
  'S',
  'NULL',
  'M',
  'willie8@adventure-works.com',
  '10000.00',
  '2',
  '2',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '0',
  'Königstr 282',
  'NULL',
  '1 (11) 500 555-0120',
  '2013-03-29',
  '0-1 Miles'],
 ['11393',
  '182',
  'AW00011393',
  'NULL',
  'Kurt',
  'B',
  'Pal',
  '0',
  '1974-07-17',
  'S',
  'NULL',
  'M',
  'kurt12@adventure-works.com',
  '10000.00',
  '2',
  '2',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '0',
  '55, avenue de l´ Union Centrale',
  'NULL',
  '1 (11) 500 555-0117',
  '2013-07-16',
  '0-1 Miles'],
 ['11394',
  '259',
  'AW00011394',
  'NULL',
  'George',
  'NULL',
  'McDonald',
  '0',
  '1975-04-22',
  'S',
  'NULL',
  'M',
  'george13@adventure-works.com',
  '10000.00',
  '2',
  '2',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '0',
  '9186 West Boyd Rd.',
  'NULL',
  '1 (11) 500 555-0150',
  '2011-07-04',
  '0-1 Miles'],
 ['11395',
  '118',
  'AW00011395',
  'NULL',
  'Beth',
  'C',
  'Gutierrez',
  '0',
  '1976-04-16',
  'S',
  'NULL',
  'F',
  'beth13@adventure-works.com',
  '30000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  'Rehstr 1346',
  'NULL',
  '1 (11) 500 555-0110',
  '2011-11-14',
  '0-1 Miles'],
 ['11396',
  '175',
  'AW00011396',
  'NULL',
  'Ian',
  'G',
  'Lopez',
  '0',
  '1975-04-04',
  'M',
  'NULL',
  'M',
  'ian27@adventure-works.com',
  '10000.00',
  '2',
  '2',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '1',
  'Zur Lindung 6',
  'NULL',
  '1 (11) 500 555-0182',
  '2013-10-26',
  '0-1 Miles'],
 ['11397',
  '197',
  'AW00011397',
  'NULL',
  'Latoya',
  'R',
  'Shan',
  '0',
  '1974-12-02',
  'S',
  'NULL',
  'F',
  'latoya9@adventure-works.com',
  '20000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '1',
  'Attaché de Presse',
  'NULL',
  '1 (11) 500 555-0122',
  '2013-07-07',
  '0-1 Miles'],
 ['11398',
  '261',
  'AW00011398',
  'NULL',
  'Colin',
  'N',
  'Nath',
  '0',
  '1975-03-09',
  'S',
  'NULL',
  'M',
  'colin41@adventure-works.com',
  '30000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '8900 Escobar',
  'NULL',
  '1 (11) 500 555-0115',
  '2011-07-03',
  '0-1 Miles'],
 ['11399',
  '202',
  'AW00011399',
  'NULL',
  'Brenda',
  'F',
  'Mehta',
  '0',
  '1975-02-01',
  'S',
  'NULL',
  'F',
  'brenda17@adventure-works.com',
  '30000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '11, avenue du Port',
  'NULL',
  '1 (11) 500 555-0155',
  '2013-04-13',
  '0-1 Miles'],
 ['11400',
  '251',
  'AW00011400',
  'NULL',
  'Franklin',
  'NULL',
  'Raji',
  '0',
  '1980-04-15',
  'S',
  'NULL',
  'M',
  'franklin38@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '3477 Mt. Washington Way',
  'NULL',
  '1 (11) 500 555-0180',
  '2011-07-15',
  '0-1 Miles'],
 ['11401',
  '204',
  'AW00011401',
  'NULL',
  'Linda',
  'NULL',
  'Navarro',
  '0',
  '1975-02-23',
  'M',
  'NULL',
  'F',
  'linda25@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '6, route de Marseille',
  'NULL',
  '1 (11) 500 555-0189',
  '2012-10-28',
  '0-1 Miles'],
 ['11402',
  '183',
  'AW00011402',
  'NULL',
  'Kelli',
  'R',
  'Cai',
  '0',
  '1975-05-20',
  'M',
  'NULL',
  'F',
  'kelli21@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '1216, place de la Concorde',
  'NULL',
  '1 (11) 500 555-0145',
  '2012-11-07',
  '0-1 Miles'],
 ['11403',
  '179',
  'AW00011403',
  'NULL',
  'Nancy',
  'NULL',
  'Schmidt',
  '0',
  '1980-01-06',
  'S',
  'NULL',
  'F',
  'nancy13@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '340, boulevard d´Albi',
  'NULL',
  '1 (11) 500 555-0150',
  '2012-10-28',
  '0-1 Miles'],
 ['11404',
  '133',
  'AW00011404',
  'NULL',
  'Megan',
  'E',
  'Taylor',
  '0',
  '1957-06-30',
  'S',
  'NULL',
  'F',
  'megan12@adventure-works.com',
  '10000.00',
  '3',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '2',
  'Berliner Platz 43',
  'NULL',
  '1 (11) 500 555-0178',
  '2013-02-10',
  '0-1 Miles'],
 ['11405',
  '143',
  'AW00011405',
  'NULL',
  'Bonnie',
  'NULL',
  'Goel',
  '0',
  '1957-08-16',
  'S',
  'NULL',
  'F',
  'bonnie25@adventure-works.com',
  '10000.00',
  '3',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '2',
  'Carlsplatz 89',
  'NULL',
  '1 (11) 500 555-0143',
  '2013-03-31',
  '0-1 Miles'],
 ['11406',
  '199',
  'AW00011406',
  'NULL',
  'Latoya',
  'L',
  'Xu',
  '0',
  '1957-12-31',
  'M',
  'NULL',
  'F',
  'latoya4@adventure-works.com',
  '20000.00',
  '2',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '1',
  '101, rue de Terre Neuve',
  'NULL',
  '1 (11) 500 555-0141',
  '2012-11-04',
  '2-5 Miles'],
 ['11407',
  '170',
  'AW00011407',
  'NULL',
  'Mario',
  'NULL',
  'She',
  '0',
  '1957-09-30',
  'M',
  'NULL',
  'M',
  'mario0@adventure-works.com',
  '20000.00',
  '2',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '1',
  'Conesweg 720',
  'NULL',
  '1 (11) 500 555-0156',
  '2013-06-23',
  '0-1 Miles'],
 ['11408',
  '257',
  'AW00011408',
  'NULL',
  'Darren',
  'M',
  'Gill',
  '0',
  '1964-05-10',
  'M',
  'NULL',
  'M',
  'darren36@adventure-works.com',
  '10000.00',
  '2',
  '1',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '2',
  '8132 Twincreek Ct',
  'NULL',
  '1 (11) 500 555-0166',
  '2013-03-05',
  '0-1 Miles'],
 ['11409',
  '208',
  'AW00011409',
  'NULL',
  'Jacqueline',
  'H',
  'Hayes',
  '0',
  '1979-03-02',
  'S',
  'NULL',
  'F',
  'jacqueline23@adventure-works.com',
  '10000.00',
  '2',
  '2',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '1',
  '33, rue Georges-Clémenceau',
  'NULL',
  '1 (11) 500 555-0162',
  '2012-11-17',
  '0-1 Miles'],
 ['11410',
  '201',
  'AW00011410',
  'NULL',
  'Maurice',
  'NULL',
  'Goel',
  '0',
  '1974-02-22',
  'M',
  'NULL',
  'M',
  'maurice20@adventure-works.com',
  '20000.00',
  '1',
  '1',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '0',
  '15, avenue de la Gare',
  'NULL',
  '1 (11) 500 555-0179',
  '2012-11-13',
  '2-5 Miles'],
 ['11411',
  '121',
  'AW00011411',
  'NULL',
  'Devin',
  'A',
  'Ross',
  '0',
  '1959-08-12',
  'M',
  'NULL',
  'M',
  'devin69@adventure-works.com',
  '80000.00',
  '3',
  '2',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  'Postenweg 2428',
  'NULL',
  '1 (11) 500 555-0172',
  '2013-08-04',
  '2-5 Miles'],
 ['11412',
  '121',
  'AW00011412',
  'NULL',
  'Sydney',
  'S',
  'Bryant',
  '0',
  '1959-10-07',
  'S',
  'NULL',
  'F',
  'sydney40@adventure-works.com',
  '80000.00',
  '4',
  '2',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  'Postfach 99 92 92',
  'NULL',
  '1 (11) 500 555-0156',
  '2011-11-05',
  '10+ Miles'],
 ['11413',
  '238',
  'AW00011413',
  'NULL',
  'Megan',
  'L',
  'Stewart',
  '0',
  '1959-10-13',
  'M',
  'NULL',
  'F',
  'megan27@adventure-works.com',
  '80000.00',
  '4',
  '2',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '8192 Seagull Court',
  'NULL',
  '1 (11) 500 555-0116',
  '2011-08-10',
  '2-5 Miles'],
 ['11414',
  '241',
  'AW00011414',
  'NULL',
  'Ian',
  'NULL',
  'Richardson',
  '0',
  '1959-09-15',
  'S',
  'NULL',
  'M',
  'ian76@adventure-works.com',
  '80000.00',
  '4',
  '2',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '726 W. Buchanan Rd.',
  'NULL',
  '1 (11) 500 555-0119',
  '2011-08-13',
  '10+ Miles'],
 ['11415',
  '127',
  'AW00011415',
  'NULL',
  'Randy',
  'H',
  'She',
  '0',
  '1949-12-03',
  'S',
  'NULL',
  'M',
  'randy25@adventure-works.com',
  '90000.00',
  '5',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '2',
  'Roßstr 5538',
  'NULL',
  '1 (11) 500 555-0141',
  '2013-08-16',
  '10+ Miles'],
 ['11416',
  '185',
  'AW00011416',
  'NULL',
  'Katrina',
  'NULL',
  'Becker',
  '0',
  '1950-09-16',
  'M',
  'NULL',
  'F',
  'katrina19@adventure-works.com',
  '60000.00',
  '3',
  '1',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '4',
  '8205, rue Malar',
  'NULL',
  '1 (11) 500 555-0153',
  '2012-11-07',
  '2-5 Miles'],
 ['11417',
  '222',
  'AW00011417',
  'NULL',
  'Lacey',
  'C',
  'Zheng',
  '0',
  '1950-08-26',
  'M',
  'NULL',
  'F',
  'lacey32@adventure-works.com',
  '70000.00',
  '5',
  '1',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '4, rue de Linois',
  'NULL',
  '1 (11) 500 555-0174',
  '2012-11-04',
  '10+ Miles'],
 ['11418',
  '160',
  'AW00011418',
  'NULL',
  'Rafael',
  'J',
  'Hu',
  '0',
  '1950-08-09',
  'S',
  'NULL',
  'M',
  'rafael20@adventure-works.com',
  '90000.00',
  '5',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '2',
  'Zeiter Weg 7765',
  'NULL',
  '1 (11) 500 555-0159',
  '2013-12-17',
  '10+ Miles'],
 ['11419',
  '273',
  'AW00011419',
  'NULL',
  'Kyle',
  'D',
  'Scott',
  '0',
  '1950-08-18',
  'M',
  'NULL',
  'M',
  'kyle43@adventure-works.com',
  '150000.00',
  '3',
  '4',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '4',
  '9381 Alpine Rd.',
  'NULL',
  '1 (11) 500 555-0178',
  '2013-03-12',
  '0-1 Miles'],
 ['11420',
  '189',
  'AW00011420',
  'NULL',
  'Jordan',
  'C',
  'Turner',
  '0',
  '1952-01-09',
  'M',
  'NULL',
  'M',
  'jordan59@adventure-works.com',
  '100000.00',
  '2',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '4',
  '100, rue Maillard',
  'NULL',
  '1 (11) 500 555-0176',
  '2012-11-01',
  '10+ Miles'],
 ['11421',
  '172',
  'AW00011421',
  'NULL',
  'Amy',
  'C',
  'Sun',
  '0',
  '1952-01-16',
  'M',
  'NULL',
  'F',
  'amy19@adventure-works.com',
  '110000.00',
  '3',
  '4',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '4',
  'Am Karlshof 2500',
  'NULL',
  '1 (11) 500 555-0111',
  '2011-11-03',
  '5-10 Miles'],
 ['11422',
  '268',
  'AW00011422',
  'NULL',
  'Dustin',
  'F',
  'Deng',
  '0',
  '1952-02-29',
  'M',
  'NULL',
  'M',
  'dustin1@adventure-works.com',
  '170000.00',
  '4',
  '4',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '3',
  '8185 Sol Street',
  'NULL',
  '1 (11) 500 555-0168',
  '2011-08-22',
  '5-10 Miles'],
 ['11423',
  '147',
  'AW00011423',
  'NULL',
  'Jasmine',
  'NULL',
  'Stewart',
  '0',
  '1960-05-04',
  'M',
  'NULL',
  'F',
  'jasmine22@adventure-works.com',
  '80000.00',
  '4',
  '2',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  'Heidestieg Straße 8224',
  'NULL',
  '1 (11) 500 555-0165',
  '2011-12-10',
  '2-5 Miles'],
 ['11424',
  '164',
  'AW00011424',
  'NULL',
  'Pamela',
  'S',
  'Garcia',
  '0',
  '1964-12-03',
  'M',
  'NULL',
  'F',
  'pamela18@adventure-works.com',
  '80000.00',
  '4',
  '2',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  'Postfach 11 09 99',
  'NULL',
  '1 (11) 500 555-0182',
  '2013-04-21',
  '10+ Miles'],
 ['11425',
  '184',
  'AW00011425',
  'NULL',
  'Ariana',
  'D',
  'Gray',
  '0',
  '1965-08-02',
  'M',
  'NULL',
  'F',
  'ariana5@adventure-works.com',
  '90000.00',
  '4',
  '2',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '3675 Palms Dr',
  'NULL',
  '1 (11) 500 555-0191',
  '2012-11-22',
  '10+ Miles'],
 ['11426',
  '156',
  'AW00011426',
  'NULL',
  'Kristopher',
  'NULL',
  'Mehta',
  '0',
  '1959-04-01',
  'M',
  'NULL',
  'M',
  'kristopher12@adventure-works.com',
  '110000.00',
  '3',
  '4',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '4',
  'Herzogstr 328',
  'Einkaufsabteilung',
  '1 (11) 500 555-0181',
  '2013-04-09',
  '10+ Miles'],
 ['11427',
  '168',
  'AW00011427',
  'NULL',
  'Desiree',
  'S',
  'Dominguez',
  '0',
  '1959-06-17',
  'M',
  'NULL',
  'F',
  'desiree9@adventure-works.com',
  '110000.00',
  '2',
  '5',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  'Holzstr 4222',
  'NULL',
  '1 (11) 500 555-0133',
  '2011-12-20',
  '10+ Miles'],
 ['11428',
  '173',
  'AW00011428',
  'NULL',
  'Deanna',
  'NULL',
  'Perez',
  '0',
  '1959-02-19',
  'S',
  'NULL',
  'F',
  'deanna24@adventure-works.com',
  '120000.00',
  '2',
  '5',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  'Marienplatz 56',
  'NULL',
  '1 (11) 500 555-0191',
  '2011-12-05',
  '10+ Miles'],
 ['11429',
  '218',
  'AW00011429',
  'NULL',
  'Marco',
  'NULL',
  'Lopez',
  '0',
  '1958-01-13',
  'M',
  'NULL',
  'M',
  'marco17@adventure-works.com',
  '80000.00',
  '4',
  '1',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  "313, rue de l'Espace De Schengen",
  'NULL',
  '1 (11) 500 555-0186',
  '2012-12-14',
  '10+ Miles'],
 ['11430',
  '155',
  'AW00011430',
  'NULL',
  'Casey',
  'K',
  'Yuan',
  '0',
  '1957-09-21',
  'M',
  'NULL',
  'F',
  'casey7@adventure-works.com',
  '90000.00',
  '4',
  '1',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  'Hunzinger Allee 153',
  'NULL',
  '1 (11) 500 555-0184',
  '2013-03-19',
  '10+ Miles'],
 ['11431',
  '120',
  'AW00011431',
  'NULL',
  'Bryant',
  'NULL',
  'Garcia',
  '0',
  '1974-10-20',
  'M',
  'NULL',
  'M',
  'bryant14@adventure-works.com',
  '110000.00',
  '4',
  '5',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  'Am Gallberg 94',
  'NULL',
  '1 (11) 500 555-0115',
  '2011-12-21',
  '10+ Miles'],
 ['11432',
  '206',
  'AW00011432',
  'NULL',
  'Dominique',
  'L',
  'Prasad',
  '0',
  '1957-03-10',
  'M',
  'NULL',
  'F',
  'dominique7@adventure-works.com',
  '80000.00',
  '4',
  '2',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '765, rue Villedo',
  'NULL',
  '1 (11) 500 555-0148',
  '2012-12-10',
  '10+ Miles'],
 ['11433',
  '224',
  'AW00011433',
  'NULL',
  'Maurice',
  'M',
  'Shan',
  '0',
  '1957-03-01',
  'M',
  'NULL',
  'M',
  'maurice11@adventure-works.com',
  '80000.00',
  '5',
  '2',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '2',
  '59, rue Montcalm',
  'NULL',
  '1 (11) 500 555-0130',
  '2012-12-02',
  '2-5 Miles'],
 ['11434',
  '274',
  'AW00011434',
  'NULL',
  'Andre',
  'NULL',
  'Lopez',
  '0',
  '1962-05-02',
  'M',
  'NULL',
  'M',
  'andre16@adventure-works.com',
  '170000.00',
  '5',
  '5',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '4',
  '638 Shangri-la Rd.',
  'NULL',
  '1 (11) 500 555-0111',
  '2013-06-15',
  '0-1 Miles'],
 ['11435',
  '168',
  'AW00011435',
  'NULL',
  'Robin',
  'NULL',
  'Romero',
  '0',
  '1955-09-03',
  'S',
  'NULL',
  'F',
  'robin5@adventure-works.com',
  '100000.00',
  '3',
  '4',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '4',
  'Hüttenstr 9995',
  'NULL',
  '1 (11) 500 555-0168',
  '2014-01-04',
  '10+ Miles'],
 ['11436',
  '273',
  'AW00011436',
  'NULL',
  'Taylor',
  'NULL',
  'Cox',
  '0',
  '1956-03-17',
  'M',
  'NULL',
  'F',
  'taylor13@adventure-works.com',
  '160000.00',
  '3',
  '5',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Management',
  'Gestión',
  'Direction',
  '0',
  '4',
  '6409 Buckthorn Court',
  'NULL',
  '1 (11) 500 555-0125',
  '2013-05-22',
  '10+ Miles'],
 ['11437',
  '190',
  'AW00011437',
  'NULL',
  'Alfredo',
  'NULL',
  'Moreno',
  '0',
  '1955-06-16',
  'M',
  'NULL',
  'M',
  'alfredo7@adventure-works.com',
  '90000.00',
  '4',
  '1',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '3',
  '882, rue Villedo',
  'NULL',
  '1 (11) 500 555-0166',
  '2013-12-19',
  '10+ Miles'],
 ['11438',
  '162',
  'AW00011438',
  'NULL',
  'Jenny',
  'NULL',
  'Nara',
  '0',
  '1955-04-13',
  'M',
  'NULL',
  'F',
  'jenny39@adventure-works.com',
  '130000.00',
  '4',
  '5',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '4',
  'Alderstr 8642',
  'NULL',
  '1 (11) 500 555-0164',
  '2013-02-05',
  '0-1 Miles'],
 ['11439',
  '217',
  'AW00011439',
  'NULL',
  'Janet',
  'NULL',
  'Munoz',
  '0',
  '1953-11-14',
  'M',
  'NULL',
  'F',
  'janet12@adventure-works.com',
  '90000.00',
  '4',
  '1',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Management',
  'Gestión',
  'Direction',
  '0',
  '3',
  '61, rue Pierre-Demoulin',
  'NULL',
  '1 (11) 500 555-0148',
  '2012-11-29',
  '5-10 Miles'],
 ['11440',
  '187',
  'AW00011440',
  'NULL',
  'Sergio',
  'C',
  'Weber',
  '0',
  '1953-03-26',
  'M',
  'NULL',
  'M',
  'sergio4@adventure-works.com',
  '80000.00',
  '5',
  '0',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '6, place de Fontenoy',
  'NULL',
  '1 (11) 500 555-0178',
  '2013-03-27',
  '5-10 Miles'],
 ['11441',
  '192',
  'AW00011441',
  'NULL',
  'Erika',
  'NULL',
  'Gomez',
  '0',
  '1952-12-09',
  'M',
  'NULL',
  'F',
  'erika0@adventure-works.com',
  '90000.00',
  '5',
  '0',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '2, place Beaubernard',
  'NULL',
  '1 (11) 500 555-0155',
  '2014-01-08',
  '5-10 Miles'],
 ['11442',
  '224',
  'AW00011442',
  'NULL',
  'Joseph',
  'D',
  'Harris',
  '0',
  '1953-05-13',
  'M',
  'NULL',
  'M',
  'joseph20@adventure-works.com',
  '90000.00',
  '5',
  '0',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '8, rue des Vendangeurs',
  'NULL',
  '1 (11) 500 555-0116',
  '2013-09-29',
  '10+ Miles'],
 ['11443',
  '31',
  'AW00011443',
  'NULL',
  'Grace',
  'NULL',
  'Griffin',
  '0',
  '1981-11-19',
  'S',
  'NULL',
  'F',
  'grace67@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '4',
  '9825 Mt. Dell Drive',
  'NULL',
  '1 (11) 500 555-0170',
  '2011-06-07',
  '2-5 Miles'],
 ['11444',
  '32',
  'AW00011444',
  'NULL',
  'Tina',
  'C',
  'Mehta',
  '0',
  '1981-10-26',
  'M',
  'NULL',
  'F',
  'tina15@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '3',
  '5357 Willow Drive',
  'NULL',
  '1 (11) 500 555-0192',
  '2011-06-01',
  '10+ Miles'],
 ['11445',
  '15',
  'AW00011445',
  'NULL',
  'Kari',
  'S',
  'Kim',
  '0',
  '1980-01-18',
  'S',
  'NULL',
  'F',
  'kari3@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '3',
  '977 Davona Drive',
  'NULL',
  '1 (11) 500 555-0136',
  '2011-06-06',
  '10+ Miles'],
 ['11446',
  '5',
  'AW00011446',
  'NULL',
  'Bethany',
  'K',
  'Chander',
  '0',
  '1980-02-09',
  'S',
  'NULL',
  'F',
  'bethany19@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '3',
  '3464 Chilpancingo Park',
  'NULL',
  '1 (11) 500 555-0179',
  '2011-06-18',
  '10+ Miles'],
 ['11447',
  '25',
  'AW00011447',
  'NULL',
  'Jennifer',
  'NULL',
  'Roberts',
  '0',
  '1980-02-13',
  'M',
  'NULL',
  'F',
  'jennifer15@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '4',
  '618 Natalie Drive',
  'NULL',
  '1 (11) 500 555-0112',
  '2011-06-28',
  '10+ Miles'],
 ['11448',
  '35',
  'AW00011448',
  'NULL',
  'Kyle',
  'NULL',
  'Patterson',
  '0',
  '1980-10-25',
  'S',
  'NULL',
  'M',
  'kyle5@adventure-works.com',
  '80000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '3',
  '5444 Bohon Circle',
  'NULL',
  '1 (11) 500 555-0145',
  '2011-06-16',
  '10+ Miles'],
 ['11449',
  '37',
  'AW00011449',
  'NULL',
  'Alvin',
  'E',
  'Hu',
  '0',
  '1980-08-01',
  'M',
  'NULL',
  'M',
  'alvin19@adventure-works.com',
  '80000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '3',
  '8468 Clifford Court',
  'NULL',
  '1 (11) 500 555-0144',
  '2011-06-19',
  '10+ Miles'],
 ['11450',
  '28',
  'AW00011450',
  'NULL',
  'Brett',
  'NULL',
  'Mehta',
  '0',
  '1981-05-11',
  'S',
  'NULL',
  'M',
  'brett13@adventure-works.com',
  '130000.00',
  '4',
  '5',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '4',
  '7411 Crivello Avenue',
  'NULL',
  '1 (11) 500 555-0187',
  '2011-06-29',
  '0-1 Miles'],
 ['11451',
  '10',
  'AW00011451',
  'NULL',
  'Ruben',
  'L',
  'Muñoz',
  '0',
  '1980-05-08',
  'S',
  'NULL',
  'M',
  'ruben30@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '4',
  '3255 Olive Hill',
  'NULL',
  '1 (11) 500 555-0142',
  '2011-07-29',
  '10+ Miles'],
 ['11452',
  '21',
  'AW00011452',
  'NULL',
  'Erika',
  'A',
  'Rubio',
  '0',
  '1979-05-05',
  'S',
  'NULL',
  'F',
  'erika18@adventure-works.com',
  '80000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '3',
  '5065 Maywood Lane',
  'NULL',
  '1 (11) 500 555-0159',
  '2011-07-11',
  '10+ Miles'],
 ['11453',
  '31',
  'AW00011453',
  'NULL',
  'Stanley',
  'H',
  'Malhotra',
  '0',
  '1984-08-17',
  'S',
  'NULL',
  'M',
  'stanley5@adventure-works.com',
  '80000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '3',
  '9218 Old Mt. View Drive',
  'NULL',
  '1 (11) 500 555-0139',
  '2011-07-15',
  '10+ Miles'],
 ['11454',
  '35',
  'AW00011454',
  'NULL',
  'Melinda',
  'NULL',
  'Navarro',
  '0',
  '1979-10-20',
  'S',
  'NULL',
  'F',
  'melinda5@adventure-works.com',
  '80000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '3',
  '1562 Black Walnut',
  'NULL',
  '1 (11) 500 555-0145',
  '2011-07-31',
  '10+ Miles'],
 ['11455',
  '36',
  'AW00011455',
  'NULL',
  'Ross',
  'NULL',
  'Sanz',
  '0',
  '1979-10-19',
  'M',
  'NULL',
  'M',
  'ross38@adventure-works.com',
  '100000.00',
  '0',
  '5',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '6782 First Ave',
  'NULL',
  '1 (11) 500 555-0147',
  '2011-07-01',
  '10+ Miles'],
 ['11456',
  '17',
  'AW00011456',
  'NULL',
  'Jon',
  'C',
  'Gao',
  '0',
  '1980-01-05',
  'M',
  'NULL',
  'M',
  'jon35@adventure-works.com',
  '120000.00',
  '5',
  '5',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '4',
  '6455 Garnet Lane',
  'NULL',
  '1 (11) 500 555-0136',
  '2011-07-17',
  '10+ Miles'],
 ['11457',
  '19',
  'AW00011457',
  'NULL',
  'Jaime',
  'C',
  'Gutierrez',
  '0',
  '1978-11-18',
  'M',
  'NULL',
  'F',
  'jaime12@adventure-works.com',
  '90000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '3',
  '6615 Camel Place',
  'NULL',
  '1 (11) 500 555-0173',
  '2011-07-17',
  '10+ Miles'],
 ['11458',
  '16',
  'AW00011458',
  'NULL',
  'Bianca',
  'K',
  'Liu',
  '0',
  '1978-10-03',
  'M',
  'NULL',
  'F',
  'bianca3@adventure-works.com',
  '100000.00',
  '0',
  '5',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '811 Via Cordona',
  'NULL',
  '1 (11) 500 555-0179',
  '2013-03-30',
  '10+ Miles'],
 ['11459',
  '13',
  'AW00011459',
  'NULL',
  'Tasha',
  'NULL',
  'Deng',
  '0',
  '1978-04-12',
  'S',
  'NULL',
  'F',
  'tasha1@adventure-works.com',
  '80000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '3',
  '9627 Kendall Rd',
  'NULL',
  '1 (11) 500 555-0171',
  '2011-07-27',
  '10+ Miles'],
 ['11460',
  '33',
  'AW00011460',
  'NULL',
  'Melvin',
  'R',
  'Chande',
  '0',
  '1983-10-04',
  'S',
  'NULL',
  'M',
  'melvin13@adventure-works.com',
  '90000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '3',
  '5075 Reading Dr.',
  'NULL',
  '1 (11) 500 555-0121',
  '2011-07-21',
  '10+ Miles'],
 ['11461',
  '6',
  'AW00011461',
  'NULL',
  'Victor',
  'NULL',
  'Jimenez',
  '0',
  '1977-09-22',
  'S',
  'NULL',
  'M',
  'victor7@adventure-works.com',
  '90000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '3',
  '7201 Elk Dr.',
  'NULL',
  '1 (11) 500 555-0176',
  '2011-07-31',
  '10+ Miles'],
 ['11462',
  '8',
  'AW00011462',
  'NULL',
  'Laura',
  'L',
  'Lin',
  '0',
  '1977-07-18',
  'M',
  'NULL',
  'F',
  'laura14@adventure-works.com',
  '110000.00',
  '0',
  '5',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '4',
  '3378 Coldwater Drive',
  'NULL',
  '1 (11) 500 555-0151',
  '2011-07-16',
  '10+ Miles'],
 ['11463',
  '28',
  'AW00011463',
  'NULL',
  'Alisha',
  'E',
  'Beck',
  '0',
  '1977-09-09',
  'M',
  'NULL',
  'F',
  'alisha45@adventure-works.com',
  '110000.00',
  '0',
  '5',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Management',
  'Gestión',
  'Direction',
  '0',
  '4',
  '1328 Huntleigh Dr.',
  'NULL',
  '1 (11) 500 555-0169',
  '2013-03-05',
  '10+ Miles'],
 ['11464',
  '38',
  'AW00011464',
  'NULL',
  'Alejandro',
  'NULL',
  'Huang',
  '0',
  '1977-05-15',
  'M',
  'NULL',
  'M',
  'alejandro8@adventure-works.com',
  '90000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '4',
  '6171 Golf Club Rd',
  'NULL',
  '1 (11) 500 555-0112',
  '2011-07-22',
  '10+ Miles'],
 ['11465',
  '23',
  'AW00011465',
  'NULL',
  'Louis',
  'NULL',
  'Luo',
  '0',
  '1976-08-18',
  'M',
  'NULL',
  'M',
  'louis23@adventure-works.com',
  '90000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '4',
  '4187 Banbury Loop',
  'NULL',
  '1 (11) 500 555-0185',
  '2011-07-14',
  '10+ Miles'],
 ['11466',
  '6',
  'AW00011466',
  'NULL',
  'Grant',
  'H',
  'Tang',
  '0',
  '1977-01-30',
  'M',
  'NULL',
  'M',
  'grant6@adventure-works.com',
  '150000.00',
  '0',
  '5',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '4',
  '2710 Saddlehill Lane',
  'NULL',
  '1 (11) 500 555-0195',
  '2013-05-22',
  '10+ Miles'],
 ['11467',
  '17',
  'AW00011467',
  'NULL',
  'Arturo',
  'C',
  'Zheng',
  '0',
  '1975-04-06',
  'M',
  'NULL',
  'M',
  'arturo21@adventure-works.com',
  '170000.00',
  '1',
  '5',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '4',
  '9719 Hamilton Ave',
  'NULL',
  '1 (11) 500 555-0154',
  '2013-07-31',
  '0-1 Miles'],
 ['11468',
  '278',
  'AW00011468',
  'NULL',
  'Jaclyn',
  'NULL',
  'Andersen',
  '0',
  '1980-12-15',
  'M',
  'NULL',
  'F',
  'jaclyn37@adventure-works.com',
  '40000.00',
  '1',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '8274 Gladstone Drive',
  'NULL',
  '1 (11) 500 555-0126',
  '2011-08-08',
  '1-2 Miles'],
 ['11469',
  '278',
  'AW00011469',
  'NULL',
  'Edwin',
  'NULL',
  'Raji',
  '0',
  '1978-10-14',
  'S',
  'NULL',
  'M',
  'edwin44@adventure-works.com',
  '10000.00',
  '0',
  '0',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '2',
  '6045 Nightingale Drive',
  'NULL',
  '1 (11) 500 555-0143',
  '2013-08-09',
  '1-2 Miles'],
 ['11470',
  '177',
  'AW00011470',
  'NULL',
  'Jay',
  'C',
  'Suarez',
  '0',
  '1979-03-25',
  'S',
  'NULL',
  'M',
  'jay49@adventure-works.com',
  '20000.00',
  '0',
  '0',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '2',
  'Heidestieg Straße 8664',
  'NULL',
  '1 (11) 500 555-0195',
  '2012-01-22',
  '0-1 Miles'],
 ['11471',
  '207',
  'AW00011471',
  'NULL',
  'Latasha',
  'NULL',
  'Suarez',
  '0',
  '1979-03-25',
  'S',
  'NULL',
  'F',
  'latasha19@adventure-works.com',
  '30000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '1',
  '29, avenue de la Gare',
  'NULL',
  '1 (11) 500 555-0180',
  '2013-05-17',
  '2-5 Miles'],
 ['11472',
  '24',
  'AW00011472',
  'NULL',
  'Kenneth',
  'NULL',
  'Kumar',
  '0',
  '1968-09-30',
  'S',
  'NULL',
  'M',
  'kenneth7@adventure-works.com',
  '60000.00',
  '3',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '7815 Driftwood Drive',
  'NULL',
  '1 (11) 500 555-0153',
  '2011-07-26',
  '5-10 Miles'],
 ['11473',
  '221',
  'AW00011473',
  'NULL',
  'Grace',
  'M',
  'Henderson',
  '0',
  '1986-01-30',
  'S',
  'NULL',
  'F',
  'grace52@adventure-works.com',
  '20000.00',
  '0',
  '0',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '2',
  '1039, rue Mazagran',
  'NULL',
  '1 (11) 500 555-0164',
  '2013-06-02',
  '1-2 Miles'],
 ['11474',
  '265',
  'AW00011474',
  'NULL',
  'Melvin',
  'A',
  'Xu',
  '0',
  '1985-08-21',
  'S',
  'NULL',
  'M',
  'melvin5@adventure-works.com',
  '20000.00',
  '0',
  '0',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '2',
  '4092 Folson Drive',
  'NULL',
  '1 (11) 500 555-0113',
  '2013-09-26',
  '1-2 Miles'],
 ['11475',
  '251',
  'AW00011475',
  'NULL',
  'Cesar',
  'L',
  'Subram',
  '0',
  '1984-04-07',
  'S',
  'NULL',
  'M',
  'cesar12@adventure-works.com',
  '30000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '1',
  '8778 So. Silver Spring',
  'NULL',
  '1 (11) 500 555-0118',
  '2013-04-23',
  '1-2 Miles'],
 ['11476',
  '241',
  'AW00011476',
  'NULL',
  'Erika',
  'K',
  'Navarro',
  '0',
  '1980-05-16',
  'M',
  'NULL',
  'F',
  'erika7@adventure-works.com',
  '40000.00',
  '1',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '37 Amaranth Way',
  'NULL',
  '1 (11) 500 555-0145',
  '2013-11-01',
  '1-2 Miles'],
 ['11477',
  '127',
  'AW00011477',
  'NULL',
  'Tristan',
  'NULL',
  'Hughes',
  '0',
  '1984-06-21',
  'S',
  'NULL',
  'M',
  'tristan12@adventure-works.com',
  '30000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '1',
  'Platz des Landtags 33',
  'NULL',
  '1 (11) 500 555-0121',
  '2013-09-25',
  '1-2 Miles'],
 ['11478',
  '218',
  'AW00011478',
  'NULL',
  'Billy',
  'C',
  'Hernandez',
  '0',
  '1984-02-22',
  'S',
  'NULL',
  'M',
  'billy5@adventure-works.com',
  '30000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '1',
  '570, avenue des Champs-Elysées',
  'NULL',
  '1 (11) 500 555-0121',
  '2013-04-19',
  '2-5 Miles'],
 ['11479',
  '182',
  'AW00011479',
  'NULL',
  'Darryl',
  'L',
  'Wu',
  '0',
  '1978-10-20',
  'M',
  'NULL',
  'M',
  'darryl6@adventure-works.com',
  '40000.00',
  '1',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '52, rue de Berri',
  'NULL',
  '1 (11) 500 555-0180',
  '2012-12-05',
  '1-2 Miles'],
 ['11480',
  '224',
  'AW00011480',
  'NULL',
  'Colleen',
  'A',
  'Ma',
  '0',
  '1984-03-07',
  'M',
  'NULL',
  'F',
  'colleen16@adventure-works.com',
  '40000.00',
  '1',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '2, place Beaubernard',
  'NULL',
  '1 (11) 500 555-0160',
  '2012-12-25',
  '1-2 Miles'],
 ['11481',
  '156',
  'AW00011481',
  'NULL',
  'Erica',
  'NULL',
  'Hu',
  '0',
  '1978-11-20',
  'M',
  'NULL',
  'F',
  'erica19@adventure-works.com',
  '40000.00',
  '1',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  'Am Gallberg 46',
  'Einkaufsabteilung',
  '1 (11) 500 555-0117',
  '2012-01-27',
  '1-2 Miles'],
 ['11482',
  '272',
  'AW00011482',
  'NULL',
  'Adrienne',
  'C',
  'Torres',
  '0',
  '1978-01-16',
  'S',
  'NULL',
  'F',
  'adrienne8@adventure-works.com',
  '30000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '1',
  '9684 La Vista Avenue',
  'NULL',
  '1 (11) 500 555-0120',
  '2011-09-08',
  '1-2 Miles'],
 ['11483',
  '199',
  'AW00011483',
  'NULL',
  'Calvin',
  'E',
  'Chande',
  '0',
  '1983-05-19',
  'M',
  'NULL',
  'M',
  'calvin13@adventure-works.com',
  '40000.00',
  '1',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '9, rue de l´Avenir',
  'NULL',
  '1 (11) 500 555-0197',
  '2012-12-22',
  '0-1 Miles'],
 ['11484',
  '171',
  'AW00011484',
  'NULL',
  'Erick',
  'L',
  'Sai',
  '0',
  '1983-03-03',
  'S',
  'NULL',
  'M',
  'erick5@adventure-works.com',
  '40000.00',
  '2',
  '2',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  'Hauptstr 6057',
  'NULL',
  '1 (11) 500 555-0161',
  '2012-01-02',
  '0-1 Miles'],
 ['11485',
  '237',
  'AW00011485',
  'NULL',
  'Donald',
  'NULL',
  'Chandra',
  '0',
  '1978-02-04',
  'M',
  'NULL',
  'M',
  'donald4@adventure-works.com',
  '40000.00',
  '2',
  '2',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '0',
  '0',
  '1644 Alicante Court',
  'NULL',
  '1 (11) 500 555-0191',
  '2011-09-14',
  '0-1 Miles'],
 ['11486',
  '117',
  'AW00011486',
  'NULL',
  'Ariana',
  'F',
  'Rogers',
  '0',
  '1982-05-21',
  'S',
  'NULL',
  'F',
  'ariana17@adventure-works.com',
  '10000.00',
  '0',
  '0',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '2',
  'Königstr 381',
  'NULL',
  '1 (11) 500 555-0118',
  '2013-11-24',
  '1-2 Miles'],
 ['11487',
  '186',
  'AW00011487',
  'NULL',
  'Morgan',
  'C',
  'Jones',
  '0',
  '1977-01-05',
  'S',
  'NULL',
  'F',
  'morgan26@adventure-works.com',
  '10000.00',
  '0',
  '0',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '2',
  '55, impasse Notre-Dame',
  'NULL',
  '1 (11) 500 555-0155',
  '2013-12-15',
  '1-2 Miles'],
 ['11488',
  '256',
  'AW00011488',
  'NULL',
  'Jermaine',
  'NULL',
  'Lopez',
  '0',
  '1977-03-20',
  'S',
  'NULL',
  'M',
  'jermaine15@adventure-works.com',
  '20000.00',
  '0',
  '0',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '2',
  '5456 Old Oak Drive',
  'NULL',
  '1 (11) 500 555-0181',
  '2011-10-28',
  '1-2 Miles'],
 ['11489',
  '262',
  'AW00011489',
  'NULL',
  'Deborah',
  'S',
  'Goel',
  '0',
  '1976-09-03',
  'S',
  'NULL',
  'F',
  'deborah21@adventure-works.com',
  '20000.00',
  '0',
  '0',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '2',
  '3670 All Ways Drive',
  'NULL',
  '1 (11) 500 555-0168',
  '2011-10-28',
  '1-2 Miles'],
 ['11490',
  '217',
  'AW00011490',
  'NULL',
  'Danny',
  'NULL',
  'Rubio',
  '0',
  '1976-07-05',
  'S',
  'NULL',
  'M',
  'danny22@adventure-works.com',
  '20000.00',
  '0',
  '0',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '2',
  '5, avenue de la Gare',
  'NULL',
  '1 (11) 500 555-0122',
  '2013-04-04',
  '0-1 Miles'],
 ['11491',
  '255',
  'AW00011491',
  'NULL',
  'Andre',
  'NULL',
  'Perez',
  '0',
  '1982-04-02',
  'M',
  'NULL',
  'M',
  'andre20@adventure-works.com',
  '20000.00',
  '0',
  '0',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '2',
  '70 Tobi Drive',
  'NULL',
  '1 (11) 500 555-0112',
  '2011-11-07',
  '0-1 Miles'],
 ['11492',
  '115',
  'AW00011492',
  'NULL',
  'Terrence',
  'C',
  'Chander',
  '0',
  '1982-11-15',
  'S',
  'NULL',
  'M',
  'terrence16@adventure-works.com',
  '30000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '1',
  'Reiherweg 5014',
  'NULL',
  '1 (11) 500 555-0155',
  '2012-02-11',
  '2-5 Miles'],
 ['11493',
  '255',
  'AW00011493',
  'NULL',
  'Dawn',
  'T',
  'Wu',
  '0',
  '1976-05-31',
  'S',
  'NULL',
  'F',
  'dawn8@adventure-works.com',
  '40000.00',
  '2',
  '2',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '6344 St Paul Way',
  'NULL',
  '1 (11) 500 555-0139',
  '2011-11-14',
  '1-2 Miles'],
 ['11494',
  '267',
  'AW00011494',
  'NULL',
  'Jimmy',
  'M',
  'Gutierrez',
  '0',
  '1976-01-25',
  'S',
  'NULL',
  'M',
  'jimmy14@adventure-works.com',
  '40000.00',
  '2',
  '2',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '9627 N. Civic Drive',
  'NULL',
  '1 (11) 500 555-0112',
  '2011-12-23',
  '1-2 Miles'],
 ['11495',
  '154',
  'AW00011495',
  'NULL',
  'Francis',
  'NULL',
  'Jimenez',
  '0',
  '1977-03-03',
  'S',
  'NULL',
  'M',
  'francis3@adventure-works.com',
  '40000.00',
  '2',
  '2',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '1',
  'Curieweg 3991',
  'NULL',
  '1 (11) 500 555-0143',
  '2013-10-26',
  '1-2 Miles'],
 ['11496',
  '272',
  'AW00011496',
  'NULL',
  'Gary',
  'NULL',
  'Ortega',
  '0',
  '1976-04-15',
  'S',
  'NULL',
  'M',
  'gary31@adventure-works.com',
  '40000.00',
  '2',
  '2',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '2',
  '5009 Grasswood Circle',
  'NULL',
  '1 (11) 500 555-0197',
  '2011-11-30',
  '0-1 Miles'],
 ['11497',
  '261',
  'AW00011497',
  'NULL',
  'Katrina',
  'R',
  'Nath',
  '0',
  '1981-11-22',
  'S',
  'NULL',
  'F',
  'katrina17@adventure-works.com',
  '40000.00',
  '2',
  '2',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '2',
  '8874 Folson Drive',
  'NULL',
  '1 (11) 500 555-0154',
  '2013-11-04',
  '1-2 Miles'],
 ['11498',
  '49',
  'AW00011498',
  'NULL',
  'Arturo',
  'C',
  'Sun',
  '0',
  '1979-07-15',
  'S',
  'NULL',
  'M',
  'arturo14@adventure-works.com',
  '40000.00',
  '3',
  '3',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '2',
  '4023 Jasper Court',
  'NULL',
  '694-555-0114',
  '2013-02-28',
  '1-2 Miles'],
 ['11499',
  '311',
  'AW00011499',
  'NULL',
  'Pedro',
  'A',
  'Vance',
  '0',
  '1980-05-13',
  'S',
  'NULL',
  'M',
  'pedro4@adventure-works.com',
  '40000.00',
  '3',
  '3',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '2',
  '4438 Chrislend Court',
  'NULL',
  '149-555-0132',
  '2013-04-06',
  '1-2 Miles'],
 ['11500',
  '52',
  'AW00011500',
  'NULL',
  'Sarah',
  'V',
  'Simmons',
  '0',
  '1980-03-17',
  'S',
  'NULL',
  'F',
  'sarah40@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '1005 Valley Oak Plaza',
  'NULL',
  '579-555-0169',
  '2013-01-31',
  '0-1 Miles'],
 ['11501',
  '49',
  'AW00011501',
  'NULL',
  'Brandy',
  'P',
  'Chandra',
  '0',
  '1981-01-03',
  'S',
  'NULL',
  'F',
  'brandy20@adventure-works.com',
  '40000.00',
  '3',
  '3',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '2',
  '7089 Monti Circle',
  'NULL',
  '323-555-0162',
  '2013-03-27',
  '1-2 Miles'],
 ['11502',
  '63',
  'AW00011502',
  'NULL',
  'Jared',
  'NULL',
  'Peterson',
  '0',
  '1980-09-03',
  'S',
  'NULL',
  'M',
  'jared8@adventure-works.com',
  '40000.00',
  '4',
  '4',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '1',
  '6878 Dublin',
  'NULL',
  '879-555-0159',
  '2013-01-30',
  '0-1 Miles'],
 ['11503',
  '312',
  'AW00011503',
  'NULL',
  'Dennis',
  'G',
  'Wu',
  '0',
  '1936-04-11',
  'M',
  'NULL',
  'M',
  'dennis8@adventure-works.com',
  '50000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '9810 Rishell Ct.',
  'NULL',
  '724-555-0194',
  '2013-05-26',
  '1-2 Miles'],
 ['11504',
  '315',
  'AW00011504',
  'NULL',
  'Jordan',
  'P',
  'Baker',
  '0',
  '1936-10-17',
  'M',
  'NULL',
  'F',
  'jordan45@adventure-works.com',
  '40000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '3427 B Wildbrook Ct.',
  'NULL',
  '138-555-0117',
  '2013-05-01',
  '0-1 Miles'],
 ['11505',
  '43',
  'AW00011505',
  'NULL',
  'Jasmine',
  'A',
  'Powell',
  '0',
  '1972-01-04',
  'S',
  'NULL',
  'F',
  'jasmine48@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '5684 San Marino Ct.',
  'NULL',
  '847-555-0156',
  '2013-02-22',
  '1-2 Miles'],
 ['11506',
  '60',
  'AW00011506',
  'NULL',
  'Nicholas',
  'S',
  'Brown',
  '0',
  '1971-11-14',
  'S',
  'NULL',
  'M',
  'nicholas6@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '0',
  '2813 Dew Drop Circle',
  'NULL',
  '883-555-0144',
  '2013-03-08',
  '0-1 Miles'],
 ['11507',
  '69',
  'AW00011507',
  'NULL',
  'Isabella',
  'A',
  'Russell',
  '0',
  '1972-05-19',
  'S',
  'NULL',
  'F',
  'isabella30@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '2427 Pastime Dr',
  'NULL',
  '168-555-0190',
  '2013-02-17',
  '1-2 Miles'],
 ['11508',
  '626',
  'AW00011508',
  'NULL',
  'Elizabeth',
  'R',
  'Wilson',
  '0',
  '1972-01-04',
  'S',
  'NULL',
  'F',
  'elizabeth11@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '1144 N. Jackson Way',
  'NULL',
  '469-555-0110',
  '2013-05-02',
  '1-2 Miles'],
 ['11509',
  '347',
  'AW00011509',
  'NULL',
  'Roger',
  'NULL',
  'Harui',
  '0',
  '1964-07-22',
  'M',
  'NULL',
  'F',
  'roger4@adventure-works.com',
  '30000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '3989 Tice Valley Blvd.',
  'NULL',
  '731-555-0184',
  '2013-07-29',
  '5-10 Miles'],
 ['11510',
  '54',
  'AW00011510',
  'NULL',
  'Seth',
  'H',
  'Roberts',
  '0',
  '1959-01-10',
  'M',
  'NULL',
  'M',
  'seth40@adventure-works.com',
  '30000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '5989 Concord Ave',
  'NULL',
  '199-555-0147',
  '2013-03-12',
  '1-2 Miles'],
 ['11511',
  '543',
  'AW00011511',
  'NULL',
  'Caleb',
  'NULL',
  'Perry',
  '0',
  '1964-06-10',
  'M',
  'NULL',
  'M',
  'caleb4@adventure-works.com',
  '30000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '2324 Cherry Street',
  'NULL',
  '786-555-0137',
  '2013-03-13',
  '2-5 Miles'],
 ['11512',
  '59',
  'AW00011512',
  'NULL',
  'Natalie',
  'L',
  'Campbell',
  '0',
  '1976-08-05',
  'S',
  'NULL',
  'F',
  'natalie50@adventure-works.com',
  '20000.00',
  '3',
  '0',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '2',
  '3481 Broadmoor Drive',
  'NULL',
  '178-555-0147',
  '2013-12-28',
  '1-2 Miles'],
 ['11513',
  '62',
  'AW00011513',
  'NULL',
  'Alyssa',
  'A',
  'Howard',
  '0',
  '1965-09-23',
  'S',
  'NULL',
  'F',
  'alyssa38@adventure-works.com',
  '20000.00',
  '3',
  '0',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '2',
  '5780 Conifer Terrace',
  'NULL',
  '805-555-0188',
  '2013-06-08',
  '1-2 Miles'],
 ['11514',
  '642',
  'AW00011514',
  'NULL',
  'Dalton',
  'NULL',
  'Diaz',
  '0',
  '1965-04-16',
  'M',
  'NULL',
  'M',
  'dalton67@adventure-works.com',
  '30000.00',
  '1',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '1',
  '8033 Danesta Dr.',
  'NULL',
  '994-555-0158',
  '2013-06-24',
  '2-5 Miles'],
 ['11515',
  '301',
  'AW00011515',
  'NULL',
  'Shannon',
  'H',
  'Huang',
  '0',
  '1959-08-25',
  'M',
  'NULL',
  'F',
  'shannon6@adventure-works.com',
  '30000.00',
  '1',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '1',
  '4679 Duke Way',
  'NULL',
  '458-555-0116',
  '2011-08-31',
  '2-5 Miles'],
 ['11516',
  '310',
  'AW00011516',
  'NULL',
  'Mya',
  'NULL',
  'Gonzales',
  '0',
  '1976-10-13',
  'M',
  'NULL',
  'F',
  'mya17@adventure-works.com',
  '30000.00',
  '1',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '1',
  '8826 Fine Drive',
  'NULL',
  '211-555-0110',
  '2011-09-15',
  '2-5 Miles'],
 ['11517',
  '355',
  'AW00011517',
  'NULL',
  'Katherine',
  'A',
  'Bryant',
  '0',
  '1959-12-18',
  'M',
  'NULL',
  'F',
  'katherine44@adventure-works.com',
  '40000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '1',
  '8761 Dancing Court',
  'NULL',
  '802-555-0135',
  '2013-06-26',
  '0-1 Miles'],
 ['11518',
  '545',
  'AW00011518',
  'NULL',
  'Edward',
  'NULL',
  'Washington',
  '0',
  '1960-11-06',
  'M',
  'NULL',
  'M',
  'edward62@adventure-works.com',
  '40000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '1',
  '2747 Carmel Dr.',
  'NULL',
  '446-555-0170',
  '2013-10-27',
  '0-1 Miles'],
 ['11519',
  '49',
  'AW00011519',
  'NULL',
  'Jerome',
  'B',
  'Navarro',
  '0',
  '1960-09-13',
  'M',
  'NULL',
  'M',
  'jerome8@adventure-works.com',
  '40000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '1',
  '9537 Ridgewood Drive',
  'NULL',
  '934-555-0191',
  '2013-03-13',
  '1-2 Miles'],
 ['11520',
  '60',
  'AW00011520',
  'NULL',
  'Jada',
  'A',
  'Morgan',
  '0',
  '1960-10-08',
  'M',
  'NULL',
  'F',
  'jada14@adventure-works.com',
  '40000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '1',
  '8394 Lincoln Drive',
  'NULL',
  '160-555-0131',
  '2013-02-22',
  '0-1 Miles'],
 ['11521',
  '644',
  'AW00011521',
  'NULL',
  'Ariana',
  'NULL',
  'Peterson',
  '0',
  '1977-12-01',
  'M',
  'NULL',
  'F',
  'ariana4@adventure-works.com',
  '40000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '1',
  '9052 Blue Ridge Dr',
  'NULL',
  '298-555-0145',
  '2013-03-05',
  '0-1 Miles'],
 ['11522',
  '546',
  'AW00011522',
  'NULL',
  'Christian',
  'J',
  'Hughes',
  '0',
  '1972-06-17',
  'M',
  'NULL',
  'M',
  'christian26@adventure-works.com',
  '80000.00',
  '5',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '3279 W 46th St',
  'NULL',
  '231-555-0168',
  '2011-09-03',
  '0-1 Miles'],
 ['11523',
  '54',
  'AW00011523',
  'NULL',
  'Lucas',
  'V',
  'Taylor',
  '0',
  '1962-02-07',
  'M',
  'NULL',
  'M',
  'lucas22@adventure-works.com',
  '40000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '1',
  '2328 California Street',
  'NULL',
  '149-555-0146',
  '2013-02-15',
  '0-1 Miles'],
 ['11524',
  '374',
  'AW00011524',
  'NULL',
  'Alyssa',
  'L',
  'Jackson',
  '0',
  '1961-07-22',
  'M',
  'NULL',
  'F',
  'alyssa11@adventure-works.com',
  '40000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '1',
  '8752 Greenway Drive',
  'NULL',
  '398-555-0193',
  '2013-08-28',
  '1-2 Miles'],
 ['11525',
  '543',
  'AW00011525',
  'NULL',
  'Ariana',
  'NULL',
  'Cook',
  '0',
  '1961-07-08',
  'M',
  'NULL',
  'F',
  'ariana19@adventure-works.com',
  '40000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '1',
  '869 Aspen Drive',
  'NULL',
  '160-555-0119',
  '2011-09-06',
  '0-1 Miles'],
 ['11526',
  '70',
  'AW00011526',
  'NULL',
  'Katherine',
  'P',
  'Diaz',
  '0',
  '1973-01-30',
  'M',
  'NULL',
  'F',
  'katherine48@adventure-works.com',
  '40000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '1',
  '8160 Star Tree Court',
  'NULL',
  '147-555-0124',
  '2013-02-03',
  '1-2 Miles'],
 ['11527',
  '361',
  'AW00011527',
  'NULL',
  'Jenna',
  'J',
  'Green',
  '0',
  '1961-12-02',
  'M',
  'NULL',
  'F',
  'jenna14@adventure-works.com',
  '40000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '1',
  '905 Johnson Road',
  'NULL',
  '961-555-0153',
  '2013-02-07',
  '1-2 Miles'],
 ['11528',
  '325',
  'AW00011528',
  'NULL',
  'Joan',
  'NULL',
  'Washington',
  '0',
  '1968-08-15',
  'M',
  'NULL',
  'F',
  'joan7@adventure-works.com',
  '40000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '1',
  '2932 Esperanza Dr',
  'NULL',
  '732-555-0144',
  '2011-09-12',
  '1-2 Miles'],
 ['11529',
  '547',
  'AW00011529',
  'NULL',
  'Austin',
  'L',
  'Bryant',
  '0',
  '1963-05-16',
  'M',
  'NULL',
  'M',
  'austin14@adventure-works.com',
  '40000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '1',
  '786 Eastgate Ave',
  'NULL',
  '537-555-0113',
  '2011-09-24',
  '1-2 Miles'],
 ['11530',
  '54',
  'AW00011530',
  'NULL',
  'Andrew',
  'C',
  'Martinez',
  '0',
  '1963-01-23',
  'M',
  'NULL',
  'M',
  'andrew24@adventure-works.com',
  '40000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '1',
  '3183 Trasher Road',
  'NULL',
  '226-555-0113',
  '2013-01-28',
  '1-2 Miles'],
 ['11531',
  '300',
  'AW00011531',
  'NULL',
  'Nina',
  'R',
  'Yuan',
  '0',
  '1962-07-07',
  'M',
  'NULL',
  'F',
  'nina7@adventure-works.com',
  '40000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '1',
  '4851 Heights Ave.',
  'NULL',
  '568-555-0198',
  '2011-08-30',
  '0-1 Miles'],
 ['11532',
  '634',
  'AW00011532',
  'NULL',
  'Lauren',
  'NULL',
  'Miller',
  '0',
  '1962-08-26',
  'M',
  'NULL',
  'F',
  'lauren24@adventure-works.com',
  '40000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '1',
  '6437 Brookview Dr.',
  'NULL',
  '827-555-0183',
  '2013-04-05',
  '1-2 Miles'],
 ['11533',
  '280',
  'AW00011533',
  'NULL',
  'Ebony',
  'E',
  'Gill',
  '0',
  '1968-07-17',
  'M',
  'NULL',
  'F',
  'ebony35@adventure-works.com',
  '40000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '1',
  '3235 Mi Casa Court',
  'NULL',
  '327-555-0157',
  '2013-05-14',
  '1-2 Miles'],
 ['11534',
  '337',
  'AW00011534',
  'NULL',
  'Cameron',
  'M',
  'Lewis',
  '0',
  '1964-05-12',
  'S',
  'NULL',
  'M',
  'cameron39@adventure-works.com',
  '60000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '7665 Terrace Road',
  'NULL',
  '199-555-0180',
  '2011-09-18',
  '1-2 Miles'],
 ['11535',
  '543',
  'AW00011535',
  'NULL',
  'Devin',
  'NULL',
  'Nelson',
  '0',
  '1963-12-31',
  'M',
  'NULL',
  'M',
  'devin32@adventure-works.com',
  '60000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '2569 Webster Drive',
  'NULL',
  '256-555-0111',
  '2011-09-02',
  '0-1 Miles'],
 ['11536',
  '322',
  'AW00011536',
  'NULL',
  'Logan',
  'J',
  'Chow',
  '0',
  '1969-04-13',
  'M',
  'NULL',
  'M',
  'logan25@adventure-works.com',
  '60000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '6024 Lacanda',
  'NULL',
  '545-555-0121',
  '2011-09-24',
  '1-2 Miles'],
 ['11537',
  '310',
  'AW00011537',
  'NULL',
  'Dakota',
  'NULL',
  'Ross',
  '0',
  '1963-09-21',
  'M',
  'NULL',
  'M',
  'dakota3@adventure-works.com',
  '60000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '1024 Walnut Blvd.',
  'NULL',
  '186-555-0170',
  '2011-09-21',
  '0-1 Miles'],
 ['11538',
  '352',
  'AW00011538',
  'NULL',
  'Nicole',
  'B',
  'Taylor',
  '0',
  '1965-02-24',
  'S',
  'NULL',
  'F',
  'nicole9@adventure-works.com',
  '60000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '0',
  '112 Kathleen Drive',
  'NULL',
  '217-555-0170',
  '2011-09-16',
  '0-1 Miles'],
 ['11539',
  '311',
  'AW00011539',
  'NULL',
  'Justin',
  'NULL',
  'Washington',
  '0',
  '1970-08-18',
  'M',
  'NULL',
  'M',
  'justin10@adventure-works.com',
  '60000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '6092 Chestnut',
  'NULL',
  '701-555-0175',
  '2011-09-23',
  '1-2 Miles'],
 ['11540',
  '312',
  'AW00011540',
  'NULL',
  'Alberto',
  'C',
  'Navarro',
  '0',
  '1970-01-24',
  'S',
  'NULL',
  'M',
  'alberto11@adventure-works.com',
  '60000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '7615 Buena Vista',
  'NULL',
  '535-555-0131',
  '2011-09-13',
  '1-2 Miles'],
 ['11541',
  '547',
  'AW00011541',
  'NULL',
  'Aidan',
  'D',
  'Ross',
  '0',
  '1964-10-09',
  'S',
  'NULL',
  'M',
  'aidan4@adventure-works.com',
  '60000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '0',
  '2209 Sequoia Drive',
  'NULL',
  '154-555-0143',
  '2011-09-12',
  '0-1 Miles'],
 ['11542',
  '278',
  'AW00011542',
  'NULL',
  'Alejandro',
  'L',
  'Tang',
  '0',
  '1979-09-07',
  'S',
  'NULL',
  'M',
  'alejandro30@adventure-works.com',
  '20000.00',
  '1',
  '1',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '0',
  '5545 Clemson Court',
  'NULL',
  '1 (11) 500 555-0124',
  '2013-05-11',
  '0-1 Miles'],
 ['11543',
  '201',
  'AW00011543',
  'NULL',
  'Sheena',
  'NULL',
  'Chande',
  '0',
  '1973-08-16',
  'M',
  'NULL',
  'F',
  'sheena13@adventure-works.com',
  '20000.00',
  '1',
  '1',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '1',
  '9, rue des Vendangeurs',
  'NULL',
  '1 (11) 500 555-0178',
  '2013-12-21',
  '2-5 Miles'],
 ['11544',
  '127',
  'AW00011544',
  'NULL',
  'Joel',
  'A',
  'Garcia',
  '0',
  '1979-05-04',
  'M',
  'NULL',
  'M',
  'joel14@adventure-works.com',
  '30000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  'Essener Straße 8',
  'NULL',
  '1 (11) 500 555-0159',
  '2013-08-28',
  '1-2 Miles'],
 ['11545',
  '200',
  'AW00011545',
  'NULL',
  'Reginald',
  'NULL',
  'Dominguez',
  '0',
  '1973-09-22',
  'M',
  'NULL',
  'M',
  'reginald20@adventure-works.com',
  '30000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '88, rue Georges-Clémenceau',
  'NULL',
  '1 (11) 500 555-0137',
  '2013-07-13',
  '0-1 Miles'],
 ['11546',
  '189',
  'AW00011546',
  'NULL',
  'Christine',
  'NULL',
  'Chande',
  '0',
  '1973-09-11',
  'M',
  'NULL',
  'F',
  'christine10@adventure-works.com',
  '30000.00',
  '1',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '522bis, rue des Peupliers',
  'NULL',
  '1 (11) 500 555-0179',
  '2012-12-02',
  '2-5 Miles'],
 ['11547',
  '201',
  'AW00011547',
  'NULL',
  'Cindy',
  'E',
  'Sai',
  '0',
  '1979-03-05',
  'M',
  'NULL',
  'F',
  'cindy6@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '88, allée des Princes',
  'NULL',
  '1 (11) 500 555-0111',
  '2012-12-25',
  '0-1 Miles'],
 ['11548',
  '230',
  'AW00011548',
  'NULL',
  'Raymond',
  'NULL',
  'Sanchez',
  '0',
  '1974-04-11',
  'S',
  'NULL',
  'M',
  'raymond21@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '2381 Tupelo Drive',
  'NULL',
  '1 (11) 500 555-0160',
  '2011-12-02',
  '0-1 Miles'],
 ['11549',
  '257',
  'AW00011549',
  'NULL',
  'Crystal',
  'J',
  'Liang',
  '0',
  '1979-09-03',
  'M',
  'NULL',
  'F',
  'crystal17@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '5077 Bannock Ct.',
  'NULL',
  '1 (11) 500 555-0120',
  '2011-12-21',
  '0-1 Miles'],
 ['11550',
  '263',
  'AW00011550',
  'NULL',
  'Deb',
  'NULL',
  'Torres',
  '0',
  '1979-08-05',
  'S',
  'NULL',
  'F',
  'deb4@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '7553 Harness Circle',
  'NULL',
  '1 (11) 500 555-0125',
  '2012-01-20',
  '0-1 Miles'],
 ['11551',
  '215',
  'AW00011551',
  'NULL',
  'Shannon',
  'NULL',
  'Alvarez',
  '0',
  '1978-05-21',
  'S',
  'NULL',
  'M',
  'shannon26@adventure-works.com',
  '10000.00',
  '3',
  '3',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '1',
  '268, avenue de l´Europe',
  'NULL',
  '1 (11) 500 555-0159',
  '2013-03-01',
  '0-1 Miles'],
 ['11552',
  '135',
  'AW00011552',
  'NULL',
  'Eddie',
  'L',
  'Rubio',
  '0',
  '1972-11-23',
  'S',
  'NULL',
  'M',
  'eddie21@adventure-works.com',
  '20000.00',
  '1',
  '1',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '1',
  'Heiderplatz 662',
  'NULL',
  '1 (11) 500 555-0159',
  '2014-01-06',
  '1-2 Miles'],
 ['11553',
  '266',
  'AW00011553',
  'NULL',
  'Sharon',
  'D',
  'Luo',
  '0',
  '1973-03-08',
  'M',
  'NULL',
  'F',
  'sharon12@adventure-works.com',
  '20000.00',
  '1',
  '1',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '1',
  '6804 Coldwater Drive',
  'NULL',
  '1 (11) 500 555-0118',
  '2013-08-22',
  '2-5 Miles'],
 ['11554',
  '224',
  'AW00011554',
  'NULL',
  'Sydney',
  'NULL',
  'Simmons',
  '0',
  '1932-03-27',
  'S',
  'NULL',
  'F',
  'sydney37@adventure-works.com',
  '10000.00',
  '4',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '2',
  '88, avenue de l´ Union Centrale',
  'NULL',
  '1 (11) 500 555-0198',
  '2013-05-08',
  '0-1 Miles'],
 ['11555',
  '237',
  'AW00011555',
  'NULL',
  'Alexandria',
  'R',
  'Henderson',
  '0',
  '1937-07-04',
  'M',
  'NULL',
  'F',
  'alexandria5@adventure-works.com',
  '40000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '11, rue de la Cavalerie',
  'NULL',
  '1 (11) 500 555-0182',
  '2013-05-08',
  '0-1 Miles'],
 ['11556',
  '271',
  'AW00011556',
  'NULL',
  'Lucas',
  'J',
  'Evans',
  '0',
  '1972-11-10',
  'M',
  'NULL',
  'M',
  'lucas10@adventure-works.com',
  '20000.00',
  '1',
  '1',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '1',
  '3663 A St.',
  'NULL',
  '1 (11) 500 555-0153',
  '2013-12-21',
  '2-5 Miles'],
 ['11557',
  '278',
  'AW00011557',
  'NULL',
  'Felicia',
  'NULL',
  'Ramos',
  '0',
  '1972-07-14',
  'S',
  'NULL',
  'F',
  'felicia16@adventure-works.com',
  '30000.00',
  '1',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Clerical',
  'Administrativo',
  'Employé',
  '0',
  '0',
  '9557 Steven Circle',
  'NULL',
  '1 (11) 500 555-0191',
  '2013-08-08',
  '1-2 Miles'],
 ['11558',
  '276',
  'AW00011558',
  'NULL',
  'Ivan',
  'E',
  'Malhotra',
  '0',
  '1973-02-18',
  'S',
  'NULL',
  'M',
  'ivan3@adventure-works.com',
  '30000.00',
  '1',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Clerical',
  'Administrativo',
  'Employé',
  '0',
  '0',
  '5086 Nottingham Place',
  'NULL',
  '1 (11) 500 555-0198',
  '2013-11-30',
  '0-1 Miles'],
 ['11559',
  '161',
  'AW00011559',
  'NULL',
  'Frederick',
  'M',
  'Subram',
  '0',
  '1978-12-12',
  'S',
  'NULL',
  'M',
  'frederick12@adventure-works.com',
  '30000.00',
  '1',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Clerical',
  'Administrativo',
  'Employé',
  '0',
  '1',
  'Rotthäuser Weg 636',
  'NULL',
  '1 (11) 500 555-0111',
  '2013-11-29',
  '0-1 Miles'],
 ['11560',
  '248',
  'AW00011560',
  'NULL',
  'Whitney',
  'NULL',
  'Srini',
  '0',
  '1978-08-09',
  'S',
  'NULL',
  'F',
  'whitney7@adventure-works.com',
  '30000.00',
  '1',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Clerical',
  'Administrativo',
  'Employé',
  '0',
  '1',
  '7341 Rockne Drive',
  'NULL',
  '1 (11) 500 555-0115',
  '2013-12-03',
  '1-2 Miles'],
 ['11561',
  '159',
  'AW00011561',
  'NULL',
  'Briana',
  'NULL',
  'Dominguez',
  '0',
  '1972-01-21',
  'S',
  'NULL',
  'F',
  'briana12@adventure-works.com',
  '10000.00',
  '5',
  '5',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '2',
  'Hüttenstr 7005',
  'NULL',
  '1 (11) 500 555-0166',
  '2012-02-19',
  '0-1 Miles'],
 ['11562',
  '158',
  'AW00011562',
  'NULL',
  'Jarrod',
  'NULL',
  'Gonzalez',
  '0',
  '1971-10-17',
  'M',
  'NULL',
  'M',
  'jarrod17@adventure-works.com',
  '20000.00',
  '1',
  '1',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '1',
  'Nonnendamm 22',
  'NULL',
  '1 (11) 500 555-0151',
  '2013-06-26',
  '2-5 Miles'],
 ['11563',
  '247',
  'AW00011563',
  'NULL',
  'Cesar',
  'NULL',
  'Srini',
  '0',
  '1971-08-01',
  'S',
  'NULL',
  'M',
  'cesar7@adventure-works.com',
  '20000.00',
  '1',
  '1',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '1',
  '1547 Larkwood Ct.',
  'NULL',
  '1 (11) 500 555-0189',
  '2013-07-05',
  '2-5 Miles'],
 ['11564',
  '146',
  'AW00011564',
  'NULL',
  'Jorge',
  'L',
  'Liang',
  '0',
  '1972-01-09',
  'S',
  'NULL',
  'M',
  'jorge19@adventure-works.com',
  '20000.00',
  '1',
  '1',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '2',
  'Heiderweg 4982',
  'NULL',
  '1 (11) 500 555-0161',
  '2012-02-16',
  '0-1 Miles'],
 ['11565',
  '229',
  'AW00011565',
  'NULL',
  'Erik',
  'S',
  'Diaz',
  '0',
  '1971-12-30',
  'S',
  'NULL',
  'M',
  'erik4@adventure-works.com',
  '20000.00',
  '2',
  '2',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '0',
  '4408 Trinity Ave.',
  'NULL',
  '1 (11) 500 555-0157',
  '2013-09-08',
  '0-1 Miles'],
 ['11566',
  '226',
  'AW00011566',
  'NULL',
  'April',
  'L',
  'Shan',
  '0',
  '1973-03-01',
  'M',
  'NULL',
  'F',
  'april8@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '401, boulevard du Montparnasse',
  'NULL',
  '1 (11) 500 555-0172',
  '2013-01-28',
  '0-1 Miles'],
 ['11567',
  '165',
  'AW00011567',
  'NULL',
  'Carla',
  'NULL',
  'Perez',
  '0',
  '1978-09-19',
  'M',
  'NULL',
  'F',
  'carla24@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  'Klara Straße 8463',
  'NULL',
  '1 (11) 500 555-0146',
  '2013-03-15',
  '0-1 Miles'],
 ['11568',
  '236',
  'AW00011568',
  'NULL',
  'Alexia',
  'NULL',
  'Foster',
  '0',
  '1972-04-21',
  'S',
  'NULL',
  'F',
  'alexia13@adventure-works.com',
  '20000.00',
  '2',
  '2',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '0',
  '7246 Gloria Terr.',
  'NULL',
  '1 (11) 500 555-0182',
  '2012-01-10',
  '0-1 Miles'],
 ['11569',
  '274',
  'AW00011569',
  'NULL',
  'Troy',
  'NULL',
  'Malhotra',
  '0',
  '1977-05-06',
  'M',
  'NULL',
  'M',
  'troy5@adventure-works.com',
  '30000.00',
  '1',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '1',
  '1629 Queens Road',
  'NULL',
  '1 (11) 500 555-0125',
  '2013-11-20',
  '2-5 Miles'],
 ['11570',
  '124',
  'AW00011570',
  'NULL',
  'Kristin',
  'K',
  'Andersen',
  '0',
  '1971-07-22',
  'M',
  'NULL',
  'F',
  'kristin14@adventure-works.com',
  '30000.00',
  '1',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  'Zimmerstr 137',
  'NULL',
  '1 (11) 500 555-0199',
  '2012-03-25',
  '0-1 Miles'],
 ['11571',
  '183',
  'AW00011571',
  'NULL',
  'Joel',
  'NULL',
  'Sai',
  '0',
  '1971-11-15',
  'M',
  'NULL',
  'M',
  'joel5@adventure-works.com',
  '30000.00',
  '1',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '99, rue du Puits Dixme',
  'NULL',
  '1 (11) 500 555-0144',
  '2012-12-12',
  '0-1 Miles'],
 ['11572',
  '186',
  'AW00011572',
  'NULL',
  'Billy',
  'NULL',
  'Moreno',
  '0',
  '1977-03-11',
  'M',
  'NULL',
  'M',
  'billy8@adventure-works.com',
  '30000.00',
  '1',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '8733, rue Basse-du-Rocher',
  'NULL',
  '1 (11) 500 555-0165',
  '2012-12-09',
  '0-1 Miles'],
 ['11573',
  '276',
  'AW00011573',
  'NULL',
  'Meagan',
  'W',
  'Subram',
  '0',
  '1976-11-11',
  'S',
  'NULL',
  'F',
  'meagan13@adventure-works.com',
  '20000.00',
  '2',
  '2',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '1',
  '7469 Paradise Ct.',
  'NULL',
  '1 (11) 500 555-0144',
  '2013-07-27',
  '0-1 Miles'],
 ['11574',
  '274',
  'AW00011574',
  'NULL',
  'Karla',
  'V',
  'Luo',
  '0',
  '1971-01-14',
  'S',
  'NULL',
  'F',
  'karla6@adventure-works.com',
  '20000.00',
  '2',
  '2',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '1',
  '7390 Discovery Bay',
  'NULL',
  '1 (11) 500 555-0139',
  '2013-03-15',
  '0-1 Miles'],
 ['11575',
  '243',
  'AW00011575',
  'NULL',
  'Jackson',
  'NULL',
  'Campbell',
  '0',
  '1970-10-19',
  'S',
  'NULL',
  'M',
  'jackson37@adventure-works.com',
  '20000.00',
  '2',
  '2',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '2',
  '2109 Mt. Washington',
  'NULL',
  '1 (11) 500 555-0182',
  '2012-01-20',
  '0-1 Miles'],
 ['11576',
  '185',
  'AW00011576',
  'NULL',
  'Micah',
  'V',
  'Zhu',
  '0',
  '1970-08-10',
  'M',
  'NULL',
  'M',
  'micah1@adventure-works.com',
  '30000.00',
  '1',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '68, avenue de l´ Union Centrale',
  'NULL',
  '1 (11) 500 555-0185',
  '2012-12-15',
  '0-1 Miles'],
 ['11577',
  '194',
  'AW00011577',
  'NULL',
  'Janet',
  'NULL',
  'Serrano',
  '0',
  '1971-04-21',
  'M',
  'NULL',
  'F',
  'janet22@adventure-works.com',
  '30000.00',
  '1',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '6788 Edward Ave',
  'NULL',
  '1 (11) 500 555-0135',
  '2012-12-21',
  '0-1 Miles'],
 ['11578',
  '222',
  'AW00011578',
  'NULL',
  'Trisha',
  'NULL',
  'Huang',
  '0',
  '1970-05-08',
  'S',
  'NULL',
  'F',
  'trisha0@adventure-works.com',
  '10000.00',
  '3',
  '2',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '2',
  '33, place de la République',
  'NULL',
  '1 (11) 500 555-0128',
  '2012-11-29',
  '0-1 Miles'],
 ['11579',
  '272',
  'AW00011579',
  'NULL',
  'Clayton',
  'NULL',
  'Beck',
  '0',
  '1981-02-13',
  'S',
  'NULL',
  'M',
  'clayton38@adventure-works.com',
  '20000.00',
  '3',
  '3',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '1',
  '3626 N Ranchford Court',
  'NULL',
  '1 (11) 500 555-0184',
  '2013-07-31',
  '0-1 Miles'],
 ['11580',
  '230',
  'AW00011580',
  'NULL',
  'Melvin',
  'NULL',
  'Raje',
  '0',
  '1939-03-12',
  'M',
  'NULL',
  'M',
  'melvin12@adventure-works.com',
  '30000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '9113 Flamingo Dr.',
  'NULL',
  '1 (11) 500 555-0167',
  '2013-04-16',
  '2-5 Miles'],
 ['11581',
  '193',
  'AW00011581',
  'NULL',
  'Cindy',
  'NULL',
  'Jordan',
  '0',
  '1972-03-03',
  'M',
  'NULL',
  'F',
  'cindy2@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '987, rue de la Centenaire',
  'NULL',
  '1 (11) 500 555-0161',
  '2013-02-11',
  '0-1 Miles'],
 ['11582',
  '222',
  'AW00011582',
  'NULL',
  'Claudia',
  'E',
  'Ma',
  '0',
  '1974-04-09',
  'S',
  'NULL',
  'F',
  'claudia14@adventure-works.com',
  '30000.00',
  '2',
  '2',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '222, rue de Cambrai',
  'NULL',
  '1 (11) 500 555-0167',
  '2012-12-07',
  '0-1 Miles'],
 ['11583',
  '207',
  'AW00011583',
  'NULL',
  'Karla',
  'M',
  'Xu',
  '0',
  '1971-03-26',
  'S',
  'NULL',
  'F',
  'karla5@adventure-works.com',
  '30000.00',
  '2',
  '2',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '79, rue de la Comédie',
  'NULL',
  '1 (11) 500 555-0160',
  '2012-12-21',
  '0-1 Miles'],
 ['11584',
  '171',
  'AW00011584',
  'NULL',
  'Devin',
  'J',
  'Carter',
  '0',
  '1971-05-22',
  'M',
  'NULL',
  'M',
  'devin33@adventure-works.com',
  '40000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  'Buergermeister-ulrich-str 5',
  'NULL',
  '1 (11) 500 555-0183',
  '2013-09-16',
  '0-1 Miles'],
 ['11585',
  '231',
  'AW00011585',
  'NULL',
  'Kari',
  'L',
  'Perez',
  '0',
  '1976-03-04',
  'M',
  'NULL',
  'F',
  'kari21@adventure-works.com',
  '40000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '6124 Clayton Road',
  'NULL',
  '1 (11) 500 555-0192',
  '2014-01-10',
  '0-1 Miles'],
 ['11586',
  '278',
  'AW00011586',
  'NULL',
  'Alberto',
  'NULL',
  'Romero',
  '0',
  '1971-06-14',
  'M',
  'NULL',
  'M',
  'alberto10@adventure-works.com',
  '40000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '2348 Fruitwood',
  'NULL',
  '1 (11) 500 555-0133',
  '2013-10-28',
  '0-1 Miles'],
 ['11587',
  '184',
  'AW00011587',
  'NULL',
  'Kevin',
  'NULL',
  'Bryant',
  '0',
  '1975-10-18',
  'S',
  'NULL',
  'M',
  'kevin20@adventure-works.com',
  '30000.00',
  '2',
  '2',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '2',
  '21, rue du Puits Dixme',
  'NULL',
  '1 (11) 500 555-0186',
  '2012-11-29',
  '0-1 Miles'],
 ['11588',
  '223',
  'AW00011588',
  'NULL',
  'Candace',
  'NULL',
  'Mehta',
  '0',
  '1970-01-11',
  'M',
  'NULL',
  'F',
  'candace14@adventure-works.com',
  '30000.00',
  '2',
  '2',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '0',
  '2',
  '24, rue Royale',
  'NULL',
  '1 (11) 500 555-0112',
  '2012-11-29',
  '0-1 Miles'],
 ['11589',
  '257',
  'AW00011589',
  'NULL',
  'Ebony',
  'NULL',
  'Malhotra',
  '0',
  '1975-05-01',
  'M',
  'NULL',
  'F',
  'ebony4@adventure-works.com',
  '40000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '7959 Mt. Wilson Way',
  'NULL',
  '1 (11) 500 555-0113',
  '2013-06-04',
  '0-1 Miles'],
 ['11590',
  '221',
  'AW00011590',
  'NULL',
  'Erika',
  'F',
  'Diaz',
  '0',
  '1980-04-12',
  'S',
  'NULL',
  'F',
  'erika2@adventure-works.com',
  '30000.00',
  '2',
  '2',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '2',
  'Attaché de Presse',
  'NULL',
  '1 (11) 500 555-0124',
  '2012-12-01',
  '0-1 Miles'],
 ['11591',
  '209',
  'AW00011591',
  'NULL',
  'Stacey',
  'W',
  'Lu',
  '0',
  '1968-11-12',
  'S',
  'NULL',
  'F',
  'stacey12@adventure-works.com',
  '30000.00',
  '3',
  '3',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '0',
  '67, avenue de l´ Union Centrale',
  'NULL',
  '1 (11) 500 555-0157',
  '2011-01-11',
  '0-1 Miles'],
 ['11592',
  '198',
  'AW00011592',
  'NULL',
  'Darrell',
  'T',
  'Raji',
  '0',
  '1984-03-03',
  'S',
  'NULL',
  'M',
  'darrell9@adventure-works.com',
  '20000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '1',
  '68, impasse Notre-Dame',
  'NULL',
  '1 (11) 500 555-0178',
  '2011-01-11',
  '2-5 Miles'],
 ['11593',
  '183',
  'AW00011593',
  'NULL',
  'Armando',
  'NULL',
  'Moreno',
  '0',
  '1982-09-22',
  'S',
  'NULL',
  'M',
  'armando6@adventure-works.com',
  '20000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '1',
  '121, rue de Cambrai',
  'NULL',
  '1 (11) 500 555-0165',
  '2011-01-21',
  '2-5 Miles'],
 ['11594',
  '213',
  'AW00011594',
  'NULL',
  'Corey',
  'NULL',
  'Goel',
  '0',
  '1985-05-03',
  'S',
  'NULL',
  'M',
  'corey16@adventure-works.com',
  '20000.00',
  '4',
  '4',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '2',
  "11, rue de l'Espace De Schengen",
  'NULL',
  '1 (11) 500 555-0111',
  '2013-08-17',
  '0-1 Miles'],
 ['11595',
  '117',
  'AW00011595',
  'NULL',
  'Sebastian',
  'NULL',
  'Howard',
  '0',
  '1984-12-29',
  'S',
  'NULL',
  'M',
  'sebastian12@adventure-works.com',
  '20000.00',
  '5',
  '5',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '3',
  'Höhenstr 9419',
  'NULL',
  '1 (11) 500 555-0112',
  '2013-12-30',
  '0-1 Miles'],
 ['11596',
  '267',
  'AW00011596',
  'NULL',
  'Roger',
  'E',
  'Raje',
  '0',
  '1969-03-02',
  'M',
  'NULL',
  'M',
  'roger41@adventure-works.com',
  '40000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '9100 Main Street',
  'NULL',
  '1 (11) 500 555-0154',
  '2013-10-01',
  '0-1 Miles'],
 ['11597',
  '225',
  'AW00011597',
  'NULL',
  'Janelle',
  'C',
  'Chandra',
  '0',
  '1983-08-06',
  'S',
  'NULL',
  'F',
  'janelle2@adventure-works.com',
  '30000.00',
  '3',
  '3',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '2',
  '25, avenue de la Gare',
  'NULL',
  '1 (11) 500 555-0161',
  '2014-01-05',
  '0-1 Miles'],
 ['11598',
  '174',
  'AW00011598',
  'NULL',
  'Meredith',
  'B',
  'Ruiz',
  '0',
  '1983-12-30',
  'S',
  'NULL',
  'F',
  'meredith24@adventure-works.com',
  '30000.00',
  '3',
  '3',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '3',
  'Holzstr 6444',
  'NULL',
  '1 (11) 500 555-0113',
  '2012-03-11',
  '0-1 Miles'],
 ['11599',
  '211',
  'AW00011599',
  'NULL',
  'Melody',
  'NULL',
  'Diaz',
  '0',
  '1983-03-16',
  'S',
  'NULL',
  'F',
  'melody3@adventure-works.com',
  '20000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '1',
  'Attaché de Presse',
  'NULL',
  '1 (11) 500 555-0114',
  '2011-01-18',
  '1-2 Miles'],
 ['11600',
  '218',
  'AW00011600',
  'NULL',
  'Linda',
  'D',
  'Rubio',
  '0',
  '1982-10-05',
  'S',
  'NULL',
  'F',
  'linda36@adventure-works.com',
  '30000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '0',
  '1',
  '2616, rue de Linois',
  'NULL',
  '1 (11) 500 555-0153',
  '2013-05-06',
  '2-5 Miles'],
 ['11601',
  '209',
  'AW00011601',
  'NULL',
  'Ivan',
  'S',
  'Raman',
  '0',
  '1983-02-18',
  'S',
  'NULL',
  'M',
  'ivan8@adventure-works.com',
  '30000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '1',
  '335, rue Basse-du-Rocher',
  'NULL',
  '1 (11) 500 555-0119',
  '2011-01-19',
  '2-5 Miles'],
 ['11602',
  '135',
  'AW00011602',
  'NULL',
  'Larry',
  'NULL',
  'Gill',
  '0',
  '1982-10-11',
  'S',
  'NULL',
  'M',
  'larry16@adventure-works.com',
  '30000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '0',
  '1',
  'Am Gallberg 645',
  'NULL',
  '1 (11) 500 555-0125',
  '2013-07-10',
  '2-5 Miles'],
 ['11603',
  '244',
  'AW00011603',
  'NULL',
  'Geoffrey',
  'NULL',
  'Gonzalez',
  '0',
  '1982-08-06',
  'S',
  'NULL',
  'M',
  'geoffrey16@adventure-works.com',
  '30000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '0',
  '1',
  '1538 Golden Meadow',
  'NULL',
  '1 (11) 500 555-0131',
  '2012-01-18',
  '0-1 Miles'],
 ['11604',
  '275',
  'AW00011604',
  'NULL',
  'Edgar',
  'NULL',
  'Sanchez',
  '0',
  '1982-12-01',
  'S',
  'NULL',
  'M',
  'edgar21@adventure-works.com',
  '30000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '1',
  '6543 Jacobsen Street',
  'NULL',
  '1 (11) 500 555-0117',
  '2012-01-03',
  '2-5 Miles'],
 ['11605',
  '176',
  'AW00011605',
  'NULL',
  'Heidi',
  'L',
  'Subram',
  '0',
  '1982-05-20',
  'S',
  'NULL',
  'F',
  'heidi15@adventure-works.com',
  '20000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '1',
  'Auf den Kuhlen Straße 9',
  'NULL',
  '1 (11) 500 555-0183',
  '2012-03-08',
  '1-2 Miles'],
 ['11606',
  '212',
  'AW00011606',
  'NULL',
  'Melody',
  'NULL',
  'Ramos',
  '0',
  '1986-01-30',
  'S',
  'NULL',
  'F',
  'melody17@adventure-works.com',
  '10000.00',
  '0',
  '0',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '2',
  '2, rue de la Comédie',
  'NULL',
  '1 (11) 500 555-0182',
  '2011-01-08',
  '0-1 Miles'],
 ['11607',
  '202',
  'AW00011607',
  'NULL',
  'Clinton',
  'H',
  'Moreno',
  '0',
  '1986-05-05',
  'S',
  'NULL',
  'M',
  'clinton3@adventure-works.com',
  '20000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '1',
  '1',
  '610, rue des Rosiers',
  'NULL',
  '1 (11) 500 555-0152',
  '2011-01-19',
  '2-5 Miles'],
 ['11608',
  '217',
  'AW00011608',
  'NULL',
  'Cesar',
  'E',
  'Madan',
  '0',
  '1981-09-01',
  'S',
  'NULL',
  'M',
  'cesar6@adventure-works.com',
  '20000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '1',
  '774, rue Descartes',
  'NULL',
  '1 (11) 500 555-0157',
  '2013-12-13',
  '5-10 Miles'],
 ['11609',
  '277',
  'AW00011609',
  'NULL',
  'Eugene',
  'E',
  'Ye',
  '0',
  '1981-12-24',
  'S',
  'NULL',
  'M',
  'eugene13@adventure-works.com',
  '30000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '0',
  '1',
  '2877 Bounty Way',
  'NULL',
  '1 (11) 500 555-0128',
  '2012-01-28',
  '0-1 Miles'],
 ['11610',
  '269',
  'AW00011610',
  'NULL',
  'Blake',
  'NULL',
  'Collins',
  '0',
  '1980-10-20',
  'S',
  'NULL',
  'M',
  'blake47@adventure-works.com',
  '30000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '0',
  '1',
  '4519 Lydia Lane',
  'NULL',
  '1 (11) 500 555-0140',
  '2012-01-10',
  '0-1 Miles'],
 ['11611',
  '183',
  'AW00011611',
  'NULL',
  'Ernest',
  'NULL',
  'Lin',
  '0',
  '1985-02-23',
  'M',
  'NULL',
  'M',
  'ernest7@adventure-works.com',
  '20000.00',
  '0',
  '0',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '1',
  '65, rue Faubourg St Antoine',
  'NULL',
  '1 (11) 500 555-0190',
  '2011-01-23',
  '2-5 Miles'],
 ['11612',
  '230',
  'AW00011612',
  'NULL',
  'Keith',
  'NULL',
  'Andersen',
  '0',
  '1985-10-07',
  'S',
  'NULL',
  'M',
  'keith16@adventure-works.com',
  '20000.00',
  '0',
  '0',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Manual',
  'Obrero',
  'Ouvrier',
  '0',
  '2',
  '2411 Clark Creek Lane',
  'NULL',
  '1 (11) 500 555-0182',
  '2012-02-02',
  '0-1 Miles'],
 ['11613',
  '158',
  'AW00011613',
  'NULL',
  'Meredith',
  'M',
  'Prasad',
  '0',
  '1981-05-02',
  'S',
  'NULL',
  'F',
  'meredith8@adventure-works.com',
  '30000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '0',
  '1',
  'Hunzinger Allee 292',
  'NULL',
  '1 (11) 500 555-0162',
  '2012-05-13',
  '0-1 Miles'],
 ['11614',
  '172',
  'AW00011614',
  'NULL',
  'Katrina',
  'M',
  'Sharma',
  '0',
  '1981-02-13',
  'S',
  'NULL',
  'F',
  'katrina8@adventure-works.com',
  '30000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '0',
  '1',
  'Nollendorfplatz 62',
  'NULL',
  '1 (11) 500 555-0115',
  '2012-05-10',
  '2-5 Miles'],
 ['11615',
  '242',
  'AW00011615',
  'NULL',
  'Dwayne',
  'H',
  'Navarro',
  '0',
  '1981-05-20',
  'M',
  'NULL',
  'M',
  'dwayne9@adventure-works.com',
  '40000.00',
  '1',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '5717 Monterey Ave',
  'NULL',
  '1 (11) 500 555-0163',
  '2012-02-22',
  '1-2 Miles'],
 ['11616',
  '260',
  'AW00011616',
  'NULL',
  'Casey',
  'NULL',
  'Nath',
  '0',
  '1980-09-05',
  'M',
  'NULL',
  'F',
  'casey20@adventure-works.com',
  '40000.00',
  '1',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '3728 Chinquapin Ct.',
  'NULL',
  '1 (11) 500 555-0130',
  '2012-02-03',
  '1-2 Miles'],
 ['11617',
  '326',
  'AW00011617',
  'NULL',
  'Sean',
  'NULL',
  'Brooks',
  '0',
  '1964-10-01',
  'S',
  'NULL',
  'M',
  'sean8@adventure-works.com',
  '60000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '0',
  '6616 Baird Court',
  'NULL',
  '294-555-0111',
  '2011-09-10',
  '0-1 Miles'],
 ['11618',
  '49',
  'AW00011618',
  'NULL',
  'Brian',
  'M',
  'Ramirez',
  '0',
  '1964-10-21',
  'M',
  'NULL',
  'M',
  'brian19@adventure-works.com',
  '60000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '9145 Danesta Dr.',
  'NULL',
  '167-555-0144',
  '2013-02-09',
  '1-2 Miles'],
 ['11619',
  '69',
  'AW00011619',
  'NULL',
  'Sierra',
  'J',
  'Young',
  '0',
  '1978-10-29',
  'S',
  'NULL',
  'F',
  'sierra15@adventure-works.com',
  '50000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '3230 Virginia Hills',
  'NULL',
  '410-555-0125',
  '2013-02-08',
  '1-2 Miles'],
 ['11620',
  '609',
  'AW00011620',
  'NULL',
  'Megan',
  'M',
  'Rodriguez',
  '0',
  '1978-10-18',
  'S',
  'NULL',
  'F',
  'megan23@adventure-works.com',
  '50000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '7285 Roanwood Way',
  'NULL',
  '156-555-0144',
  '2013-02-08',
  '0-1 Miles'],
 ['11621',
  '611',
  'AW00011621',
  'NULL',
  'Leah',
  'R',
  'She',
  '0',
  '1978-08-19',
  'S',
  'NULL',
  'F',
  'leah19@adventure-works.com',
  '50000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '0',
  '8120 E Leland',
  'NULL',
  '787-555-0163',
  '2013-08-01',
  '0-1 Miles'],
 ['11622',
  '623',
  'AW00011622',
  'NULL',
  'Gabriel',
  'NULL',
  'Allen',
  '0',
  '1979-06-16',
  'M',
  'NULL',
  'M',
  'gabriel53@adventure-works.com',
  '50000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '8520 Waterview Place',
  'NULL',
  '787-555-0146',
  '2013-04-08',
  '0-1 Miles'],
 ['11623',
  '322',
  'AW00011623',
  'NULL',
  'Angela',
  'NULL',
  'Perry',
  '0',
  '1978-12-25',
  'S',
  'NULL',
  'F',
  'angela10@adventure-works.com',
  '50000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '4117 Missing Canyon Court',
  'NULL',
  '198-555-0159',
  '2011-09-07',
  '1-2 Miles'],
 ['11624',
  '339',
  'AW00011624',
  'NULL',
  'Ryan',
  'C',
  'Smith',
  '0',
  '1984-03-19',
  'S',
  'NULL',
  'M',
  'ryan39@adventure-works.com',
  '50000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '5462 El Pintado Rd.',
  'NULL',
  '394-555-0168',
  '2011-09-21',
  '1-2 Miles'],
 ['11625',
  '352',
  'AW00011625',
  'NULL',
  'Zachary',
  'S',
  'Moore',
  '0',
  '1978-07-19',
  'M',
  'NULL',
  'M',
  'zachary37@adventure-works.com',
  '50000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '9734 Jane Ct.',
  'NULL',
  '209-555-0118',
  '2011-09-24',
  '1-2 Miles'],
 ['11626',
  '360',
  'AW00011626',
  'NULL',
  'Destiny',
  'NULL',
  'Rogers',
  '0',
  '1978-12-12',
  'M',
  'NULL',
  'F',
  'destiny26@adventure-works.com',
  '50000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '3588 Vancouver Way',
  'NULL',
  '262-555-0170',
  '2011-09-01',
  '0-1 Miles'],
 ['11627',
  '372',
  'AW00011627',
  'NULL',
  'Dalton',
  'NULL',
  'Gray',
  '0',
  '1978-08-27',
  'M',
  'NULL',
  'M',
  'dalton76@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '4833 Nottingham Pl.',
  'NULL',
  '263-555-0144',
  '2013-08-27',
  '0-1 Miles'],
 ['11628',
  '298',
  'AW00011628',
  'NULL',
  'Mariah',
  'M',
  'Wood',
  '0',
  '1977-11-14',
  'S',
  'NULL',
  'F',
  'mariah6@adventure-works.com',
  '40000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '4088 Mills Place',
  'NULL',
  '662-555-0125',
  '2011-09-12',
  '1-2 Miles'],
 ['11629',
  '345',
  'AW00011629',
  'NULL',
  'Isaiah',
  'D',
  'Wright',
  '0',
  '1976-08-07',
  'S',
  'NULL',
  'M',
  'isaiah45@adventure-works.com',
  '40000.00',
  '4',
  '4',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '3',
  '7501 Sandy Cove Lane',
  'NULL',
  '525-555-0190',
  '2011-09-25',
  '10+ Miles'],
 ['11630',
  '637',
  'AW00011630',
  'NULL',
  'Haley',
  'NULL',
  'Powell',
  '0',
  '1977-06-23',
  'M',
  'NULL',
  'F',
  'haley27@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '418 Alfred Avenue',
  'NULL',
  '200-555-0198',
  '2011-09-21',
  '0-1 Miles'],
 ['11631',
  '52',
  'AW00011631',
  'NULL',
  'Antonio',
  'C',
  'Bennett',
  '0',
  '1976-08-12',
  'M',
  'NULL',
  'M',
  'antonio1@adventure-works.com',
  '60000.00',
  '1',
  '1',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '6200 Mt. Pisgah',
  'NULL',
  '380-555-0192',
  '2013-02-07',
  '0-1 Miles'],
 ['11632',
  '51',
  'AW00011632',
  'NULL',
  'Alexandra',
  'D',
  'Jenkins',
  '0',
  '1982-05-02',
  'M',
  'NULL',
  'F',
  'alexandra30@adventure-works.com',
  '60000.00',
  '1',
  '1',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '346 Sutcliffe Pl.',
  'NULL',
  '664-555-0121',
  '2013-01-30',
  '1-2 Miles'],
 ['11633',
  '612',
  'AW00011633',
  'NULL',
  'Thomas',
  'NULL',
  'Anderson',
  '0',
  '1977-11-23',
  'M',
  'NULL',
  'M',
  'thomas71@adventure-works.com',
  '40000.00',
  '1',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '8307 Monument Blvd.',
  'NULL',
  '315-555-0121',
  '2013-11-13',
  '0-1 Miles'],
 ['11634',
  '633',
  'AW00011634',
  'NULL',
  'Samuel',
  'NULL',
  'Collins',
  '0',
  '1977-12-10',
  'M',
  'NULL',
  'M',
  'samuel33@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '2240 Inverness Dr.',
  'NULL',
  '385-555-0179',
  '2013-03-11',
  '2-5 Miles'],
 ['11635',
  '300',
  'AW00011635',
  'NULL',
  'Darrell',
  'NULL',
  'Chande',
  '0',
  '1983-08-11',
  'M',
  'NULL',
  'M',
  'darrell4@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '3767 Banana Court',
  'NULL',
  '455-555-0152',
  '2013-02-08',
  '2-5 Miles'],
 ['11636',
  '314',
  'AW00011636',
  'NULL',
  'Kimberly',
  'K',
  'Cox',
  '0',
  '1978-06-21',
  'S',
  'NULL',
  'F',
  'kimberly14@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '752 Shuey Ave',
  'NULL',
  '383-555-0177',
  '2013-09-11',
  '2-5 Miles'],
 ['11637',
  '338',
  'AW00011637',
  'NULL',
  'Morgan',
  'NULL',
  'Hernandez',
  '0',
  '1983-08-11',
  'M',
  'NULL',
  'F',
  'morgan15@adventure-works.com',
  '70000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '3767 Benet Court',
  'NULL',
  '379-555-0153',
  '2013-02-08',
  '2-5 Miles'],
 ['11638',
  '339',
  'AW00011638',
  'NULL',
  'Antonio',
  'E',
  'Powell',
  '0',
  '1977-09-09',
  'M',
  'NULL',
  'M',
  'antonio8@adventure-works.com',
  '70000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '1328 Huntleigh Dr.',
  'NULL',
  '966-555-0128',
  '2013-10-19',
  '0-1 Miles'],
 ['11639',
  '339',
  'AW00011639',
  'NULL',
  'Angelica',
  'NULL',
  'Perry',
  '0',
  '1978-06-22',
  'M',
  'NULL',
  'F',
  'angelica7@adventure-works.com',
  '70000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '4059 High Street',
  'NULL',
  '936-555-0157',
  '2013-11-09',
  '2-5 Miles'],
 ['11640',
  '51',
  'AW00011640',
  'NULL',
  'Chloe',
  'A',
  'Wilson',
  '0',
  '1975-10-31',
  'M',
  'NULL',
  'F',
  'chloe40@adventure-works.com',
  '50000.00',
  '1',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '8885 Alta Vista',
  'NULL',
  '748-555-0137',
  '2013-03-15',
  '2-5 Miles'],
 ['11641',
  '49',
  'AW00011641',
  'NULL',
  'James',
  'D',
  'Chen',
  '0',
  '1976-02-09',
  'M',
  'NULL',
  'M',
  'james41@adventure-works.com',
  '50000.00',
  '1',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '3797 Baird Court',
  'NULL',
  '143-555-0119',
  '2013-01-30',
  '0-1 Miles'],
 ['11642',
  '59',
  'AW00011642',
  'NULL',
  'Morgan',
  'T',
  'Hughes',
  '0',
  '1976-06-24',
  'M',
  'NULL',
  'F',
  'morgan81@adventure-works.com',
  '50000.00',
  '1',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '3441 Wellington Ct.',
  'NULL',
  '165-555-0182',
  '2013-02-09',
  '2-5 Miles'],
 ['11643',
  '612',
  'AW00011643',
  'NULL',
  'Naomi',
  'L',
  'Munoz',
  '0',
  '1976-01-24',
  'M',
  'NULL',
  'F',
  'naomi7@adventure-works.com',
  '50000.00',
  '1',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '316 Rose Ann Ave',
  'NULL',
  '293-555-0147',
  '2013-04-21',
  '2-5 Miles'],
 ['11644',
  '634',
  'AW00011644',
  'NULL',
  'Charles',
  'S',
  'Torres',
  '0',
  '1975-04-06',
  'S',
  'NULL',
  'M',
  'charles52@adventure-works.com',
  '40000.00',
  '2',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '7347 Ready Road',
  'NULL',
  '202-555-0114',
  '2013-05-17',
  '2-5 Miles'],
 ['11645',
  '548',
  'AW00011645',
  'NULL',
  'Gabriella',
  'M',
  'Turner',
  '0',
  '1975-04-18',
  'S',
  'NULL',
  'F',
  'gabriella27@adventure-works.com',
  '40000.00',
  '2',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '9976 Manila Avenue',
  'NULL',
  '131-555-0142',
  '2013-11-10',
  '2-5 Miles'],
 ['11646',
  '612',
  'AW00011646',
  'NULL',
  'Anna',
  'A',
  'Foster',
  '0',
  '1980-03-15',
  'S',
  'NULL',
  'F',
  'anna41@adventure-works.com',
  '40000.00',
  '2',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '6580 Poor Ridge Court',
  'NULL',
  '288-555-0189',
  '2013-07-15',
  '2-5 Miles'],
 ['11647',
  '49',
  'AW00011647',
  'NULL',
  'Randy',
  'J',
  'Wu',
  '0',
  '1975-03-22',
  'S',
  'NULL',
  'M',
  'randy8@adventure-works.com',
  '40000.00',
  '2',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '0',
  '589 Ashwood Dr.',
  'NULL',
  '189-555-0124',
  '2013-02-15',
  '0-1 Miles'],
 ['11648',
  '307',
  'AW00011648',
  'NULL',
  'Kevin',
  'R',
  'Scott',
  '0',
  '1980-04-12',
  'S',
  'NULL',
  'M',
  'kevin50@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '4414 Kendree St.',
  'NULL',
  '364-555-0111',
  '2013-08-28',
  '2-5 Miles'],
 ['11649',
  '345',
  'AW00011649',
  'NULL',
  'Ian',
  'M',
  'White',
  '0',
  '1980-01-23',
  'M',
  'NULL',
  'M',
  'ian12@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '6289 Duck Horn Court',
  'NULL',
  '200-555-0138',
  '2013-04-05',
  '2-5 Miles'],
 ['11650',
  '325',
  'AW00011650',
  'NULL',
  'Caleb',
  'NULL',
  'Hayes',
  '0',
  '1975-01-23',
  'M',
  'NULL',
  'M',
  'caleb19@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '3824 White Dr',
  'NULL',
  '243-555-0128',
  '2013-02-15',
  '0-1 Miles'],
 ['11651',
  '49',
  'AW00011651',
  'NULL',
  'Patricia',
  'NULL',
  'Garcia',
  '0',
  '1982-12-13',
  'M',
  'NULL',
  'F',
  'patricia18@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '2500 Ward Court',
  'NULL',
  '501-555-0174',
  '2013-03-04',
  '2-5 Miles'],
 ['11652',
  '68',
  'AW00011652',
  'NULL',
  'Samuel',
  'V',
  'Russell',
  '0',
  '1982-05-01',
  'M',
  'NULL',
  'M',
  'samuel19@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '9668 Fieldbrook Pl',
  'NULL',
  '828-555-0112',
  '2013-06-26',
  '0-1 Miles'],
 ['11653',
  '543',
  'AW00011653',
  'NULL',
  'Sydney',
  'NULL',
  'Peterson',
  '0',
  '1982-06-04',
  'S',
  'NULL',
  'F',
  'sydney15@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '3152 Woodcrest Drive',
  'NULL',
  '848-555-0130',
  '2013-04-16',
  '2-5 Miles'],
 ['11654',
  '298',
  'AW00011654',
  'NULL',
  'Ariana',
  'C',
  'Sanchez',
  '0',
  '1977-03-18',
  'M',
  'NULL',
  'F',
  'ariana22@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '5278 Mill Road',
  'NULL',
  '435-555-0160',
  '2011-10-18',
  '2-5 Miles'],
 ['11655',
  '311',
  'AW00011655',
  'NULL',
  'Tamara',
  'NULL',
  'Sharma',
  '0',
  '1982-03-28',
  'S',
  'NULL',
  'F',
  'tamara21@adventure-works.com',
  '70000.00',
  '2',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '4221 Birch Bark Road',
  'NULL',
  '164-555-0166',
  '2013-09-29',
  '2-5 Miles'],
 ['11656',
  '329',
  'AW00011656',
  'NULL',
  'Katelyn',
  'K',
  'Perez',
  '0',
  '1977-03-19',
  'M',
  'NULL',
  'F',
  'katelyn35@adventure-works.com',
  '70000.00',
  '3',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '7494 Sunset Circle',
  'NULL',
  '864-555-0116',
  '2013-09-11',
  '2-5 Miles'],
 ['11657',
  '347',
  'AW00011657',
  'NULL',
  'Megan',
  'A',
  'Cox',
  '0',
  '1976-10-31',
  'M',
  'NULL',
  'F',
  'megan39@adventure-works.com',
  '70000.00',
  '3',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '9825 Coralie Drive',
  'NULL',
  '466-555-0163',
  '2013-05-25',
  '2-5 Miles'],
 ['11658',
  '348',
  'AW00011658',
  'NULL',
  'Robert',
  'NULL',
  'Mitchell',
  '0',
  '1985-08-03',
  'M',
  'NULL',
  'M',
  'robert53@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '9350 Mt. Hood Circle',
  'NULL',
  '132-555-0112',
  '2013-04-23',
  '0-1 Miles'],
 ['11659',
  '66',
  'AW00011659',
  'NULL',
  'Miguel',
  'NULL',
  'Adams',
  '0',
  '1974-10-20',
  'S',
  'NULL',
  'M',
  'miguel32@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '4912 Mellowood Street',
  'NULL',
  '910-555-0185',
  '2013-05-09',
  '2-5 Miles'],
 ['11660',
  '60',
  'AW00011660',
  'NULL',
  'Miranda',
  'NULL',
  'Gonzales',
  '0',
  '1980-01-19',
  'M',
  'NULL',
  'F',
  'miranda17@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '2458 Blocking Ct.',
  'NULL',
  '343-555-0197',
  '2013-05-08',
  '2-5 Miles'],
 ['11661',
  '49',
  'AW00011661',
  'NULL',
  'Jeremiah',
  'S',
  'James',
  '0',
  '1981-01-03',
  'S',
  'NULL',
  'M',
  'jeremiah39@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '4909 Vine Lane',
  'NULL',
  '716-555-0117',
  '2013-04-06',
  '2-5 Miles'],
 ['11662',
  '545',
  'AW00011662',
  'NULL',
  'Ethan',
  'NULL',
  'Kumar',
  '0',
  '1976-01-01',
  'S',
  'NULL',
  'M',
  'ethan24@adventure-works.com',
  '60000.00',
  '2',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '447 Barberry Court',
  'NULL',
  '214-555-0118',
  '2013-05-06',
  '2-5 Miles'],
 ['11663',
  '644',
  'AW00011663',
  'NULL',
  'Seth',
  'A',
  'Williams',
  '0',
  '1975-08-25',
  'M',
  'NULL',
  'M',
  'seth2@adventure-works.com',
  '70000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '3796 Peachwillow',
  'NULL',
  '878-555-0119',
  '2011-10-28',
  '0-1 Miles'],
 ['11664',
  '302',
  'AW00011664',
  'NULL',
  'Alyssa',
  'L',
  'Morgan',
  '0',
  '1975-08-09',
  'S',
  'NULL',
  'F',
  'alyssa30@adventure-works.com',
  '70000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '6751 Yosemite Ct.',
  'NULL',
  '144-555-0113',
  '2011-10-27',
  '2-5 Miles'],
 ['11665',
  '307',
  'AW00011665',
  'NULL',
  'Janet',
  'NULL',
  'Dominguez',
  '0',
  '1976-06-11',
  'M',
  'NULL',
  'F',
  'janet18@adventure-works.com',
  '70000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '8914 Jam Way',
  'NULL',
  '142-555-0139',
  '2011-10-13',
  '2-5 Miles'],
 ['11666',
  '374',
  'AW00011666',
  'NULL',
  'Angel',
  'NULL',
  'Baker',
  '0',
  '1981-12-13',
  'M',
  'NULL',
  'M',
  'angel30@adventure-works.com',
  '80000.00',
  '2',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '7119 Iowa Drive',
  'NULL',
  '616-555-0161',
  '2011-10-17',
  '0-1 Miles'],
 ['11667',
  '644',
  'AW00011667',
  'NULL',
  'Blake',
  'S',
  'Moore',
  '0',
  '1972-12-18',
  'M',
  'NULL',
  'M',
  'blake7@adventure-works.com',
  '70000.00',
  '2',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '1245 Clay Road',
  'NULL',
  '485-555-0144',
  '2013-07-04',
  '2-5 Miles'],
 ['11668',
  '300',
  'AW00011668',
  'NULL',
  'Jada',
  'C',
  'Collins',
  '0',
  '1984-03-02',
  'S',
  'NULL',
  'F',
  'jada15@adventure-works.com',
  '70000.00',
  '2',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '1978 Medina Dr.',
  'NULL',
  '169-555-0194',
  '2013-12-16',
  '2-5 Miles'],
 ['11669',
  '642',
  'AW00011669',
  'NULL',
  'Isabella',
  'NULL',
  'Simmons',
  '0',
  '1978-10-17',
  'S',
  'NULL',
  'F',
  'isabella25@adventure-works.com',
  '70000.00',
  '2',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '3495 Virginia Lane',
  'NULL',
  '424-555-0125',
  '2013-08-18',
  '2-5 Miles'],
 ['11670',
  '326',
  'AW00011670',
  'NULL',
  'Jacqueline',
  'NULL',
  'Perry',
  '0',
  '1973-04-15',
  'S',
  'NULL',
  'F',
  'jacqueline8@adventure-works.com',
  '70000.00',
  '2',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '2326 MountainAire Parkway',
  'NULL',
  '172-555-0136',
  '2013-04-13',
  '2-5 Miles'],
 ['11671',
  '316',
  'AW00011671',
  'NULL',
  'Jessica',
  'L',
  'Brown',
  '0',
  '1971-11-15',
  'S',
  'NULL',
  'F',
  'jessica51@adventure-works.com',
  '60000.00',
  '3',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '0',
  '8874 Dallis Drive',
  'NULL',
  '895-555-0138',
  '2011-10-21',
  '0-1 Miles'],
 ['11672',
  '300',
  'AW00011672',
  'NULL',
  'Chad',
  'C',
  'Jai',
  '0',
  '1972-03-20',
  'M',
  'NULL',
  'M',
  'chad13@adventure-works.com',
  '60000.00',
  '3',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '1386 Fillet Ave.',
  'NULL',
  '355-555-0162',
  '2013-07-25',
  '2-5 Miles'],
 ['11673',
  '612',
  'AW00011673',
  'NULL',
  'Susan',
  'C',
  'Ye',
  '0',
  '1977-02-03',
  'S',
  'NULL',
  'F',
  'susan19@adventure-works.com',
  '60000.00',
  '3',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '2093 Dubhe Court',
  'NULL',
  '268-555-0189',
  '2013-01-30',
  '0-1 Miles'],
 ['11674',
  '385',
  'AW00011674',
  'NULL',
  'Morgan',
  'B',
  'Rogers',
  '0',
  '1972-02-15',
  'M',
  'NULL',
  'F',
  'morgan49@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '1168 Escobar',
  'NULL',
  '405-555-0116',
  '2013-05-30',
  '2-5 Miles'],
 ['11675',
  '616',
  'AW00011675',
  'NULL',
  'Devin',
  'J',
  'Martinez',
  '0',
  '1977-01-29',
  'S',
  'NULL',
  'M',
  'devin16@adventure-works.com',
  '70000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '5571 Crawford',
  'NULL',
  '594-555-0155',
  '2011-10-25',
  '2-5 Miles'],
 ['11676',
  '475',
  'AW00011676',
  'NULL',
  'Alan',
  'NULL',
  'Hu',
  '0',
  '1971-08-13',
  'M',
  'NULL',
  'M',
  'alan24@adventure-works.com',
  '80000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '970 Pheasant Circle',
  'NULL',
  '723-555-0187',
  '2013-08-20',
  '0-1 Miles'],
 ['11677',
  '50',
  'AW00011677',
  'NULL',
  'Charles',
  'NULL',
  'Walker',
  '0',
  '1980-10-10',
  'S',
  'NULL',
  'M',
  'charles27@adventure-works.com',
  '60000.00',
  '2',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '189 Richview Dr',
  'NULL',
  '162-555-0110',
  '2013-04-05',
  '2-5 Miles'],
 ['11678',
  '654',
  'AW00011678',
  'NULL',
  'Johnny',
  'A',
  'Chavez',
  '0',
  '1974-07-28',
  'M',
  'NULL',
  'M',
  'johnny16@adventure-works.com',
  '70000.00',
  '5',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '4778 Geary Road',
  'NULL',
  '895-555-0161',
  '2011-10-10',
  '2-5 Miles'],
 ['11679',
  '633',
  'AW00011679',
  'NULL',
  'Dalton',
  'W',
  'Richardson',
  '0',
  '1974-11-05',
  'M',
  'NULL',
  'M',
  'dalton80@adventure-works.com',
  '70000.00',
  '5',
  '5',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '6453 Castle Hill Road',
  'NULL',
  '385-555-0179',
  '2013-10-13',
  '2-5 Miles'],
 ['11680',
  '634',
  'AW00011680',
  'NULL',
  'Kaylee',
  'E',
  'Nelson',
  '0',
  '1975-03-04',
  'M',
  'NULL',
  'F',
  'kaylee31@adventure-works.com',
  '70000.00',
  '5',
  '5',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '7755 West Road',
  'NULL',
  '139-555-0186',
  '2013-09-01',
  '0-1 Miles'],
 ['11681',
  '641',
  'AW00011681',
  'NULL',
  'Abigail',
  'E',
  'Jones',
  '0',
  '1975-02-04',
  'M',
  'NULL',
  'F',
  'abigail50@adventure-works.com',
  '70000.00',
  '5',
  '5',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '1433 C Mt. Hood Crest',
  'NULL',
  '889-555-0151',
  '2013-03-07',
  '2-5 Miles'],
 ['11682',
  '642',
  'AW00011682',
  'NULL',
  'Kaitlyn',
  'NULL',
  'Hall',
  '0',
  '1980-03-12',
  'M',
  'NULL',
  'F',
  'kaitlyn46@adventure-works.com',
  '70000.00',
  '5',
  '5',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '2',
  '5715 5th Ave.',
  'NULL',
  '209-555-0173',
  '2013-09-05',
  '0-1 Miles'],
 ['11683',
  '316',
  'AW00011683',
  'NULL',
  'Greg',
  'M',
  'Taylor',
  '0',
  '1974-07-05',
  'M',
  'NULL',
  'M',
  'greg10@adventure-works.com',
  '80000.00',
  '2',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '1052 Stanford Street',
  'NULL',
  '959-555-0135',
  '2011-10-05',
  '0-1 Miles'],
 ['11684',
  '634',
  'AW00011684',
  'NULL',
  'Devin',
  'NULL',
  'Parker',
  '0',
  '1971-03-31',
  'S',
  'NULL',
  'M',
  'devin40@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '4024 Calhoun Court',
  'NULL',
  '897-555-0155',
  '2013-07-01',
  '2-5 Miles'],
 ['11685',
  '545',
  'AW00011685',
  'NULL',
  'Jose',
  'A',
  'Griffin',
  '0',
  '1970-08-07',
  'M',
  'NULL',
  'M',
  'jose15@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '4769 Book Ct',
  'NULL',
  '789-555-0114',
  '2013-03-11',
  '0-1 Miles'],
 ['11686',
  '325',
  'AW00011686',
  'NULL',
  'Luke',
  'C',
  'Edwards',
  '0',
  '1976-04-09',
  'S',
  'NULL',
  'M',
  'luke33@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '4895 Hickory Drive',
  'NULL',
  '815-555-0192',
  '2013-03-08',
  '2-5 Miles'],
 ['11687',
  '331',
  'AW00011687',
  'NULL',
  'Cody',
  'NULL',
  'Torres',
  '0',
  '1976-07-09',
  'S',
  'NULL',
  'M',
  'cody5@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '3889 Castle Hill Road',
  'NULL',
  '269-555-0120',
  '2013-04-12',
  '0-1 Miles'],
 ['11688',
  '638',
  'AW00011688',
  'NULL',
  'Victoria',
  'A',
  'Morris',
  '0',
  '1976-12-21',
  'S',
  'NULL',
  'F',
  'victoria26@adventure-works.com',
  '80000.00',
  '3',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '7675 Moss Hollow Court',
  'NULL',
  '178-555-0156',
  '2011-10-02',
  '2-5 Miles'],
 ['11689',
  '614',
  'AW00011689',
  'NULL',
  'Ian',
  'D',
  'Diaz',
  '0',
  '1971-03-06',
  'M',
  'NULL',
  'M',
  'ian62@adventure-works.com',
  '80000.00',
  '3',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '4091 Hill Meadow Pl.',
  'NULL',
  '136-555-0185',
  '2013-08-26',
  '2-5 Miles'],
 ['11690',
  '632',
  'AW00011690',
  'NULL',
  'Caroline',
  'NULL',
  'Butler',
  '0',
  '1976-01-10',
  'M',
  'NULL',
  'F',
  'caroline15@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '5629 Seagull Court',
  'NULL',
  '101-555-0110',
  '2011-10-25',
  '2-5 Miles'],
 ['11691',
  '329',
  'AW00011691',
  'NULL',
  'Kaitlyn',
  'NULL',
  'Wilson',
  '0',
  '1974-12-30',
  'S',
  'NULL',
  'F',
  'kaitlyn29@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '24 Roslyn Drive',
  'NULL',
  '968-555-0196',
  '2013-02-08',
  '2-5 Miles'],
 ['11692',
  '301',
  'AW00011692',
  'NULL',
  'Caleb',
  'A',
  'Gonzales',
  '0',
  '1969-12-17',
  'M',
  'NULL',
  'M',
  'caleb14@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '2150 Pershing Dr',
  'NULL',
  '475-555-0114',
  '2013-07-07',
  '0-1 Miles'],
 ['11693',
  '50',
  'AW00011693',
  'NULL',
  'Hailey',
  'W',
  'Diaz',
  '0',
  '1975-09-21',
  'S',
  'NULL',
  'F',
  'hailey42@adventure-works.com',
  '50000.00',
  '4',
  '4',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '9063 Vista Aven.',
  'NULL',
  '835-555-0168',
  '2013-01-28',
  '0-1 Miles'],
 ['11694',
  '310',
  'AW00011694',
  'NULL',
  'Jonathon',
  'L',
  'Ortega',
  '0',
  '1969-09-21',
  'M',
  'NULL',
  'M',
  'jonathon16@adventure-works.com',
  '50000.00',
  '4',
  '4',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '4',
  '4453 Bannock Ct.',
  'NULL',
  '733-555-0157',
  '2013-04-11',
  '10+ Miles'],
 ['11695',
  '300',
  'AW00011695',
  'NULL',
  'Logan',
  'NULL',
  'Campbell',
  '0',
  '1969-07-10',
  'M',
  'NULL',
  'M',
  'logan33@adventure-works.com',
  '50000.00',
  '5',
  '5',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '3',
  '8910 Hilltop Road',
  'NULL',
  '164-555-0159',
  '2013-04-09',
  '5-10 Miles'],
 ['11696',
  '642',
  'AW00011696',
  'NULL',
  'Mackenzie',
  'T',
  'Campbell',
  '0',
  '1975-04-02',
  'S',
  'NULL',
  'F',
  'mackenzie29@adventure-works.com',
  '50000.00',
  '5',
  '5',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '3',
  '5905 Hawthorne Dr.',
  'NULL',
  '786-555-0184',
  '2011-10-01',
  '5-10 Miles'],
 ['11697',
  '348',
  'AW00011697',
  'NULL',
  'Eduardo',
  'NULL',
  'Lee',
  '0',
  '1975-06-21',
  'M',
  'NULL',
  'M',
  'eduardo21@adventure-works.com',
  '50000.00',
  '4',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '265 Jeff Ct',
  'NULL',
  '993-555-0176',
  '2013-08-07',
  '0-1 Miles'],
 ['11698',
  '53',
  'AW00011698',
  'NULL',
  'Jackson',
  'NULL',
  'Wright',
  '0',
  '1975-11-22',
  'M',
  'NULL',
  'M',
  'jackson51@adventure-works.com',
  '50000.00',
  '4',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '7796 Adobe Drive',
  'NULL',
  '112-555-0181',
  '2013-03-31',
  '2-5 Miles'],
 ['11699',
  '644',
  'AW00011699',
  'NULL',
  'Chase',
  'NULL',
  'Peterson',
  '0',
  '1968-09-12',
  'S',
  'NULL',
  'M',
  'chase5@adventure-works.com',
  '60000.00',
  '4',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '4315 Glenside Ct.',
  'NULL',
  '369-555-0167',
  '2013-05-29',
  '0-1 Miles'],
 ['11700',
  '385',
  'AW00011700',
  'NULL',
  'Xavier',
  'NULL',
  'Richardson',
  '0',
  '1969-05-24',
  'S',
  'NULL',
  'M',
  'xavier76@adventure-works.com',
  '60000.00',
  '4',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '2',
  '3249 E Leland',
  'NULL',
  '578-555-0132',
  '2013-02-02',
  '0-1 Miles'],
 ['11701',
  '347',
  'AW00011701',
  'NULL',
  'David',
  'NULL',
  'Hayes',
  '0',
  '1985-08-16',
  'M',
  'NULL',
  'M',
  'david56@adventure-works.com',
  '60000.00',
  '4',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '3570 Book Ct',
  'NULL',
  '872-555-0191',
  '2013-04-24',
  '2-5 Miles'],
 ['11702',
  '302',
  'AW00011702',
  'NULL',
  'Jenny',
  'S',
  'Zhou',
  '0',
  '1974-10-13',
  'S',
  'NULL',
  'F',
  'jenny11@adventure-works.com',
  '60000.00',
  '4',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '2107 Cardinal',
  'NULL',
  '763-555-0124',
  '2013-05-17',
  '0-1 Miles'],
 ['11703',
  '331',
  'AW00011703',
  'NULL',
  'Kaylee',
  'NULL',
  'Baker',
  '0',
  '1973-12-22',
  'S',
  'NULL',
  'F',
  'kaylee39@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '4668 Chilpancingo Park',
  'NULL',
  '609-555-0179',
  '2013-02-13',
  '0-1 Miles'],
 ['11704',
  '368',
  'AW00011704',
  'NULL',
  'Evan',
  'G',
  'Hernandez',
  '0',
  '1973-11-29',
  'S',
  'NULL',
  'M',
  'evan45@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '6337 Margo Drive',
  'NULL',
  '592-555-0143',
  '2013-07-07',
  '2-5 Miles'],
 ['11705',
  '385',
  'AW00011705',
  'NULL',
  'Brooke',
  'NULL',
  'Richardson',
  '0',
  '1979-05-18',
  'S',
  'NULL',
  'F',
  'brooke9@adventure-works.com',
  '60000.00',
  '2',
  '2',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '4171 Miller Avenue',
  'NULL',
  '752-555-0155',
  '2011-10-28',
  '2-5 Miles'],
 ['11706',
  '302',
  'AW00011706',
  'NULL',
  'Blake',
  'M',
  'Perez',
  '0',
  '1968-08-13',
  'M',
  'NULL',
  'M',
  'blake39@adventure-works.com',
  '60000.00',
  '4',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '3064 Fern Leaf Lane',
  'NULL',
  '146-555-0191',
  '2013-03-08',
  '2-5 Miles'],
 ['11707',
  '385',
  'AW00011707',
  'NULL',
  'Natalie',
  'NULL',
  'Cook',
  '0',
  '1969-06-20',
  'S',
  'NULL',
  'F',
  'natalie5@adventure-works.com',
  '60000.00',
  '4',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '3',
  '1064 William Way',
  'NULL',
  '468-555-0193',
  '2011-10-10',
  '0-1 Miles'],
 ['11708',
  '336',
  'AW00011708',
  'NULL',
  'Elizabeth',
  'NULL',
  'Weisman',
  '0',
  '1974-09-15',
  'S',
  'NULL',
  'F',
  'elizabeth6@adventure-works.com',
  '60000.00',
  '4',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '3',
  '7085 Valley Run',
  'NULL',
  '117-555-0118',
  '2011-10-25',
  '2-5 Miles'],
 ['11709',
  '69',
  'AW00011709',
  'NULL',
  'Hailey',
  'NULL',
  'Collins',
  '0',
  '1968-08-18',
  'S',
  'NULL',
  'F',
  'hailey45@adventure-works.com',
  '60000.00',
  '3',
  '2',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '0',
  '5609 Gary Drive',
  'NULL',
  '394-555-0185',
  '2013-03-11',
  '0-1 Miles'],
 ['11710',
  '331',
  'AW00011710',
  'NULL',
  'Zoe',
  'R',
  'Ramirez',
  '0',
  '1967-09-17',
  'M',
  'NULL',
  'F',
  'zoe6@adventure-works.com',
  '40000.00',
  '3',
  '2',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '8085 Grasswood Ct',
  'NULL',
  '712-555-0144',
  '2013-11-23',
  '2-5 Miles'],
 ['11711',
  '54',
  'AW00011711',
  'NULL',
  'Daniel',
  'NULL',
  'Davis',
  '0',
  '1973-12-04',
  'S',
  'NULL',
  'M',
  'daniel23@adventure-works.com',
  '70000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '263 La Orinda Pl.',
  'NULL',
  '217-555-0147',
  '2013-02-07',
  '0-1 Miles'],
 ['11712',
  '50',
  'AW00011712',
  'NULL',
  'Shelby',
  'NULL',
  'Rogers',
  '0',
  '1968-05-02',
  'M',
  'NULL',
  'F',
  'shelby19@adventure-works.com',
  '70000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '16 White Pl.',
  'NULL',
  '187-555-0139',
  '2013-02-04',
  '2-5 Miles'],
 ['11713',
  '623',
  'AW00011713',
  'NULL',
  'Kyle',
  'C',
  'Zhang',
  '0',
  '1967-09-17',
  'M',
  'NULL',
  'M',
  'kyle19@adventure-works.com',
  '70000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '4417 W. Watson Court',
  'NULL',
  '793-555-0118',
  '2013-07-07',
  '0-1 Miles'],
 ['11714',
  '359',
  'AW00011714',
  'NULL',
  'Alexandria',
  'E',
  'Long',
  '0',
  '1968-04-16',
  'M',
  'NULL',
  'F',
  'alexandria9@adventure-works.com',
  '70000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '5543 Hamilton Ave.',
  'NULL',
  '676-555-0172',
  '2013-02-18',
  '2-5 Miles'],
 ['11715',
  '361',
  'AW00011715',
  'NULL',
  'Chloe',
  'F',
  'Robinson',
  '0',
  '1968-03-20',
  'M',
  'NULL',
  'F',
  'chloe28@adventure-works.com',
  '70000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '6779 Willcrest Circle',
  'NULL',
  '570-555-0117',
  '2013-12-26',
  '2-5 Miles'],
 ['11716',
  '314',
  'AW00011716',
  'NULL',
  'Evan',
  'NULL',
  'Kelly',
  '0',
  '1967-04-20',
  'S',
  'NULL',
  'M',
  'evan2@adventure-works.com',
  '40000.00',
  '4',
  '2',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '9531 Lancaster',
  'NULL',
  '222-555-0139',
  '2013-05-31',
  '2-5 Miles'],
 ['11717',
  '539',
  'AW00011717',
  'NULL',
  'Marcus',
  'J',
  'Jones',
  '0',
  '1972-08-29',
  'M',
  'NULL',
  'M',
  'marcus3@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '1',
  '4836 Marina',
  'NULL',
  '465-555-0162',
  '2013-05-25',
  '0-1 Miles'],
 ['11718',
  '546',
  'AW00011718',
  'NULL',
  'Sarah',
  'T',
  'Jones',
  '0',
  '1972-11-10',
  'M',
  'NULL',
  'F',
  'sarah5@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '2935 Pine Creek Way',
  'NULL',
  '585-555-0177',
  '2013-03-06',
  '0-1 Miles'],
 ['11719',
  '49',
  'AW00011719',
  'NULL',
  'Blake',
  'P',
  'Green',
  '0',
  '1971-05-05',
  'M',
  'NULL',
  'M',
  'blake32@adventure-works.com',
  '40000.00',
  '4',
  '2',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '2850 D Bel Air Dr',
  'NULL',
  '397-555-0128',
  '2013-04-26',
  '2-5 Miles'],
 ['11720',
  '359',
  'AW00011720',
  'NULL',
  'Morgan',
  'P',
  'Morris',
  '0',
  '1965-09-23',
  'M',
  'NULL',
  'F',
  'morgan48@adventure-works.com',
  '40000.00',
  '4',
  '2',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '9671 Leewood Place',
  'NULL',
  '178-555-0115',
  '2013-05-17',
  '2-5 Miles'],
 ['11721',
  '336',
  'AW00011721',
  'NULL',
  'Jennifer',
  'A',
  'Alexander',
  '0',
  '1971-01-18',
  'M',
  'NULL',
  'F',
  'jennifer92@adventure-works.com',
  '40000.00',
  '4',
  '2',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '4195 San Paolo',
  'NULL',
  '623-555-0122',
  '2013-06-15',
  '0-1 Miles'],
 ['11722',
  '609',
  'AW00011722',
  'NULL',
  'Julian',
  'S',
  'Hughes',
  '0',
  '1965-12-30',
  'M',
  'NULL',
  'M',
  'julian13@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '4408 Trinity Ave.',
  'NULL',
  '301-555-0114',
  '2013-07-30',
  '0-1 Miles'],
 ['11723',
  '64',
  'AW00011723',
  'NULL',
  'Luke',
  'A',
  'Coleman',
  '0',
  '1973-02-17',
  'S',
  'NULL',
  'M',
  'luke24@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '1',
  '613 Glen Wood Drive',
  'NULL',
  '959-555-0119',
  '2013-01-31',
  '2-5 Miles'],
 ['11724',
  '65',
  'AW00011724',
  'NULL',
  'Jason',
  'NULL',
  'Carter',
  '0',
  '1972-10-12',
  'S',
  'NULL',
  'M',
  'jason39@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '1',
  '4848 Azalea Ave.',
  'NULL',
  '234-555-0170',
  '2013-02-05',
  '2-5 Miles'],
 ['11725',
  '612',
  'AW00011725',
  'NULL',
  'Jose',
  'K',
  'Li',
  '0',
  '1973-03-16',
  'S',
  'NULL',
  'M',
  'jose20@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '1',
  '2033 Woodbury Place',
  'NULL',
  '145-555-0188',
  '2013-04-01',
  '0-1 Miles'],
 ['11726',
  '612',
  'AW00011726',
  'NULL',
  'Micah',
  'R',
  'Liang',
  '0',
  '1973-01-13',
  'S',
  'NULL',
  'M',
  'micah4@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '1',
  '4685 York Dr',
  'NULL',
  '843-555-0120',
  '2013-10-10',
  '2-5 Miles'],
 ['11727',
  '343',
  'AW00011727',
  'NULL',
  'Benjamin',
  'NULL',
  'Taylor',
  '0',
  '1973-01-05',
  'S',
  'NULL',
  'M',
  'benjamin43@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '2078 Jennifer Way',
  'NULL',
  '571-555-0135',
  '2011-10-12',
  '0-1 Miles'],
 ['11728',
  '553',
  'AW00011728',
  'NULL',
  'Logan',
  'H',
  'White',
  '0',
  '1965-07-06',
  'M',
  'NULL',
  'M',
  'logan64@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '5087 Bonita Ave.',
  'NULL',
  '710-555-0132',
  '2013-06-11',
  '2-5 Miles'],
 ['11729',
  '623',
  'AW00011729',
  'NULL',
  'Caleb',
  'NULL',
  'Campbell',
  '0',
  '1971-05-03',
  'M',
  'NULL',
  'M',
  'caleb36@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '1895 San Carlos Ave.',
  'NULL',
  '459-555-0187',
  '2013-07-27',
  '2-5 Miles'],
 ['11730',
  '634',
  'AW00011730',
  'NULL',
  'Emma',
  'NULL',
  'Torres',
  '0',
  '1966-04-01',
  'M',
  'NULL',
  'F',
  'emma40@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '6062 Mota Dr.',
  'NULL',
  '192-555-0182',
  '2013-05-11',
  '2-5 Miles'],
 ['11731',
  '302',
  'AW00011731',
  'NULL',
  'Tanya',
  'H',
  'Gill',
  '0',
  '1966-02-16',
  'M',
  'NULL',
  'F',
  'tanya10@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '8850 Thunderbird Drive',
  'NULL',
  '742-555-0111',
  '2013-03-16',
  '2-5 Miles'],
 ['11732',
  '525',
  'AW00011732',
  'NULL',
  'Erick',
  'NULL',
  'Sanchez',
  '0',
  '1970-02-04',
  'M',
  'NULL',
  'M',
  'erick20@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '664 Book Pl',
  'NULL',
  '827-555-0145',
  '2013-06-09',
  '2-5 Miles'],
 ['11733',
  '311',
  'AW00011733',
  'NULL',
  'Kristi',
  'J',
  'Schmidt',
  '0',
  '1970-07-23',
  'M',
  'NULL',
  'F',
  'kristi27@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '1536 Camino Verde Ct.',
  'NULL',
  '995-555-0114',
  '2014-01-01',
  '2-5 Miles'],
 ['11734',
  '312',
  'AW00011734',
  'NULL',
  'Omar',
  'J',
  'Chen',
  '0',
  '1970-08-21',
  'M',
  'NULL',
  'M',
  'omar2@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '1',
  '3181 Hacienda',
  'NULL',
  '938-555-0117',
  '2013-06-21',
  '0-1 Miles'],
 ['11735',
  '626',
  'AW00011735',
  'NULL',
  'Sydney',
  'K',
  'Gray',
  '0',
  '1964-07-21',
  'M',
  'NULL',
  'F',
  'sydney16@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '1229 Apollo Way',
  'NULL',
  '637-555-0114',
  '2013-02-24',
  '0-1 Miles'],
 ['11736',
  '322',
  'AW00011736',
  'NULL',
  'Sebastian',
  'NULL',
  'Sanchez',
  '0',
  '1970-09-21',
  'M',
  'NULL',
  'M',
  'sebastian16@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '1',
  '7706 California St.',
  'NULL',
  '404-555-0117',
  '2013-10-17',
  '0-1 Miles'],
 ['11737',
  '355',
  'AW00011737',
  'NULL',
  'Megan',
  'A',
  'Martin',
  '0',
  '1970-02-04',
  'M',
  'NULL',
  'F',
  'megan17@adventure-works.com',
  '60000.00',
  '4',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '8243 Gilardy Drive',
  'NULL',
  '612-555-0171',
  '2013-02-14',
  '2-5 Miles'],
 ['11738',
  '59',
  'AW00011738',
  'NULL',
  'Elijah',
  'NULL',
  'Alexander',
  '0',
  '1970-10-05',
  'M',
  'NULL',
  'M',
  'elijah20@adventure-works.com',
  '60000.00',
  '4',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '6933 Sutton Circle',
  'NULL',
  '100-555-0155',
  '2013-02-02',
  '2-5 Miles'],
 ['11739',
  '65',
  'AW00011739',
  'NULL',
  'Aaron',
  'L',
  'King',
  '0',
  '1964-11-10',
  'M',
  'NULL',
  'M',
  'aaron51@adventure-works.com',
  '70000.00',
  '2',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '2243 W St.',
  'NULL',
  '600-555-0195',
  '2013-01-13',
  '0-1 Miles'],
 ['11740',
  '68',
  'AW00011740',
  'NULL',
  'Jan',
  'M',
  'Hall',
  '0',
  '1964-10-21',
  'M',
  'NULL',
  'F',
  'jan18@adventure-works.com',
  '70000.00',
  '5',
  '5',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '3',
  '5793 West Road',
  'NULL',
  '118-555-0131',
  '2013-03-07',
  '10+ Miles'],
 ['11741',
  '307',
  'AW00011741',
  'NULL',
  'Tamara',
  'L',
  'Chander',
  '0',
  '1965-01-22',
  'M',
  'NULL',
  'F',
  'tamara27@adventure-works.com',
  '80000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '6344 Dartmouth Way',
  'NULL',
  '112-555-0164',
  '2011-10-15',
  '0-1 Miles'],
 ['11742',
  '355',
  'AW00011742',
  'NULL',
  'Edward',
  'NULL',
  'Lewis',
  '0',
  '1964-05-01',
  'S',
  'NULL',
  'M',
  'edward43@adventure-works.com',
  '60000.00',
  '3',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '3508 Canning Road',
  'NULL',
  '936-555-0189',
  '2011-10-03',
  '0-1 Miles'],
 ['11743',
  '372',
  'AW00011743',
  'NULL',
  'Chase',
  'E',
  'Kelly',
  '0',
  '1974-09-09',
  'M',
  'NULL',
  'M',
  'chase3@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '5940 Dleta Road',
  'NULL',
  '153-555-0118',
  '2011-10-25',
  '0-1 Miles'],
 ['11744',
  '372',
  'AW00011744',
  'NULL',
  'Stephanie',
  'D',
  'Campbell',
  '0',
  '1964-03-06',
  'M',
  'NULL',
  'F',
  'stephanie54@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '6339 E. 108th Street',
  'NULL',
  '712-555-0117',
  '2013-04-13',
  '2-5 Miles'],
 ['11745',
  '644',
  'AW00011745',
  'NULL',
  'Allison',
  'NULL',
  'Gonzalez',
  '0',
  '1964-04-11',
  'M',
  'NULL',
  'F',
  'allison31@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '3345 Macaroon Drive',
  'NULL',
  '728-555-0144',
  '2011-10-10',
  '0-1 Miles'],
 ['11746',
  '642',
  'AW00011746',
  'NULL',
  'Seth',
  'NULL',
  'Brooks',
  '0',
  '1964-05-30',
  'S',
  'NULL',
  'M',
  'seth74@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '733 Eaker Way',
  'NULL',
  '771-555-0118',
  '2013-01-28',
  '2-5 Miles'],
 ['11747',
  '614',
  'AW00011747',
  'NULL',
  'Destiny',
  'NULL',
  'Davis',
  '0',
  '1963-08-09',
  'M',
  'NULL',
  'F',
  'destiny5@adventure-works.com',
  '70000.00',
  '5',
  '4',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '7121 Oakleaf Ct.',
  'NULL',
  '251-555-0153',
  '2013-08-07',
  '2-5 Miles'],
 ['11748',
  '69',
  'AW00011748',
  'NULL',
  'Blake',
  'NULL',
  'Hill',
  '0',
  '1964-01-15',
  'M',
  'NULL',
  'M',
  'blake30@adventure-works.com',
  '70000.00',
  '5',
  '4',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '1315 Norse Drive',
  'NULL',
  '171-555-0174',
  '2013-06-07',
  '0-1 Miles'],
 ['11749',
  '2',
  'AW00011749',
  'NULL',
  'Eduardo',
  'C',
  'Jackson',
  '0',
  '1980-09-09',
  'M',
  'NULL',
  'M',
  'eduardo10@adventure-works.com',
  '80000.00',
  '4',
  '4',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '0',
  '1',
  '5524 Virgil St',
  'NULL',
  '1 (11) 500 555-0114',
  '2013-04-08',
  '0-1 Miles'],
 ['11750',
  '10',
  'AW00011750',
  'NULL',
  'Latoya',
  'A',
  'She',
  '0',
  '1984-09-17',
  'M',
  'NULL',
  'F',
  'latoya0@adventure-works.com',
  '60000.00',
  '2',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '2681 Black Walnut Ct.',
  'NULL',
  '1 (11) 500 555-0166',
  '2011-07-14',
  '0-1 Miles'],
 ['11751',
  '36',
  'AW00011751',
  'NULL',
  'Victoria',
  'NULL',
  'Gonzales',
  '0',
  '1976-01-14',
  'M',
  'NULL',
  'F',
  'victoria63@adventure-works.com',
  '80000.00',
  '4',
  '4',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '1',
  '1872 Walnut Avenue',
  'NULL',
  '1 (11) 500 555-0176',
  '2011-07-08',
  '0-1 Miles'],
 ['11752',
  '4',
  'AW00011752',
  'NULL',
  'Lauren',
  'NULL',
  'Bryant',
  '0',
  '1981-05-03',
  'M',
  'NULL',
  'F',
  'lauren64@adventure-works.com',
  '80000.00',
  '4',
  '4',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '1',
  '7551 Santa Lucia',
  'NULL',
  '1 (11) 500 555-0156',
  '2013-02-27',
  '0-1 Miles'],
 ['11753',
  '2',
  'AW00011753',
  'NULL',
  'Felicia',
  'J',
  'Ortega',
  '0',
  '1975-09-15',
  'M',
  'NULL',
  'F',
  'felicia20@adventure-works.com',
  '80000.00',
  '4',
  '4',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '1',
  '452 Rain Drop Circle',
  'NULL',
  '1 (11) 500 555-0185',
  '2013-04-19',
  '0-1 Miles'],
 ['11754',
  '7',
  'AW00011754',
  'NULL',
  'Janet',
  'L',
  'Ortega',
  '0',
  '1976-01-05',
  'M',
  'NULL',
  'F',
  'janet27@adventure-works.com',
  '90000.00',
  '2',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '4921 Oakwood Circle',
  'NULL',
  '1 (11) 500 555-0182',
  '2011-07-16',
  '0-1 Miles'],
 ['11755',
  '25',
  'AW00011755',
  'NULL',
  'Willie',
  'J',
  'Pal',
  '0',
  '1973-11-12',
  'M',
  'NULL',
  'M',
  'willie31@adventure-works.com',
  '60000.00',
  '2',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '9893 Hastings Dr',
  'NULL',
  '1 (11) 500 555-0164',
  '2013-05-31',
  '2-5 Miles'],
 ['11756',
  '17',
  'AW00011756',
  'NULL',
  'Linda',
  'C',
  'Ortega',
  '0',
  '1974-03-13',
  'S',
  'NULL',
  'F',
  'linda37@adventure-works.com',
  '60000.00',
  '2',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '3544 Brush Creek Drive',
  'NULL',
  '1 (11) 500 555-0150',
  '2011-07-28',
  '0-1 Miles'],
 ['11757',
  '33',
  'AW00011757',
  'NULL',
  'Vincent',
  'L',
  'Cai',
  '0',
  '1979-05-11',
  'M',
  'NULL',
  'M',
  'vincent21@adventure-works.com',
  '70000.00',
  '5',
  '5',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '3',
  '5917 Panoramic Avenue',
  'NULL',
  '1 (11) 500 555-0116',
  '2013-02-23',
  '10+ Miles'],
 ['11758',
  '3',
  'AW00011758',
  'NULL',
  'Colin',
  'NULL',
  'Yuan',
  '0',
  '1979-12-19',
  'M',
  'NULL',
  'M',
  'colin30@adventure-works.com',
  '70000.00',
  '5',
  '5',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '3',
  '1064 William Way',
  'NULL',
  '1 (11) 500 555-0170',
  '2013-03-30',
  '10+ Miles'],
 ['11759',
  '28',
  'AW00011759',
  'NULL',
  'Dawn',
  'L',
  'Nath',
  '0',
  '1980-11-18',
  'M',
  'NULL',
  'F',
  'dawn42@adventure-works.com',
  '110000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '0',
  '1',
  '6969 Eaker Way',
  'NULL',
  '1 (11) 500 555-0193',
  '2011-07-10',
  '0-1 Miles'],
 ['11760',
  '29',
  'AW00011760',
  'NULL',
  'Melody',
  'R',
  'Moreno',
  '0',
  '1973-04-25',
  'M',
  'NULL',
  'F',
  'melody7@adventure-works.com',
  '70000.00',
  '5',
  '5',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '4',
  '6312 San Ramon Road',
  'NULL',
  '1 (11) 500 555-0163',
  '2013-03-31',
  '10+ Miles'],
 ['11761',
  '31',
  'AW00011761',
  'NULL',
  'Edgar',
  'NULL',
  'Mehta',
  '0',
  '1972-10-16',
  'S',
  'NULL',
  'M',
  'edgar15@adventure-works.com',
  '70000.00',
  '5',
  '5',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '4',
  '4173 Willow Pass Road',
  'NULL',
  '1 (11) 500 555-0180',
  '2011-08-05',
  '10+ Miles'],
 ['11762',
  '19',
  'AW00011762',
  'NULL',
  'Randall',
  'R',
  'Gomez',
  '0',
  '1984-02-17',
  'M',
  'NULL',
  'M',
  'randall2@adventure-works.com',
  '70000.00',
  '5',
  '5',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '4',
  '1159 Lacassie Ave',
  'NULL',
  '1 (11) 500 555-0179',
  '2011-08-07',
  '10+ Miles'],
 ['11763',
  '16',
  'AW00011763',
  'NULL',
  'Ross',
  'R',
  'Fernandez',
  '0',
  '1972-08-10',
  'M',
  'NULL',
  'M',
  'ross15@adventure-works.com',
  '80000.00',
  '5',
  '5',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '2',
  '8461 Everett Ct',
  'NULL',
  '1 (11) 500 555-0177',
  '2013-01-30',
  '0-1 Miles'],
 ['11764',
  '10',
  'AW00011764',
  'NULL',
  'Jessie',
  'R',
  'Ramos',
  '0',
  '1973-01-13',
  'S',
  'NULL',
  'F',
  'jessie36@adventure-works.com',
  '80000.00',
  '5',
  '5',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '3',
  '5613 Gary Drive',
  'NULL',
  '1 (11) 500 555-0112',
  '2011-09-09',
  '0-1 Miles'],
 ['11765',
  '11',
  'AW00011765',
  'NULL',
  'Marc',
  'NULL',
  'Torres',
  '0',
  '1983-04-06',
  'M',
  'NULL',
  'M',
  'marc15@adventure-works.com',
  '80000.00',
  '5',
  '5',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '3',
  '1439 N. Michell Canyon Road',
  'NULL',
  '1 (11) 500 555-0131',
  '2011-09-12',
  '0-1 Miles'],
 ['11766',
  '38',
  'AW00011766',
  'NULL',
  'Candace',
  'M',
  'Raman',
  '0',
  '1972-01-01',
  'S',
  'NULL',
  'F',
  'candace12@adventure-works.com',
  '90000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '0',
  '1060 Mcelroy Court',
  'NULL',
  '1 (11) 500 555-0148',
  '2011-09-19',
  '2-5 Miles'],
 ['11767',
  '24',
  'AW00011767',
  'NULL',
  'Meagan',
  'NULL',
  'Madan',
  '0',
  '1977-05-20',
  'S',
  'NULL',
  'F',
  'meagan8@adventure-works.com',
  '90000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '0',
  '8250 11th Avenue',
  'NULL',
  '1 (11) 500 555-0112',
  '2011-09-17',
  '2-5 Miles'],
 ['11768',
  '30',
  'AW00011768',
  'NULL',
  'Clayton',
  'NULL',
  'Nara',
  '0',
  '1983-04-03',
  'M',
  'NULL',
  'M',
  'clayton34@adventure-works.com',
  '90000.00',
  '2',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '4642 Peabody Road',
  'NULL',
  '1 (11) 500 555-0162',
  '2011-09-03',
  '1-2 Miles'],
 ['11769',
  '55',
  'AW00011769',
  'NULL',
  'Haley',
  'L',
  'Hernandez',
  '0',
  '1979-02-14',
  'S',
  'NULL',
  'F',
  'haley53@adventure-works.com',
  '50000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '1671 Via Del Verdes',
  'NULL',
  '120-555-0112',
  '2013-04-28',
  '0-1 Miles'],
 ['11770',
  '607',
  'AW00011770',
  'NULL',
  'Peter',
  'T',
  'Nara',
  '0',
  '1979-02-20',
  'S',
  'NULL',
  'M',
  'peter21@adventure-works.com',
  '50000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '0',
  '6489 Kentucky Drive',
  'NULL',
  '244-555-0113',
  '2013-08-08',
  '1-2 Miles'],
 ['11771',
  '627',
  'AW00011771',
  'NULL',
  'Isaac',
  'D',
  'Rivera',
  '0',
  '1979-04-07',
  'S',
  'NULL',
  'M',
  'isaac16@adventure-works.com',
  '50000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '0',
  '7962 Macalvey Drive',
  'NULL',
  '750-555-0140',
  '2013-03-31',
  '1-2 Miles'],
 ['11772',
  '642',
  'AW00011772',
  'NULL',
  'Cameron',
  'M',
  'Moore',
  '0',
  '1984-01-21',
  'M',
  'NULL',
  'M',
  'cameron48@adventure-works.com',
  '50000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '5551 Silverado Dr.',
  'NULL',
  '293-555-0136',
  '2011-10-08',
  '1-2 Miles'],
 ['11773',
  '316',
  'AW00011773',
  'NULL',
  'Gavin',
  'E',
  'Diaz',
  '0',
  '1979-01-03',
  'S',
  'NULL',
  'M',
  'gavin20@adventure-works.com',
  '50000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '6082 Trafalgar Circle',
  'NULL',
  '726-555-0116',
  '2011-10-23',
  '1-2 Miles'],
 ['11774',
  '343',
  'AW00011774',
  'NULL',
  'Emma',
  'NULL',
  'Sanchez',
  '0',
  '1978-10-10',
  'M',
  'NULL',
  'F',
  'emma25@adventure-works.com',
  '50000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '4996 Hillview Drive',
  'NULL',
  '365-555-0125',
  '2011-10-26',
  '0-1 Miles'],
 ['11775',
  '352',
  'AW00011775',
  'NULL',
  'Sierra',
  'NULL',
  'Roberts',
  '0',
  '1978-11-22',
  'S',
  'NULL',
  'F',
  'sierra3@adventure-works.com',
  '50000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '1721 Concord Blvd',
  'NULL',
  '111-555-0177',
  '2011-10-03',
  '0-1 Miles'],
 ['11776',
  '368',
  'AW00011776',
  'NULL',
  'Seth',
  'A',
  'Mitchell',
  '0',
  '1978-12-31',
  'M',
  'NULL',
  'M',
  'seth38@adventure-works.com',
  '50000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '8125 Westbury Drive',
  'NULL',
  '171-555-0140',
  '2011-10-05',
  '1-2 Miles'],
 ['11777',
  '302',
  'AW00011777',
  'NULL',
  'Miranda',
  'NULL',
  'Long',
  '0',
  '1978-01-21',
  'S',
  'NULL',
  'F',
  'miranda9@adventure-works.com',
  '40000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '8970 Cash Avenue',
  'NULL',
  '258-555-0111',
  '2011-10-14',
  '0-1 Miles'],
 ['11778',
  '638',
  'AW00011778',
  'NULL',
  'Haley',
  'A',
  'Henderson',
  '0',
  '1976-09-17',
  'S',
  'NULL',
  'F',
  'haley24@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '1019 Chance Drive',
  'NULL',
  '868-555-0128',
  '2011-10-27',
  '0-1 Miles'],
 ['11779',
  '553',
  'AW00011779',
  'NULL',
  'Sarah',
  'P',
  'Jackson',
  '0',
  '1977-01-15',
  'S',
  'NULL',
  'F',
  'sarah14@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '1058 Park Blvd.',
  'NULL',
  '653-555-0150',
  '2011-10-17',
  '1-2 Miles'],
 ['11780',
  '614',
  'AW00011780',
  'NULL',
  'Jessica',
  'K',
  'Alexander',
  '0',
  '1977-05-19',
  'S',
  'NULL',
  'F',
  'jessica43@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '3459 Tri-state Ave',
  'NULL',
  '617-555-0146',
  '2011-10-15',
  '0-1 Miles'],
 ['11781',
  '314',
  'AW00011781',
  'NULL',
  'Carlos',
  'NULL',
  'Gray',
  '0',
  '1976-09-06',
  'M',
  'NULL',
  'M',
  'carlos7@adventure-works.com',
  '60000.00',
  '1',
  '1',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '4239 Water St.',
  'NULL',
  '252-555-0175',
  '2013-03-06',
  '0-1 Miles'],
 ['11782',
  '301',
  'AW00011782',
  'NULL',
  'Barbara',
  'K',
  'Jai',
  '0',
  '1982-03-13',
  'M',
  'NULL',
  'F',
  'barbara42@adventure-works.com',
  '60000.00',
  '1',
  '1',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '9834 Hamlet',
  'NULL',
  '361-555-0177',
  '2013-08-02',
  '0-1 Miles'],
 ['11783',
  '359',
  'AW00011783',
  'NULL',
  'Sara',
  'A',
  'Mitchell',
  '0',
  '1982-11-13',
  'M',
  'NULL',
  'F',
  'sara37@adventure-works.com',
  '60000.00',
  '1',
  '1',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '9024 Dumbarton Drive',
  'NULL',
  '537-555-0144',
  '2013-03-23',
  '0-1 Miles'],
 ['11784',
  '53',
  'AW00011784',
  'NULL',
  'Jose',
  'NULL',
  'Turner',
  '0',
  '1978-06-18',
  'M',
  'NULL',
  'M',
  'jose42@adventure-works.com',
  '40000.00',
  '1',
  '1',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '6648 Choctaw Court',
  'NULL',
  '189-555-0195',
  '2013-04-12',
  '0-1 Miles'],
 ['11785',
  '607',
  'AW00011785',
  'NULL',
  'Theodore',
  'D',
  'Diaz',
  '0',
  '1983-02-21',
  'M',
  'NULL',
  'M',
  'theodore3@adventure-works.com',
  '40000.00',
  '1',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '4956 Vista Del Diablo',
  'NULL',
  '690-555-0189',
  '2013-04-21',
  '0-1 Miles'],
 ['11786',
  '634',
  'AW00011786',
  'NULL',
  'Ian',
  'G',
  'Murphy',
  '0',
  '1978-03-13',
  'S',
  'NULL',
  'M',
  'ian82@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '2391 St. Peter Court',
  'NULL',
  '754-555-0141',
  '2013-12-29',
  '2-5 Miles'],
 ['11787',
  '301',
  'AW00011787',
  'NULL',
  'Jerry',
  'NULL',
  'Nath',
  '0',
  '1978-03-05',
  'M',
  'NULL',
  'M',
  'jerry20@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '6096 Pheasant Circle',
  'NULL',
  '271-555-0115',
  '2013-10-13',
  '2-5 Miles'],
 ['11788',
  '338',
  'AW00011788',
  'NULL',
  'Destiny',
  'A',
  'James',
  '0',
  '1977-08-18',
  'S',
  'NULL',
  'F',
  'destiny43@adventure-works.com',
  '70000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '6538 Camelback Road',
  'NULL',
  '913-555-0130',
  '2013-05-09',
  '2-5 Miles'],
 ['11789',
  '343',
  'AW00011789',
  'NULL',
  'Bailey',
  'NULL',
  'Phillips',
  '0',
  '1981-02-16',
  'M',
  'NULL',
  'F',
  'bailey27@adventure-works.com',
  '50000.00',
  '1',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '571 Lafayette Drive',
  'NULL',
  '474-555-0183',
  '2013-03-07',
  '2-5 Miles'],
 ['11790',
  '307',
  'AW00011790',
  'NULL',
  'Timothy',
  'C',
  'Gonzalez',
  '0',
  '1981-05-17',
  'M',
  'NULL',
  'M',
  'timothy34@adventure-works.com',
  '50000.00',
  '1',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '6615 Cambelback Place',
  'NULL',
  '147-555-0193',
  '2013-03-11',
  '2-5 Miles'],
 ['11791',
  '641',
  'AW00011791',
  'NULL',
  'Chase',
  'D',
  'Morgan',
  '0',
  '1975-10-19',
  'M',
  'NULL',
  'M',
  'chase13@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '5446 N. Civic Dr.',
  'NULL',
  '194-555-0127',
  '2013-09-29',
  '0-1 Miles'],
 ['11792',
  '310',
  'AW00011792',
  'NULL',
  'Alexia',
  'J',
  'Perry',
  '0',
  '1974-11-24',
  'M',
  'NULL',
  'F',
  'alexia7@adventure-works.com',
  '40000.00',
  '1',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '879 Hillview Ct',
  'NULL',
  '193-555-0135',
  '2013-05-03',
  '0-1 Miles'],
 ['11793',
  '301',
  'AW00011793',
  'NULL',
  'Xavier',
  'G',
  'Rogers',
  '0',
  '1980-03-16',
  'M',
  'NULL',
  'M',
  'xavier87@adventure-works.com',
  '40000.00',
  '1',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '1480 Oliveria Road',
  'NULL',
  '457-555-0162',
  '2013-02-04',
  '2-5 Miles'],
 ['11794',
  '334',
  'AW00011794',
  'NULL',
  'Lauren',
  'NULL',
  'Ross',
  '0',
  '1975-05-01',
  'S',
  'NULL',
  'F',
  'lauren51@adventure-works.com',
  '40000.00',
  '2',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '5375 Clearland Circle',
  'NULL',
  '143-555-0123',
  '2013-11-28',
  '2-5 Miles'],
 ['11795',
  '315',
  'AW00011795',
  'NULL',
  'Nicole',
  'NULL',
  'Thomas',
  '0',
  '1974-08-15',
  'S',
  'NULL',
  'F',
  'nicole11@adventure-works.com',
  '40000.00',
  '2',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '4303 Athene Drive',
  'NULL',
  '667-555-0136',
  '2013-07-12',
  '2-5 Miles'],
 ['11796',
  '315',
  'AW00011796',
  'NULL',
  'Isabel',
  'C',
  'Jenkins',
  '0',
  '1985-08-03',
  'S',
  'NULL',
  'F',
  'isabel7@adventure-works.com',
  '40000.00',
  '2',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '0',
  '9348 Notre Dame Ave',
  'NULL',
  '774-555-0127',
  '2011-10-16',
  '0-1 Miles'],
 ['11797',
  '348',
  'AW00011797',
  'NULL',
  'Devin',
  'R',
  'Coleman',
  '0',
  '1980-03-03',
  'S',
  'NULL',
  'M',
  'devin44@adventure-works.com',
  '40000.00',
  '2',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '4143 Heather Pl.',
  'NULL',
  '792-555-0157',
  '2011-10-14',
  '2-5 Miles'],
 ['11798',
  '611',
  'AW00011798',
  'NULL',
  'Brendan',
  'Q',
  'Chande',
  '0',
  '1974-08-12',
  'M',
  'NULL',
  'M',
  'brendan13@adventure-works.com',
  '40000.00',
  '2',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '1519 Sheffield Place',
  'NULL',
  '551-555-0157',
  '2011-10-15',
  '2-5 Miles'],
 ['11799',
  '612',
  'AW00011799',
  'NULL',
  'Jessie',
  'B',
  'Wang',
  '0',
  '1980-09-09',
  'M',
  'NULL',
  'M',
  'jessie7@adventure-works.com',
  '40000.00',
  '2',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '4593 Camino Peral',
  'NULL',
  '527-555-0124',
  '2011-10-10',
  '0-1 Miles'],
 ['11800',
  '536',
  'AW00011800',
  'NULL',
  'Jennifer',
  'M',
  'Baker',
  '0',
  '1975-05-07',
  'M',
  'NULL',
  'F',
  'jennifer19@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '8998 Katharyn Drive',
  'NULL',
  '506-555-0157',
  '2013-08-10',
  '2-5 Miles'],
 ['11801',
  '536',
  'AW00011801',
  'NULL',
  'Aaron',
  'J',
  'Sharma',
  '0',
  '1975-03-16',
  'M',
  'NULL',
  'M',
  'aaron30@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '4073 Niagara Court',
  'NULL',
  '500-555-0177',
  '2013-12-12',
  '2-5 Miles'],
 ['11802',
  '59',
  'AW00011802',
  'NULL',
  'Madison',
  'A',
  'Taylor',
  '0',
  '1977-02-05',
  'M',
  'NULL',
  'F',
  'madison9@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '627 La Salle Street',
  'NULL',
  '635-555-0173',
  '2013-02-25',
  '0-1 Miles'],
 ['11803',
  '631',
  'AW00011803',
  'NULL',
  'Jan',
  'L',
  'Hernandez',
  '0',
  '1977-03-11',
  'S',
  'NULL',
  'F',
  'jan15@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '3553 Grant Street',
  'NULL',
  '845-555-0160',
  '2013-07-29',
  '2-5 Miles'],
 ['11804',
  '634',
  'AW00011804',
  'NULL',
  'Haley',
  'M',
  'Turner',
  '0',
  '1976-10-15',
  'M',
  'NULL',
  'F',
  'haley44@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '5450 Bellows Ct.',
  'NULL',
  '489-555-0139',
  '2013-05-29',
  '0-1 Miles'],
 ['11805',
  '300',
  'AW00011805',
  'NULL',
  'Richard',
  'M',
  'Green',
  '0',
  '1976-09-08',
  'M',
  'NULL',
  'M',
  'richard25@adventure-works.com',
  '70000.00',
  '2',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '5407 Cougar Way',
  'NULL',
  '142-555-0146',
  '2013-04-23',
  '0-1 Miles'],
 ['11806',
  '302',
  'AW00011806',
  'NULL',
  'Jennifer',
  'S',
  'Stewart',
  '0',
  '1982-08-06',
  'M',
  'NULL',
  'F',
  'jennifer52@adventure-works.com',
  '70000.00',
  '2',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '1500 Grant Street',
  'NULL',
  '159-555-0111',
  '2013-02-21',
  '0-1 Miles'],
 ['11807',
  '343',
  'AW00011807',
  'NULL',
  'Lucas',
  'NULL',
  'Baker',
  '0',
  '1977-03-03',
  'M',
  'NULL',
  'M',
  'lucas48@adventure-works.com',
  '70000.00',
  '3',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '1086 Ash Lane',
  'NULL',
  '787-555-0141',
  '2013-04-13',
  '2-5 Miles'],
 ['11808',
  '54',
  'AW00011808',
  'NULL',
  'James',
  'NULL',
  'Parker',
  '0',
  '1974-10-10',
  'M',
  'NULL',
  'M',
  'james57@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '751 Countrywood Ct.',
  'NULL',
  '730-555-0125',
  '2013-03-26',
  '2-5 Miles'],
 ['11809',
  '300',
  'AW00011809',
  'NULL',
  'Juan',
  'NULL',
  'Gray',
  '0',
  '1973-07-01',
  'M',
  'NULL',
  'M',
  'juan16@adventure-works.com',
  '60000.00',
  '2',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '0',
  '1289 Quigley St.',
  'NULL',
  '995-555-0114',
  '2011-10-21',
  '0-1 Miles'],
 ['11810',
  '611',
  'AW00011810',
  'NULL',
  'Antonio',
  'K',
  'Washington',
  '0',
  '1978-01-03',
  'S',
  'NULL',
  'M',
  'antonio13@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '7095 Curletto Dr.',
  'NULL',
  '373-555-0139',
  '2011-10-20',
  '2-5 Miles'],
 ['11811',
  '310',
  'AW00011811',
  'NULL',
  'Abigail',
  'C',
  'Brooks',
  '0',
  '1978-06-11',
  'S',
  'NULL',
  'F',
  'abigail22@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '1617 Crossbow Way',
  'NULL',
  '367-555-0138',
  '2011-10-15',
  '2-5 Miles'],
 ['11812',
  '644',
  'AW00011812',
  'NULL',
  'Andrew',
  'N',
  'Rodriguez',
  '0',
  '1973-03-21',
  'M',
  'NULL',
  'M',
  'andrew27@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '3997 Via De Luna',
  'NULL',
  '586-555-0118',
  '2011-10-03',
  '0-1 Miles'],
 ['11813',
  '552',
  'AW00011813',
  'NULL',
  'Mary',
  'NULL',
  'Patterson',
  '0',
  '1973-05-11',
  'M',
  'NULL',
  'F',
  'mary40@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '1102 Ravenwood',
  'NULL',
  '956-555-0136',
  '2011-10-16',
  '0-1 Miles'],
 ['11814',
  '542',
  'AW00011814',
  'NULL',
  'Dalton',
  'L',
  'Morgan',
  '0',
  '1976-01-05',
  'M',
  'NULL',
  'M',
  'dalton84@adventure-works.com',
  '60000.00',
  '2',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '4921 Oakwood Circle',
  'NULL',
  '530-555-0182',
  '2013-06-23',
  '0-1 Miles'],
 ['11815',
  '642',
  'AW00011815',
  'NULL',
  'Hannah',
  'J',
  'Patterson',
  '0',
  '1981-04-20',
  'M',
  'NULL',
  'F',
  'hannah33@adventure-works.com',
  '70000.00',
  '3',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '3327 Rockridge Dr.',
  'NULL',
  '110-555-0136',
  '2011-10-02',
  '0-1 Miles'],
 ['11816',
  '300',
  'AW00011816',
  'NULL',
  'Joe',
  'A',
  'Torres',
  '0',
  '1981-10-19',
  'M',
  'NULL',
  'M',
  'joe35@adventure-works.com',
  '70000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '8069 Vine Hill Way',
  'NULL',
  '450-555-0115',
  '2011-10-02',
  '2-5 Miles'],
 ['11817',
  '310',
  'AW00011817',
  'NULL',
  'Morgan',
  'C',
  'Miller',
  '0',
  '1981-11-23',
  'S',
  'NULL',
  'F',
  'morgan29@adventure-works.com',
  '70000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '5929 William Reed Dr.',
  'NULL',
  '339-555-0137',
  '2011-10-13',
  '2-5 Miles'],
 ['11818',
  '312',
  'AW00011818',
  'NULL',
  'Daniel',
  'C',
  'Garcia',
  '0',
  '1975-10-20',
  'M',
  'NULL',
  'M',
  'daniel8@adventure-works.com',
  '70000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '4010 Willow Pass Road',
  'NULL',
  '125-555-0145',
  '2011-10-21',
  '2-5 Miles'],
 ['11819',
  '616',
  'AW00011819',
  'NULL',
  'Jose',
  'NULL',
  'Lal',
  '0',
  '1973-04-08',
  'M',
  'NULL',
  'M',
  'jose23@adventure-works.com',
  '70000.00',
  '2',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '6264 Center Ave',
  'NULL',
  '152-555-0130',
  '2013-02-15',
  '0-1 Miles'],
 ['11820',
  '69',
  'AW00011820',
  'NULL',
  'Katelyn',
  'NULL',
  'Lopez',
  '0',
  '1977-08-22',
  'M',
  'NULL',
  'F',
  'katelyn45@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '8873 Folson Drive',
  'NULL',
  '316-555-0185',
  '2013-02-09',
  '0-1 Miles'],
 ['11821',
  '300',
  'AW00011821',
  'NULL',
  'Austin',
  'NULL',
  'Johnson',
  '0',
  '1971-10-13',
  'M',
  'NULL',
  'M',
  'austin40@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '6569 Endriss',
  'NULL',
  '163-555-0134',
  '2013-07-30',
  '2-5 Miles'],
 ['11822',
  '336',
  'AW00011822',
  'NULL',
  'Rohinton',
  'H',
  'Wadia',
  '0',
  '1971-12-11',
  'M',
  'NULL',
  'F',
  'rohinton1@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '5935 Seawind Dr.',
  'NULL',
  '792-555-0137',
  '2013-05-20',
  '2-5 Miles'],
 ['11823',
  '53',
  'AW00011823',
  'NULL',
  'Morgan',
  'NULL',
  'Turner',
  '0',
  '1977-10-20',
  'M',
  'NULL',
  'F',
  'morgan3@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '6091 Bluefish Lane',
  'NULL',
  '856-555-0168',
  '2013-05-18',
  '2-5 Miles'],
 ['11824',
  '55',
  'AW00011824',
  'NULL',
  'Jill',
  'C',
  'Martin',
  '0',
  '1977-10-03',
  'M',
  'NULL',
  'F',
  'jill6@adventure-works.com',
  '70000.00',
  '4',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '9719 Hamilton Ave',
  'NULL',
  '884-555-0127',
  '2013-03-18',
  '2-5 Miles'],
 ['11825',
  '298',
  'AW00011825',
  'NULL',
  'Aimee',
  'NULL',
  'She',
  '0',
  '1971-11-15',
  'S',
  'NULL',
  'F',
  'aimee17@adventure-works.com',
  '70000.00',
  '5',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '6752 Covington Court',
  'NULL',
  '137-555-0149',
  '2011-10-16',
  '2-5 Miles'],
 ['11826',
  '300',
  'AW00011826',
  'NULL',
  'Jessie',
  'J',
  'Alonso',
  '0',
  '1971-08-15',
  'M',
  'NULL',
  'F',
  'jessie6@adventure-works.com',
  '70000.00',
  '5',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '7342 Dew Drop Circle',
  'NULL',
  '579-555-0138',
  '2011-10-27',
  '0-1 Miles'],
 ['11827',
  '55',
  'AW00011827',
  'NULL',
  'Sara',
  'M',
  'Baker',
  '0',
  '1980-09-16',
  'M',
  'NULL',
  'F',
  'sara43@adventure-works.com',
  '60000.00',
  '2',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '5269 Mt. Trinity Court',
  'NULL',
  '256-555-0180',
  '2013-02-20',
  '2-5 Miles'],
 ['11828',
  '545',
  'AW00011828',
  'NULL',
  'Katherine',
  'NULL',
  'Martinez',
  '0',
  '1980-06-04',
  'M',
  'NULL',
  'F',
  'katherine88@adventure-works.com',
  '70000.00',
  '5',
  '5',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '3836 Carletto Drive',
  'NULL',
  '584-555-0118',
  '2013-04-03',
  '0-1 Miles'],
 ['11829',
  '637',
  'AW00011829',
  'NULL',
  'Sophia',
  'NULL',
  'Campbell',
  '0',
  '1975-05-02',
  'M',
  'NULL',
  'F',
  'sophia5@adventure-works.com',
  '70000.00',
  '5',
  '5',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '8122 Mink Court',
  'NULL',
  '766-555-0146',
  '2013-03-13',
  '0-1 Miles'],
 ['11830',
  '336',
  'AW00011830',
  'NULL',
  'Taylor',
  'N',
  'Garcia',
  '0',
  '1974-07-15',
  'M',
  'NULL',
  'F',
  'taylor63@adventure-works.com',
  '80000.00',
  '3',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '6986 Ida Ave.',
  'NULL',
  '301-555-0163',
  '2011-09-29',
  '0-1 Miles'],
 ['11831',
  '358',
  'AW00011831',
  'NULL',
  'Christian',
  'NULL',
  'Ross',
  '0',
  '1975-05-24',
  'M',
  'NULL',
  'M',
  'christian18@adventure-works.com',
  '80000.00',
  '3',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '971 Harness Circle',
  'NULL',
  '123-555-0152',
  '2011-10-27',
  '0-1 Miles'],
 ['11832',
  '644',
  'AW00011832',
  'NULL',
  'Zoe',
  'NULL',
  'Murphy',
  '0',
  '1976-04-01',
  'S',
  'NULL',
  'F',
  'zoe13@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '3426 Calhoun Court',
  'NULL',
  '798-555-0157',
  '2013-02-18',
  '2-5 Miles'],
 ['11833',
  '59',
  'AW00011833',
  'NULL',
  'Oscar',
  'G',
  'Price',
  '0',
  '1982-01-16',
  'M',
  'NULL',
  'M',
  'oscar9@adventure-works.com',
  '80000.00',
  '3',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '5049 Teakwood Dr.',
  'NULL',
  '389-555-0114',
  '2013-06-12',
  '2-5 Miles'],
 ['11834',
  '339',
  'AW00011834',
  'NULL',
  'Fernando',
  'M',
  'Flores',
  '0',
  '1982-04-20',
  'S',
  'NULL',
  'M',
  'fernando55@adventure-works.com',
  '80000.00',
  '3',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '1',
  '3789 Linden Lane',
  'NULL',
  '162-555-0175',
  '2011-10-22',
  '0-1 Miles'],
 ['11835',
  '53',
  'AW00011835',
  'NULL',
  'Elijah',
  'M',
  'Russell',
  '0',
  '1970-12-17',
  'S',
  'NULL',
  'M',
  'elijah21@adventure-works.com',
  '80000.00',
  '3',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '1592 Working Drive',
  'NULL',
  '188-555-0159',
  '2013-01-10',
  '2-5 Miles'],
 ['11836',
  '616',
  'AW00011836',
  'NULL',
  'Garrett',
  'NULL',
  'Travers',
  '0',
  '1970-10-25',
  'M',
  'NULL',
  'M',
  'garrett9@adventure-works.com',
  '80000.00',
  '3',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '7947 Stillman Court',
  'NULL',
  '879-555-0116',
  '2013-03-24',
  '0-1 Miles'],
 ['11837',
  '360',
  'AW00011837',
  'NULL',
  'Haley',
  'NULL',
  'Alexander',
  '0',
  '1976-08-05',
  'S',
  'NULL',
  'F',
  'haley38@adventure-works.com',
  '80000.00',
  '3',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '80 Mozden Lane',
  'NULL',
  '951-555-0164',
  '2011-10-13',
  '2-5 Miles'],
 ['11838',
  '536',
  'AW00011838',
  'NULL',
  'Justin',
  'J',
  'Rodriguez',
  '0',
  '1970-08-09',
  'S',
  'NULL',
  'M',
  'justin48@adventure-works.com',
  '80000.00',
  '3',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '761 Orchard View Ave.',
  'NULL',
  '211-555-0112',
  '2013-05-31',
  '0-1 Miles'],
 ['11839',
  '369',
  'AW00011839',
  'NULL',
  'Tyler',
  'NULL',
  'Brown',
  '0',
  '1976-07-21',
  'S',
  'NULL',
  'M',
  'tyler9@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '9271 Prestwick Ave.',
  'NULL',
  '801-555-0121',
  '2011-10-26',
  '2-5 Miles'],
 ['11840',
  '336',
  'AW00011840',
  'NULL',
  'Julian',
  'D',
  'Patterson',
  '0',
  '1976-05-13',
  'M',
  'NULL',
  'M',
  'julian12@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '9240 Limewood Pl.',
  'NULL',
  '603-555-0169',
  '2013-04-30',
  '2-5 Miles'],
 ['11841',
  '52',
  'AW00011841',
  'NULL',
  'Sean',
  'NULL',
  'Nelson',
  '0',
  '1969-09-13',
  'M',
  'NULL',
  'M',
  'sean41@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '4594 Hill Drive',
  'NULL',
  '314-555-0153',
  '2013-05-20',
  '0-1 Miles'],
 ['11842',
  '631',
  'AW00011842',
  'NULL',
  'Justin',
  'NULL',
  'Wilson',
  '0',
  '1970-04-03',
  'S',
  'NULL',
  'M',
  'justin38@adventure-works.com',
  '50000.00',
  '4',
  '4',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '3',
  '7164 Pinncale Drive',
  'NULL',
  '585-555-0152',
  '2013-05-12',
  '10+ Miles'],
 ['11843',
  '536',
  'AW00011843',
  'NULL',
  'Christy',
  'NULL',
  'Nara',
  '0',
  '1975-11-08',
  'S',
  'NULL',
  'F',
  'christy34@adventure-works.com',
  '50000.00',
  '4',
  '4',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '3',
  '4678 Ygnacio Valley Road',
  'NULL',
  '639-555-0189',
  '2013-02-07',
  '10+ Miles'],
 ['11844',
  '307',
  'AW00011844',
  'NULL',
  'Michele',
  'J',
  'Alvarez',
  '0',
  '1969-10-06',
  'S',
  'NULL',
  'F',
  'michele39@adventure-works.com',
  '50000.00',
  '4',
  '4',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '3',
  '9249 Martin St',
  'NULL',
  '103-555-0162',
  '2013-10-05',
  '10+ Miles'],
 ['11845',
  '63',
  'AW00011845',
  'NULL',
  'Natalie',
  'A',
  'Jones',
  '0',
  '1930-02-15',
  'S',
  'NULL',
  'F',
  'natalie71@adventure-works.com',
  '30000.00',
  '2',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '1442 Hill Top Rd',
  'NULL',
  '119-555-0148',
  '2013-02-13',
  '0-1 Miles'],
 ['11846',
  '337',
  'AW00011846',
  'NULL',
  'Savannah',
  'A',
  'Reed',
  '0',
  '1969-12-13',
  'S',
  'NULL',
  'F',
  'savannah18@adventure-works.com',
  '50000.00',
  '4',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '4080 Pelican Loop',
  'NULL',
  '503-555-0151',
  '2013-04-28',
  '2-5 Miles'],
 ['11847',
  '547',
  'AW00011847',
  'NULL',
  'Cassidy',
  'NULL',
  'Diaz',
  '0',
  '1970-05-31',
  'S',
  'NULL',
  'F',
  'cassidy23@adventure-works.com',
  '50000.00',
  '4',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '3797 Concord Royale',
  'NULL',
  '323-555-0140',
  '2013-06-28',
  '0-1 Miles'],
 ['11848',
  '648',
  'AW00011848',
  'NULL',
  'Joshua',
  'C',
  'Lewis',
  '0',
  '1975-02-24',
  'M',
  'NULL',
  'M',
  'joshua23@adventure-works.com',
  '50000.00',
  '4',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '7166 Brock Lane',
  'NULL',
  '365-555-0198',
  '2013-07-27',
  '2-5 Miles'],
 ['11849',
  '331',
  'AW00011849',
  'NULL',
  'Faith',
  'C',
  'Reed',
  '0',
  '1970-03-13',
  'S',
  'NULL',
  'F',
  'faith36@adventure-works.com',
  '50000.00',
  '4',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '2751 Trail Way',
  'Unit B',
  '727-555-0162',
  '2013-11-27',
  '2-5 Miles'],
 ['11850',
  '347',
  'AW00011850',
  'NULL',
  'Brooke',
  'C',
  'Ramirez',
  '0',
  '1980-09-16',
  'S',
  'NULL',
  'F',
  'brooke7@adventure-works.com',
  '50000.00',
  '4',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '8004 Water Street',
  'NULL',
  '729-555-0139',
  '2013-04-08',
  '2-5 Miles'],
 ['11851',
  '311',
  'AW00011851',
  'NULL',
  'Jada',
  'NULL',
  'Mitchell',
  '0',
  '1969-03-07',
  'S',
  'NULL',
  'F',
  'jada23@adventure-works.com',
  '60000.00',
  '4',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '6848 Calico Way',
  'NULL',
  '416-555-0196',
  '2013-06-16',
  '2-5 Miles'],
 ['11852',
  '334',
  'AW00011852',
  'NULL',
  'Kyle',
  'M',
  'Russell',
  '0',
  '1969-04-23',
  'S',
  'NULL',
  'M',
  'kyle15@adventure-works.com',
  '60000.00',
  '4',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '2',
  '1345 Prospect Street',
  'NULL',
  '473-555-0199',
  '2013-07-10',
  '0-1 Miles'],
 ['11853',
  '311',
  'AW00011853',
  'NULL',
  'Grace',
  'NULL',
  'Jones',
  '0',
  '1979-11-15',
  'S',
  'NULL',
  'F',
  'grace2@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '8866 Alpha Way',
  'NULL',
  '388-555-0168',
  '2013-05-10',
  '2-5 Miles'],
 ['11854',
  '383',
  'AW00011854',
  'NULL',
  'Jason',
  'K',
  'Mitchell',
  '0',
  '1973-10-16',
  'S',
  'NULL',
  'M',
  'jason40@adventure-works.com',
  '60000.00',
  '2',
  '2',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '0',
  '7537 Clark Creek Lane',
  'NULL',
  '480-555-0139',
  '2011-10-25',
  '0-1 Miles'],
 ['11855',
  '302',
  'AW00011855',
  'NULL',
  'Christian',
  'NULL',
  'Walker',
  '0',
  '1974-08-09',
  'M',
  'NULL',
  'M',
  'christian44@adventure-works.com',
  '60000.00',
  '4',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '4',
  '1575 Brown Street',
  'NULL',
  '531-555-0113',
  '2013-04-27',
  '2-5 Miles'],
 ['11856',
  '539',
  'AW00011856',
  'NULL',
  'Seth',
  'M',
  'Hernandez',
  '0',
  '1969-02-13',
  'M',
  'NULL',
  'M',
  'seth26@adventure-works.com',
  '60000.00',
  '3',
  '2',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '4107 St. Raphael Drive',
  'NULL',
  '195-555-0146',
  '2013-11-29',
  '0-1 Miles'],
 ['11857',
  '614',
  'AW00011857',
  'NULL',
  'Isabella',
  'NULL',
  'Young',
  '0',
  '1974-03-08',
  'S',
  'NULL',
  'F',
  'isabella56@adventure-works.com',
  '60000.00',
  '3',
  '2',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '0',
  '9175 Benton Street',
  'NULL',
  '747-555-0149',
  '2013-10-06',
  '0-1 Miles'],
 ['11858',
  '361',
  'AW00011858',
  'NULL',
  'Jordan',
  'A',
  'Coleman',
  '0',
  '1968-06-05',
  'M',
  'NULL',
  'M',
  'jordan2@adventure-works.com',
  '40000.00',
  '3',
  '2',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '8005 Ranchhand Court',
  'NULL',
  '996-555-0179',
  '2013-03-27',
  '2-5 Miles'],
 ['11859',
  '631',
  'AW00011859',
  'NULL',
  'Blake',
  'J',
  'Garcia',
  '0',
  '1968-03-08',
  'M',
  'NULL',
  'M',
  'blake16@adventure-works.com',
  '70000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '9322 Driving Drive',
  'NULL',
  '713-555-0128',
  '2013-04-22',
  '2-5 Miles'],
 ['11860',
  '343',
  'AW00011860',
  'NULL',
  'Nicole',
  'NULL',
  'Walker',
  '0',
  '1967-07-09',
  'M',
  'NULL',
  'F',
  'nicole23@adventure-works.com',
  '70000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '8362 Abbey Court',
  'NULL',
  '129-555-0165',
  '2013-07-03',
  '2-5 Miles'],
 ['11861',
  '71',
  'AW00011861',
  'NULL',
  'Katherine',
  'NULL',
  'Carter',
  '0',
  '1967-10-22',
  'M',
  'NULL',
  'F',
  'katherine58@adventure-works.com',
  '70000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '591 Laguna Street',
  '# 439',
  '572-555-0120',
  '2013-05-14',
  '0-1 Miles'],
 ['11862',
  '616',
  'AW00011862',
  'NULL',
  'Olivia',
  'NULL',
  'Peterson',
  '0',
  '1972-09-11',
  'S',
  'NULL',
  'F',
  'olivia40@adventure-works.com',
  '40000.00',
  '4',
  '2',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '9212 Tupelo Drive',
  'NULL',
  '409-555-0135',
  '2013-05-16',
  '2-5 Miles'],
 ['11863',
  '638',
  'AW00011863',
  'NULL',
  'Jessica',
  'NULL',
  'Wood',
  '0',
  '1967-04-10',
  'M',
  'NULL',
  'F',
  'jessica26@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '1439 N. Canyon Road',
  'NULL',
  '130-555-0137',
  '2013-09-03',
  '2-5 Miles'],
 ['11864',
  '642',
  'AW00011864',
  'NULL',
  'Elizabeth',
  'W',
  'Thompson',
  '0',
  '1967-03-06',
  'M',
  'NULL',
  'F',
  'elizabeth19@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '2894 Encino Dr.',
  'NULL',
  '465-555-0154',
  '2013-03-01',
  '2-5 Miles'],
 ['11865',
  '343',
  'AW00011865',
  'NULL',
  'Chloe',
  'R',
  'Rivera',
  '0',
  '1966-08-06',
  'M',
  'NULL',
  'F',
  'chloe54@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '6282 Mcneil Place',
  'NULL',
  '372-555-0142',
  '2013-02-17',
  '2-5 Miles'],
 ['11866',
  '325',
  'AW00011866',
  'NULL',
  'Lucas',
  'L',
  'Scott',
  '0',
  '1966-12-30',
  'M',
  'NULL',
  'M',
  'lucas46@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '1',
  '1218 Woodside Court',
  'NULL',
  '764-555-0119',
  '2013-02-18',
  '0-1 Miles'],
 ['11867',
  '343',
  'AW00011867',
  'NULL',
  'Nathaniel',
  'C',
  'James',
  '0',
  '1971-04-21',
  'M',
  'NULL',
  'M',
  'nathaniel0@adventure-works.com',
  '40000.00',
  '4',
  '2',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '4268 Weaver Court',
  'NULL',
  '112-555-0116',
  '2013-06-04',
  '2-5 Miles'],
 ['11868',
  '68',
  'AW00011868',
  'NULL',
  'Jessica',
  'M',
  'Peterson',
  '0',
  '1973-01-31',
  'S',
  'NULL',
  'F',
  'jessica17@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '1613 Santa Maria',
  'NULL',
  '974-555-0184',
  '2013-02-02',
  '2-5 Miles'],
 ['11869',
  '71',
  'AW00011869',
  'NULL',
  'Kaitlyn',
  'A',
  'Adams',
  '0',
  '1984-05-01',
  'S',
  'NULL',
  'F',
  'kaitlyn13@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '1',
  '3815 Berry Dr.',
  'NULL',
  '512-555-0158',
  '2013-03-20',
  '0-1 Miles'],
 ['11870',
  '612',
  'AW00011870',
  'NULL',
  'Jillian',
  'NULL',
  'Garcia',
  '0',
  '1978-07-10',
  'S',
  'NULL',
  'F',
  'jillian15@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '1',
  '6375 Freda Drive',
  'NULL',
  '386-555-0159',
  '2013-07-20',
  '0-1 Miles'],
 ['11871',
  '626',
  'AW00011871',
  'NULL',
  'Dalton',
  'L',
  'Bennett',
  '0',
  '1978-08-12',
  'S',
  'NULL',
  'M',
  'dalton46@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '1',
  '4188 Green Valley Road',
  'NULL',
  '941-555-0138',
  '2013-02-23',
  '2-5 Miles'],
 ['11872',
  '325',
  'AW00011872',
  'NULL',
  'Faith',
  'L',
  'Patterson',
  '0',
  '1978-07-17',
  'S',
  'NULL',
  'F',
  'faith9@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '1141 Rolling Hill Way',
  'NULL',
  '148-555-0143',
  '2011-10-21',
  '0-1 Miles'],
 ['11873',
  '372',
  'AW00011873',
  'NULL',
  'Ryan',
  'NULL',
  'Zhang',
  '0',
  '1972-10-09',
  'M',
  'NULL',
  'M',
  'ryan27@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '4176 Cotton Ct',
  'NULL',
  '295-555-0128',
  '2011-10-07',
  '0-1 Miles'],
 ['11874',
  '385',
  'AW00011874',
  'NULL',
  'Adrian',
  'NULL',
  'Bell',
  '0',
  '1978-03-06',
  'S',
  'NULL',
  'M',
  'adrian15@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '302 Briarcliff Ct.',
  'NULL',
  '254-555-0175',
  '2013-07-19',
  '2-5 Miles'],
 ['11875',
  '51',
  'AW00011875',
  'NULL',
  'Jonathan',
  'NULL',
  'Brown',
  '0',
  '1966-01-31',
  'M',
  'NULL',
  'M',
  'jonathan54@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '1',
  '5373 Montgomery Ave.',
  'NULL',
  '108-555-0111',
  '2013-04-20',
  '0-1 Miles'],
 ['11876',
  '348',
  'AW00011876',
  'NULL',
  'Madison',
  'L',
  'White',
  '0',
  '1966-05-13',
  'M',
  'NULL',
  'F',
  'madison13@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '27 Athens Circle',
  'NULL',
  '813-555-0171',
  '2013-06-19',
  '2-5 Miles'],
 ['11877',
  '345',
  'AW00011877',
  'NULL',
  'Alexis',
  'NULL',
  'Diaz',
  '0',
  '1966-04-06',
  'M',
  'NULL',
  'F',
  'alexis45@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '8541 Summerfield Drive',
  'NULL',
  '409-555-0139',
  '2013-10-05',
  '2-5 Miles'],
 ['11878',
  '607',
  'AW00011878',
  'NULL',
  'Christine',
  'NULL',
  'Nara',
  '0',
  '1971-02-04',
  'M',
  'NULL',
  'F',
  'christine12@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '5784 Yeoman Dr.',
  'NULL',
  '792-555-0139',
  '2013-11-30',
  '2-5 Miles'],
 ['11879',
  '536',
  'AW00011879',
  'NULL',
  'Edgar',
  'NULL',
  'Sai',
  '0',
  '1971-09-30',
  'M',
  'NULL',
  'M',
  'edgar6@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '9037 Saddlehill Lane',
  'NULL',
  '525-555-0117',
  '2013-02-27',
  '2-5 Miles'],
 ['11880',
  '548',
  'AW00011880',
  'NULL',
  'Melissa',
  'NULL',
  'Sanchez',
  '0',
  '1965-02-16',
  'M',
  'NULL',
  'F',
  'melissa40@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '2524 Fish Dr',
  'NULL',
  '409-555-0153',
  '2013-04-10',
  '0-1 Miles'],
 ['11881',
  '326',
  'AW00011881',
  'NULL',
  'Richard',
  'T',
  'Mitchell',
  '0',
  '1965-01-20',
  'M',
  'NULL',
  'M',
  'richard30@adventure-works.com',
  '60000.00',
  '4',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '8998 Adobe Drive',
  'NULL',
  '142-555-0165',
  '2013-12-02',
  '2-5 Miles'],
 ['11882',
  '637',
  'AW00011882',
  'NULL',
  'Patrick',
  'L',
  'Stewart',
  '0',
  '1975-09-05',
  'M',
  'NULL',
  'M',
  'patrick27@adventure-works.com',
  '60000.00',
  '4',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '2880 Ponderosa Dr.',
  'NULL',
  '115-555-0181',
  '2013-02-17',
  '0-1 Miles'],
 ['11883',
  '612',
  'AW00011883',
  'NULL',
  'Hannah',
  'C',
  'Anderson',
  '0',
  '1965-02-10',
  'M',
  'NULL',
  'F',
  'hannah9@adventure-works.com',
  '70000.00',
  '5',
  '5',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '3',
  '5622 Geary',
  'NULL',
  '819-555-0146',
  '2013-02-21',
  '10+ Miles'],
 ['11884',
  '607',
  'AW00011884',
  'NULL',
  'Latoya',
  'S',
  'Shen',
  '0',
  '1970-04-22',
  'M',
  'NULL',
  'F',
  'latoya2@adventure-works.com',
  '80000.00',
  '5',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '2328 Sand View Way',
  'NULL',
  '390-555-0186',
  '2013-02-17',
  '0-1 Miles'],
 ['11885',
  '302',
  'AW00011885',
  'NULL',
  'Kurt',
  'NULL',
  'Sharma',
  '0',
  '1970-09-21',
  'M',
  'NULL',
  'M',
  'kurt9@adventure-works.com',
  '80000.00',
  '2',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '4461 Centennial Way',
  'NULL',
  '146-555-0179',
  '2011-10-28',
  '0-1 Miles'],
 ['11886',
  '369',
  'AW00011886',
  'NULL',
  'Katelyn',
  'NULL',
  'Parker',
  '0',
  '1963-07-20',
  'M',
  'NULL',
  'F',
  'katelyn30@adventure-works.com',
  '60000.00',
  '3',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '7111 Concord Ct.',
  'NULL',
  '451-555-0135',
  '2011-10-28',
  '0-1 Miles'],
 ['11887',
  '312',
  'AW00011887',
  'NULL',
  'Joseph',
  'NULL',
  'White',
  '0',
  '1963-10-03',
  'M',
  'NULL',
  'M',
  'joseph19@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '8656 Lakespring Place',
  'NULL',
  '149-555-0116',
  '2013-05-28',
  '2-5 Miles'],
 ['11888',
  '49',
  'AW00011888',
  'NULL',
  'Aaron',
  'N',
  'Ross',
  '0',
  '1969-12-18',
  'M',
  'NULL',
  'M',
  'aaron3@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '2111 Ringing Dr',
  'NULL',
  '175-555-0139',
  '2013-03-18',
  '0-1 Miles'],
 ['11889',
  '633',
  'AW00011889',
  'NULL',
  'Blake',
  'NULL',
  'Patterson',
  '0',
  '1963-11-25',
  'S',
  'NULL',
  'M',
  'blake58@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '8129 Golden Rain',
  'NULL',
  '473-555-0194',
  '2013-02-23',
  '2-5 Miles'],
 ['11890',
  '299',
  'AW00011890',
  'NULL',
  'Whitney',
  'NULL',
  'Lopez',
  '0',
  '1964-05-14',
  'M',
  'NULL',
  'F',
  'whitney15@adventure-works.com',
  '70000.00',
  '5',
  '4',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '3098 Eastgate Ave',
  'NULL',
  '307-555-0113',
  '2013-03-29',
  '0-1 Miles'],
 ['11891',
  '300',
  'AW00011891',
  'NULL',
  'Jamie',
  'E',
  'Liang',
  '0',
  '1969-09-13',
  'M',
  'NULL',
  'F',
  'jamie20@adventure-works.com',
  '70000.00',
  '5',
  '4',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '3213 Glenside Dr',
  'NULL',
  '138-555-0111',
  '2013-03-07',
  '0-1 Miles'],
 ['11892',
  '14',
  'AW00011892',
  'NULL',
  'Julio',
  'M',
  'Ortega',
  '0',
  '1975-04-07',
  'M',
  'NULL',
  'M',
  'julio23@adventure-works.com',
  '90000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '0',
  '1681 Via Estrella',
  'NULL',
  '1 (11) 500 555-0180',
  '2011-09-04',
  '0-1 Miles'],
 ['11893',
  '18',
  'AW00011893',
  'NULL',
  'Orlando',
  'J',
  'Carlson',
  '0',
  '1974-08-09',
  'M',
  'NULL',
  'M',
  'orlando18@adventure-works.com',
  '90000.00',
  '2',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '0',
  '761 Orchard View Ave.',
  'NULL',
  '1 (11) 500 555-0111',
  '2011-08-31',
  '0-1 Miles'],
 ['11894',
  '25',
  'AW00011894',
  'NULL',
  'Ann',
  'NULL',
  'Gonzalez',
  '0',
  '1980-04-30',
  'M',
  'NULL',
  'F',
  'ann23@adventure-works.com',
  '100000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '0',
  '4166 Deercreek Ln.',
  'NULL',
  '1 (11) 500 555-0118',
  '2011-09-22',
  '2-5 Miles'],
 ['11895',
  '23',
  'AW00011895',
  'NULL',
  'Dustin',
  'NULL',
  'Chander',
  '0',
  '1975-01-18',
  'M',
  'NULL',
  'M',
  'dustin16@adventure-works.com',
  '100000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '0',
  '5553 Cash Avenue',
  'NULL',
  '1 (11) 500 555-0196',
  '2011-09-12',
  '0-1 Miles'],
 ['11896',
  '16',
  'AW00011896',
  'NULL',
  'Frank',
  'NULL',
  'Carlson',
  '0',
  '1975-05-18',
  'M',
  'NULL',
  'M',
  'frank26@adventure-works.com',
  '100000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '0',
  '8851 Northridge Dr.',
  'NULL',
  '1 (11) 500 555-0160',
  '2011-09-01',
  '2-5 Miles'],
 ['11897',
  '38',
  'AW00011897',
  'NULL',
  'Orlando',
  'I',
  'Ashe',
  '0',
  '1974-05-28',
  'S',
  'NULL',
  'M',
  'orlando5@adventure-works.com',
  '60000.00',
  '2',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '9478 Rheem Dr.',
  'NULL',
  '1 (11) 500 555-0184',
  '2011-08-30',
  '0-1 Miles'],
 ['11898',
  '20',
  'AW00011898',
  'NULL',
  'Angela',
  'T',
  'Henderson',
  '0',
  '1975-12-31',
  'M',
  'NULL',
  'F',
  'angela7@adventure-works.com',
  '80000.00',
  '4',
  '4',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '1',
  '9377 Ash Lane',
  'NULL',
  '1 (11) 500 555-0118',
  '2011-09-14',
  '0-1 Miles'],
 ['11899',
  '36',
  'AW00011899',
  'NULL',
  'Brenda',
  'NULL',
  'Perez',
  '0',
  '1976-03-15',
  'S',
  'NULL',
  'F',
  'brenda25@adventure-works.com',
  '80000.00',
  '4',
  '4',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '1',
  '9935 San Carlos Avenue',
  'NULL',
  '1 (11) 500 555-0181',
  '2011-09-04',
  '0-1 Miles'],
 ['11900',
  '10',
  'AW00011900',
  'NULL',
  'Byron',
  'NULL',
  'Carlson',
  '0',
  '1981-03-03',
  'S',
  'NULL',
  'M',
  'byron12@adventure-works.com',
  '90000.00',
  '2',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '4002 Fawn Glen Circle',
  'NULL',
  '1 (11) 500 555-0115',
  '2011-09-21',
  '0-1 Miles'],
 ['11901',
  '3',
  'AW00011901',
  'NULL',
  'Stacy',
  'NULL',
  'Alvarez',
  '0',
  '1973-08-18',
  'S',
  'NULL',
  'F',
  'stacy6@adventure-works.com',
  '60000.00',
  '2',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '3917 Catalpa Court',
  'NULL',
  '1 (11) 500 555-0171',
  '2011-09-10',
  '0-1 Miles'],
 ['11902',
  '7',
  'AW00011902',
  'NULL',
  'Drew',
  'NULL',
  'Pal',
  '0',
  '1972-09-14',
  'M',
  'NULL',
  'M',
  'drew13@adventure-works.com',
  '70000.00',
  '5',
  '5',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '3',
  '8991 Olivera',
  'NULL',
  '1 (11) 500 555-0151',
  '2013-02-21',
  '10+ Miles'],
 ['11903',
  '21',
  'AW00011903',
  'NULL',
  'Kate',
  'L',
  'Raji',
  '0',
  '1985-10-21',
  'S',
  'NULL',
  'F',
  'kate18@adventure-works.com',
  '110000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '0',
  '1225 Santa Lucia',
  'NULL',
  '1 (11) 500 555-0124',
  '2011-09-21',
  '0-1 Miles'],
 ['11904',
  '34',
  'AW00011904',
  'NULL',
  'Kaylee',
  'NULL',
  'Cook',
  '0',
  '1986-05-05',
  'S',
  'NULL',
  'F',
  'kaylee18@adventure-works.com',
  '110000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '1',
  '5742 Curtis Drive',
  'NULL',
  '1 (11) 500 555-0188',
  '2011-09-17',
  '2-5 Miles'],
 ['11905',
  '31',
  'AW00011905',
  'NULL',
  'Isaiah',
  'NULL',
  'Ramirez',
  '0',
  '1974-12-14',
  'S',
  'NULL',
  'M',
  'isaiah6@adventure-works.com',
  '110000.00',
  '1',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '1',
  '1069 Central Blvd.',
  'NULL',
  '1 (11) 500 555-0177',
  '2011-08-29',
  '2-5 Miles'],
 ['11906',
  '20',
  'AW00011906',
  'NULL',
  'Gabriella',
  'NULL',
  'Sanders',
  '0',
  '1972-08-17',
  'M',
  'NULL',
  'F',
  'gabriella1@adventure-works.com',
  '80000.00',
  '5',
  '5',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '3',
  '4938 Nightingale Drive',
  'NULL',
  '1 (11) 500 555-0115',
  '2011-09-10',
  '0-1 Miles'],
 ['11907',
  '19',
  'AW00011907',
  'NULL',
  'Sarah',
  'NULL',
  'Garcia',
  '0',
  '1973-03-07',
  'S',
  'NULL',
  'F',
  'sarah18@adventure-works.com',
  '80000.00',
  '5',
  '5',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '3',
  '9481 Laguna Street',
  'NULL',
  '1 (11) 500 555-0145',
  '2011-09-28',
  '0-1 Miles'],
 ['11908',
  '38',
  'AW00011908',
  'NULL',
  'Rafael',
  'A',
  'Tang',
  '0',
  '1972-01-08',
  'S',
  'NULL',
  'M',
  'rafael27@adventure-works.com',
  '80000.00',
  '5',
  '5',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '3',
  '8839 Leonard Dr',
  'NULL',
  '1 (11) 500 555-0157',
  '2011-09-19',
  '0-1 Miles'],
 ['11909',
  '26',
  'AW00011909',
  'NULL',
  'Nichole',
  'M',
  'She',
  '0',
  '1971-08-10',
  'M',
  'NULL',
  'F',
  'nichole0@adventure-works.com',
  '80000.00',
  '5',
  '5',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '0',
  '3',
  '7484 Roundtree Drive',
  'NULL',
  '1 (11) 500 555-0168',
  '2011-09-20',
  '0-1 Miles'],
 ['11910',
  '4',
  'AW00011910',
  'NULL',
  'Jaclyn',
  'F',
  'Zheng',
  '0',
  '1971-12-10',
  'M',
  'NULL',
  'F',
  'jaclyn21@adventure-works.com',
  '80000.00',
  '5',
  '5',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '3',
  '7413 Alpine Drive',
  'NULL',
  '1 (11) 500 555-0117',
  '2011-10-09',
  '0-1 Miles'],
 ['11911',
  '34',
  'AW00011911',
  'NULL',
  'Rachael',
  'D',
  'Kapoor',
  '0',
  '1972-05-15',
  'M',
  'NULL',
  'F',
  'rachael1@adventure-works.com',
  '80000.00',
  '5',
  '5',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '3',
  '4159 Bayshore Rd.',
  'NULL',
  '1 (11) 500 555-0149',
  '2013-06-01',
  '0-1 Miles'],
 ['11912',
  '27',
  'AW00011912',
  'NULL',
  'Rachael',
  'NULL',
  'Sai',
  '0',
  '1971-06-16',
  'S',
  'NULL',
  'F',
  'rachael5@adventure-works.com',
  '60000.00',
  '3',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '5108 Heights Avenue',
  'NULL',
  '1 (11) 500 555-0196',
  '2011-10-27',
  '5-10 Miles'],
 ['11913',
  '37',
  'AW00011913',
  'Ms.',
  'Rebecca',
  'A.',
  'Robinson',
  '0',
  '1970-12-09',
  'M',
  'NULL',
  'F',
  'rebecca3@adventure-works.com',
  '60000.00',
  '3',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '1861 Chinquapin Ct',
  'NULL',
  '648-555-0100',
  '2013-12-03',
  '5-10 Miles'],
 ['11914',
  '13',
  'AW00011914',
  'NULL',
  'Meagan',
  'M',
  'Rana',
  '0',
  '1979-05-05',
  'S',
  'NULL',
  'F',
  'meagan11@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '7867 F Mt Hood Circle',
  'NULL',
  '1 (11) 500 555-0118',
  '2011-10-18',
  '0-1 Miles'],
 ['11915',
  '13',
  'AW00011915',
  'NULL',
  'Philip',
  'P',
  'Carlson',
  '0',
  '1973-09-13',
  'S',
  'NULL',
  'M',
  'philip17@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '6672 Mt. Dias Blvd.',
  'NULL',
  '1 (11) 500 555-0110',
  '2011-10-02',
  '5-10 Miles'],
 ['11916',
  '40',
  'AW00011916',
  'NULL',
  'Joe',
  'D',
  'Rana',
  '0',
  '1976-09-03',
  'S',
  'NULL',
  'M',
  'joe14@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '1',
  '6339 E. 108th Street',
  'NULL',
  '1 (11) 500 555-0177',
  '2011-10-01',
  '5-10 Miles'],
 ['11917',
  '3',
  'AW00011917',
  'NULL',
  'Roy',
  'R',
  'Sanz',
  '0',
  '1971-04-21',
  'S',
  'NULL',
  'M',
  'roy40@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '5087 Valle Vista Avenue',
  'NULL',
  '1 (11) 500 555-0156',
  '2011-10-27',
  '5-10 Miles'],
 ['11918',
  '2',
  'AW00011918',
  'NULL',
  'Kaylee',
  'L',
  'Hill',
  '0',
  '1969-08-31',
  'M',
  'NULL',
  'F',
  'kaylee35@adventure-works.com',
  '60000.00',
  '3',
  '3',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '8205 Soto St.',
  'NULL',
  '1 (11) 500 555-0131',
  '2011-10-13',
  '5-10 Miles'],
 ['11919',
  '26',
  'AW00011919',
  'NULL',
  'Warren',
  'NULL',
  'Andersen',
  '0',
  '1969-08-17',
  'M',
  'NULL',
  'M',
  'warren2@adventure-works.com',
  '60000.00',
  '4',
  '4',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '7783 Limewood Pl',
  'NULL',
  '1 (11) 500 555-0181',
  '2011-10-05',
  '5-10 Miles'],
 ['11920',
  '20',
  'AW00011920',
  'NULL',
  'Adrienne',
  'NULL',
  'Gomez',
  '0',
  '1975-02-24',
  'S',
  'NULL',
  'F',
  'adrienne1@adventure-works.com',
  '60000.00',
  '4',
  '4',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '3',
  '4373 Sherry Circle',
  'NULL',
  '1 (11) 500 555-0149',
  '2011-10-10',
  '10+ Miles'],
 ['11921',
  '33',
  'AW00011921',
  'NULL',
  'Gilbert',
  'NULL',
  'Zhu',
  '0',
  '1970-06-22',
  'M',
  'NULL',
  'M',
  'gilbert11@adventure-works.com',
  '60000.00',
  '4',
  '4',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '3',
  '2939 West Ct.',
  'NULL',
  '1 (11) 500 555-0127',
  '2013-09-19',
  '10+ Miles'],
 ['11922',
  '69',
  'AW00011922',
  'NULL',
  'James',
  'NULL',
  'Davis',
  '0',
  '1985-02-13',
  'S',
  'NULL',
  'M',
  'james80@adventure-works.com',
  '90000.00',
  '4',
  '4',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '3704 Elliott Dr.',
  'NULL',
  '483-555-0135',
  '2013-02-15',
  '0-1 Miles'],
 ['11923',
  '343',
  'AW00011923',
  'NULL',
  'Sarah',
  'NULL',
  'Bryant',
  '0',
  '1985-04-21',
  'M',
  'NULL',
  'F',
  'sarah42@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '1',
  '9855 Norse Ct.',
  'NULL',
  '197-555-0118',
  '2013-02-12',
  '1-2 Miles'],
 ['11924',
  '347',
  'AW00011924',
  'NULL',
  'Ian',
  'C',
  'Long',
  '0',
  '1985-04-23',
  'S',
  'NULL',
  'M',
  'ian50@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '1',
  '2389 E Eagle Peak Rd.',
  'NULL',
  '212-555-0171',
  '2011-10-26',
  '1-2 Miles'],
 ['11925',
  '609',
  'AW00011925',
  'NULL',
  'Ashlee',
  'NULL',
  'Jai',
  '0',
  '1984-05-05',
  'S',
  'NULL',
  'F',
  'ashlee18@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '6468 Gatewood Court',
  'NULL',
  '547-555-0176',
  '2011-10-09',
  '5-10 Miles'],
 ['11926',
  '546',
  'AW00011926',
  'NULL',
  'Eduardo',
  'NULL',
  'Foster',
  '0',
  '1983-09-15',
  'S',
  'NULL',
  'M',
  'eduardo60@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '1',
  '609 Power Ave.',
  'NULL',
  '522-555-0169',
  '2013-05-04',
  '5-10 Miles'],
 ['11927',
  '638',
  'AW00011927',
  'NULL',
  'Nicole',
  'D',
  'Murphy',
  '0',
  '1984-01-21',
  'S',
  'NULL',
  'F',
  'nicole32@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '1',
  '7468 Franklin Canyon Road',
  'NULL',
  '373-555-0118',
  '2014-01-09',
  '5-10 Miles'],
 ['11928',
  '316',
  'AW00011928',
  'NULL',
  'Isabella',
  'M',
  'Morris',
  '0',
  '1984-03-06',
  'M',
  'NULL',
  'F',
  'isabella83@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '8487 Amador',
  'NULL',
  '693-555-0146',
  '2013-05-31',
  '5-10 Miles'],
 ['11929',
  '17',
  'AW00011929',
  'NULL',
  'Virginia',
  'NULL',
  'Gonzalez',
  '0',
  '1962-08-08',
  'S',
  'NULL',
  'F',
  'virginia21@adventure-works.com',
  '30000.00',
  '2',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '2',
  '7566 Keller Ridge Dr.',
  'NULL',
  '1 (11) 500 555-0188',
  '2011-10-14',
  '5-10 Miles'],
 ['11930',
  '12',
  'AW00011930',
  'NULL',
  'Jaclyn',
  'M',
  'Nara',
  '0',
  '1952-10-31',
  'M',
  'NULL',
  'F',
  'jaclyn40@adventure-works.com',
  '20000.00',
  '4',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '2121 Royal Ann Lane',
  'NULL',
  '1 (11) 500 555-0177',
  '2011-10-14',
  '1-2 Miles'],
 ['11931',
  '352',
  'AW00011931',
  'NULL',
  'Marcus',
  'M',
  'Adams',
  '0',
  '1984-05-12',
  'S',
  'NULL',
  'M',
  'marcus34@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '9246 Westminster Pl',
  'NULL',
  '687-555-0170',
  '2013-02-16',
  '5-10 Miles'],
 ['11932',
  '369',
  'AW00011932',
  'NULL',
  'Elizabeth',
  'NULL',
  'Coleman',
  '0',
  '1984-02-08',
  'M',
  'NULL',
  'F',
  'elizabeth35@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '7546 Gonzalez Ct.',
  'NULL',
  '400-555-0120',
  '2013-04-29',
  '0-1 Miles'],
 ['11933',
  '609',
  'AW00011933',
  'NULL',
  'Mathew',
  'NULL',
  'Rubio',
  '0',
  '1982-09-01',
  'S',
  'NULL',
  'M',
  'mathew17@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Clerical',
  'Administrativo',
  'Employé',
  '0',
  '2',
  '9911 Northgate Road',
  'NULL',
  '430-555-0126',
  '2011-10-13',
  '1-2 Miles'],
 ['11934',
  '612',
  'AW00011934',
  'NULL',
  'Justin',
  'L',
  'Shan',
  '0',
  '1983-04-13',
  'S',
  'NULL',
  'M',
  'justin27@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '2',
  '9377 Lightwood Drive',
  'NULL',
  '215-555-0113',
  '2011-11-19',
  '5-10 Miles'],
 ['11935',
  '543',
  'AW00011935',
  'NULL',
  'Jessica',
  'NULL',
  'Taylor',
  '0',
  '1983-05-19',
  'S',
  'NULL',
  'F',
  'jessica56@adventure-works.com',
  '30000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '5843 Mountaire Pkwy.',
  'NULL',
  '144-555-0123',
  '2013-06-06',
  '5-10 Miles'],
 ['11936',
  '634',
  'AW00011936',
  'NULL',
  'Hunter',
  'S',
  'Clark',
  '0',
  '1982-10-09',
  'M',
  'NULL',
  'M',
  'hunter51@adventure-works.com',
  '30000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '9001 Esperanza',
  'NULL',
  '121-555-0144',
  '2013-04-05',
  '5-10 Miles'],
 ['11937',
  '548',
  'AW00011937',
  'NULL',
  'Devin',
  'NULL',
  'Perez',
  '0',
  '1982-12-03',
  'M',
  'NULL',
  'M',
  'devin35@adventure-works.com',
  '30000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '8510 G St.',
  'NULL',
  '500-555-0169',
  '2011-10-29',
  '1-2 Miles'],
 ['11938',
  '314',
  'AW00011938',
  'NULL',
  'Seth',
  'D',
  'Alexander',
  '0',
  '1983-03-21',
  'M',
  'NULL',
  'M',
  'seth67@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '3842 Algiers Dr.',
  'NULL',
  '178-555-0186',
  '2013-03-07',
  '5-10 Miles'],
 ['11939',
  '329',
  'AW00011939',
  'NULL',
  'Kevin',
  'C',
  'Washington',
  '0',
  '1982-12-20',
  'S',
  'NULL',
  'M',
  'kevin16@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '9105 Jacobsen Street',
  'NULL',
  '970-555-0114',
  '2011-11-10',
  '1-2 Miles'],
 ['11940',
  '385',
  'AW00011940',
  'NULL',
  'Tyler',
  'E',
  'Miller',
  '0',
  '1983-01-09',
  'M',
  'NULL',
  'M',
  'tyler11@adventure-works.com',
  '100000.00',
  '3',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '3',
  '9231 Brook Hollow Ct.',
  'NULL',
  '456-555-0191',
  '2013-08-02',
  '0-1 Miles'],
 ['11941',
  '553',
  'AW00011941',
  'NULL',
  'Adam',
  'L',
  'Roberts',
  '0',
  '1982-05-26',
  'S',
  'NULL',
  'M',
  'adam34@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '626 Redlands Way',
  'NULL',
  '868-555-0122',
  '2013-08-07',
  '5-10 Miles'],
 ['11942',
  '10',
  'AW00011942',
  'NULL',
  'George',
  'L',
  'Gonzalez',
  '0',
  '1954-12-11',
  'M',
  'NULL',
  'M',
  'george25@adventure-works.com',
  '20000.00',
  '2',
  '1',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '2',
  '80 San Remo Ct',
  'NULL',
  '1 (11) 500 555-0181',
  '2011-10-15',
  '5-10 Miles'],
 ['11943',
  '40',
  'AW00011943',
  'NULL',
  'Dawn',
  'E',
  'Huang',
  '0',
  '1954-08-27',
  'M',
  'NULL',
  'F',
  'dawn7@adventure-works.com',
  '20000.00',
  '2',
  '1',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Clerical',
  'Administrativo',
  'Employé',
  '1',
  '2',
  '1318 Ramer Ct.',
  'NULL',
  '1 (11) 500 555-0154',
  '2011-10-18',
  '5-10 Miles'],
 ['11944',
  '15',
  'AW00011944',
  'NULL',
  'Rachael',
  'M',
  'Rodriguez',
  '0',
  '1956-04-13',
  'S',
  'NULL',
  'F',
  'rachael18@adventure-works.com',
  '30000.00',
  '3',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Clerical',
  'Administrativo',
  'Employé',
  '0',
  '2',
  '6335 Benita Way',
  'NULL',
  '1 (11) 500 555-0134',
  '2011-10-19',
  '1-2 Miles'],
 ['11945',
  '311',
  'AW00011945',
  'NULL',
  'Dennis',
  'NULL',
  'Huang',
  '0',
  '1986-03-11',
  'M',
  'NULL',
  'M',
  'dennis7@adventure-works.com',
  '20000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '1901 Mitchell Canyon Court',
  'NULL',
  '183-555-0120',
  '2011-10-29',
  '1-2 Miles'],
 ['11946',
  '18',
  'AW00011946',
  'NULL',
  'Brandy',
  'NULL',
  'Saunders',
  '0',
  '1956-07-02',
  'S',
  'NULL',
  'F',
  'brandy6@adventure-works.com',
  '30000.00',
  '3',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '3809 Lancelot Dr.',
  'NULL',
  '1 (11) 500 555-0143',
  '2011-10-21',
  '5-10 Miles'],
 ['11947',
  '14',
  'AW00011947',
  'NULL',
  'Jenny',
  'R',
  'Zheng',
  '0',
  '1957-04-20',
  'S',
  'NULL',
  'F',
  'jenny21@adventure-works.com',
  '30000.00',
  '3',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '8268 Donald Dr',
  'NULL',
  '1 (11) 500 555-0162',
  '2011-10-13',
  '1-2 Miles'],
 ['11948',
  '17',
  'AW00011948',
  'NULL',
  'Tasha',
  'E',
  'Xu',
  '0',
  '1956-10-07',
  'M',
  'NULL',
  'F',
  'tasha5@adventure-works.com',
  '30000.00',
  '3',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '2013 Filling Ave.',
  '#3',
  '1 (11) 500 555-0194',
  '2013-09-06',
  '5-10 Miles'],
 ['11949',
  '374',
  'AW00011949',
  'NULL',
  'Julia',
  'W',
  'Brooks',
  '0',
  '1986-05-05',
  'S',
  'NULL',
  'F',
  'julia63@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '1657 Morengo Ct.',
  'NULL',
  '845-555-0143',
  '2013-07-16',
  '5-10 Miles'],
 ['11950',
  '312',
  'AW00011950',
  'NULL',
  'Jordan',
  'NULL',
  'Carter',
  '0',
  '1985-03-09',
  'M',
  'NULL',
  'F',
  'jordan39@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '1127 Oak Street',
  'NULL',
  '609-555-0117',
  '2013-02-17',
  '5-10 Miles'],
 ['11951',
  '35',
  'AW00011951',
  'NULL',
  'Lacey',
  'J',
  'Huang',
  '0',
  '1958-02-03',
  'M',
  'NULL',
  'F',
  'lacey18@adventure-works.com',
  '40000.00',
  '2',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '8762 Terrace',
  'NULL',
  '1 (11) 500 555-0121',
  '2013-08-20',
  '5-10 Miles'],
 ['11952',
  '34',
  'AW00011952',
  'Ms.',
  'Dorothy',
  'B.',
  'Robinson',
  '0',
  '1960-03-22',
  'S',
  'NULL',
  'M',
  'dorothy3@adventure-works.com',
  '80000.00',
  '2',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '4693 Mills Dr.',
  'NULL',
  '423-555-0100',
  '2011-10-05',
  '1-2 Miles'],
 ['11953',
  '545',
  'AW00011953',
  'NULL',
  'Courtney',
  'D',
  'Wright',
  '0',
  '1981-03-03',
  'S',
  'NULL',
  'F',
  'courtney16@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '445 San Carlos Avenue',
  'NULL',
  '366-555-0162',
  '2013-02-09',
  '1-2 Miles'],
 ['11954',
  '325',
  'AW00011954',
  'NULL',
  'Joseph',
  'M',
  'Garcia',
  '0',
  '1981-02-13',
  'M',
  'NULL',
  'M',
  'joseph23@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '1220 Bradford Way',
  'NULL',
  '594-555-0120',
  '2011-11-01',
  '5-10 Miles'],
 ['11955',
  '325',
  'AW00011955',
  'NULL',
  'Gabriel',
  'L',
  'Green',
  '0',
  '1980-10-02',
  'S',
  'NULL',
  'M',
  'gabriel45@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '6991 Gloria Terr.',
  'NULL',
  '149-555-0162',
  '2011-10-29',
  '5-10 Miles'],
 ['11956',
  '300',
  'AW00011956',
  'NULL',
  'Alexandria',
  'NULL',
  'Sandberg',
  '0',
  '1985-08-30',
  'S',
  'NULL',
  'F',
  'alexandria27@adventure-works.com',
  '40000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '844 Sol Street',
  'NULL',
  '998-555-0194',
  '2011-10-31',
  '5-10 Miles'],
 ['11957',
  '634',
  'AW00011957',
  'NULL',
  'Courtney',
  'NULL',
  'Hernandez',
  '0',
  '1979-02-09',
  'S',
  'NULL',
  'F',
  'courtney14@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '8426 Kendall Rd.',
  'NULL',
  '424-555-0199',
  '2013-02-12',
  '1-2 Miles'],
 ['11958',
  '611',
  'AW00011958',
  'NULL',
  'Dylan',
  'D',
  'Lal',
  '0',
  '1978-07-06',
  'S',
  'NULL',
  'M',
  'dylan28@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '6746 River Ash Court',
  'NULL',
  '844-555-0156',
  '2013-06-16',
  '5-10 Miles'],
 ['11959',
  '335',
  'AW00011959',
  'NULL',
  'Elizabeth',
  'K',
  'Davis',
  '0',
  '1978-10-05',
  'S',
  'NULL',
  'F',
  'elizabeth9@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '2',
  '117 Esperanza Dr',
  'NULL',
  '884-555-0119',
  '2013-03-23',
  '0-1 Miles'],
 ['11960',
  '634',
  'AW00011960',
  'NULL',
  'Ana',
  'NULL',
  'Griffin',
  '0',
  '1978-12-31',
  'S',
  'NULL',
  'F',
  'ana19@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '2',
  '6612 Concord',
  'NULL',
  '377-555-0180',
  '2013-03-25',
  '0-1 Miles'],
 ['11961',
  '299',
  'AW00011961',
  'NULL',
  'Anne',
  'A',
  'Alvarez',
  '0',
  '1978-12-22',
  'S',
  'NULL',
  'F',
  'anne5@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '6318 Merriewood Dr.',
  'NULL',
  '297-555-0150',
  '2013-02-11',
  '5-10 Miles'],
 ['11962',
  '298',
  'AW00011962',
  'NULL',
  'Alexandra',
  'NULL',
  'Roberts',
  '0',
  '1982-05-28',
  'S',
  'NULL',
  'F',
  'alexandra47@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '2',
  '9024 Grant Street',
  'NULL',
  '685-555-0149',
  '2013-08-11',
  '1-2 Miles'],
 ['11963',
  '2',
  'AW00011963',
  'NULL',
  'Antonio',
  'G',
  'Patterson',
  '0',
  '1960-12-10',
  'M',
  'NULL',
  'M',
  'antonio10@adventure-works.com',
  '80000.00',
  '2',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '2355 Regina Lane',
  'NULL',
  '1 (11) 500 555-0197',
  '2011-10-22',
  '1-2 Miles'],
 ['11964',
  '22',
  'AW00011964',
  'Ms.',
  'Sharon',
  'NULL',
  'Salavaria',
  '0',
  '1967-02-13',
  'S',
  'NULL',
  'M',
  'sharon4@adventure-works.com',
  '70000.00',
  '2',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '5652 East View Place',
  'NULL',
  '109-555-0100',
  '2011-10-14',
  '1-2 Miles'],
 ['11965',
  '8',
  'AW00011965',
  'NULL',
  'Katie',
  'B',
  'She',
  '0',
  '1962-04-18',
  'S',
  'NULL',
  'F',
  'katie3@adventure-works.com',
  '70000.00',
  '2',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '1174 Royal Ann Lane',
  'NULL',
  '1 (11) 500 555-0150',
  '2013-02-10',
  '5-10 Miles'],
 ['11966',
  '32',
  'AW00011966',
  'NULL',
  'Rafael',
  'NULL',
  'Black',
  '0',
  '1967-02-13',
  'S',
  'NULL',
  'M',
  'rafael44@adventure-works.com',
  '70000.00',
  '2',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '2',
  '1730 D Reliez Valley Ct.',
  'NULL',
  '1 (11) 500 555-0147',
  '2013-11-01',
  '5-10 Miles'],
 ['11967',
  '25',
  'AW00011967',
  'NULL',
  'Latasha',
  'NULL',
  'Munoz',
  '0',
  '1962-08-10',
  'S',
  'NULL',
  'F',
  'latasha7@adventure-works.com',
  '80000.00',
  '2',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '4799 Buena Vista',
  'NULL',
  '1 (11) 500 555-0118',
  '2011-10-23',
  '5-10 Miles'],
 ['11968',
  '9',
  'AW00011968',
  'NULL',
  'Kelsey',
  'G',
  'Becker',
  '0',
  '1964-04-19',
  'S',
  'NULL',
  'F',
  'kelsey19@adventure-works.com',
  '130000.00',
  '0',
  '1',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '0',
  '2',
  '6577 La Canada',
  'NULL',
  '1 (11) 500 555-0135',
  '2011-10-28',
  '0-1 Miles'],
 ['11969',
  '30',
  'AW00011969',
  'NULL',
  'Randy',
  'S',
  'Xu',
  '0',
  '1964-01-22',
  'S',
  'NULL',
  'M',
  'randy14@adventure-works.com',
  '130000.00',
  '0',
  '1',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '0',
  '2',
  '2140 Clifford Court',
  'NULL',
  '1 (11) 500 555-0188',
  '2011-10-19',
  '0-1 Miles'],
 ['11970',
  '552',
  'AW00011970',
  'NULL',
  'Bailey',
  'NULL',
  'Collins',
  '0',
  '1984-11-12',
  'S',
  'NULL',
  'F',
  'bailey22@adventure-works.com',
  '80000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '0',
  '1',
  '2578 Welle Road',
  '# 118',
  '968-555-0128',
  '2013-05-25',
  '2-5 Miles'],
 ['11971',
  '322',
  'AW00011971',
  'NULL',
  'Amanda',
  'P',
  'Adams',
  '0',
  '1979-03-03',
  'S',
  'NULL',
  'F',
  'amanda58@adventure-works.com',
  '80000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '0',
  '1',
  '6730 Saddlehill Lane',
  'NULL',
  '592-555-0166',
  '2013-04-15',
  '2-5 Miles'],
 ['11972',
  '614',
  'AW00011972',
  'NULL',
  'Katherine',
  'K',
  'Williams',
  '0',
  '1979-09-20',
  'M',
  'NULL',
  'F',
  'katherine73@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '2',
  '927 Live Oak Ave.',
  'NULL',
  '351-555-0197',
  '2013-11-09',
  '1-2 Miles'],
 ['11973',
  '635',
  'AW00011973',
  'NULL',
  'Caroline',
  'NULL',
  'Barnes',
  '0',
  '1979-08-03',
  'S',
  'NULL',
  'F',
  'caroline5@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '2',
  '112 RaceCt',
  'NULL',
  '820-555-0119',
  '2013-02-27',
  '1-2 Miles'],
 ['11974',
  '299',
  'AW00011974',
  'NULL',
  'Randy',
  'W',
  'Sun',
  '0',
  '1979-08-07',
  'S',
  'NULL',
  'M',
  'randy15@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '2',
  '8540 Ravenwood Dr.',
  'NULL',
  '156-555-0147',
  '2013-10-30',
  '5-10 Miles'],
 ['11975',
  '307',
  'AW00011975',
  'NULL',
  'Destiny',
  'B',
  'Garcia',
  '0',
  '1980-04-02',
  'S',
  'NULL',
  'F',
  'destiny16@adventure-works.com',
  '60000.00',
  '0',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '2',
  '1993 South Villa Way',
  'NULL',
  '928-555-0186',
  '2013-07-17',
  '1-2 Miles'],
 ['11976',
  '12',
  'AW00011976',
  'NULL',
  'Audrey',
  'NULL',
  'Ramos',
  '0',
  '1970-05-22',
  'S',
  'NULL',
  'F',
  'audrey19@adventure-works.com',
  '120000.00',
  '1',
  '2',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '0',
  '3',
  '598 Merry Drive',
  'NULL',
  '1 (11) 500 555-0176',
  '2011-10-25',
  '0-1 Miles'],
 ['11977',
  '10',
  'AW00011977',
  'NULL',
  'Bonnie',
  'NULL',
  'Jai',
  '0',
  '1964-11-19',
  'M',
  'NULL',
  'F',
  'bonnie17@adventure-works.com',
  '130000.00',
  '0',
  '1',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '3',
  '2544 Ashley Way',
  'NULL',
  '1 (11) 500 555-0185',
  '2011-11-01',
  '0-1 Miles'],
 ['11978',
  '322',
  'AW00011978',
  'NULL',
  'Jackson',
  'NULL',
  'Washington',
  '0',
  '1977-10-18',
  'M',
  'NULL',
  'M',
  'jackson15@adventure-works.com',
  '130000.00',
  '0',
  '1',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '3',
  '1374 Queens Road',
  'NULL',
  '644-555-0115',
  '2013-02-03',
  '0-1 Miles'],
 ['11979',
  '69',
  'AW00011979',
  'NULL',
  'Christopher',
  'NULL',
  'Johnson',
  '0',
  '1962-11-05',
  'M',
  'NULL',
  'M',
  'christopher25@adventure-works.com',
  '80000.00',
  '2',
  '0',
  'Partial High School',
  'Educación secundaria (en curso)',
  'Niveau bac',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '2',
  '9234 Carmel Drive',
  'NULL',
  '130-555-0198',
  '2013-02-14',
  '1-2 Miles'],
 ['11980',
  '369',
  'AW00011980',
  'NULL',
  'Kimberly',
  'NULL',
  'Richardson',
  '0',
  '1963-06-17',
  'S',
  'NULL',
  'F',
  'kimberly13@adventure-works.com',
  '60000.00',
  '2',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '2',
  '7629 Bonanza',
  'NULL',
  '116-555-0182',
  '2013-09-23',
  '1-2 Miles'],
 ['11981',
  '616',
  'AW00011981',
  'NULL',
  'Alexandria',
  'NULL',
  'Howard',
  '0',
  '1962-08-03',
  'S',
  'NULL',
  'F',
  'alexandria33@adventure-works.com',
  '60000.00',
  '2',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '0',
  '2',
  '341 Victory Lane',
  'NULL',
  '935-555-0120',
  '2013-04-09',
  '1-2 Miles'],
 ['11982',
  '359',
  'AW00011982',
  'NULL',
  'Alexandra',
  'NULL',
  'Foster',
  '0',
  '1962-10-02',
  'S',
  'NULL',
  'F',
  'alexandra37@adventure-works.com',
  '60000.00',
  '2',
  '0',
  'High School',
  'Educación secundaria',
  'Bac + 2',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '2',
  '6754 Pampered Ct.',
  '# 19',
  '278-555-0183',
  '2013-08-17',
  '5-10 Miles'],
 ['11983',
  '298',
  'AW00011983',
  'NULL',
  'Cheryl',
  'NULL',
  'Ortega',
  '0',
  '1968-02-24',
  'M',
  'NULL',
  'F',
  'cheryl24@adventure-works.com',
  '70000.00',
  '3',
  '2',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '6501 West Way',
  'NULL',
  '354-555-0177',
  '2011-11-08',
  '5-10 Miles'],
 ['11984',
  '59',
  'AW00011984',
  'NULL',
  'Alex',
  'NULL',
  'Campbell',
  '0',
  '1962-12-04',
  'M',
  'NULL',
  'M',
  'alex35@adventure-works.com',
  '80000.00',
  '2',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '1',
  '0',
  '4164 Kenneth Ct.',
  'NULL',
  '376-555-0156',
  '2013-02-15',
  '0-1 Miles'],
 ['11985',
  '536',
  'AW00011985',
  'NULL',
  'Melanie',
  'A',
  'Hughes',
  '0',
  '1963-05-18',
  'M',
  'NULL',
  'F',
  'melanie27@adventure-works.com',
  '80000.00',
  '2',
  '1',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Management',
  'Gestión',
  'Direction',
  '0',
  '1',
  '2546 Crowe Place',
  'NULL',
  '909-555-0153',
  '2013-02-27',
  '0-1 Miles'],
 ['11986',
  '34',
  'AW00011986',
  'NULL',
  'Max',
  'M',
  'Alvarez',
  '0',
  '1969-01-20',
  'S',
  'NULL',
  'M',
  'max5@adventure-works.com',
  '70000.00',
  '0',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '4594 Rose Dr.',
  'NULL',
  '1 (11) 500 555-0124',
  '2011-11-22',
  '5-10 Miles'],
 ['11987',
  '38',
  'AW00011987',
  'NULL',
  'Diane',
  'D',
  'Vazquez',
  '0',
  '1973-05-26',
  'M',
  'NULL',
  'F',
  'diane19@adventure-works.com',
  '90000.00',
  '4',
  '4',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '0',
  '6772 Geraldine Dr.',
  'NULL',
  '1 (11) 500 555-0128',
  '2013-06-17',
  '0-1 Miles'],
 ['11988',
  '4',
  'AW00011988',
  'NULL',
  'Kathryn',
  'NULL',
  'Chapman',
  '0',
  '1968-02-17',
  'S',
  'NULL',
  'F',
  'kathryn14@adventure-works.com',
  '70000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '4095 Minert Rd.',
  'NULL',
  '1 (11) 500 555-0127',
  '2011-11-10',
  '5-10 Miles'],
 ['11989',
  '24',
  'AW00011989',
  'NULL',
  'Kara',
  'NULL',
  'Anand',
  '0',
  '1984-03-20',
  'S',
  'NULL',
  'F',
  'kara20@adventure-works.com',
  '70000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '1088 Ash Lane',
  'NULL',
  '1 (11) 500 555-0130',
  '2011-11-03',
  '5-10 Miles'],
 ['11990',
  '10',
  'AW00011990',
  'NULL',
  'Joanna',
  'J',
  'Vazquez',
  '0',
  '1968-01-12',
  'S',
  'NULL',
  'F',
  'joanna13@adventure-works.com',
  '70000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '198 Edie Ct.',
  'NULL',
  '1 (11) 500 555-0182',
  '2011-11-13',
  '5-10 Miles'],
 ['11991',
  '9',
  'AW00011991',
  'NULL',
  'Frederick',
  'NULL',
  'Martinez',
  '0',
  '1968-02-07',
  'M',
  'NULL',
  'M',
  'frederick14@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Bachelors',
  'Licenciatura',
  'Bac + 4',
  'Professional',
  'Profesional',
  'Cadre',
  '1',
  '1',
  '3410 Hemlock Ave.',
  'NULL',
  '1 (11) 500 555-0142',
  '2011-11-01',
  '0-1 Miles'],
 ['11992',
  '20',
  'AW00011992',
  'NULL',
  'Tonya',
  'NULL',
  'Chande',
  '0',
  '1972-06-09',
  'S',
  'NULL',
  'F',
  'tonya14@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '4766 Palm Ave',
  'NULL',
  '1 (11) 500 555-0177',
  '2011-11-17',
  '5-10 Miles'],
 ['11993',
  '4',
  'AW00011993',
  'NULL',
  'Rosa',
  'I',
  'Wang',
  '0',
  '1977-09-12',
  'S',
  'NULL',
  'F',
  'rosa1@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '0',
  '1',
  '9135 Rockford Dr.',
  'NULL',
  '1 (11) 500 555-0178',
  '2011-11-13',
  '0-1 Miles'],
 ['11994',
  '27',
  'AW00011994',
  'NULL',
  'Leah',
  'NULL',
  'Hu',
  '0',
  '1977-10-18',
  'S',
  'NULL',
  'F',
  'leah16@adventure-works.com',
  '110000.00',
  '0',
  '0',
  'Graduate Degree',
  'Estudios de postgrado',
  'Bac + 3',
  'Management',
  'Gestión',
  'Direction',
  '0',
  '3',
  '1374 Queens Road',
  'NULL',
  '1 (11) 500 555-0191',
  '2011-11-25',
  '1-2 Miles'],
 ['11995',
  '39',
  'AW00011995',
  'NULL',
  'Kelvin',
  'A',
  'Carson',
  '0',
  '1965-12-12',
  'M',
  'NULL',
  'M',
  'kelvin11@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '2599 Amaranth Way',
  'NULL',
  '1 (11) 500 555-0149',
  '2011-11-08',
  '0-1 Miles'],
 ['11996',
  '21',
  'AW00011996',
  'NULL',
  'Veronica',
  'NULL',
  'Srini',
  '0',
  '1966-01-30',
  'S',
  'NULL',
  'F',
  'veronica9@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '4681 Deerfield Dr.',
  'NULL',
  '1 (11) 500 555-0173',
  '2011-11-04',
  '5-10 Miles'],
 ['11997',
  '2',
  'AW00011997',
  'NULL',
  'Kristina',
  'NULL',
  'Kapoor',
  '0',
  '1971-04-04',
  'M',
  'NULL',
  'F',
  'kristina1@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '6828 Willow Pass Road',
  'NULL',
  '1 (11) 500 555-0140',
  '2011-11-05',
  '0-1 Miles'],
 ['11998',
  '24',
  'AW00011998',
  'NULL',
  'Donna',
  'NULL',
  'Sharma',
  '0',
  '1966-02-07',
  'M',
  'NULL',
  'F',
  'donna9@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '1641 Overhill Rd',
  'NULL',
  '1 (11) 500 555-0118',
  '2011-11-16',
  '5-10 Miles'],
 ['11999',
  '10',
  'AW00011999',
  'NULL',
  'Johnny',
  'NULL',
  'Shan',
  '0',
  '1965-12-03',
  'M',
  'NULL',
  'M',
  'johnny11@adventure-works.com',
  '60000.00',
  '1',
  '0',
  'Partial College',
  'Estudios universitarios (en curso)',
  'Baccalauréat',
  'Skilled Manual',
  'Obrero especializado',
  'Technicien',
  '1',
  '1',
  '7177 Santa Rosa',
  'NULL',
  '1 (11) 500 555-0145',
  '2011-11-10',
  '0-1 Miles'],
 ...]
In [36]:
#6. Close the file
#file.close()
In [37]:
# using with statement to automatically release the resources
import csv
rows = []
with open("DimCustomer.csv") as file:
    csvreader = csv.reader(file)
    header = next(csvreader)
    for row in csvreader:
        rows.append(row)
print(header)
print(rows)
['CustomerKey', 'GeographyKey', 'CustomerAlternateKey', 'Title', 'FirstName', 'MiddleName', 'LastName', 'NameStyle', 'BirthDate', 'MaritalStatus', 'Suffix', 'Gender', 'EmailAddress', 'YearlyIncome', 'TotalChildren', 'NumberChildrenAtHome', 'EnglishEducation', 'SpanishEducation', 'FrenchEducation', 'EnglishOccupation', 'SpanishOccupation', 'FrenchOccupation', 'HouseOwnerFlag', 'NumberCarsOwned', 'AddressLine1', 'AddressLine2', 'Phone', 'DateFirstPurchase', 'CommuteDistance']
[['11000', '26', 'AW00011000', 'NULL', 'Jon', 'V', 'Yang', '0', '1971-10-06', 'M', 'NULL', 'M', 'jon24@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '3761 N. 14th St', 'NULL', '1 (11) 500 555-0162', '2011-01-19', '1-2 Miles'], ['11001', '37', 'AW00011001', 'NULL', 'Eugene', 'L', 'Huang', '0', '1976-05-10', 'S', 'NULL', 'M', 'eugene10@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '2243 W St.', 'NULL', '1 (11) 500 555-0110', '2011-01-15', '0-1 Miles'], ['11002', '31', 'AW00011002', 'NULL', 'Ruben', 'NULL', 'Torres', '0', '1971-02-09', 'M', 'NULL', 'M', 'ruben35@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5844 Linden Land', 'NULL', '1 (11) 500 555-0184', '2011-01-07', '2-5 Miles'], ['11003', '11', 'AW00011003', 'NULL', 'Christy', 'NULL', 'Zhu', '0', '1973-08-14', 'S', 'NULL', 'F', 'christy12@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1825 Village Pl.', 'NULL', '1 (11) 500 555-0162', '2010-12-29', '5-10 Miles'], ['11004', '19', 'AW00011004', 'NULL', 'Elizabeth', 'NULL', 'Johnson', '0', '1979-08-05', 'S', 'NULL', 'F', 'elizabeth5@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '7553 Harness Circle', 'NULL', '1 (11) 500 555-0131', '2011-01-23', '1-2 Miles'], ['11005', '22', 'AW00011005', 'NULL', 'Julio', 'NULL', 'Ruiz', '0', '1976-08-01', 'S', 'NULL', 'M', 'julio1@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7305 Humphrey Drive', 'NULL', '1 (11) 500 555-0151', '2010-12-30', '5-10 Miles'], ['11006', '8', 'AW00011006', 'NULL', 'Janet', 'G', 'Alvarez', '0', '1976-12-02', 'S', 'NULL', 'F', 'janet9@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2612 Berry Dr', 'NULL', '1 (11) 500 555-0184', '2011-01-24', '5-10 Miles'], ['11007', '40', 'AW00011007', 'NULL', 'Marco', 'NULL', 'Mehta', '0', '1969-11-06', 'M', 'NULL', 'M', 'marco14@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '942 Brook Street', 'NULL', '1 (11) 500 555-0126', '2011-01-09', '0-1 Miles'], ['11008', '32', 'AW00011008', 'NULL', 'Rob', 'NULL', 'Verhoff', '0', '1975-07-04', 'S', 'NULL', 'F', 'rob4@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '624 Peabody Road', 'NULL', '1 (11) 500 555-0164', '2011-01-25', '10+ Miles'], ['11009', '25', 'AW00011009', 'NULL', 'Shannon', 'C', 'Carlson', '0', '1969-09-29', 'S', 'NULL', 'M', 'shannon38@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3839 Northgate Road', 'NULL', '1 (11) 500 555-0110', '2011-01-27', '5-10 Miles'], ['11010', '22', 'AW00011010', 'NULL', 'Jacquelyn', 'C', 'Suarez', '0', '1969-08-05', 'S', 'NULL', 'F', 'jacquelyn20@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7800 Corrinne Court', 'NULL', '1 (11) 500 555-0169', '2011-01-14', '5-10 Miles'], ['11011', '22', 'AW00011011', 'NULL', 'Curtis', 'NULL', 'Lu', '0', '1969-05-03', 'M', 'NULL', 'M', 'curtis9@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '1224 Shoenic', 'NULL', '1 (11) 500 555-0117', '2010-12-30', '10+ Miles'], ['11012', '611', 'AW00011012', 'NULL', 'Lauren', 'M', 'Walker', '0', '1979-01-14', 'M', 'NULL', 'F', 'lauren41@adventure-works.com', '100000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4785 Scott Street', 'NULL', '717-555-0164', '2013-03-16', '1-2 Miles'], ['11013', '543', 'AW00011013', 'NULL', 'Ian', 'M', 'Jenkins', '0', '1979-08-03', 'M', 'NULL', 'M', 'ian47@adventure-works.com', '100000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '7902 Hudson Ave.', 'NULL', '817-555-0185', '2013-04-13', '0-1 Miles'], ['11014', '634', 'AW00011014', 'NULL', 'Sydney', 'NULL', 'Bennett', '0', '1973-11-06', 'S', 'NULL', 'F', 'sydney23@adventure-works.com', '100000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '9011 Tank Drive', 'NULL', '431-555-0156', '2013-03-23', '1-2 Miles'], ['11015', '301', 'AW00011015', 'NULL', 'Chloe', 'NULL', 'Young', '0', '1984-08-26', 'S', 'NULL', 'F', 'chloe23@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '244 Willow Pass Road', 'NULL', '208-555-0142', '2013-01-18', '5-10 Miles'], ['11016', '329', 'AW00011016', 'NULL', 'Wyatt', 'L', 'Hill', '0', '1984-10-25', 'M', 'NULL', 'M', 'wyatt32@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9666 Northridge Ct.', 'NULL', '135-555-0171', '2013-02-09', '5-10 Miles'], ['11017', '39', 'AW00011017', 'NULL', 'Shannon', 'NULL', 'Wang', '0', '1949-12-24', 'S', 'NULL', 'F', 'shannon1@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7330 Saddlehill Lane', 'NULL', '1 (11) 500 555-0195', '2011-01-12', '5-10 Miles'], ['11018', '32', 'AW00011018', 'NULL', 'Clarence', 'D', 'Rai', '0', '1955-10-06', 'S', 'NULL', 'M', 'clarence32@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '244 Rivewview', 'NULL', '1 (11) 500 555-0137', '2011-01-17', '5-10 Miles'], ['11019', '52', 'AW00011019', 'NULL', 'Luke', 'L', 'Lal', '0', '1983-09-04', 'S', 'NULL', 'M', 'luke18@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7832 Landing Dr', 'NULL', '262-555-0112', '2013-02-12', '5-10 Miles'], ['11020', '53', 'AW00011020', 'NULL', 'Jordan', 'C', 'King', '0', '1984-03-19', 'S', 'NULL', 'M', 'jordan73@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7156 Rose Dr.', 'NULL', '550-555-0163', '2012-12-29', '1-2 Miles'], ['11021', '536', 'AW00011021', 'NULL', 'Destiny', 'NULL', 'Wilson', '0', '1984-03-02', 'S', 'NULL', 'F', 'destiny7@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '8148 W. Lake Dr.', 'NULL', '622-555-0158', '2013-01-23', '1-2 Miles'], ['11022', '609', 'AW00011022', 'NULL', 'Ethan', 'G', 'Zhang', '0', '1984-04-10', 'M', 'NULL', 'M', 'ethan20@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1769 Nicholas Drive', 'NULL', '589-555-0185', '2013-01-20', '5-10 Miles'], ['11023', '298', 'AW00011023', 'NULL', 'Seth', 'M', 'Edwards', '0', '1984-04-09', 'M', 'NULL', 'M', 'seth46@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4499 Valley Crest', 'NULL', '452-555-0188', '2013-02-17', '1-2 Miles'], ['11024', '311', 'AW00011024', 'NULL', 'Russell', 'NULL', 'Xie', '0', '1984-03-16', 'M', 'NULL', 'M', 'russell7@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8734 Oxford Place', 'NULL', '746-555-0186', '2013-06-27', '5-10 Miles'], ['11025', '24', 'AW00011025', 'NULL', 'Alejandro', 'NULL', 'Beck', '0', '1951-06-22', 'M', 'NULL', 'M', 'alejandro45@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2596 Franklin Canyon Road', 'NULL', '1 (11) 500 555-0178', '2011-01-06', '1-2 Miles'], ['11026', '4', 'AW00011026', 'NULL', 'Harold', 'NULL', 'Sai', '0', '1951-10-01', 'S', 'NULL', 'M', 'harold3@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '8211 Leeds Ct.', 'NULL', '1 (11) 500 555-0131', '2011-01-23', '1-2 Miles'], ['11027', '40', 'AW00011027', 'NULL', 'Jessie', 'R', 'Zhao', '0', '1952-06-05', 'M', 'NULL', 'M', 'jessie16@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '213 Valencia Place', 'NULL', '1 (11) 500 555-0184', '2011-01-16', '5-10 Miles'], ['11028', '17', 'AW00011028', 'NULL', 'Jill', 'NULL', 'Jimenez', '0', '1951-10-09', 'M', 'NULL', 'F', 'jill13@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9111 Rose Ann Ave', 'NULL', '1 (11) 500 555-0116', '2011-01-26', '1-2 Miles'], ['11029', '32', 'AW00011029', 'NULL', 'Jimmy', 'L', 'Moreno', '0', '1952-06-19', 'M', 'NULL', 'M', 'jimmy9@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6385 Mark Twain', 'NULL', '1 (11) 500 555-0146', '2011-01-19', '1-2 Miles'], ['11030', '28', 'AW00011030', 'NULL', 'Bethany', 'G', 'Yuan', '0', '1958-02-18', 'M', 'NULL', 'F', 'bethany10@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '636 Vine Hill Way', 'NULL', '1 (11) 500 555-0182', '2011-02-05', '1-2 Miles'], ['11031', '8', 'AW00011031', 'NULL', 'Theresa', 'G', 'Ramos', '0', '1953-02-18', 'M', 'NULL', 'F', 'theresa13@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6465 Detroit Ave.', 'NULL', '1 (11) 500 555-0195', '2011-02-01', '1-2 Miles'], ['11032', '35', 'AW00011032', 'NULL', 'Denise', 'NULL', 'Stone', '0', '1952-12-08', 'M', 'NULL', 'F', 'denise10@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '626 Bentley Street', 'NULL', '1 (11) 500 555-0169', '2011-02-18', '1-2 Miles'], ['11033', '9', 'AW00011033', 'NULL', 'Jaime', 'NULL', 'Nath', '0', '1958-09-19', 'M', 'NULL', 'M', 'jaime41@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5927 Rainbow Dr', 'NULL', '1 (11) 500 555-0137', '2011-02-15', '5-10 Miles'], ['11034', '12', 'AW00011034', 'NULL', 'Ebony', 'NULL', 'Gonzalez', '0', '1952-12-16', 'M', 'NULL', 'F', 'ebony19@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5167 Condor Place', 'NULL', '1 (11) 500 555-0136', '2011-02-01', '5-10 Miles'], ['11035', '33', 'AW00011035', 'NULL', 'Wendy', 'NULL', 'Dominguez', '0', '1953-08-23', 'M', 'NULL', 'F', 'wendy12@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1873 Mt. Whitney Dr', 'NULL', '1 (11) 500 555-0177', '2011-02-06', '1-2 Miles'], ['11036', '343', 'AW00011036', 'NULL', 'Jennifer', 'C', 'Russell', '0', '1984-06-16', 'M', 'NULL', 'F', 'jennifer93@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3981 Augustine Drive', 'NULL', '115-555-0183', '2013-01-22', '1-2 Miles'], ['11037', '49', 'AW00011037', 'NULL', 'Chloe', 'M', 'Garcia', '0', '1983-05-27', 'S', 'NULL', 'F', 'chloe27@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '8915 Woodside Way', 'NULL', '229-555-0112', '2013-01-20', '5-10 Miles'], ['11038', '6', 'AW00011038', 'NULL', 'Diana', 'F', 'Hernandez', '0', '1953-09-20', 'M', 'NULL', 'F', 'diana2@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '8357 Sandy Cove Lane', 'NULL', '1 (11) 500 555-0114', '2011-02-07', '5-10 Miles'], ['11039', '19', 'AW00011039', 'NULL', 'Marc', 'J', 'Martin', '0', '1954-06-16', 'M', 'NULL', 'M', 'marc3@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9353 Creekside Dr.', 'NULL', '1 (11) 500 555-0183', '2011-02-07', '5-10 Miles'], ['11040', '642', 'AW00011040', 'NULL', 'Jesse', 'NULL', 'Murphy', '0', '1983-01-29', 'M', 'NULL', 'M', 'jesse15@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3350 Kingswood Circle', 'NULL', '961-555-0176', '2013-04-03', '1-2 Miles'], ['11041', '325', 'AW00011041', 'NULL', 'Amanda', 'M', 'Carter', '0', '1983-04-15', 'M', 'NULL', 'F', 'amanda53@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5826 Escobar', 'NULL', '295-555-0145', '2013-01-14', '1-2 Miles'], ['11042', '338', 'AW00011042', 'NULL', 'Megan', 'J', 'Sanchez', '0', '1982-12-11', 'M', 'NULL', 'F', 'megan28@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1397 Paraiso Ct.', 'NULL', '404-555-0199', '2013-01-21', '0-1 Miles'], ['11043', '325', 'AW00011043', 'NULL', 'Nathan', 'M', 'Simmons', '0', '1981-08-23', 'M', 'NULL', 'M', 'nathan11@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1170 Shaw Rd', 'NULL', '296-555-0181', '2013-05-08', '5-10 Miles'], ['11044', '25', 'AW00011044', 'NULL', 'Adam', 'L', 'Flores', '0', '1954-11-21', 'M', 'NULL', 'M', 'adam10@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6935 Candle Dr', 'NULL', '1 (11) 500 555-0163', '2011-02-28', '1-2 Miles'], ['11045', '8', 'AW00011045', 'NULL', 'Leonard', 'G', 'Nara', '0', '1955-11-16', 'S', 'NULL', 'M', 'leonard18@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7466 La Vista Ave.', 'NULL', '1 (11) 500 555-0151', '2013-04-10', '1-2 Miles'], ['11046', '6', 'AW00011046', 'NULL', 'Christine', 'NULL', 'Yuan', '0', '1955-09-19', 'M', 'NULL', 'F', 'christine4@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2356 Orange St', 'NULL', '1 (11) 500 555-0113', '2011-02-06', '5-10 Miles'], ['11047', '34', 'AW00011047', 'NULL', 'Jaclyn', 'D', 'Lu', '0', '1955-08-27', 'M', 'NULL', 'F', 'jaclyn12@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2812 Mazatlan', 'NULL', '1 (11) 500 555-0137', '2011-02-03', '1-2 Miles'], ['11048', '39', 'AW00011048', 'NULL', 'Jeremy', 'NULL', 'Powell', '0', '1956-05-21', 'M', 'NULL', 'M', 'jeremy26@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1803 Potomac Dr.', 'NULL', '1 (11) 500 555-0183', '2011-02-10', '5-10 Miles'], ['11049', '307', 'AW00011049', 'NULL', 'Carol', 'C', 'Rai', '0', '1986-01-15', 'S', 'NULL', 'F', 'carol8@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6064 Madrid', 'NULL', '654-555-0180', '2013-03-09', '5-10 Miles'], ['11050', '31', 'AW00011050', 'NULL', 'Alan', 'NULL', 'Zheng', '0', '1957-03-06', 'M', 'NULL', 'M', 'alan23@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2741 Gainborough Dr.', 'NULL', '1 (11) 500 555-0135', '2011-02-20', '5-10 Miles'], ['11051', '21', 'AW00011051', 'NULL', 'Daniel', 'NULL', 'Johnson', '0', '1957-01-31', 'S', 'NULL', 'M', 'daniel18@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8085 Sunnyvale Avenue', 'NULL', '1 (11) 500 555-0155', '2013-12-29', '1-2 Miles'], ['11052', '8', 'AW00011052', 'NULL', 'Heidi', 'NULL', 'Lopez', '0', '1957-02-03', 'S', 'NULL', 'F', 'heidi19@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2514 Via Cordona', 'NULL', '1 (11) 500 555-0168', '2011-02-17', '5-10 Miles'], ['11053', '359', 'AW00011053', 'NULL', 'Ana', 'E', 'Price', '0', '1986-02-17', 'M', 'NULL', 'F', 'ana0@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1660 Stonyhill Circle', 'NULL', '859-555-0113', '2013-01-17', '1-2 Miles'], ['11054', '34', 'AW00011054', 'NULL', 'Deanna', 'NULL', 'Munoz', '0', '1957-09-07', 'M', 'NULL', 'F', 'deanna33@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5825 B Way', 'NULL', '1 (11) 500 555-0192', '2011-02-03', '5-10 Miles'], ['11055', '22', 'AW00011055', 'NULL', 'Gilbert', 'NULL', 'Raje', '0', '1957-09-02', 'M', 'NULL', 'M', 'gilbert35@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8811 The Trees Dr.', 'NULL', '1 (11) 500 555-0129', '2011-01-31', '5-10 Miles'], ['11056', '10', 'AW00011056', 'NULL', 'Michele', 'L', 'Nath', '0', '1958-10-01', 'M', 'NULL', 'F', 'michele19@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5464 Janin Pl.', 'NULL', '1 (11) 500 555-0178', '2011-02-26', '5-10 Miles'], ['11057', '5', 'AW00011057', 'NULL', 'Carl', 'J', 'Andersen', '0', '1970-04-07', 'M', 'NULL', 'M', 'carl12@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6930 Lake Nadine Place', 'NULL', '1 (11) 500 555-0181', '2011-02-22', '1-2 Miles'], ['11058', '29', 'AW00011058', 'NULL', 'Marc', 'NULL', 'Diaz', '0', '1965-04-23', 'M', 'NULL', 'M', 'marc6@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6645 Sinaloa', 'NULL', '1 (11) 500 555-0149', '2011-03-09', '1-2 Miles'], ['11059', '27', 'AW00011059', 'NULL', 'Ashlee', 'J', 'Andersen', '0', '1959-09-29', 'S', 'NULL', 'F', 'ashlee19@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8255 Highland Road', 'NULL', '1 (11) 500 555-0112', '2013-02-18', '5-10 Miles'], ['11060', '40', 'AW00011060', 'NULL', 'Jon', 'L', 'Zhou', '0', '1959-09-14', 'M', 'NULL', 'M', 'jon28@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6574 Hemlock Ave.', 'NULL', '1 (11) 500 555-0174', '2011-03-19', '5-10 Miles'], ['11061', '23', 'AW00011061', 'NULL', 'Todd', 'M', 'Gao', '0', '1976-02-20', 'M', 'NULL', 'M', 'todd14@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8808 Geneva Ave', 'NULL', '1 (11) 500 555-0191', '2011-03-13', '5-10 Miles'], ['11062', '547', 'AW00011062', 'NULL', 'Noah', 'D', 'Powell', '0', '1981-03-01', 'M', 'NULL', 'M', 'noah5@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9794 Marion Ct', 'NULL', '767-555-0113', '2013-01-07', '5-10 Miles'], ['11063', '634', 'AW00011063', 'NULL', 'Angela', 'NULL', 'Murphy', '0', '1980-10-04', 'S', 'NULL', 'F', 'angela41@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4927 Virgil Street', '# 21', '451-555-0162', '2013-01-12', '5-10 Miles'], ['11064', '315', 'AW00011064', 'NULL', 'Chase', 'NULL', 'Reed', '0', '1981-06-05', 'M', 'NULL', 'M', 'chase21@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2721 Alexander Pl.', 'NULL', '892-555-0184', '2013-01-25', '5-10 Miles'], ['11065', '331', 'AW00011065', 'NULL', 'Jessica', 'NULL', 'Henderson', '0', '1979-04-08', 'M', 'NULL', 'F', 'jessica29@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9343 Ironwood Way', 'NULL', '278-555-0186', '2013-02-10', '1-2 Miles'], ['11066', '543', 'AW00011066', 'NULL', 'Grace', 'T', 'Butler', '0', '1979-05-27', 'M', 'NULL', 'F', 'grace62@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4739 Garden Ave.', 'NULL', '712-555-0141', '2013-05-31', '5-10 Miles'], ['11067', '632', 'AW00011067', 'NULL', 'Caleb', 'F', 'Carter', '0', '1982-03-25', 'S', 'NULL', 'M', 'caleb40@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9563 Pennsylvania Blvd.', 'NULL', '944-555-0167', '2013-08-18', '5-10 Miles'], ['11068', '40', 'AW00011068', 'NULL', 'Tiffany', 'NULL', 'Liang', '0', '1966-09-19', 'S', 'NULL', 'F', 'tiffany17@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3608 Sinclair Avenue', '# 701', '1 (11) 500 555-0177', '2013-04-30', '5-10 Miles'], ['11069', '23', 'AW00011069', 'NULL', 'Carolyn', 'NULL', 'Navarro', '0', '1966-09-17', 'S', 'NULL', 'F', 'carolyn30@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4606 Springwood Court', 'NULL', '1 (11) 500 555-0145', '2011-04-17', '1-2 Miles'], ['11070', '39', 'AW00011070', 'NULL', 'Willie', 'T', 'Raji', '0', '1960-10-02', 'M', 'NULL', 'M', 'willie40@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6260 Vernal Drive', 'NULL', '1 (11) 500 555-0151', '2011-04-28', '5-10 Miles'], ['11071', '24', 'AW00011071', 'NULL', 'Linda', 'NULL', 'Serrano', '0', '1960-12-23', 'S', 'NULL', 'F', 'linda31@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9808 Shaw Rd.', 'NULL', '1 (11) 500 555-0130', '2013-03-01', '5-10 Miles'], ['11072', '17', 'AW00011072', 'NULL', 'Casey', 'NULL', 'Luo', '0', '1960-08-05', 'S', 'NULL', 'F', 'casey6@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9513 Roslyn Drive', 'NULL', '1 (11) 500 555-0125', '2011-03-31', '1-2 Miles'], ['11073', '16', 'AW00011073', 'NULL', 'Amy', 'NULL', 'Ye', '0', '1962-02-11', 'S', 'NULL', 'F', 'amy16@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2262 Kirkwood Ct.', 'NULL', '1 (11) 500 555-0185', '2013-03-23', '5-10 Miles'], ['11074', '28', 'AW00011074', 'NULL', 'Levi', 'A', 'Arun', '0', '1962-02-25', 'S', 'NULL', 'M', 'levi6@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4661 Bluetail', 'NULL', '1 (11) 500 555-0127', '2013-03-23', '5-10 Miles'], ['11075', '32', 'AW00011075', 'NULL', 'Felicia', 'L', 'Jimenez', '0', '1963-05-16', 'S', 'NULL', 'F', 'felicia4@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '786 Eastgate Ave', 'NULL', '1 (11) 500 555-0165', '2011-04-28', '5-10 Miles'], ['11076', '19', 'AW00011076', 'NULL', 'Blake', 'NULL', 'Anderson', '0', '1963-01-10', 'S', 'NULL', 'M', 'blake9@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5436 Clear', '# 101', '1 (11) 500 555-0113', '2011-04-21', '5-10 Miles'], ['11077', '36', 'AW00011077', 'NULL', 'Leah', 'NULL', 'Ye', '0', '1963-03-19', 'S', 'NULL', 'F', 'leah7@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '1291 Arguello Blvd.', 'NULL', '1 (11) 500 555-0154', '2011-04-15', '1-2 Miles'], ['11078', '49', 'AW00011078', 'NULL', 'Gina', 'E', 'Martin', '0', '1985-01-06', 'S', 'NULL', 'F', 'gina1@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '1349 Sol St.', 'NULL', '196-555-0114', '2013-02-15', '1-2 Miles'], ['11079', '34', 'AW00011079', 'NULL', 'Donald', 'NULL', 'Gonzalez', '0', '1970-03-07', 'S', 'NULL', 'M', 'donald20@adventure-works.com', '160000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4236 Malibu Place', 'NULL', '1 (11) 500 555-0137', '2013-03-15', '0-1 Miles'], ['11080', '30', 'AW00011080', 'NULL', 'Damien', 'NULL', 'Chander', '0', '1965-01-13', 'M', 'NULL', 'M', 'damien32@adventure-works.com', '170000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9941 Stonehedge Dr.', 'NULL', '1 (11) 500 555-0111', '2011-04-10', '0-1 Miles'], ['11081', '311', 'AW00011081', 'NULL', 'Savannah', 'C', 'Baker', '0', '1972-01-21', 'M', 'NULL', 'F', 'savannah39@adventure-works.com', '120000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '1210 Trafalgar Circle', 'NULL', '478-555-0117', '2013-02-12', '2-5 Miles'], ['11082', '322', 'AW00011082', 'NULL', 'Angela', 'L', 'Butler', '0', '1972-02-01', 'S', 'NULL', 'F', 'angela17@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '6040 Listing Ct', 'NULL', '579-555-0195', '2013-01-22', '1-2 Miles'], ['11083', '336', 'AW00011083', 'NULL', 'Alyssa', 'F', 'Cox', '0', '1977-03-11', 'M', 'NULL', 'F', 'alyssa37@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '867 La Orinda Place', 'NULL', '561-555-0140', '2013-01-06', '1-2 Miles'], ['11084', '543', 'AW00011084', 'NULL', 'Lucas', 'NULL', 'Phillips', '0', '1963-03-12', 'S', 'NULL', 'M', 'lucas7@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8668 St. Celestine Court', 'NULL', '863-555-0172', '2013-01-04', '1-2 Miles'], ['11085', '345', 'AW00011085', 'NULL', 'Emily', 'NULL', 'Johnson', '0', '1963-01-16', 'S', 'NULL', 'F', 'emily1@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '7926 Stephanie Way', 'NULL', '850-555-0184', '2013-12-06', '5-10 Miles'], ['11086', '369', 'AW00011086', 'NULL', 'Ryan', 'NULL', 'Brown', '0', '1963-06-22', 'M', 'NULL', 'M', 'ryan43@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '2939 Wesley Ct.', 'NULL', '539-555-0198', '2013-07-02', '0-1 Miles'], ['11087', '307', 'AW00011087', 'NULL', 'Tamara', 'L', 'Liang', '0', '1963-04-02', 'M', 'NULL', 'F', 'tamara6@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '0', '3791 Rossmor Parkway', 'NULL', '178-555-0152', '2013-02-25', '0-1 Miles'], ['11088', '359', 'AW00011088', 'NULL', 'Hunter', 'NULL', 'Davis', '0', '1963-05-25', 'M', 'NULL', 'M', 'hunter64@adventure-works.com', '80000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '4308 Sand Pointe Lane', 'NULL', '612-555-0141', '2013-01-13', '2-5 Miles'], ['11089', '337', 'AW00011089', 'NULL', 'Abigail', 'M', 'Price', '0', '1962-08-05', 'S', 'NULL', 'F', 'abigail25@adventure-works.com', '80000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '2685 Blackburn Ct', 'NULL', '532-555-0117', '2012-12-29', '2-5 Miles'], ['11090', '338', 'AW00011090', 'NULL', 'Trevor', 'NULL', 'Bryant', '0', '1968-12-13', 'S', 'NULL', 'M', 'trevor18@adventure-works.com', '90000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '5781 Sharon Dr.', 'NULL', '853-555-0174', '2011-08-07', '2-5 Miles'], ['11091', '50', 'AW00011091', 'NULL', 'Dalton', 'NULL', 'Perez', '0', '1962-10-02', 'M', 'NULL', 'M', 'dalton37@adventure-works.com', '90000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6083 San Jose', 'NULL', '559-555-0115', '2013-01-29', '5-10 Miles'], ['11092', '22', 'AW00011092', 'NULL', 'Cheryl', 'A', 'Diaz', '0', '1972-11-02', 'M', 'NULL', 'F', 'cheryl4@adventure-works.com', '90000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '7297 Kaywood Drive', 'NULL', '1 (11) 500 555-0192', '2011-04-08', '1-2 Miles'], ['11093', '19', 'AW00011093', 'NULL', 'Aimee', 'A', 'He', '0', '1978-09-06', 'M', 'NULL', 'F', 'aimee13@adventure-works.com', '100000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '1833 Olympic Drive', 'NULL', '1 (11) 500 555-0161', '2011-04-07', '0-1 Miles'], ['11094', '33', 'AW00011094', 'NULL', 'Cedric', 'W', 'Ma', '0', '1967-09-29', 'S', 'NULL', 'M', 'cedric15@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3407 Oak Brook Place', 'NULL', '1 (11) 500 555-0115', '2013-04-07', '0-1 Miles'], ['11095', '13', 'AW00011095', 'NULL', 'Chad', 'NULL', 'Kumar', '0', '1968-02-29', 'S', 'NULL', 'M', 'chad9@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1681 Lighthouse Way', 'NULL', '1 (11) 500 555-0151', '2011-04-01', '5-10 Miles'], ['11096', '12', 'AW00011096', 'NULL', 'Andrés', 'NULL', 'Anand', '0', '1968-02-07', 'M', 'NULL', 'M', 'andrés18@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5423 Los Gatos Ct.', 'NULL', '1 (11) 500 555-0184', '2011-04-11', '5-10 Miles'], ['11097', '40', 'AW00011097', 'NULL', 'Edwin', 'R', 'Nara', '0', '1972-10-23', 'M', 'NULL', 'M', 'edwin39@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '719 William Way', 'NULL', '1 (11) 500 555-0112', '2011-04-04', '5-10 Miles'], ['11098', '14', 'AW00011098', 'NULL', 'Mallory', 'S', 'Rubio', '0', '1966-10-29', 'S', 'NULL', 'F', 'mallory7@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6452 Harris Circle', 'NULL', '1 (11) 500 555-0157', '2013-02-11', '0-1 Miles'], ['11099', '13', 'AW00011099', 'NULL', 'Adam', 'NULL', 'Ross', '0', '1966-09-05', 'M', 'NULL', 'M', 'adam2@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4378 Westminster Place', 'NULL', '1 (11) 500 555-0186', '2011-04-07', '0-1 Miles'], ['11100', '28', 'AW00011100', 'NULL', 'Latasha', 'L', 'Navarro', '0', '1966-03-15', 'S', 'NULL', 'F', 'latasha10@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6954 Ranch Road', 'NULL', '1 (11) 500 555-0123', '2011-04-16', '5-10 Miles'], ['11101', '33', 'AW00011101', 'NULL', 'Abby', 'L', 'Sai', '0', '1970-11-05', 'S', 'NULL', 'F', 'abby4@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7074 N. Spoonwood Court', 'NULL', '1 (11) 500 555-0174', '2011-04-29', '0-1 Miles'], ['11102', '18', 'AW00011102', 'NULL', 'Julia', 'L', 'Nelson', '0', '1970-10-19', 'S', 'NULL', 'F', 'julia7@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '2196 Coat Ct.', 'NULL', '1 (11) 500 555-0124', '2013-07-16', '1-2 Miles'], ['11103', '3', 'AW00011103', 'NULL', 'Cassie', 'NULL', 'Chande', '0', '1981-04-12', 'S', 'NULL', 'F', 'cassie13@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9448 San Marino Ct.', 'NULL', '1 (11) 500 555-0166', '2011-04-15', '5-10 Miles'], ['11104', '23', 'AW00011104', 'NULL', 'Edgar', 'A', 'Sara', '0', '1975-03-08', 'M', 'NULL', 'M', 'edgar11@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6127 Lilly Lane', 'NULL', '1 (11) 500 555-0125', '2011-05-04', '0-1 Miles'], ['11105', '8', 'AW00011105', 'NULL', 'Candace', 'NULL', 'Fernandez', '0', '1970-06-27', 'S', 'NULL', 'F', 'candace15@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5029 Blue Ridge', 'NULL', '1 (11) 500 555-0162', '2011-05-14', '5-10 Miles'], ['11106', '40', 'AW00011106', 'NULL', 'Jessie', 'NULL', 'Liu', '0', '1970-03-11', 'S', 'NULL', 'M', 'jessie9@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3063 Blue Jay Drive', 'NULL', '1 (11) 500 555-0163', '2011-05-18', '5-10 Miles'], ['11107', '17', 'AW00011107', 'NULL', 'Bianca', 'NULL', 'Lin', '0', '1976-03-04', 'M', 'NULL', 'F', 'bianca7@adventure-works.com', '90000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7530 Eola', 'NULL', '1 (11) 500 555-0121', '2011-05-01', '5-10 Miles'], ['11108', '13', 'AW00011108', 'NULL', 'Kari', 'C', 'Alvarez', '0', '1969-01-10', 'S', 'NULL', 'F', 'kari25@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '9178 Thornhill Place', 'NULL', '1 (11) 500 555-0169', '2011-05-03', '0-1 Miles'], ['11109', '38', 'AW00011109', 'NULL', 'Ruben', 'D', 'Kapoor', '0', '1980-04-30', 'S', 'NULL', 'M', 'ruben1@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '1984 Glendale Circle', 'NULL', '1 (11) 500 555-0132', '2011-05-10', '0-1 Miles'], ['11110', '3', 'AW00011110', 'NULL', 'Curtis', 'NULL', 'Yang', '0', '1967-12-04', 'M', 'NULL', 'M', 'curtis5@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4052 Mt. Wilson Way', 'NULL', '1 (11) 500 555-0127', '2011-05-01', '5-10 Miles'], ['11111', '34', 'AW00011111', 'NULL', 'Meredith', 'T', 'Gutierrez', '0', '1967-08-23', 'M', 'NULL', 'F', 'meredith34@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7610 Northridge Ct.', 'NULL', '1 (11) 500 555-0179', '2011-05-20', '0-1 Miles'], ['11112', '25', 'AW00011112', 'NULL', 'Crystal', 'C', 'Wang', '0', '1968-03-08', 'M', 'NULL', 'F', 'crystal3@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2773 Kirkwood Dr', 'NULL', '1 (11) 500 555-0134', '2011-05-25', '0-1 Miles'], ['11113', '30', 'AW00011113', 'NULL', 'Micheal', 'A', 'Blanco', '0', '1973-02-17', 'M', 'NULL', 'M', 'micheal11@adventure-works.com', '70000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '596 Marfargoa Drive', 'NULL', '1 (11) 500 555-0131', '2013-02-01', '5-10 Miles'], ['11114', '14', 'AW00011114', 'NULL', 'Leslie', 'C', 'Moreno', '0', '1967-11-25', 'S', 'NULL', 'F', 'leslie7@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7941 Cristobal', 'NULL', '1 (11) 500 555-0115', '2013-03-18', '5-10 Miles'], ['11115', '17', 'AW00011115', 'NULL', 'Alvin', 'D', 'Cai', '0', '1967-08-12', 'M', 'NULL', 'M', 'alvin20@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7759 Azalea Avenue', 'NULL', '1 (11) 500 555-0191', '2013-02-10', '0-1 Miles'], ['11116', '18', 'AW00011116', 'NULL', 'Clinton', 'E', 'Carlson', '0', '1979-04-02', 'M', 'NULL', 'M', 'clinton14@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7943 Cunha Ct.', 'NULL', '1 (11) 500 555-0184', '2013-03-15', '5-10 Miles'], ['11117', '8', 'AW00011117', 'NULL', 'April', 'NULL', 'Deng', '0', '1966-08-21', 'M', 'NULL', 'F', 'april1@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '485 Ash Lane', 'NULL', '1 (11) 500 555-0182', '2011-05-06', '10+ Miles'], ['11118', '6', 'AW00011118', 'NULL', 'Alvin', 'M', 'Zeng', '0', '1962-12-31', 'S', 'NULL', 'M', 'alvin21@adventure-works.com', '80000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3853 Wildcat Circle', 'Unit 13c12', '1 (11) 500 555-0174', '2013-07-10', '0-1 Miles'], ['11119', '13', 'AW00011119', 'NULL', 'Evan', 'V', 'James', '0', '1940-10-07', 'S', 'NULL', 'M', 'evan8@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '4157 Sierra Ridge', 'NULL', '1 (11) 500 555-0187', '2013-02-03', '0-1 Miles'], ['11120', '18', 'AW00011120', 'NULL', 'Beth', 'H', 'Jiménez', '0', '1942-02-06', 'S', 'NULL', 'F', 'beth8@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '7401 Las Palmas', 'NULL', '1 (11) 500 555-0164', '2011-05-14', '5-10 Miles'], ['11121', '10', 'AW00011121', 'NULL', 'Orlando', 'NULL', 'Suarez', '0', '1966-05-18', 'M', 'NULL', 'M', 'orlando19@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '7743 Hames Dr', 'NULL', '1 (11) 500 555-0198', '2013-06-24', '10+ Miles'], ['11122', '12', 'AW00011122', 'NULL', 'Byron', 'NULL', 'Vazquez', '0', '1965-09-30', 'M', 'NULL', 'M', 'byron9@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '3187 Hackamore Lane', 'NULL', '1 (11) 500 555-0136', '2013-02-21', '5-10 Miles'], ['11123', '39', 'AW00011123', 'NULL', 'Philip', 'A', 'Alvarez', '0', '1965-12-18', 'M', 'NULL', 'M', 'philip4@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '2775 Mt. Olivet Pl.', 'NULL', '1 (11) 500 555-0191', '2013-04-17', '10+ Miles'], ['11124', '40', 'AW00011124', 'NULL', 'Ross', 'F', 'Jordan', '0', '1968-07-23', 'S', 'NULL', 'M', 'ross1@adventure-works.com', '80000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6973 Dublin Court', 'NULL', '1 (11) 500 555-0126', '2011-05-05', '5-10 Miles'], ['11125', '37', 'AW00011125', 'NULL', 'Dana', 'J', 'Navarro', '0', '1961-10-06', 'S', 'NULL', 'F', 'dana2@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8481 Zartop Street', 'NULL', '1 (11) 500 555-0172', '2013-01-31', '5-10 Miles'], ['11126', '11', 'AW00011126', 'NULL', 'Shaun', 'NULL', 'Carson', '0', '1954-10-05', 'M', 'NULL', 'M', 'shaun16@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '57 Wolf Way', 'NULL', '1 (11) 500 555-0155', '2011-05-28', '0-1 Miles'], ['11127', '361', 'AW00011127', 'NULL', 'Jan', 'NULL', 'Edwards', '0', '1981-04-19', 'M', 'NULL', 'F', 'jan11@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9409 The Alameda', 'NULL', '111-555-0118', '2013-04-10', '5-10 Miles'], ['11128', '635', 'AW00011128', 'NULL', 'Samantha', 'NULL', 'Long', '0', '1981-06-03', 'M', 'NULL', 'F', 'samantha35@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1606 Alderwood Lane', 'NULL', '175-555-0139', '2013-06-19', '5-10 Miles'], ['11129', '638', 'AW00011129', 'NULL', 'Julia', 'M', 'Wright', '0', '1981-02-01', 'S', 'NULL', 'F', 'julia17@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7397 Central Blvd.', 'NULL', '456-555-0174', '2011-08-06', '5-10 Miles'], ['11130', '543', 'AW00011130', 'NULL', 'Caroline', 'L', 'Russell', '0', '1985-07-05', 'M', 'NULL', 'F', 'caroline21@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3884 Bates Court', 'NULL', '424-555-0137', '2013-12-09', '5-10 Miles'], ['11131', '50', 'AW00011131', 'NULL', 'Amanda', 'NULL', 'Rivera', '0', '1985-09-09', 'M', 'NULL', 'F', 'amanda7@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9573 Royal Oak Rd.', 'NULL', '918-555-0126', '2013-10-18', '0-1 Miles'], ['11132', '51', 'AW00011132', 'NULL', 'Melissa', 'E', 'Richardson', '0', '1986-04-25', 'S', 'NULL', 'F', 'melissa31@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6832 Fruitwood Dr', 'NULL', '928-555-0118', '2013-04-09', '5-10 Miles'], ['11133', '542', 'AW00011133', 'NULL', 'Angela', 'NULL', 'Griffin', '0', '1986-03-08', 'S', 'NULL', 'F', 'angela23@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3828 Baltic Sea Ct', 'NULL', '598-555-0174', '2013-12-30', '0-1 Miles'], ['11134', '30', 'AW00011134', 'NULL', 'Larry', 'D', 'Townsend', '0', '1957-02-22', 'S', 'NULL', 'M', 'larry14@adventure-works.com', '10000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7034 Carson', 'NULL', '1 (11) 500 555-0130', '2011-05-03', '5-10 Miles'], ['11135', '302', 'AW00011135', 'NULL', 'Marcus', 'L', 'Harris', '0', '1985-05-02', 'S', 'NULL', 'M', 'marcus14@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9068 Quiet Place Drive', 'NULL', '442-555-0119', '2013-04-18', '5-10 Miles'], ['11136', '53', 'AW00011136', 'NULL', 'Brianna', 'D', 'Morgan', '0', '1984-04-24', 'S', 'NULL', 'F', 'brianna30@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9005 Eagle Ct.', 'NULL', '954-555-0117', '2013-01-03', '0-1 Miles'], ['11137', '641', 'AW00011137', 'NULL', 'Jasmine', 'A', 'Taylor', '0', '1984-01-17', 'M', 'NULL', 'F', 'jasmine7@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2457 Matterhorn Court', 'NULL', '557-555-0146', '2013-07-31', '5-10 Miles'], ['11138', '325', 'AW00011138', 'NULL', 'Lauren', 'NULL', 'Davis', '0', '1984-03-14', 'M', 'NULL', 'F', 'lauren23@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8105 Pembrook Court', 'NULL', '832-555-0121', '2013-09-19', '0-1 Miles'], ['11139', '28', 'AW00011139', 'NULL', 'Tanya', 'NULL', 'Moreno', '0', '1949-11-05', 'S', 'NULL', 'F', 'tanya2@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6155 Wilbur Drive', 'NULL', '1 (11) 500 555-0185', '2013-09-14', '5-10 Miles'], ['11140', '301', 'AW00011140', 'NULL', 'Javier', 'L', 'Alvarez', '0', '1982-08-11', 'S', 'NULL', 'M', 'javier1@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '8935 Etcheverry Dr.', 'NULL', '763-555-0134', '2013-03-19', '5-10 Miles'], ['11141', '314', 'AW00011141', 'NULL', 'Nicole', 'NULL', 'Ramirez', '0', '1982-12-19', 'M', 'NULL', 'F', 'nicole42@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1101 C Street', 'NULL', '152-555-0162', '2013-05-16', '0-1 Miles'], ['11142', '51', 'AW00011142', 'NULL', 'Eduardo', 'NULL', 'Patterson', '0', '1983-02-11', 'S', 'NULL', 'M', 'eduardo55@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6255 Macalvey Dr.', 'NULL', '190-555-0184', '2013-02-13', '0-1 Miles'], ['11143', '334', 'AW00011143', 'NULL', 'Jonathan', 'M', 'Henderson', '0', '1982-08-04', 'M', 'NULL', 'M', 'jonathan4@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '165 East Lane Road', 'NULL', '149-555-0113', '2013-06-15', '5-10 Miles'], ['11144', '607', 'AW00011144', 'NULL', 'Edward', 'NULL', 'Hernandez', '0', '1985-03-08', 'S', 'NULL', 'M', 'edward48@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7607 Pine Hollow Road', 'NULL', '178-555-0196', '2013-01-25', '0-1 Miles'], ['11145', '536', 'AW00011145', 'NULL', 'Jasmine', 'L', 'Coleman', '0', '1985-06-06', 'S', 'NULL', 'F', 'jasmine46@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1961 Oak Grove Road', 'NULL', '857-555-0115', '2013-01-25', '0-1 Miles'], ['11146', '8', 'AW00011146', 'NULL', 'Karla', 'L', 'Goel', '0', '1945-02-22', 'S', 'NULL', 'F', 'karla20@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3272 Corrie Lane', 'NULL', '1 (11) 500 555-0137', '2013-02-05', '5-10 Miles'], ['11147', '40', 'AW00011147', 'NULL', 'Ernest', 'L', 'Wu', '0', '1944-08-04', 'M', 'NULL', 'M', 'ernest6@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '1832 RiverRock Dr', 'NULL', '1 (11) 500 555-0139', '2011-05-13', '0-1 Miles'], ['11148', '22', 'AW00011148', 'NULL', 'Ross', 'NULL', 'Vazquez', '0', '1947-02-13', 'M', 'NULL', 'M', 'ross32@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1201 Paso Del Rio Way', 'NULL', '1 (11) 500 555-0163', '2013-03-07', '5-10 Miles'], ['11149', '25', 'AW00011149', 'NULL', 'Theodore', 'NULL', 'Gill', '0', '1946-10-18', 'M', 'NULL', 'M', 'theodore14@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9120 Pinewood Court', 'NULL', '1 (11) 500 555-0194', '2013-06-04', '0-1 Miles'], ['11150', '39', 'AW00011150', 'NULL', 'Russell', 'M', 'Shen', '0', '1946-09-12', 'S', 'NULL', 'M', 'russell6@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4755 Easley Drive', 'NULL', '1 (11) 500 555-0191', '2013-03-27', '5-10 Miles'], ['11151', '18', 'AW00011151', 'NULL', 'Melinda', 'G', 'Gill', '0', '1947-08-25', 'S', 'NULL', 'F', 'melinda9@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '805 Rainier Dr.', 'NULL', '1 (11) 500 555-0117', '2011-05-15', '0-1 Miles'], ['11152', '633', 'AW00011152', 'NULL', 'James', 'J', 'Williams', '0', '1981-07-09', 'S', 'NULL', 'M', 'james77@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6827 Seagull Court', 'NULL', '355-555-0153', '2013-01-09', '5-10 Miles'], ['11153', '635', 'AW00011153', 'NULL', 'Angela', 'R', 'James', '0', '1981-12-21', 'M', 'NULL', 'F', 'angela34@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8877 Weatherly Drive', 'NULL', '847-555-0111', '2013-03-29', '5-10 Miles'], ['11154', '553', 'AW00011154', 'NULL', 'Megan', 'G', 'Walker', '0', '1982-02-18', 'S', 'NULL', 'F', 'megan25@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6898 Holiday Hills', 'NULL', '918-555-0186', '2013-01-10', '5-10 Miles'], ['11155', '301', 'AW00011155', 'NULL', 'Hunter', 'J', 'Robinson', '0', '1981-07-25', 'S', 'NULL', 'M', 'hunter50@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '8356 Mori Court', 'NULL', '891-555-0125', '2013-01-06', '1-2 Miles'], ['11156', '334', 'AW00011156', 'NULL', 'Maria', 'NULL', 'Roberts', '0', '1981-08-06', 'S', 'NULL', 'F', 'maria47@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9452 Mariposa Ct.', 'NULL', '158-555-0199', '2013-01-08', '1-2 Miles'], ['11157', '642', 'AW00011157', 'NULL', 'Hannah', 'E', 'Long', '0', '1980-12-08', 'M', 'NULL', 'F', 'hannah32@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1832 Preston Ct.', 'NULL', '974-555-0177', '2013-07-24', '5-10 Miles'], ['11158', '361', 'AW00011158', 'NULL', 'Jason', 'K', 'Wright', '0', '1981-04-06', 'S', 'NULL', 'M', 'jason46@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6771 Bundros Court', 'NULL', '694-555-0176', '2013-01-19', '5-10 Miles'], ['11159', '385', 'AW00011159', 'NULL', 'Brianna', 'A', 'Hughes', '0', '1981-03-16', 'S', 'NULL', 'F', 'brianna57@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6793 Bonifacio St.', 'NULL', '319-555-0183', '2013-09-08', '1-2 Miles'], ['11160', '311', 'AW00011160', 'NULL', 'Maurice', 'M', 'Tang', '0', '1979-07-08', 'S', 'NULL', 'M', 'maurice4@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '2886 Chaparral Court', 'Space # 45', '947-555-0172', '2013-02-21', '5-10 Miles'], ['11161', '311', 'AW00011161', 'NULL', 'Emily', 'NULL', 'Wood', '0', '1979-10-20', 'S', 'NULL', 'F', 'emily27@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1562 Black Walnut', 'NULL', '184-555-0114', '2013-06-01', '1-2 Miles'], ['11162', '331', 'AW00011162', 'NULL', 'Chase', 'NULL', 'Cox', '0', '1979-09-02', 'S', 'NULL', 'M', 'chase10@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'P.O. Box 8070', 'NULL', '764-555-0116', '2013-02-18', '5-10 Miles'], ['11163', '372', 'AW00011163', 'NULL', 'Gabriel', 'NULL', 'Wang', '0', '1980-06-18', 'M', 'NULL', 'M', 'gabriel21@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8002 Crane Court', 'NULL', '617-555-0150', '2013-05-01', '5-10 Miles'], ['11164', '374', 'AW00011164', 'NULL', 'Devin', 'NULL', 'Brooks', '0', '1979-11-02', 'S', 'NULL', 'M', 'devin63@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4231 Highland Dr.', 'NULL', '502-555-0138', '2013-04-27', '1-2 Miles'], ['11165', '348', 'AW00011165', 'NULL', 'Jocelyn', 'NULL', 'Alexander', '0', '1979-01-15', 'M', 'NULL', 'F', 'jocelyn18@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3376 Bank Way', 'NULL', '354-555-0134', '2013-05-25', '1-2 Miles'], ['11166', '631', 'AW00011166', 'NULL', 'Ashley', 'NULL', 'Martinez', '0', '1977-10-22', 'S', 'NULL', 'F', 'ashley18@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6993 Whyte Park Ave.', 'NULL', '131-555-0194', '2013-10-14', '0-1 Miles'], ['11167', '618', 'AW00011167', 'NULL', 'Jasmine', 'J', 'Barnes', '0', '1978-01-29', 'S', 'NULL', 'F', 'jasmine43@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '9183 Via Del Sol', 'NULL', '178-555-0156', '2013-01-07', '0-1 Miles'], ['11168', '348', 'AW00011168', 'NULL', 'David', 'NULL', 'Rodriguez', '0', '1973-11-12', 'S', 'NULL', 'M', 'david83@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '38 Shangri-la Rd.', 'NULL', '730-555-0128', '2013-01-15', '0-1 Miles'], ['11169', '312', 'AW00011169', 'NULL', 'Bryce', 'NULL', 'Richardson', '0', '1973-12-20', 'M', 'NULL', 'M', 'bryce8@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '1841 Blackwood Drive', 'NULL', '178-555-0176', '2013-05-26', '0-1 Miles'], ['11170', '612', 'AW00011170', 'NULL', 'Carol', 'T', 'Howard', '0', '1973-08-04', 'M', 'NULL', 'F', 'carol5@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '6281 Edward Ave', 'NULL', '845-555-0127', '2013-08-26', '0-1 Miles'], ['11171', '385', 'AW00011171', 'NULL', 'Jonathan', 'E', 'Hill', '0', '1978-10-05', 'S', 'NULL', 'M', 'jonathan43@adventure-works.com', '100000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3731 Chinquapin Ct', 'NULL', '134-555-0196', '2011-08-20', '1-2 Miles'], ['11172', '626', 'AW00011172', 'NULL', 'Gabrielle', 'J', 'Adams', '0', '1973-05-20', 'M', 'NULL', 'F', 'gabrielle58@adventure-works.com', '100000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5621 Arcadia Pl.', 'NULL', '403-555-0152', '2013-05-03', '1-2 Miles'], ['11173', '552', 'AW00011173', 'NULL', 'Sarah', 'F', 'Thomas', '0', '1973-02-28', 'S', 'NULL', 'F', 'sarah13@adventure-works.com', '110000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '4', '5636 Mt. Whitney Dr.', 'NULL', '868-555-0188', '2013-03-02', '0-1 Miles'], ['11174', '338', 'AW00011174', 'NULL', 'Nicholas', 'NULL', 'Robinson', '0', '1973-01-09', 'M', 'NULL', 'M', 'nicholas19@adventure-works.com', '110000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '1318 Lasalle Street', 'NULL', '949-555-0138', '2013-07-13', '2-5 Miles'], ['11175', '300', 'AW00011175', 'NULL', 'Luis', 'NULL', 'Wang', '0', '1968-09-01', 'S', 'NULL', 'M', 'luis24@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6943 Patterson Blvd.', 'NULL', '418-555-0127', '2011-08-28', '5-10 Miles'], ['11176', '50', 'AW00011176', 'NULL', 'Mason', 'D', 'Roberts', '0', '1979-01-21', 'M', 'NULL', 'M', 'mason25@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '5753 Megan Dr.', 'NULL', '539-555-0162', '2013-02-02', '1-2 Miles'], ['11177', '359', 'AW00011177', 'NULL', 'Jose', 'M', 'Flores', '0', '1948-01-01', 'M', 'NULL', 'M', 'jose6@adventure-works.com', '110000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3991 Rambling Rose Drive', 'NULL', '157-555-0182', '2013-03-29', '5-10 Miles'], ['11178', '334', 'AW00011178', 'NULL', 'Nathan', 'J', 'Johnson', '0', '1954-08-20', 'M', 'NULL', 'M', 'nathan55@adventure-works.com', '100000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '8927 Daylight Place', 'NULL', '117-555-0182', '2013-02-21', '1-2 Miles'], ['11179', '300', 'AW00011179', 'NULL', 'Molly', 'E', 'Rodriguez', '0', '1959-12-08', 'M', 'NULL', 'F', 'molly18@adventure-works.com', '120000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '5556 Riverland Dr.', 'NULL', '135-555-0185', '2013-03-12', '5-10 Miles'], ['11180', '307', 'AW00011180', 'NULL', 'April', 'NULL', 'Anand', '0', '1948-07-01', 'M', 'NULL', 'F', 'april18@adventure-works.com', '160000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '3531 Brookview Drive', 'NULL', '702-555-0144', '2013-03-17', '0-1 Miles'], ['11181', '338', 'AW00011181', 'NULL', 'Devin', 'P', 'Martin', '0', '1960-02-01', 'M', 'NULL', 'M', 'devin13@adventure-works.com', '170000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1085 Greenbelt Way', 'Unit B-105', '735-555-0197', '2013-05-07', '0-1 Miles'], ['11182', '638', 'AW00011182', 'NULL', 'Stephanie', 'NULL', 'Torres', '0', '1950-02-22', 'S', 'NULL', 'F', 'stephanie19@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6968 Mildred Ln.', 'NULL', '567-555-0176', '2013-08-28', '10+ Miles'], ['11183', '368', 'AW00011183', 'NULL', 'Jasmine', 'W', 'Lee', '0', '1950-01-12', 'S', 'NULL', 'F', 'jasmine19@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7502 Contuti Avenue', 'NULL', '147-555-0199', '2013-04-30', '10+ Miles'], ['11184', '311', 'AW00011184', 'NULL', 'Meghan', 'NULL', 'Hernandez', '0', '1955-11-13', 'S', 'NULL', 'F', 'meghan3@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5872 L St.', 'NULL', '967-555-0188', '2013-08-10', '10+ Miles'], ['11185', '53', 'AW00011185', 'NULL', 'Ashley', 'NULL', 'Henderson', '0', '1950-04-07', 'S', 'NULL', 'F', 'ashley31@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8834 San Jose Ave.', 'NULL', '173-555-0121', '2013-02-21', '10+ Miles'], ['11186', '352', 'AW00011186', 'NULL', 'Sarah', 'C', 'Price', '0', '1949-11-18', 'S', 'NULL', 'F', 'sarah25@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4815 Paraiso Ct.', 'NULL', '180-555-0133', '2013-10-18', '10+ Miles'], ['11187', '612', 'AW00011187', 'NULL', 'Jennifer', 'S', 'Cooper', '0', '1949-08-21', 'M', 'NULL', 'F', 'jennifer63@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2429 Longview Road', 'NULL', '857-555-0111', '2013-04-03', '10+ Miles'], ['11188', '361', 'AW00011188', 'NULL', 'Catherine', 'NULL', 'Morris', '0', '1950-03-06', 'M', 'NULL', 'F', 'catherine16@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '6542 Stonewood Drive', 'NULL', '795-555-0117', '2013-11-01', '1-2 Miles'], ['11189', '609', 'AW00011189', 'NULL', 'Lawrence', 'W', 'Blanco', '0', '1950-01-12', 'S', 'NULL', 'M', 'lawrence14@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7502 Contuti Avenue', 'NULL', '656-555-0171', '2011-08-26', '10+ Miles'], ['11190', '300', 'AW00011190', 'NULL', 'Carson', 'NULL', 'Bryant', '0', '1949-12-20', 'M', 'NULL', 'M', 'carson17@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2995 Youngsdale Dr.', 'NULL', '240-555-0142', '2013-08-28', '10+ Miles'], ['11191', '310', 'AW00011191', 'NULL', 'Kristi', 'E', 'Perez', '0', '1951-06-17', 'S', 'NULL', 'F', 'kristi39@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '1769 Lislin Ct', 'NULL', '123-555-0181', '2011-08-11', '10+ Miles'], ['11192', '637', 'AW00011192', 'NULL', 'James', 'C', 'Brown', '0', '1951-03-13', 'M', 'NULL', 'M', 'james79@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '673 Old Mountain View Dr.', 'NULL', '725-555-0117', '2013-06-23', '2-5 Miles'], ['11193', '553', 'AW00011193', 'NULL', 'Ian', 'A', 'Gray', '0', '1950-08-13', 'M', 'NULL', 'M', 'ian72@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5941 Gill Dr.', 'NULL', '596-555-0190', '2013-02-25', '2-5 Miles'], ['11194', '352', 'AW00011194', 'NULL', 'Jacqueline', 'R', 'Price', '0', '1950-12-08', 'M', 'NULL', 'F', 'jacqueline0@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '872 Mark Twain Dr', 'NULL', '266-555-0112', '2013-03-13', '2-5 Miles'], ['11195', '635', 'AW00011195', 'NULL', 'Megan', 'NULL', 'Henderson', '0', '1951-08-10', 'M', 'NULL', 'F', 'megan55@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '8411 Mt. Olivet Place', 'NULL', '560-555-0150', '2013-04-14', '10+ Miles'], ['11196', '536', 'AW00011196', 'NULL', 'Alfredo', 'NULL', 'Romero', '0', '1951-12-05', 'M', 'NULL', 'M', 'alfredo10@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '2499 Greendell Pl', 'NULL', '342-555-0110', '2013-03-03', '10+ Miles'], ['11197', '637', 'AW00011197', 'NULL', 'Andrea', 'NULL', 'Morris', '0', '1951-12-16', 'M', 'NULL', 'F', 'andrea18@adventure-works.com', '70000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '1883 Green View Court', 'NULL', '715-555-0178', '2013-05-02', '1-2 Miles'], ['11198', '368', 'AW00011198', 'NULL', 'Brooke', 'NULL', 'Sanders', '0', '1952-05-25', 'S', 'NULL', 'F', 'brooke3@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '5192 Dumbarton Drive', 'NULL', '215-555-0156', '2013-02-05', '10+ Miles'], ['11199', '302', 'AW00011199', 'NULL', 'Jacqueline', 'NULL', 'Bennett', '0', '1957-11-02', 'M', 'NULL', 'F', 'jacqueline1@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '8948 Chinquapin Court', 'NULL', '413-555-0174', '2013-03-18', '10+ Miles'], ['11200', '69', 'AW00011200', 'NULL', 'Jason', 'L', 'Griffin', '0', '1953-05-21', 'M', 'NULL', 'M', 'jason18@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '7239 Nicholas Drive', 'NULL', '232-555-0160', '2013-02-07', '1-2 Miles'], ['11201', '369', 'AW00011201', 'NULL', 'Amanda', 'NULL', 'Foster', '0', '1953-02-14', 'M', 'NULL', 'F', 'amanda37@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '3984 San Francisco', 'NULL', '505-555-0159', '2013-07-01', '10+ Miles'], ['11202', '334', 'AW00011202', 'NULL', 'Alexia', 'L', 'Price', '0', '1958-08-22', 'M', 'NULL', 'F', 'alexia0@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '2079 Wellington Ct', 'NULL', '552-555-0118', '2013-09-15', '1-2 Miles'], ['11203', '60', 'AW00011203', 'NULL', 'Luis', 'D', 'Diaz', '0', '1959-08-18', 'M', 'NULL', 'M', 'luis21@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3682 Diablo View Road', 'NULL', '171-555-0126', '2013-02-20', '10+ Miles'], ['11204', '536', 'AW00011204', 'NULL', 'Destiny', 'C', 'Rivera', '0', '1953-11-29', 'M', 'NULL', 'F', 'destiny33@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6965 Appalachian Drive', 'NULL', '743-555-0111', '2013-08-09', '2-5 Miles'], ['11205', '612', 'AW00011205', 'NULL', 'Abby', 'NULL', 'Fernandez', '0', '1954-01-21', 'M', 'NULL', 'F', 'abby13@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8330 Glenside Court', 'NULL', '134-555-0119', '2013-07-27', '10+ Miles'], ['11206', '626', 'AW00011206', 'NULL', 'Blake', 'NULL', 'Flores', '0', '1954-03-24', 'M', 'NULL', 'M', 'blake60@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '9410 Ferry St.', 'NULL', '975-555-0163', '2013-05-11', '10+ Miles'], ['11207', '635', 'AW00011207', 'NULL', 'Danielle', 'NULL', 'Cox', '0', '1954-01-16', 'S', 'NULL', 'F', 'danielle12@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '2346 Wren Ave', 'NULL', '396-555-0158', '2013-01-31', '10+ Miles'], ['11208', '325', 'AW00011208', 'NULL', 'Maria', 'NULL', 'Reed', '0', '1953-08-03', 'M', 'NULL', 'F', 'maria4@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '1413 Bridgeview St', 'NULL', '156-555-0163', '2013-03-04', '10+ Miles'], ['11209', '336', 'AW00011209', 'NULL', 'Allison', 'NULL', 'Evans', '0', '1953-07-12', 'M', 'NULL', 'F', 'allison21@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '3515 Sutton Circle', 'NULL', '988-555-0151', '2013-03-25', '10+ Miles'], ['11210', '383', 'AW00011210', 'NULL', 'Edward', 'J', 'Wood', '0', '1953-12-06', 'M', 'NULL', 'M', 'edward50@adventure-works.com', '70000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1039 Adelaide St.', 'NULL', '229-555-0114', '2013-05-06', '10+ Miles'], ['11211', '50', 'AW00011211', 'NULL', 'Samantha', 'NULL', 'Russell', '0', '1960-10-08', 'M', 'NULL', 'F', 'samantha42@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '9256 Village Oaks Dr.', 'NULL', '547-555-0121', '2013-02-01', '2-5 Miles'], ['11212', '53', 'AW00011212', 'NULL', 'Chloe', 'NULL', 'Campbell', '0', '1955-05-05', 'M', 'NULL', 'F', 'chloe4@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3562 East Ave.', '# 4', '205-555-0169', '2013-01-30', '2-5 Miles'], ['11213', '614', 'AW00011213', 'NULL', 'Stephanie', 'B', 'Murphy', '0', '1954-11-11', 'S', 'NULL', 'F', 'stephanie11@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5514 Grant Street', 'NULL', '293-555-0151', '2013-03-28', '10+ Miles'], ['11214', '545', 'AW00011214', 'NULL', 'Charles', 'O', 'Miller', '0', '1955-05-07', 'S', 'NULL', 'M', 'charles9@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2719 Little Dr', 'NULL', '389-555-0115', '2013-08-14', '10+ Miles'], ['11215', '62', 'AW00011215', 'NULL', 'Ana', 'NULL', 'Perry', '0', '1961-06-17', 'M', 'NULL', 'F', 'ana7@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3114 Arlington Way', 'NULL', '446-555-0134', '2013-02-15', '10+ Miles'], ['11216', '547', 'AW00011216', 'NULL', 'Jasmine', 'A', 'Torres', '0', '1955-11-17', 'S', 'NULL', 'F', 'jasmine32@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8328 San Francisco', 'NULL', '939-555-0130', '2011-08-15', '10+ Miles'], ['11217', '547', 'AW00011217', 'NULL', 'Natalie', 'P', 'Adams', '0', '1955-08-11', 'S', 'NULL', 'F', 'natalie58@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6592 Bent Tree Lane', 'NULL', '300-555-0150', '2011-08-10', '10+ Miles'], ['11218', '642', 'AW00011218', 'NULL', 'Olivia', 'NULL', 'Brown', '0', '1961-09-07', 'S', 'NULL', 'F', 'olivia4@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '3964 Stony Hill Circle', 'NULL', '414-555-0147', '2013-02-28', '2-5 Miles'], ['11219', '553', 'AW00011219', 'NULL', 'Charles', 'NULL', 'Cook', '0', '1956-05-31', 'M', 'NULL', 'M', 'charles69@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6871 Bel Air Dr.', 'NULL', '755-555-0111', '2013-10-29', '10+ Miles'], ['11220', '310', 'AW00011220', 'NULL', 'Erica', 'C', 'Huang', '0', '1961-02-19', 'M', 'NULL', 'F', 'erica5@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '9142 All Ways Drive', 'NULL', '618-555-0157', '2013-03-14', '10+ Miles'], ['11221', '334', 'AW00011221', 'NULL', 'Nathan', 'NULL', 'Perry', '0', '1955-12-08', 'M', 'NULL', 'M', 'nathan3@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '9714 Nicholas Drive', 'NULL', '271-555-0191', '2013-04-07', '1-2 Miles'], ['11222', '369', 'AW00011222', 'NULL', 'Alexandra', 'NULL', 'Rivera', '0', '1956-02-14', 'M', 'NULL', 'F', 'alexandra11@adventure-works.com', '80000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '4999 Corte Segunda', 'NULL', '488-555-0143', '2013-11-01', '1-2 Miles'], ['11223', '52', 'AW00011223', 'NULL', 'Hailey', 'I', 'Patterson', '0', '1957-03-15', 'S', 'NULL', 'F', 'hailey30@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5045 Vancouver Way', '# 133', '480-555-0126', '2013-01-29', '2-5 Miles'], ['11224', '612', 'AW00011224', 'NULL', 'Tiffany', 'J', 'Li', '0', '1957-03-05', 'S', 'NULL', 'F', 'tiffany3@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6404 Del Mar Ave', 'NULL', '197-555-0118', '2011-08-07', '10+ Miles'], ['11225', '635', 'AW00011225', 'NULL', 'Madison', 'D', 'Lee', '0', '1962-02-12', 'M', 'NULL', 'F', 'madison22@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '5927 Seaview Avenue', 'NULL', '471-555-0142', '2013-06-22', '10+ Miles'], ['11226', '552', 'AW00011226', 'NULL', 'Sydney', 'T', 'Ross', '0', '1962-09-23', 'M', 'NULL', 'F', 'sydney26@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '5252 Santa Fe', 'NULL', '219-555-0146', '2013-02-21', '2-5 Miles'], ['11227', '310', 'AW00011227', 'NULL', 'Marshall', 'D', 'Chavez', '0', '1962-08-08', 'S', 'NULL', 'M', 'marshall35@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9022 Estudillo Street', 'NULL', '712-555-0116', '2011-08-03', '10+ Miles'], ['11228', '316', 'AW00011228', 'NULL', 'Ashley', 'R', 'Jones', '0', '1956-10-16', 'M', 'NULL', 'F', 'ashley3@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '7681 Willow Pass Road', 'NULL', '996-555-0169', '2013-10-25', '10+ Miles'], ['11229', '355', 'AW00011229', 'NULL', 'Adrian', 'C', 'Stewart', '0', '1957-06-01', 'S', 'NULL', 'M', 'adrian21@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6898 Shaw Rd.', 'NULL', '812-555-0122', '2013-07-27', '10+ Miles'], ['11230', '369', 'AW00011230', 'NULL', 'Amber', 'NULL', 'Turner', '0', '1956-09-30', 'M', 'NULL', 'F', 'amber4@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '6345 Ridge Circle', 'NULL', '155-555-0131', '2013-07-16', '2-5 Miles'], ['11231', '611', 'AW00011231', 'NULL', 'Dennis', 'NULL', 'Zhang', '0', '1963-11-11', 'M', 'NULL', 'M', 'dennis1@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3951 Calle Verde Drive', 'NULL', '710-555-0134', '2013-02-10', '10+ Miles'], ['11232', '616', 'AW00011232', 'NULL', 'Hailey', 'R', 'Bryant', '0', '1958-03-27', 'M', 'NULL', 'F', 'hailey38@adventure-works.com', '60000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '2828 Rogers Ave.', 'NULL', '156-555-0195', '2013-09-20', '2-5 Miles'], ['11233', '299', 'AW00011233', 'NULL', 'Todd', 'NULL', 'Li', '0', '1963-09-06', 'M', 'NULL', 'M', 'todd5@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5897 Scottsdale Rd.', 'NULL', '680-555-0147', '2013-02-08', '10+ Miles'], ['11234', '337', 'AW00011234', 'NULL', 'Anna', 'NULL', 'Griffin', '0', '1958-05-19', 'S', 'NULL', 'F', 'anna46@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '7221 Peachwillow Street', 'NULL', '965-555-0146', '2013-02-08', '10+ Miles'], ['11235', '607', 'AW00011235', 'NULL', 'Angel', 'J', 'Stewart', '0', '1957-08-07', 'M', 'NULL', 'M', 'angel24@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2585 La Salle Ct.', 'NULL', '540-555-0122', '2013-07-04', '10+ Miles'], ['11236', '609', 'AW00011236', 'NULL', 'Jeremy', 'NULL', 'Butler', '0', '1957-09-02', 'S', 'NULL', 'M', 'jeremy29@adventure-works.com', '70000.00', '5', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8811 The Trees Dr.', 'NULL', '980-555-0117', '2013-10-03', '10+ Miles'], ['11237', '161', 'AW00011237', 'NULL', 'Clarence', 'M', 'Anand', '0', '1964-03-22', 'S', 'NULL', 'M', 'clarence36@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', 'Welt Platz 6', 'NULL', '1 (11) 500 555-0191', '2011-09-05', '0-1 Miles'], ['11238', '232', 'AW00011238', 'NULL', 'Mayra', 'NULL', 'Prasad', '0', '1964-02-07', 'S', 'NULL', 'F', 'mayra9@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '1119 Elderwood Dr.', '#3', '1 (11) 500 555-0116', '2011-01-06', '0-1 Miles'], ['11239', '249', 'AW00011239', 'NULL', 'Latoya', 'C', 'Goel', '0', '1969-10-02', 'M', 'NULL', 'F', 'latoya18@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '8154 Pheasant Circle', 'NULL', '1 (11) 500 555-0149', '2011-01-19', '5-10 Miles'], ['11240', '273', 'AW00011240', 'NULL', 'Anne', 'B', 'Hernandez', '0', '1964-06-09', 'M', 'NULL', 'F', 'anne4@adventure-works.com', '160000.00', '2', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '76 Woodcrest Dr.', 'NULL', '1 (11) 500 555-0119', '2011-02-27', '5-10 Miles'], ['11241', '211', 'AW00011241', 'NULL', 'Lisa', 'NULL', 'Cai', '0', '1974-04-06', 'S', 'NULL', 'F', 'lisa24@adventure-works.com', '100000.00', '2', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '102, rue de Berri', 'NULL', '1 (11) 500 555-0125', '2012-09-10', '5-10 Miles'], ['11242', '209', 'AW00011242', 'NULL', 'Larry', 'NULL', 'Munoz', '0', '1963-05-11', 'M', 'NULL', 'M', 'larry9@adventure-works.com', '110000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', 'Midi-Couleurs', 'NULL', '1 (11) 500 555-0193', '2012-09-19', '5-10 Miles'], ['11243', '237', 'AW00011243', 'NULL', 'Robin', 'V', 'Alvarez', '0', '1963-04-08', 'M', 'NULL', 'F', 'robin2@adventure-works.com', '150000.00', '2', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '4086 Emmons Canyon Lane', 'NULL', '1 (11) 500 555-0198', '2011-02-21', '0-1 Miles'], ['11244', '267', 'AW00011244', 'NULL', 'Alexis', 'M', 'Coleman', '0', '1968-11-22', 'S', 'NULL', 'F', 'alexis28@adventure-works.com', '170000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '7140 Camelback Road', 'NULL', '1 (11) 500 555-0115', '2011-02-12', '0-1 Miles'], ['11245', '132', 'AW00011245', 'NULL', 'Ricky', 'D', 'Vazquez', '0', '1962-04-26', 'M', 'NULL', 'M', 'ricky15@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '4', 'Roßstr 9928', 'NULL', '1 (11) 500 555-0147', '2011-09-26', '5-10 Miles'], ['11246', '147', 'AW00011246', 'NULL', 'Latasha', 'NULL', 'Rubio', '0', '1962-04-08', 'M', 'NULL', 'F', 'latasha21@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '4', 'Alderstr 7690', 'NULL', '1 (11) 500 555-0178', '2011-10-03', '5-10 Miles'], ['11247', '242', 'AW00011247', 'NULL', 'Claudia', 'M', 'Zhou', '0', '1961-12-04', 'S', 'NULL', 'F', 'claudia7@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '6516 Beauer Lane', 'NULL', '1 (11) 500 555-0116', '2011-02-18', '0-1 Miles'], ['11248', '223', 'AW00011248', 'NULL', 'Tristan', 'P', 'Alexander', '0', '1966-03-22', 'M', 'NULL', 'M', 'tristan19@adventure-works.com', '110000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '88, avenue des Champs-Elysées', 'NULL', '1 (11) 500 555-0124', '2013-07-14', '10+ Miles'], ['11249', '178', 'AW00011249', 'NULL', 'Cindy', 'A', 'Patel', '0', '1966-07-09', 'M', 'NULL', 'F', 'cindy3@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', 'Essener Straße 123', 'NULL', '1 (11) 500 555-0149', '2011-10-09', '0-1 Miles'], ['11250', '276', 'AW00011250', 'NULL', 'Shannon', 'D', 'Liu', '0', '1966-03-08', 'M', 'NULL', 'F', 'shannon4@adventure-works.com', '170000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4185 Keywood Ct.', 'NULL', '1 (11) 500 555-0119', '2011-03-17', '5-10 Miles'], ['11251', '50', 'AW00011251', 'NULL', 'Xavier', 'NULL', 'Long', '0', '1938-01-01', 'S', 'NULL', 'M', 'xavier51@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '9245 Dantley Way', 'NULL', '243-555-0114', '2013-10-18', '5-10 Miles'], ['11252', '335', 'AW00011252', 'NULL', 'Nicholas', 'D', 'Thompson', '0', '1937-12-05', 'S', 'NULL', 'M', 'nicholas16@adventure-works.com', '90000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '504 O St.', 'NULL', '377-555-0147', '2011-08-14', '2-5 Miles'], ['11253', '69', 'AW00011253', 'NULL', 'José', 'M', 'Hernandez', '0', '1949-08-24', 'M', 'NULL', 'M', 'josé54@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5703 Donald Dr.', 'NULL', '712-555-0130', '2013-03-01', '1-2 Miles'], ['11254', '612', 'AW00011254', 'NULL', 'Johnathan', 'W', 'Vance', '0', '1938-08-31', 'M', 'NULL', 'M', 'johnathan5@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9430 Versailles Pl', 'NULL', '494-555-0166', '2013-11-23', '5-10 Miles'], ['11255', '612', 'AW00011255', 'NULL', 'Colin', 'NULL', 'Lin', '0', '1938-10-02', 'M', 'NULL', 'M', 'colin8@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6083 San Jose', 'NULL', '599-555-0132', '2013-02-23', '5-10 Miles'], ['11256', '626', 'AW00011256', 'NULL', 'Katelyn', 'L', 'Hernandez', '0', '1939-03-20', 'M', 'NULL', 'F', 'katelyn42@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7496 Deerfield Dr.', 'NULL', '249-555-0116', '2013-04-15', '5-10 Miles'], ['11257', '345', 'AW00011257', 'NULL', 'Jacqueline', 'NULL', 'Powell', '0', '1938-07-06', 'S', 'NULL', 'F', 'jacqueline9@adventure-works.com', '120000.00', '1', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '4076 Northwood Dr', 'NULL', '796-555-0111', '2011-08-24', '2-5 Miles'], ['11258', '352', 'AW00011258', 'NULL', 'Xavier', 'NULL', 'Hill', '0', '1938-12-26', 'M', 'NULL', 'M', 'xavier26@adventure-works.com', '120000.00', '1', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '2707 Virgil Street', 'NULL', '559-555-0149', '2013-05-21', '2-5 Miles'], ['11259', '548', 'AW00011259', 'NULL', 'Victoria', 'C', 'Stewart', '0', '1970-09-24', 'M', 'NULL', 'F', 'victoria24@adventure-works.com', '100000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '3623 Barquentine Court', 'NULL', '230-555-0139', '2011-09-04', '2-5 Miles'], ['11260', '302', 'AW00011260', 'NULL', 'Katelyn', 'L', 'Kelly', '0', '1976-04-08', 'M', 'NULL', 'F', 'katelyn1@adventure-works.com', '110000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '7085 Solano Drive', 'NULL', '507-555-0132', '2013-02-05', '2-5 Miles'], ['11261', '359', 'AW00011261', 'NULL', 'Stephanie', 'NULL', 'Collins', '0', '1970-10-22', 'M', 'NULL', 'F', 'stephanie52@adventure-works.com', '130000.00', '1', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '2868 Central Avenue', 'NULL', '209-555-0173', '2011-09-27', '0-1 Miles'], ['11262', '60', 'AW00011262', 'NULL', 'Jennifer', 'NULL', 'Simmons', '0', '1975-05-01', 'M', 'NULL', 'F', 'jennifer88@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '7959 Mt. Wilson Way', 'NULL', '148-555-0115', '2013-02-27', '0-1 Miles'], ['11263', '612', 'AW00011263', 'NULL', 'Trinity', 'NULL', 'Richardson', '0', '1970-03-11', 'M', 'NULL', 'F', 'trinity9@adventure-works.com', '90000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '3063 Blue Jay Drive', 'NULL', '111-555-0116', '2011-08-29', '2-5 Miles'], ['11264', '618', 'AW00011264', 'NULL', 'Eduardo', 'NULL', 'Martin', '0', '1969-12-15', 'S', 'NULL', 'M', 'eduardo13@adventure-works.com', '90000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '5137 Pheasant Court', 'NULL', '342-555-0195', '2013-01-02', '0-1 Miles'], ['11265', '623', 'AW00011265', 'NULL', 'Elizabeth', 'P', 'Jones', '0', '1970-01-10', 'M', 'NULL', 'F', 'elizabeth7@adventure-works.com', '90000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '2253 Firestone Dr.', 'NULL', '941-555-0110', '2013-01-03', '0-1 Miles'], ['11266', '632', 'AW00011266', 'NULL', 'Taylor', 'NULL', 'Howard', '0', '1969-11-02', 'S', 'NULL', 'F', 'taylor14@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '7396 Stratton Circle', 'NULL', '162-555-0131', '2011-09-10', '5-10 Miles'], ['11267', '302', 'AW00011267', 'NULL', 'David', 'NULL', 'Diaz', '0', '1975-09-29', 'S', 'NULL', 'M', 'david55@adventure-works.com', '120000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '2075 Browse Ct', 'NULL', '613-555-0119', '2011-09-17', '2-5 Miles'], ['11268', '312', 'AW00011268', 'NULL', 'Katelyn', 'A', 'Carter', '0', '1969-10-31', 'M', 'NULL', 'F', 'katelyn33@adventure-works.com', '130000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3050 Monte Cresta Avenue', 'NULL', '103-555-0195', '2013-05-29', '1-2 Miles'], ['11269', '314', 'AW00011269', 'NULL', 'Ryan', 'W', 'Foster', '0', '1975-10-10', 'M', 'NULL', 'M', 'ryan19@adventure-works.com', '130000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5376 Sahara Drive', 'NULL', '961-555-0133', '2013-08-22', '0-1 Miles'], ['11270', '334', 'AW00011270', 'NULL', 'Robert', 'L', 'Lee', '0', '1975-05-01', 'M', 'NULL', 'M', 'robert82@adventure-works.com', '130000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '5461 Camino Verde Ct.', 'NULL', '447-555-0174', '2011-09-10', '0-1 Miles'], ['11271', '360', 'AW00011271', 'NULL', 'Danielle', 'C', 'Reed', '0', '1969-12-03', 'S', 'NULL', 'F', 'danielle23@adventure-works.com', '150000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '6683 Carrick Ct', 'NULL', '136-555-0114', '2011-09-27', '1-2 Miles'], ['11272', '300', 'AW00011272', 'NULL', 'Lauren', 'L', 'Martinez', '0', '1962-05-10', 'S', 'NULL', 'F', 'lauren35@adventure-works.com', '70000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '4357 Tosca Way', 'NULL', '977-555-0117', '2011-09-19', '5-10 Miles'], ['11273', '331', 'AW00011273', 'NULL', 'Nathan', 'E', 'Lal', '0', '1962-03-31', 'M', 'NULL', 'M', 'nathan26@adventure-works.com', '90000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '7064 Cypress Ave', 'NULL', '147-555-0121', '2013-05-14', '10+ Miles'], ['11274', '609', 'AW00011274', 'NULL', 'Kyle', 'M', 'Foster', '0', '1939-10-10', 'M', 'NULL', 'M', 'kyle11@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5617 Landing Dr', 'NULL', '846-555-0126', '2011-08-29', '5-10 Miles'], ['11275', '310', 'AW00011275', 'NULL', 'Jenny', 'D', 'Rai', '0', '1939-07-18', 'M', 'NULL', 'F', 'jenny40@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1440 Willow Pass Dr.', 'NULL', '780-555-0119', '2011-08-30', '0-1 Miles'], ['11276', '49', 'AW00011276', 'NULL', 'Nancy', 'E', 'Chapman', '0', '1974-09-15', 'M', 'NULL', 'F', 'nancy7@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1480 Shoenic', 'NULL', '909-555-0129', '2013-01-29', '2-5 Miles'], ['11277', '62', 'AW00011277', 'NULL', 'Charles', 'P', 'Jackson', '0', '1968-12-07', 'M', 'NULL', 'M', 'charles15@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3400 Folson Drive', 'NULL', '194-555-0175', '2013-02-02', '0-1 Miles'], ['11278', '614', 'AW00011278', 'NULL', 'Jonathan', 'NULL', 'Phillips', '0', '1969-02-16', 'S', 'NULL', 'M', 'jonathan35@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '8772 Rock Creek Way', 'NULL', '967-555-0176', '2011-09-16', '10+ Miles'], ['11279', '616', 'AW00011279', 'NULL', 'Amanda', 'S', 'Cook', '0', '1974-09-08', 'M', 'NULL', 'F', 'amanda3@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '9187 Vista Del Sol', 'NULL', '252-555-0177', '2013-03-03', '10+ Miles'], ['11280', '626', 'AW00011280', 'NULL', 'Robert', 'NULL', 'Collins', '0', '1969-02-17', 'M', 'NULL', 'M', 'robert45@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '5271 Sierra Road', 'NULL', '966-555-0171', '2013-07-01', '10+ Miles'], ['11281', '301', 'AW00011281', 'NULL', 'Megan', 'J', 'Barnes', '0', '1974-10-06', 'S', 'NULL', 'F', 'megan53@adventure-works.com', '110000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '40 Ellis St.', 'NULL', '807-555-0156', '2011-09-13', '5-10 Miles'], ['11282', '612', 'AW00011282', 'NULL', 'Christian', 'A', 'Thomas', '0', '1967-07-16', 'M', 'NULL', 'M', 'christian46@adventure-works.com', '90000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '5205 Coralie Drive', 'NULL', '692-555-0172', '2011-08-31', '1-2 Miles'], ['11283', '299', 'AW00011283', 'NULL', 'Arturo', 'NULL', 'Lal', '0', '1968-04-24', 'M', 'NULL', 'M', 'arturo33@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4593 Mendouno Dr.', 'NULL', '638-555-0164', '2013-05-29', '1-2 Miles'], ['11284', '307', 'AW00011284', 'NULL', 'Theresa', 'NULL', 'Serrano', '0', '1967-09-24', 'M', 'NULL', 'F', 'theresa12@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9007 S Royal Links Circle', 'NULL', '777-555-0162', '2013-02-06', '1-2 Miles'], ['11285', '322', 'AW00011285', 'NULL', 'Jeremy', 'J', 'Anderson', '0', '1973-03-15', 'M', 'NULL', 'M', 'jeremy2@adventure-works.com', '120000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '7655 Greer Ave', 'NULL', '940-555-0176', '2013-07-27', '2-5 Miles'], ['11286', '374', 'AW00011286', 'NULL', 'Hunter', 'D', 'Griffin', '0', '1967-08-31', 'M', 'NULL', 'M', 'hunter16@adventure-works.com', '170000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '4079 Redbird Lane', 'NULL', '410-555-0148', '2011-09-21', '2-5 Miles'], ['11287', '49', 'AW00011287', 'NULL', 'Henry', 'B', 'Garcia', '0', '1966-07-16', 'M', 'NULL', 'M', 'henry16@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '3268 Hazelwood Lane', 'NULL', '282-555-0185', '2013-01-29', '5-10 Miles'], ['11288', '301', 'AW00011288', 'NULL', 'Cindy', 'K', 'Sanchez', '0', '1978-03-12', 'M', 'NULL', 'F', 'cindy19@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '7062 Starflower Drive', 'NULL', '198-555-0118', '2013-03-05', '2-5 Miles'], ['11289', '315', 'AW00011289', 'NULL', 'Maria', 'S', 'Carter', '0', '1972-03-03', 'M', 'NULL', 'F', 'maria53@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '8603 Elmhurst Lane', 'NULL', '239-555-0158', '2011-09-08', '0-1 Miles'], ['11290', '334', 'AW00011290', 'NULL', 'Katelyn', 'NULL', 'Sanchez', '0', '1972-08-14', 'M', 'NULL', 'F', 'katelyn26@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '8869 Climbing Vine Court', 'NULL', '395-555-0150', '2011-09-20', '2-5 Miles'], ['11291', '335', 'AW00011291', 'NULL', 'Jenna', 'NULL', 'Wright', '0', '1972-05-01', 'M', 'NULL', 'F', 'jenna19@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '232 Pinnacle Drive', 'NULL', '118-555-0191', '2011-09-04', '2-5 Miles'], ['11292', '361', 'AW00011292', 'NULL', 'Seth', 'NULL', 'Phillips', '0', '1967-05-05', 'S', 'NULL', 'M', 'seth42@adventure-works.com', '150000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '4361 Loftus Road', 'NULL', '980-555-0196', '2011-09-15', '0-1 Miles'], ['11293', '632', 'AW00011293', 'NULL', 'Luke', 'S', 'Long', '0', '1960-11-23', 'S', 'NULL', 'M', 'luke28@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '3177 Dover Way', 'NULL', '786-555-0117', '2013-02-24', '1-2 Miles'], ['11294', '618', 'AW00011294', 'NULL', 'Dalton', 'P', 'Clark', '0', '1961-03-02', 'M', 'NULL', 'M', 'dalton18@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '4381 Amazonas', 'NULL', '388-555-0195', '2013-09-25', '1-2 Miles'], ['11295', '311', 'AW00011295', 'NULL', 'Taylor', 'G', 'Lewis', '0', '1959-11-13', 'S', 'NULL', 'F', 'taylor67@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8827 Ward Court', 'NULL', '291-555-0174', '2011-09-25', '5-10 Miles'], ['11296', '616', 'AW00011296', 'NULL', 'Haley', 'NULL', 'Richardson', '0', '1941-04-05', 'S', 'NULL', 'F', 'haley10@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6203 Laurel Drive', 'NULL', '620-555-0129', '2011-09-01', '5-10 Miles'], ['11297', '301', 'AW00011297', 'NULL', 'Noah', 'NULL', 'Coleman', '0', '1940-08-01', 'S', 'NULL', 'M', 'noah2@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5562 Galindo Street', 'NULL', '847-555-0167', '2011-09-26', '5-10 Miles'], ['11298', '307', 'AW00011298', 'NULL', 'Jon', 'NULL', 'Luo', '0', '1940-08-30', 'M', 'NULL', 'M', 'jon46@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3560 River Rock Lane', 'NULL', '127-555-0189', '2011-09-12', '1-2 Miles'], ['11299', '301', 'AW00011299', 'NULL', 'Orlando', 'E', 'Vazquez', '0', '1941-09-29', 'M', 'NULL', 'M', 'orlando14@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8547 Catherine Way', 'NULL', '757-555-0143', '2011-09-26', '1-2 Miles'], ['11300', '54', 'AW00011300', 'NULL', 'Fernando', 'NULL', 'Barnes', '0', '1965-08-31', 'M', 'NULL', 'M', 'fernando47@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '7633 Greenhills Circle', 'NULL', '469-555-0125', '2013-01-31', '1-2 Miles'], ['11301', '607', 'AW00011301', 'NULL', 'Cameron', 'L', 'Rodriguez', '0', '1965-12-07', 'M', 'NULL', 'M', 'cameron38@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '1217 Mariposa', 'NULL', '727-555-0119', '2013-06-09', '5-10 Miles'], ['11302', '539', 'AW00011302', 'NULL', 'Spencer', 'NULL', 'Russell', '0', '1971-12-09', 'S', 'NULL', 'M', 'spencer22@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '2396 Mink Court', 'NULL', '834-555-0131', '2011-09-06', '1-2 Miles'], ['11303', '614', 'AW00011303', 'NULL', 'Julia', 'NULL', 'Coleman', '0', '1966-04-10', 'S', 'NULL', 'F', 'julia72@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '3128 Ramsey Circle', 'NULL', '907-555-0170', '2011-09-02', '1-2 Miles'], ['11304', '547', 'AW00011304', 'NULL', 'Julia', 'B', 'Garcia', '0', '1971-03-14', 'M', 'NULL', 'F', 'julia38@adventure-works.com', '100000.00', '0', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '6179 Mt. Hamilton Dr.', 'NULL', '923-555-0183', '2013-03-20', '5-10 Miles'], ['11305', '307', 'AW00011305', 'NULL', 'Sean', 'A', 'Evans', '0', '1965-12-17', 'M', 'NULL', 'M', 'sean31@adventure-works.com', '110000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '7118 Elliott Dr.', 'NULL', '791-555-0174', '2013-03-25', '2-5 Miles'], ['11306', '312', 'AW00011306', 'NULL', 'Micah', 'A', 'Zhou', '0', '1965-12-20', 'M', 'NULL', 'M', 'micah19@adventure-works.com', '110000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '6105 Brownstone Rd', 'NULL', '497-555-0185', '2013-06-30', '2-5 Miles'], ['11307', '314', 'AW00011307', 'NULL', 'Hunter', 'P', 'Rodriguez', '0', '1965-10-31', 'M', 'NULL', 'M', 'hunter53@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4343 Cook Street', 'NULL', '996-555-0142', '2011-09-04', '5-10 Miles'], ['11308', '546', 'AW00011308', 'NULL', 'Ian', 'T', 'Gonzales', '0', '1959-09-02', 'M', 'NULL', 'M', 'ian57@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '7122 Athene Dr.', 'NULL', '904-555-0153', '2013-09-07', '1-2 Miles'], ['11309', '536', 'AW00011309', 'NULL', 'Victoria', 'NULL', 'Lewis', '0', '1959-12-10', 'S', 'NULL', 'F', 'victoria20@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4426 Tanager Road', 'NULL', '586-555-0191', '2013-07-09', '5-10 Miles'], ['11310', '360', 'AW00011310', 'NULL', 'Erin', 'A', 'Sanders', '0', '1964-07-05', 'S', 'NULL', 'F', 'erin7@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7541 Black Point Pl', 'NULL', '233-555-0160', '2013-08-12', '5-10 Miles'], ['11311', '626', 'AW00011311', 'NULL', 'Gabrielle', 'D', 'Lopez', '0', '1959-02-21', 'S', 'NULL', 'F', 'gabrielle63@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '8619 Parkside Dr.', 'NULL', '783-555-0174', '2013-04-18', '1-2 Miles'], ['11312', '626', 'AW00011312', 'NULL', 'Sara', 'NULL', 'Richardson', '0', '1958-10-01', 'S', 'NULL', 'F', 'sara10@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7375 Kipling Court', 'NULL', '296-555-0174', '2013-05-17', '5-10 Miles'], ['11313', '632', 'AW00011313', 'NULL', 'Trevor', 'NULL', 'Jenkins', '0', '1958-08-27', 'S', 'NULL', 'M', 'trevor6@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4697 Yosemite Dr.', 'NULL', '120-555-0129', '2013-05-07', '5-10 Miles'], ['11314', '618', 'AW00011314', 'NULL', 'Mya', 'NULL', 'Flores', '0', '1970-06-16', 'S', 'NULL', 'F', 'mya13@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '8439 Rio Grande Drive', 'Unit A', '522-555-0140', '2013-02-25', '1-2 Miles'], ['11315', '632', 'AW00011315', 'NULL', 'Hailey', 'J', 'Ward', '0', '1959-03-31', 'S', 'NULL', 'F', 'hailey12@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '6321 Maya', 'NULL', '767-555-0151', '2013-05-20', '1-2 Miles'], ['11316', '51', 'AW00011316', 'NULL', 'Luke', 'NULL', 'Allen', '0', '1959-05-17', 'M', 'NULL', 'M', 'luke52@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '419 Deermeadow Way', 'NULL', '786-555-0133', '2013-01-12', '5-10 Miles'], ['11317', '548', 'AW00011317', 'NULL', 'Victoria', 'D', 'Russell', '0', '1963-09-14', 'S', 'NULL', 'F', 'victoria66@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '9268 Keller Ridge', 'NULL', '663-555-0197', '2011-09-01', '5-10 Miles'], ['11318', '614', 'AW00011318', 'NULL', 'Jessica', 'NULL', 'Wilson', '0', '1958-04-25', 'S', 'NULL', 'F', 'jessica54@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '1652 Willcrest Circle', 'NULL', '702-555-0180', '2013-10-17', '1-2 Miles'], ['11319', '348', 'AW00011319', 'NULL', 'Jade', 'E', 'Bailey', '0', '1948-04-23', 'M', 'NULL', 'F', 'jade13@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '8119 Northridge Ct', '# 1', '819-555-0160', '2011-09-09', '1-2 Miles'], ['11320', '325', 'AW00011320', 'NULL', 'Morgan', 'M', 'Hill', '0', '1942-12-24', 'M', 'NULL', 'F', 'morgan19@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6951 Harmony Way', 'NULL', '510-555-0120', '2013-06-15', '5-10 Miles'], ['11321', '612', 'AW00011321', 'NULL', 'Terrance', 'D', 'Raman', '0', '1944-01-05', 'M', 'NULL', 'M', 'terrance9@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2297 Via Valencia', 'NULL', '879-555-0124', '2013-02-23', '5-10 Miles'], ['11322', '611', 'AW00011322', 'NULL', 'Sydney', 'NULL', 'Garcia', '0', '1943-09-12', 'M', 'NULL', 'F', 'sydney78@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '252 Hemlock Drive', 'NULL', '783-555-0116', '2013-03-24', '5-10 Miles'], ['11323', '314', 'AW00011323', 'NULL', 'Jose', 'NULL', 'Patterson', '0', '1943-12-18', 'S', 'NULL', 'M', 'jose33@adventure-works.com', '120000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '648 Newport Drive', 'NULL', '768-555-0153', '2011-09-10', '5-10 Miles'], ['11324', '325', 'AW00011324', 'NULL', 'Zachary', 'NULL', 'Anderson', '0', '1944-11-10', 'M', 'NULL', 'M', 'zachary39@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2476 Mt. Whitney Way', 'NULL', '693-555-0118', '2011-09-26', '1-2 Miles'], ['11325', '637', 'AW00011325', 'NULL', 'Elijah', 'E', 'Ross', '0', '1944-12-29', 'S', 'NULL', 'M', 'elijah7@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6679 Cornelius Dr', 'NULL', '409-555-0142', '2011-09-19', '5-10 Miles'], ['11326', '300', 'AW00011326', 'NULL', 'Rafael', 'M', 'Xie', '0', '1944-12-23', 'M', 'NULL', 'M', 'rafael26@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '369 Peabody Road', 'NULL', '663-555-0137', '2011-09-15', '0-1 Miles'], ['11327', '301', 'AW00011327', 'NULL', 'Jaime', 'C', 'Moreno', '0', '1945-09-01', 'M', 'NULL', 'M', 'jaime48@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '83 Mountain View Blvd', 'NULL', '457-555-0178', '2011-09-26', '5-10 Miles'], ['11328', '55', 'AW00011328', 'NULL', 'Julian', 'M', 'Griffin', '0', '1945-06-30', 'M', 'NULL', 'M', 'julian20@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7398 Withersed Lane', 'NULL', '636-555-0197', '2013-01-05', '5-10 Miles'], ['11329', '311', 'AW00011329', 'NULL', 'Andy', 'NULL', 'Alvarez', '0', '1946-01-22', 'S', 'NULL', 'M', 'andy9@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9466 Morning Glory Dr.', 'NULL', '367-555-0172', '2011-09-25', '5-10 Miles'], ['11330', '59', 'AW00011330', 'NULL', 'Ryan', 'M', 'Thompson', '0', '1945-11-10', 'M', 'NULL', 'M', 'ryan38@adventure-works.com', '110000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '3407 Pinon Dr.', 'NULL', '138-555-0142', '2013-02-12', '2-5 Miles'], ['11331', '63', 'AW00011331', 'NULL', 'Samantha', 'NULL', 'Jenkins', '0', '1974-01-03', 'M', 'NULL', 'F', 'samantha32@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1046 Cloverleaf Circle', 'NULL', '936-555-0152', '2013-02-07', '1-2 Miles'], ['11332', '153', 'AW00011332', 'NULL', 'Deanna', 'D', 'Ramos', '0', '1968-04-02', 'S', 'NULL', 'F', 'deanna44@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Roßstr 9938', 'NULL', '1 (11) 500 555-0138', '2011-10-15', '0-1 Miles'], ['11333', '261', 'AW00011333', 'NULL', 'Emily', 'R', 'Miller', '0', '1968-01-07', 'M', 'NULL', 'F', 'emily6@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9075 Calle Verde', 'NULL', '1 (11) 500 555-0110', '2011-03-21', '0-1 Miles'], ['11334', '269', 'AW00011334', 'NULL', 'Nicole', 'NULL', 'Brown', '0', '1966-09-19', 'M', 'NULL', 'F', 'nicole4@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '1135 W St.', 'NULL', '1 (11) 500 555-0187', '2011-03-04', '0-1 Miles'], ['11335', '120', 'AW00011335', 'NULL', 'Carla', 'L', 'Raman', '0', '1977-12-18', 'M', 'NULL', 'F', 'carla14@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Winterfeldtstr 255', 'NULL', '1 (11) 500 555-0124', '2011-10-23', '0-1 Miles'], ['11336', '204', 'AW00011336', 'NULL', 'Shaun', 'NULL', 'Raji', '0', '1973-03-08', 'M', 'NULL', 'M', 'shaun21@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '44, rue du Départ', 'NULL', '1 (11) 500 555-0122', '2012-09-27', '0-1 Miles'], ['11337', '273', 'AW00011337', 'NULL', 'Jerome', 'NULL', 'Romero', '0', '1967-03-21', 'M', 'NULL', 'M', 'jerome7@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '7289 Brookview Dr.', 'NULL', '1 (11) 500 555-0112', '2011-03-09', '0-1 Miles'], ['11338', '154', 'AW00011338', 'NULL', 'Frank', 'F', 'Navarro', '0', '1972-08-06', 'M', 'NULL', 'M', 'frank17@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Buergermeister-ulrich-str 2987', 'NULL', '1 (11) 500 555-0139', '2011-10-11', '0-1 Miles'], ['11339', '202', 'AW00011339', 'NULL', 'Dennis', 'M', 'She', '0', '1967-01-05', 'S', 'NULL', 'M', 'dennis25@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '828, rue de Berri', 'NULL', '1 (11) 500 555-0141', '2012-10-07', '0-1 Miles'], ['11340', '192', 'AW00011340', 'NULL', 'Melody', 'C', 'Munoz', '0', '1947-04-03', 'M', 'NULL', 'F', 'melody8@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9, avenue Reille', 'NULL', '1 (11) 500 555-0147', '2012-10-27', '0-1 Miles'], ['11341', '236', 'AW00011341', 'NULL', 'Randy', 'A', 'Zeng', '0', '1942-02-18', 'M', 'NULL', 'M', 'randy24@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2334 Brandywine Way', 'NULL', '1 (11) 500 555-0144', '2011-04-11', '0-1 Miles'], ['11342', '191', 'AW00011342', 'NULL', 'Marshall', 'L', 'Wang', '0', '1973-03-07', 'M', 'NULL', 'M', 'marshall0@adventure-works.com', '30000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '68062, rue des Grands Champs', 'NULL', '1 (11) 500 555-0161', '2013-07-12', '0-1 Miles'], ['11343', '264', 'AW00011343', 'NULL', 'Arthur', 'P', 'Carlson', '0', '1975-03-09', 'M', 'NULL', 'M', 'arthur41@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '6507 Fieldcrest Dr.', 'NULL', '1 (11) 500 555-0166', '2011-04-04', '0-1 Miles'], ['11344', '262', 'AW00011344', 'NULL', 'Jessie', 'NULL', 'Jimenez', '0', '1963-01-21', 'M', 'NULL', 'F', 'jessie3@adventure-works.com', '10000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '5723 C Wharton Way', 'NULL', '1 (11) 500 555-0193', '2011-05-13', '0-1 Miles'], ['11345', '224', 'AW00011345', 'NULL', 'Robin', 'NULL', 'Ramos', '0', '1962-09-09', 'S', 'NULL', 'F', 'robin13@adventure-works.com', '10000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '6, rue de l´Esplanade', 'NULL', '1 (11) 500 555-0111', '2012-10-22', '0-1 Miles'], ['11346', '196', 'AW00011346', 'NULL', 'Deanna', 'E', 'Gutierrez', '0', '1966-05-18', 'S', 'NULL', 'F', 'deanna37@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Attaché de Presse', 'Place d´ Armes', '1 (11) 500 555-0112', '2012-10-01', '0-1 Miles'], ['11347', '156', 'AW00011347', 'NULL', 'Roy', 'T', 'Navarro', '0', '1972-06-17', 'M', 'NULL', 'M', 'roy30@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Viktoria-Luise-Platz 43', 'NULL', '1 (11) 500 555-0137', '2013-03-16', '0-1 Miles'], ['11348', '151', 'AW00011348', 'NULL', 'Shawn', 'NULL', 'Rai', '0', '1961-03-21', 'M', 'NULL', 'M', 'shawn19@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Westheimer Straße 7606', 'NULL', '1 (11) 500 555-0117', '2013-03-31', '0-1 Miles'], ['11349', '134', 'AW00011349', 'NULL', 'Mindy', 'J', 'Luo', '0', '1965-08-30', 'M', 'NULL', 'F', 'mindy10@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Brunnenstr 7566', 'Verkaufsabteilung', '1 (11) 500 555-0194', '2014-01-13', '2-5 Miles'], ['11350', '265', 'AW00011350', 'NULL', 'Cara', 'NULL', 'Zhou', '0', '1942-07-14', 'M', 'NULL', 'F', 'cara5@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7280 Greendell Pl', 'NULL', '1 (11) 500 555-0118', '2013-02-05', '0-1 Miles'], ['11351', '253', 'AW00011351', 'NULL', 'Anne', 'R', 'Ramos', '0', '1950-04-02', 'S', 'NULL', 'F', 'anne19@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7113 Eastgate Ave.', 'NULL', '1 (11) 500 555-0148', '2011-06-12', '0-1 Miles'], ['11352', '222', 'AW00011352', 'NULL', 'Raymond', 'A', 'Rodriguez', '0', '1945-09-04', 'M', 'NULL', 'M', 'raymond20@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '24, impasse Ste-Madeleine', 'NULL', '1 (11) 500 555-0131', '2013-05-01', '0-1 Miles'], ['11353', '271', 'AW00011353', 'NULL', 'Carrie', 'L', 'Ortega', '0', '1946-12-09', 'S', 'NULL', 'F', 'carrie19@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1883 Cowell Rd.', 'NULL', '1 (11) 500 555-0111', '2011-06-12', '0-1 Miles'], ['11354', '119', 'AW00011354', 'NULL', 'Deanna', 'NULL', 'Suarez', '0', '1947-08-23', 'M', 'NULL', 'F', 'deanna45@adventure-works.com', '20000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Dunckerstr 22525', 'NULL', '1 (11) 500 555-0146', '2013-12-03', '0-1 Miles'], ['11355', '275', 'AW00011355', 'NULL', 'Roberto', 'NULL', 'Gutierrez', '0', '1948-06-26', 'M', 'NULL', 'M', 'roberto11@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3545 Chickpea Ct.', 'NULL', '1 (11) 500 555-0124', '2013-09-26', '0-1 Miles'], ['11356', '6', 'AW00011356', 'NULL', 'Terrence', 'NULL', 'Carson', '0', '1985-11-24', 'S', 'NULL', 'M', 'terrence15@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6613 Thornhill Place', 'NULL', '1 (11) 500 555-0189', '2011-05-10', '2-5 Miles'], ['11357', '21', 'AW00011357', 'NULL', 'Ramon', 'NULL', 'Ye', '0', '1984-09-19', 'S', 'NULL', 'M', 'ramon9@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '3245 Vista Oak Dr.', 'NULL', '1 (11) 500 555-0143', '2011-06-18', '2-5 Miles'], ['11358', '2', 'AW00011358', 'NULL', 'Cynthia', 'NULL', 'Malhotra', '0', '1984-05-10', 'S', 'NULL', 'F', 'cynthia9@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6757 Pamplona Ct.', 'NULL', '1 (11) 500 555-0187', '2011-06-28', '0-1 Miles'], ['11359', '7', 'AW00011359', 'NULL', 'Jarrod', 'NULL', 'Prasad', '0', '1984-03-03', 'S', 'NULL', 'M', 'jarrod9@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '7657 H St.', 'NULL', '1 (11) 500 555-0154', '2011-06-13', '0-1 Miles'], ['11360', '26', 'AW00011360', 'NULL', 'Tyrone', 'NULL', 'Serrano', '0', '1984-01-30', 'S', 'NULL', 'M', 'tyrone15@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '3767 View Dr.', 'NULL', '1 (11) 500 555-0176', '2011-06-27', '2-5 Miles'], ['11361', '10', 'AW00011361', 'NULL', 'Cindy', 'G', 'Ramos', '0', '1982-10-26', 'M', 'NULL', 'F', 'cindy22@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '6565 Jamie Way', 'NULL', '1 (11) 500 555-0173', '2013-10-01', '0-1 Miles'], ['11362', '33', 'AW00011362', 'NULL', 'Damien', 'M', 'Shan', '0', '1983-05-11', 'M', 'NULL', 'M', 'damien26@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '5312 Riverwood Circle', 'NULL', '1 (11) 500 555-0142', '2013-03-29', '0-1 Miles'], ['11363', '35', 'AW00011363', 'NULL', 'Julian', 'NULL', 'Ross', '0', '1983-04-19', 'S', 'NULL', 'M', 'julian5@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '3346 Larkwood Ct.', 'NULL', '1 (11) 500 555-0126', '2011-06-08', '0-1 Miles'], ['11364', '34', 'AW00011364', 'NULL', 'Jennifer', 'NULL', 'Collins', '0', '1985-03-22', 'S', 'NULL', 'F', 'jennifer6@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '4536 Killdeer Court', 'NULL', '1 (11) 500 555-0196', '2011-06-07', '2-5 Miles'], ['11365', '29', 'AW00011365', 'NULL', 'Brittney', 'NULL', 'Sun', '0', '1984-12-06', 'S', 'NULL', 'F', 'brittney12@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '8856 Mt. Wilson Way', 'NULL', '1 (11) 500 555-0155', '2011-05-31', '1-2 Miles'], ['11366', '37', 'AW00011366', 'NULL', 'Virginia', 'R', 'Patel', '0', '1985-04-23', 'M', 'NULL', 'F', 'virginia4@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3118 Creekside Drive', 'NULL', '1 (11) 500 555-0146', '2013-06-24', '0-1 Miles'], ['11367', '12', 'AW00011367', 'NULL', 'Calvin', 'J', 'Nara', '0', '1984-08-21', 'M', 'NULL', 'M', 'calvin15@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5795 Morning Glory Dr.', 'NULL', '1 (11) 500 555-0193', '2013-07-07', '0-1 Miles'], ['11368', '26', 'AW00011368', 'NULL', 'Edward', 'NULL', 'Miller', '0', '1984-05-24', 'S', 'NULL', 'M', 'edward28@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '598 Limeridge Drive', 'NULL', '1 (11) 500 555-0151', '2011-06-24', '1-2 Miles'], ['11369', '29', 'AW00011369', 'NULL', 'Ashlee', 'D', 'Tang', '0', '1984-02-01', 'M', 'NULL', 'F', 'ashlee11@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '4111 Vista Diablo', 'NULL', '1 (11) 500 555-0187', '2013-07-05', '0-1 Miles'], ['11370', '38', 'AW00011370', 'NULL', 'Alicia', 'NULL', 'Xu', '0', '1983-09-29', 'M', 'NULL', 'F', 'alicia3@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3743 Grenadine Way', 'NULL', '1 (11) 500 555-0113', '2013-07-13', '0-1 Miles'], ['11371', '26', 'AW00011371', 'NULL', 'Lacey', 'C', 'Jai', '0', '1983-11-24', 'M', 'NULL', 'F', 'lacey1@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6208 Prestwick Dr.', 'NULL', '1 (11) 500 555-0149', '2013-11-07', '0-1 Miles'], ['11372', '20', 'AW00011372', 'NULL', 'Wendy', 'H', 'Romero', '0', '1983-11-12', 'S', 'NULL', 'F', 'wendy8@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '24 San Vincente Drive', 'NULL', '1 (11) 500 555-0114', '2011-06-07', '0-1 Miles'], ['11373', '135', 'AW00011373', 'NULL', 'Carly', 'H', 'Luo', '0', '1954-09-16', 'M', 'NULL', 'F', 'carly5@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Hellweg 4644', 'NULL', '1 (11) 500 555-0138', '2013-08-27', '0-1 Miles'], ['11374', '162', 'AW00011374', 'NULL', 'Jimmy', 'M', 'Ortega', '0', '1948-12-25', 'S', 'NULL', 'M', 'jimmy26@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Postfach 11 11 22', 'NULL', '1 (11) 500 555-0183', '2013-04-15', '0-1 Miles'], ['11375', '240', 'AW00011375', 'NULL', 'Francisco', 'NULL', 'Martinez', '0', '1948-11-05', 'M', 'NULL', 'M', 'francisco19@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5508 Glenmount Dr.', 'NULL', '1 (11) 500 555-0119', '2013-10-17', '0-1 Miles'], ['11376', '268', 'AW00011376', 'NULL', 'Lance', 'NULL', 'Vazquez', '0', '1948-12-07', 'S', 'NULL', 'M', 'lance14@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9159 Shepberry Court', 'NULL', '1 (11) 500 555-0112', '2013-10-15', '0-1 Miles'], ['11377', '161', 'AW00011377', 'Mr.', 'David', 'R.', 'Robinett', '0', '1966-08-23', 'M', 'NULL', 'M', 'david22@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Pappelallee 6667', 'NULL', '238-555-0100', '2013-02-28', '0-1 Miles'], ['11378', '184', 'AW00011378', 'NULL', 'Shannon', 'NULL', 'Liang', '0', '1965-11-19', 'S', 'NULL', 'F', 'shannon15@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '7445 Meaham Drive', 'NULL', '1 (11) 500 555-0159', '2012-10-17', '2-5 Miles'], ['11379', '214', 'AW00011379', 'NULL', 'Gary', 'NULL', 'Vazquez', '0', '1976-05-13', 'M', 'NULL', 'M', 'gary25@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5, rue de la Cavalerie', 'NULL', '1 (11) 500 555-0130', '2012-10-02', '2-5 Miles'], ['11380', '175', 'AW00011380', 'NULL', 'Mitchell', 'L', 'Kumar', '0', '1964-08-29', 'S', 'NULL', 'M', 'mitchell7@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Husemann Straße 6464', 'NULL', '1 (11) 500 555-0119', '2011-10-11', '1-2 Miles'], ['11381', '249', 'AW00011381', 'NULL', 'Meredith', 'NULL', 'Raman', '0', '1970-08-18', 'M', 'NULL', 'F', 'meredith11@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '6092 Chestnut', 'NULL', '1 (11) 500 555-0162', '2011-06-12', '2-5 Miles'], ['11382', '189', 'AW00011382', 'NULL', 'Edward', 'NULL', 'Patterson', '0', '1974-07-15', 'M', 'NULL', 'M', 'edward59@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '211, avenue Foch', 'NULL', '1 (11) 500 555-0118', '2012-11-03', '2-5 Miles'], ['11383', '206', 'AW00011383', 'NULL', 'Marie', 'NULL', 'Gill', '0', '1966-02-25', 'M', 'NULL', 'F', 'marie37@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '571, rue Malar', 'NULL', '1 (11) 500 555-0192', '2014-01-01', '0-1 Miles'], ['11384', '211', 'AW00011384', 'NULL', 'Tiffany', 'E', 'Wang', '0', '1971-10-13', 'M', 'NULL', 'F', 'tiffany1@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5, rue Malar', 'NULL', '1 (11) 500 555-0192', '2013-08-02', '0-1 Miles'], ['11385', '279', 'AW00011385', 'NULL', 'Miguel', 'C', 'Allen', '0', '1971-08-08', 'S', 'NULL', 'M', 'miguel24@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6834 Violetta', 'NULL', '1 (11) 500 555-0128', '2013-07-06', '0-1 Miles'], ['11386', '127', 'AW00011386', 'NULL', 'Jaclyn', 'NULL', 'Cai', '0', '1971-11-02', 'M', 'NULL', 'F', 'jaclyn22@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Postfach 55 00 00', 'NULL', '1 (11) 500 555-0164', '2013-11-02', '0-1 Miles'], ['11387', '238', 'AW00011387', 'NULL', 'Megan', 'C', 'Ramirez', '0', '1964-11-29', 'S', 'NULL', 'F', 'megan44@adventure-works.com', '40000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '507 Sahara Drive', 'NULL', '1 (11) 500 555-0192', '2011-07-26', '0-1 Miles'], ['11388', '279', 'AW00011388', 'NULL', 'Joseph', 'NULL', 'Martin', '0', '1965-01-20', 'M', 'NULL', 'M', 'joseph21@adventure-works.com', '40000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7028 San Gabriel Dr.', 'NULL', '1 (11) 500 555-0143', '2011-07-03', '0-1 Miles'], ['11389', '130', 'AW00011389', 'NULL', 'Karl', 'J', 'Shan', '0', '1981-04-20', 'S', 'NULL', 'M', 'karl11@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Nollendorfplatz 48', 'NULL', '1 (11) 500 555-0198', '2013-11-17', '2-5 Miles'], ['11390', '208', 'AW00011390', 'NULL', 'Christine', 'J', 'Raji', '0', '1976-04-17', 'S', 'NULL', 'F', 'christine16@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '11, boulevard Tremblay', 'NULL', '1 (11) 500 555-0153', '2013-11-07', '2-5 Miles'], ['11391', '135', 'AW00011391', 'NULL', 'Lindsay', 'T', 'Xie', '0', '1976-06-25', 'S', 'NULL', 'F', 'lindsay3@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Am Grossen Dern 4624', 'NULL', '1 (11) 500 555-0115', '2013-10-26', '0-1 Miles'], ['11392', '131', 'AW00011392', 'NULL', 'Willie', 'NULL', 'Zhao', '0', '1981-02-03', 'S', 'NULL', 'M', 'willie8@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Königstr 282', 'NULL', '1 (11) 500 555-0120', '2013-03-29', '0-1 Miles'], ['11393', '182', 'AW00011393', 'NULL', 'Kurt', 'B', 'Pal', '0', '1974-07-17', 'S', 'NULL', 'M', 'kurt12@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '55, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0117', '2013-07-16', '0-1 Miles'], ['11394', '259', 'AW00011394', 'NULL', 'George', 'NULL', 'McDonald', '0', '1975-04-22', 'S', 'NULL', 'M', 'george13@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '9186 West Boyd Rd.', 'NULL', '1 (11) 500 555-0150', '2011-07-04', '0-1 Miles'], ['11395', '118', 'AW00011395', 'NULL', 'Beth', 'C', 'Gutierrez', '0', '1976-04-16', 'S', 'NULL', 'F', 'beth13@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Rehstr 1346', 'NULL', '1 (11) 500 555-0110', '2011-11-14', '0-1 Miles'], ['11396', '175', 'AW00011396', 'NULL', 'Ian', 'G', 'Lopez', '0', '1975-04-04', 'M', 'NULL', 'M', 'ian27@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Zur Lindung 6', 'NULL', '1 (11) 500 555-0182', '2013-10-26', '0-1 Miles'], ['11397', '197', 'AW00011397', 'NULL', 'Latoya', 'R', 'Shan', '0', '1974-12-02', 'S', 'NULL', 'F', 'latoya9@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Attaché de Presse', 'NULL', '1 (11) 500 555-0122', '2013-07-07', '0-1 Miles'], ['11398', '261', 'AW00011398', 'NULL', 'Colin', 'N', 'Nath', '0', '1975-03-09', 'S', 'NULL', 'M', 'colin41@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8900 Escobar', 'NULL', '1 (11) 500 555-0115', '2011-07-03', '0-1 Miles'], ['11399', '202', 'AW00011399', 'NULL', 'Brenda', 'F', 'Mehta', '0', '1975-02-01', 'S', 'NULL', 'F', 'brenda17@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '11, avenue du Port', 'NULL', '1 (11) 500 555-0155', '2013-04-13', '0-1 Miles'], ['11400', '251', 'AW00011400', 'NULL', 'Franklin', 'NULL', 'Raji', '0', '1980-04-15', 'S', 'NULL', 'M', 'franklin38@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3477 Mt. Washington Way', 'NULL', '1 (11) 500 555-0180', '2011-07-15', '0-1 Miles'], ['11401', '204', 'AW00011401', 'NULL', 'Linda', 'NULL', 'Navarro', '0', '1975-02-23', 'M', 'NULL', 'F', 'linda25@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6, route de Marseille', 'NULL', '1 (11) 500 555-0189', '2012-10-28', '0-1 Miles'], ['11402', '183', 'AW00011402', 'NULL', 'Kelli', 'R', 'Cai', '0', '1975-05-20', 'M', 'NULL', 'F', 'kelli21@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1216, place de la Concorde', 'NULL', '1 (11) 500 555-0145', '2012-11-07', '0-1 Miles'], ['11403', '179', 'AW00011403', 'NULL', 'Nancy', 'NULL', 'Schmidt', '0', '1980-01-06', 'S', 'NULL', 'F', 'nancy13@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '340, boulevard d´Albi', 'NULL', '1 (11) 500 555-0150', '2012-10-28', '0-1 Miles'], ['11404', '133', 'AW00011404', 'NULL', 'Megan', 'E', 'Taylor', '0', '1957-06-30', 'S', 'NULL', 'F', 'megan12@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Berliner Platz 43', 'NULL', '1 (11) 500 555-0178', '2013-02-10', '0-1 Miles'], ['11405', '143', 'AW00011405', 'NULL', 'Bonnie', 'NULL', 'Goel', '0', '1957-08-16', 'S', 'NULL', 'F', 'bonnie25@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Carlsplatz 89', 'NULL', '1 (11) 500 555-0143', '2013-03-31', '0-1 Miles'], ['11406', '199', 'AW00011406', 'NULL', 'Latoya', 'L', 'Xu', '0', '1957-12-31', 'M', 'NULL', 'F', 'latoya4@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '101, rue de Terre Neuve', 'NULL', '1 (11) 500 555-0141', '2012-11-04', '2-5 Miles'], ['11407', '170', 'AW00011407', 'NULL', 'Mario', 'NULL', 'She', '0', '1957-09-30', 'M', 'NULL', 'M', 'mario0@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Conesweg 720', 'NULL', '1 (11) 500 555-0156', '2013-06-23', '0-1 Miles'], ['11408', '257', 'AW00011408', 'NULL', 'Darren', 'M', 'Gill', '0', '1964-05-10', 'M', 'NULL', 'M', 'darren36@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '8132 Twincreek Ct', 'NULL', '1 (11) 500 555-0166', '2013-03-05', '0-1 Miles'], ['11409', '208', 'AW00011409', 'NULL', 'Jacqueline', 'H', 'Hayes', '0', '1979-03-02', 'S', 'NULL', 'F', 'jacqueline23@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '33, rue Georges-Clémenceau', 'NULL', '1 (11) 500 555-0162', '2012-11-17', '0-1 Miles'], ['11410', '201', 'AW00011410', 'NULL', 'Maurice', 'NULL', 'Goel', '0', '1974-02-22', 'M', 'NULL', 'M', 'maurice20@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '15, avenue de la Gare', 'NULL', '1 (11) 500 555-0179', '2012-11-13', '2-5 Miles'], ['11411', '121', 'AW00011411', 'NULL', 'Devin', 'A', 'Ross', '0', '1959-08-12', 'M', 'NULL', 'M', 'devin69@adventure-works.com', '80000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', 'Postenweg 2428', 'NULL', '1 (11) 500 555-0172', '2013-08-04', '2-5 Miles'], ['11412', '121', 'AW00011412', 'NULL', 'Sydney', 'S', 'Bryant', '0', '1959-10-07', 'S', 'NULL', 'F', 'sydney40@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', 'Postfach 99 92 92', 'NULL', '1 (11) 500 555-0156', '2011-11-05', '10+ Miles'], ['11413', '238', 'AW00011413', 'NULL', 'Megan', 'L', 'Stewart', '0', '1959-10-13', 'M', 'NULL', 'F', 'megan27@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '8192 Seagull Court', 'NULL', '1 (11) 500 555-0116', '2011-08-10', '2-5 Miles'], ['11414', '241', 'AW00011414', 'NULL', 'Ian', 'NULL', 'Richardson', '0', '1959-09-15', 'S', 'NULL', 'M', 'ian76@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '726 W. Buchanan Rd.', 'NULL', '1 (11) 500 555-0119', '2011-08-13', '10+ Miles'], ['11415', '127', 'AW00011415', 'NULL', 'Randy', 'H', 'She', '0', '1949-12-03', 'S', 'NULL', 'M', 'randy25@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Roßstr 5538', 'NULL', '1 (11) 500 555-0141', '2013-08-16', '10+ Miles'], ['11416', '185', 'AW00011416', 'NULL', 'Katrina', 'NULL', 'Becker', '0', '1950-09-16', 'M', 'NULL', 'F', 'katrina19@adventure-works.com', '60000.00', '3', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '4', '8205, rue Malar', 'NULL', '1 (11) 500 555-0153', '2012-11-07', '2-5 Miles'], ['11417', '222', 'AW00011417', 'NULL', 'Lacey', 'C', 'Zheng', '0', '1950-08-26', 'M', 'NULL', 'F', 'lacey32@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4, rue de Linois', 'NULL', '1 (11) 500 555-0174', '2012-11-04', '10+ Miles'], ['11418', '160', 'AW00011418', 'NULL', 'Rafael', 'J', 'Hu', '0', '1950-08-09', 'S', 'NULL', 'M', 'rafael20@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Zeiter Weg 7765', 'NULL', '1 (11) 500 555-0159', '2013-12-17', '10+ Miles'], ['11419', '273', 'AW00011419', 'NULL', 'Kyle', 'D', 'Scott', '0', '1950-08-18', 'M', 'NULL', 'M', 'kyle43@adventure-works.com', '150000.00', '3', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '9381 Alpine Rd.', 'NULL', '1 (11) 500 555-0178', '2013-03-12', '0-1 Miles'], ['11420', '189', 'AW00011420', 'NULL', 'Jordan', 'C', 'Turner', '0', '1952-01-09', 'M', 'NULL', 'M', 'jordan59@adventure-works.com', '100000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '100, rue Maillard', 'NULL', '1 (11) 500 555-0176', '2012-11-01', '10+ Miles'], ['11421', '172', 'AW00011421', 'NULL', 'Amy', 'C', 'Sun', '0', '1952-01-16', 'M', 'NULL', 'F', 'amy19@adventure-works.com', '110000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', 'Am Karlshof 2500', 'NULL', '1 (11) 500 555-0111', '2011-11-03', '5-10 Miles'], ['11422', '268', 'AW00011422', 'NULL', 'Dustin', 'F', 'Deng', '0', '1952-02-29', 'M', 'NULL', 'M', 'dustin1@adventure-works.com', '170000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '8185 Sol Street', 'NULL', '1 (11) 500 555-0168', '2011-08-22', '5-10 Miles'], ['11423', '147', 'AW00011423', 'NULL', 'Jasmine', 'NULL', 'Stewart', '0', '1960-05-04', 'M', 'NULL', 'F', 'jasmine22@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', 'Heidestieg Straße 8224', 'NULL', '1 (11) 500 555-0165', '2011-12-10', '2-5 Miles'], ['11424', '164', 'AW00011424', 'NULL', 'Pamela', 'S', 'Garcia', '0', '1964-12-03', 'M', 'NULL', 'F', 'pamela18@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Postfach 11 09 99', 'NULL', '1 (11) 500 555-0182', '2013-04-21', '10+ Miles'], ['11425', '184', 'AW00011425', 'NULL', 'Ariana', 'D', 'Gray', '0', '1965-08-02', 'M', 'NULL', 'F', 'ariana5@adventure-works.com', '90000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3675 Palms Dr', 'NULL', '1 (11) 500 555-0191', '2012-11-22', '10+ Miles'], ['11426', '156', 'AW00011426', 'NULL', 'Kristopher', 'NULL', 'Mehta', '0', '1959-04-01', 'M', 'NULL', 'M', 'kristopher12@adventure-works.com', '110000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', 'Herzogstr 328', 'Einkaufsabteilung', '1 (11) 500 555-0181', '2013-04-09', '10+ Miles'], ['11427', '168', 'AW00011427', 'NULL', 'Desiree', 'S', 'Dominguez', '0', '1959-06-17', 'M', 'NULL', 'F', 'desiree9@adventure-works.com', '110000.00', '2', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Holzstr 4222', 'NULL', '1 (11) 500 555-0133', '2011-12-20', '10+ Miles'], ['11428', '173', 'AW00011428', 'NULL', 'Deanna', 'NULL', 'Perez', '0', '1959-02-19', 'S', 'NULL', 'F', 'deanna24@adventure-works.com', '120000.00', '2', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', 'Marienplatz 56', 'NULL', '1 (11) 500 555-0191', '2011-12-05', '10+ Miles'], ['11429', '218', 'AW00011429', 'NULL', 'Marco', 'NULL', 'Lopez', '0', '1958-01-13', 'M', 'NULL', 'M', 'marco17@adventure-works.com', '80000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', "313, rue de l'Espace De Schengen", 'NULL', '1 (11) 500 555-0186', '2012-12-14', '10+ Miles'], ['11430', '155', 'AW00011430', 'NULL', 'Casey', 'K', 'Yuan', '0', '1957-09-21', 'M', 'NULL', 'F', 'casey7@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Hunzinger Allee 153', 'NULL', '1 (11) 500 555-0184', '2013-03-19', '10+ Miles'], ['11431', '120', 'AW00011431', 'NULL', 'Bryant', 'NULL', 'Garcia', '0', '1974-10-20', 'M', 'NULL', 'M', 'bryant14@adventure-works.com', '110000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Am Gallberg 94', 'NULL', '1 (11) 500 555-0115', '2011-12-21', '10+ Miles'], ['11432', '206', 'AW00011432', 'NULL', 'Dominique', 'L', 'Prasad', '0', '1957-03-10', 'M', 'NULL', 'F', 'dominique7@adventure-works.com', '80000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '765, rue Villedo', 'NULL', '1 (11) 500 555-0148', '2012-12-10', '10+ Miles'], ['11433', '224', 'AW00011433', 'NULL', 'Maurice', 'M', 'Shan', '0', '1957-03-01', 'M', 'NULL', 'M', 'maurice11@adventure-works.com', '80000.00', '5', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '59, rue Montcalm', 'NULL', '1 (11) 500 555-0130', '2012-12-02', '2-5 Miles'], ['11434', '274', 'AW00011434', 'NULL', 'Andre', 'NULL', 'Lopez', '0', '1962-05-02', 'M', 'NULL', 'M', 'andre16@adventure-works.com', '170000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '638 Shangri-la Rd.', 'NULL', '1 (11) 500 555-0111', '2013-06-15', '0-1 Miles'], ['11435', '168', 'AW00011435', 'NULL', 'Robin', 'NULL', 'Romero', '0', '1955-09-03', 'S', 'NULL', 'F', 'robin5@adventure-works.com', '100000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '4', 'Hüttenstr 9995', 'NULL', '1 (11) 500 555-0168', '2014-01-04', '10+ Miles'], ['11436', '273', 'AW00011436', 'NULL', 'Taylor', 'NULL', 'Cox', '0', '1956-03-17', 'M', 'NULL', 'F', 'taylor13@adventure-works.com', '160000.00', '3', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '4', '6409 Buckthorn Court', 'NULL', '1 (11) 500 555-0125', '2013-05-22', '10+ Miles'], ['11437', '190', 'AW00011437', 'NULL', 'Alfredo', 'NULL', 'Moreno', '0', '1955-06-16', 'M', 'NULL', 'M', 'alfredo7@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '882, rue Villedo', 'NULL', '1 (11) 500 555-0166', '2013-12-19', '10+ Miles'], ['11438', '162', 'AW00011438', 'NULL', 'Jenny', 'NULL', 'Nara', '0', '1955-04-13', 'M', 'NULL', 'F', 'jenny39@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', 'Alderstr 8642', 'NULL', '1 (11) 500 555-0164', '2013-02-05', '0-1 Miles'], ['11439', '217', 'AW00011439', 'NULL', 'Janet', 'NULL', 'Munoz', '0', '1953-11-14', 'M', 'NULL', 'F', 'janet12@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '3', '61, rue Pierre-Demoulin', 'NULL', '1 (11) 500 555-0148', '2012-11-29', '5-10 Miles'], ['11440', '187', 'AW00011440', 'NULL', 'Sergio', 'C', 'Weber', '0', '1953-03-26', 'M', 'NULL', 'M', 'sergio4@adventure-works.com', '80000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6, place de Fontenoy', 'NULL', '1 (11) 500 555-0178', '2013-03-27', '5-10 Miles'], ['11441', '192', 'AW00011441', 'NULL', 'Erika', 'NULL', 'Gomez', '0', '1952-12-09', 'M', 'NULL', 'F', 'erika0@adventure-works.com', '90000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2, place Beaubernard', 'NULL', '1 (11) 500 555-0155', '2014-01-08', '5-10 Miles'], ['11442', '224', 'AW00011442', 'NULL', 'Joseph', 'D', 'Harris', '0', '1953-05-13', 'M', 'NULL', 'M', 'joseph20@adventure-works.com', '90000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8, rue des Vendangeurs', 'NULL', '1 (11) 500 555-0116', '2013-09-29', '10+ Miles'], ['11443', '31', 'AW00011443', 'NULL', 'Grace', 'NULL', 'Griffin', '0', '1981-11-19', 'S', 'NULL', 'F', 'grace67@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '9825 Mt. Dell Drive', 'NULL', '1 (11) 500 555-0170', '2011-06-07', '2-5 Miles'], ['11444', '32', 'AW00011444', 'NULL', 'Tina', 'C', 'Mehta', '0', '1981-10-26', 'M', 'NULL', 'F', 'tina15@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '5357 Willow Drive', 'NULL', '1 (11) 500 555-0192', '2011-06-01', '10+ Miles'], ['11445', '15', 'AW00011445', 'NULL', 'Kari', 'S', 'Kim', '0', '1980-01-18', 'S', 'NULL', 'F', 'kari3@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '977 Davona Drive', 'NULL', '1 (11) 500 555-0136', '2011-06-06', '10+ Miles'], ['11446', '5', 'AW00011446', 'NULL', 'Bethany', 'K', 'Chander', '0', '1980-02-09', 'S', 'NULL', 'F', 'bethany19@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '3464 Chilpancingo Park', 'NULL', '1 (11) 500 555-0179', '2011-06-18', '10+ Miles'], ['11447', '25', 'AW00011447', 'NULL', 'Jennifer', 'NULL', 'Roberts', '0', '1980-02-13', 'M', 'NULL', 'F', 'jennifer15@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '618 Natalie Drive', 'NULL', '1 (11) 500 555-0112', '2011-06-28', '10+ Miles'], ['11448', '35', 'AW00011448', 'NULL', 'Kyle', 'NULL', 'Patterson', '0', '1980-10-25', 'S', 'NULL', 'M', 'kyle5@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '5444 Bohon Circle', 'NULL', '1 (11) 500 555-0145', '2011-06-16', '10+ Miles'], ['11449', '37', 'AW00011449', 'NULL', 'Alvin', 'E', 'Hu', '0', '1980-08-01', 'M', 'NULL', 'M', 'alvin19@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '8468 Clifford Court', 'NULL', '1 (11) 500 555-0144', '2011-06-19', '10+ Miles'], ['11450', '28', 'AW00011450', 'NULL', 'Brett', 'NULL', 'Mehta', '0', '1981-05-11', 'S', 'NULL', 'M', 'brett13@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '7411 Crivello Avenue', 'NULL', '1 (11) 500 555-0187', '2011-06-29', '0-1 Miles'], ['11451', '10', 'AW00011451', 'NULL', 'Ruben', 'L', 'Muñoz', '0', '1980-05-08', 'S', 'NULL', 'M', 'ruben30@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '3255 Olive Hill', 'NULL', '1 (11) 500 555-0142', '2011-07-29', '10+ Miles'], ['11452', '21', 'AW00011452', 'NULL', 'Erika', 'A', 'Rubio', '0', '1979-05-05', 'S', 'NULL', 'F', 'erika18@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '5065 Maywood Lane', 'NULL', '1 (11) 500 555-0159', '2011-07-11', '10+ Miles'], ['11453', '31', 'AW00011453', 'NULL', 'Stanley', 'H', 'Malhotra', '0', '1984-08-17', 'S', 'NULL', 'M', 'stanley5@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '9218 Old Mt. View Drive', 'NULL', '1 (11) 500 555-0139', '2011-07-15', '10+ Miles'], ['11454', '35', 'AW00011454', 'NULL', 'Melinda', 'NULL', 'Navarro', '0', '1979-10-20', 'S', 'NULL', 'F', 'melinda5@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '1562 Black Walnut', 'NULL', '1 (11) 500 555-0145', '2011-07-31', '10+ Miles'], ['11455', '36', 'AW00011455', 'NULL', 'Ross', 'NULL', 'Sanz', '0', '1979-10-19', 'M', 'NULL', 'M', 'ross38@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '2', '6782 First Ave', 'NULL', '1 (11) 500 555-0147', '2011-07-01', '10+ Miles'], ['11456', '17', 'AW00011456', 'NULL', 'Jon', 'C', 'Gao', '0', '1980-01-05', 'M', 'NULL', 'M', 'jon35@adventure-works.com', '120000.00', '5', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '6455 Garnet Lane', 'NULL', '1 (11) 500 555-0136', '2011-07-17', '10+ Miles'], ['11457', '19', 'AW00011457', 'NULL', 'Jaime', 'C', 'Gutierrez', '0', '1978-11-18', 'M', 'NULL', 'F', 'jaime12@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '6615 Camel Place', 'NULL', '1 (11) 500 555-0173', '2011-07-17', '10+ Miles'], ['11458', '16', 'AW00011458', 'NULL', 'Bianca', 'K', 'Liu', '0', '1978-10-03', 'M', 'NULL', 'F', 'bianca3@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '2', '811 Via Cordona', 'NULL', '1 (11) 500 555-0179', '2013-03-30', '10+ Miles'], ['11459', '13', 'AW00011459', 'NULL', 'Tasha', 'NULL', 'Deng', '0', '1978-04-12', 'S', 'NULL', 'F', 'tasha1@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '9627 Kendall Rd', 'NULL', '1 (11) 500 555-0171', '2011-07-27', '10+ Miles'], ['11460', '33', 'AW00011460', 'NULL', 'Melvin', 'R', 'Chande', '0', '1983-10-04', 'S', 'NULL', 'M', 'melvin13@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '5075 Reading Dr.', 'NULL', '1 (11) 500 555-0121', '2011-07-21', '10+ Miles'], ['11461', '6', 'AW00011461', 'NULL', 'Victor', 'NULL', 'Jimenez', '0', '1977-09-22', 'S', 'NULL', 'M', 'victor7@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '7201 Elk Dr.', 'NULL', '1 (11) 500 555-0176', '2011-07-31', '10+ Miles'], ['11462', '8', 'AW00011462', 'NULL', 'Laura', 'L', 'Lin', '0', '1977-07-18', 'M', 'NULL', 'F', 'laura14@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '3378 Coldwater Drive', 'NULL', '1 (11) 500 555-0151', '2011-07-16', '10+ Miles'], ['11463', '28', 'AW00011463', 'NULL', 'Alisha', 'E', 'Beck', '0', '1977-09-09', 'M', 'NULL', 'F', 'alisha45@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '1328 Huntleigh Dr.', 'NULL', '1 (11) 500 555-0169', '2013-03-05', '10+ Miles'], ['11464', '38', 'AW00011464', 'NULL', 'Alejandro', 'NULL', 'Huang', '0', '1977-05-15', 'M', 'NULL', 'M', 'alejandro8@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '6171 Golf Club Rd', 'NULL', '1 (11) 500 555-0112', '2011-07-22', '10+ Miles'], ['11465', '23', 'AW00011465', 'NULL', 'Louis', 'NULL', 'Luo', '0', '1976-08-18', 'M', 'NULL', 'M', 'louis23@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '4187 Banbury Loop', 'NULL', '1 (11) 500 555-0185', '2011-07-14', '10+ Miles'], ['11466', '6', 'AW00011466', 'NULL', 'Grant', 'H', 'Tang', '0', '1977-01-30', 'M', 'NULL', 'M', 'grant6@adventure-works.com', '150000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Management', 'Gestión', 'Direction', '1', '4', '2710 Saddlehill Lane', 'NULL', '1 (11) 500 555-0195', '2013-05-22', '10+ Miles'], ['11467', '17', 'AW00011467', 'NULL', 'Arturo', 'C', 'Zheng', '0', '1975-04-06', 'M', 'NULL', 'M', 'arturo21@adventure-works.com', '170000.00', '1', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '9719 Hamilton Ave', 'NULL', '1 (11) 500 555-0154', '2013-07-31', '0-1 Miles'], ['11468', '278', 'AW00011468', 'NULL', 'Jaclyn', 'NULL', 'Andersen', '0', '1980-12-15', 'M', 'NULL', 'F', 'jaclyn37@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8274 Gladstone Drive', 'NULL', '1 (11) 500 555-0126', '2011-08-08', '1-2 Miles'], ['11469', '278', 'AW00011469', 'NULL', 'Edwin', 'NULL', 'Raji', '0', '1978-10-14', 'S', 'NULL', 'M', 'edwin44@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '6045 Nightingale Drive', 'NULL', '1 (11) 500 555-0143', '2013-08-09', '1-2 Miles'], ['11470', '177', 'AW00011470', 'NULL', 'Jay', 'C', 'Suarez', '0', '1979-03-25', 'S', 'NULL', 'M', 'jay49@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Heidestieg Straße 8664', 'NULL', '1 (11) 500 555-0195', '2012-01-22', '0-1 Miles'], ['11471', '207', 'AW00011471', 'NULL', 'Latasha', 'NULL', 'Suarez', '0', '1979-03-25', 'S', 'NULL', 'F', 'latasha19@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '29, avenue de la Gare', 'NULL', '1 (11) 500 555-0180', '2013-05-17', '2-5 Miles'], ['11472', '24', 'AW00011472', 'NULL', 'Kenneth', 'NULL', 'Kumar', '0', '1968-09-30', 'S', 'NULL', 'M', 'kenneth7@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '7815 Driftwood Drive', 'NULL', '1 (11) 500 555-0153', '2011-07-26', '5-10 Miles'], ['11473', '221', 'AW00011473', 'NULL', 'Grace', 'M', 'Henderson', '0', '1986-01-30', 'S', 'NULL', 'F', 'grace52@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '1039, rue Mazagran', 'NULL', '1 (11) 500 555-0164', '2013-06-02', '1-2 Miles'], ['11474', '265', 'AW00011474', 'NULL', 'Melvin', 'A', 'Xu', '0', '1985-08-21', 'S', 'NULL', 'M', 'melvin5@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '4092 Folson Drive', 'NULL', '1 (11) 500 555-0113', '2013-09-26', '1-2 Miles'], ['11475', '251', 'AW00011475', 'NULL', 'Cesar', 'L', 'Subram', '0', '1984-04-07', 'S', 'NULL', 'M', 'cesar12@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '8778 So. Silver Spring', 'NULL', '1 (11) 500 555-0118', '2013-04-23', '1-2 Miles'], ['11476', '241', 'AW00011476', 'NULL', 'Erika', 'K', 'Navarro', '0', '1980-05-16', 'M', 'NULL', 'F', 'erika7@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '37 Amaranth Way', 'NULL', '1 (11) 500 555-0145', '2013-11-01', '1-2 Miles'], ['11477', '127', 'AW00011477', 'NULL', 'Tristan', 'NULL', 'Hughes', '0', '1984-06-21', 'S', 'NULL', 'M', 'tristan12@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Platz des Landtags 33', 'NULL', '1 (11) 500 555-0121', '2013-09-25', '1-2 Miles'], ['11478', '218', 'AW00011478', 'NULL', 'Billy', 'C', 'Hernandez', '0', '1984-02-22', 'S', 'NULL', 'M', 'billy5@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '570, avenue des Champs-Elysées', 'NULL', '1 (11) 500 555-0121', '2013-04-19', '2-5 Miles'], ['11479', '182', 'AW00011479', 'NULL', 'Darryl', 'L', 'Wu', '0', '1978-10-20', 'M', 'NULL', 'M', 'darryl6@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '52, rue de Berri', 'NULL', '1 (11) 500 555-0180', '2012-12-05', '1-2 Miles'], ['11480', '224', 'AW00011480', 'NULL', 'Colleen', 'A', 'Ma', '0', '1984-03-07', 'M', 'NULL', 'F', 'colleen16@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2, place Beaubernard', 'NULL', '1 (11) 500 555-0160', '2012-12-25', '1-2 Miles'], ['11481', '156', 'AW00011481', 'NULL', 'Erica', 'NULL', 'Hu', '0', '1978-11-20', 'M', 'NULL', 'F', 'erica19@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Am Gallberg 46', 'Einkaufsabteilung', '1 (11) 500 555-0117', '2012-01-27', '1-2 Miles'], ['11482', '272', 'AW00011482', 'NULL', 'Adrienne', 'C', 'Torres', '0', '1978-01-16', 'S', 'NULL', 'F', 'adrienne8@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '9684 La Vista Avenue', 'NULL', '1 (11) 500 555-0120', '2011-09-08', '1-2 Miles'], ['11483', '199', 'AW00011483', 'NULL', 'Calvin', 'E', 'Chande', '0', '1983-05-19', 'M', 'NULL', 'M', 'calvin13@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9, rue de l´Avenir', 'NULL', '1 (11) 500 555-0197', '2012-12-22', '0-1 Miles'], ['11484', '171', 'AW00011484', 'NULL', 'Erick', 'L', 'Sai', '0', '1983-03-03', 'S', 'NULL', 'M', 'erick5@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Hauptstr 6057', 'NULL', '1 (11) 500 555-0161', '2012-01-02', '0-1 Miles'], ['11485', '237', 'AW00011485', 'NULL', 'Donald', 'NULL', 'Chandra', '0', '1978-02-04', 'M', 'NULL', 'M', 'donald4@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '0', '1644 Alicante Court', 'NULL', '1 (11) 500 555-0191', '2011-09-14', '0-1 Miles'], ['11486', '117', 'AW00011486', 'NULL', 'Ariana', 'F', 'Rogers', '0', '1982-05-21', 'S', 'NULL', 'F', 'ariana17@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Königstr 381', 'NULL', '1 (11) 500 555-0118', '2013-11-24', '1-2 Miles'], ['11487', '186', 'AW00011487', 'NULL', 'Morgan', 'C', 'Jones', '0', '1977-01-05', 'S', 'NULL', 'F', 'morgan26@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '55, impasse Notre-Dame', 'NULL', '1 (11) 500 555-0155', '2013-12-15', '1-2 Miles'], ['11488', '256', 'AW00011488', 'NULL', 'Jermaine', 'NULL', 'Lopez', '0', '1977-03-20', 'S', 'NULL', 'M', 'jermaine15@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '5456 Old Oak Drive', 'NULL', '1 (11) 500 555-0181', '2011-10-28', '1-2 Miles'], ['11489', '262', 'AW00011489', 'NULL', 'Deborah', 'S', 'Goel', '0', '1976-09-03', 'S', 'NULL', 'F', 'deborah21@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '3670 All Ways Drive', 'NULL', '1 (11) 500 555-0168', '2011-10-28', '1-2 Miles'], ['11490', '217', 'AW00011490', 'NULL', 'Danny', 'NULL', 'Rubio', '0', '1976-07-05', 'S', 'NULL', 'M', 'danny22@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '5, avenue de la Gare', 'NULL', '1 (11) 500 555-0122', '2013-04-04', '0-1 Miles'], ['11491', '255', 'AW00011491', 'NULL', 'Andre', 'NULL', 'Perez', '0', '1982-04-02', 'M', 'NULL', 'M', 'andre20@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '70 Tobi Drive', 'NULL', '1 (11) 500 555-0112', '2011-11-07', '0-1 Miles'], ['11492', '115', 'AW00011492', 'NULL', 'Terrence', 'C', 'Chander', '0', '1982-11-15', 'S', 'NULL', 'M', 'terrence16@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Reiherweg 5014', 'NULL', '1 (11) 500 555-0155', '2012-02-11', '2-5 Miles'], ['11493', '255', 'AW00011493', 'NULL', 'Dawn', 'T', 'Wu', '0', '1976-05-31', 'S', 'NULL', 'F', 'dawn8@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6344 St Paul Way', 'NULL', '1 (11) 500 555-0139', '2011-11-14', '1-2 Miles'], ['11494', '267', 'AW00011494', 'NULL', 'Jimmy', 'M', 'Gutierrez', '0', '1976-01-25', 'S', 'NULL', 'M', 'jimmy14@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9627 N. Civic Drive', 'NULL', '1 (11) 500 555-0112', '2011-12-23', '1-2 Miles'], ['11495', '154', 'AW00011495', 'NULL', 'Francis', 'NULL', 'Jimenez', '0', '1977-03-03', 'S', 'NULL', 'M', 'francis3@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Curieweg 3991', 'NULL', '1 (11) 500 555-0143', '2013-10-26', '1-2 Miles'], ['11496', '272', 'AW00011496', 'NULL', 'Gary', 'NULL', 'Ortega', '0', '1976-04-15', 'S', 'NULL', 'M', 'gary31@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5009 Grasswood Circle', 'NULL', '1 (11) 500 555-0197', '2011-11-30', '0-1 Miles'], ['11497', '261', 'AW00011497', 'NULL', 'Katrina', 'R', 'Nath', '0', '1981-11-22', 'S', 'NULL', 'F', 'katrina17@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '8874 Folson Drive', 'NULL', '1 (11) 500 555-0154', '2013-11-04', '1-2 Miles'], ['11498', '49', 'AW00011498', 'NULL', 'Arturo', 'C', 'Sun', '0', '1979-07-15', 'S', 'NULL', 'M', 'arturo14@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4023 Jasper Court', 'NULL', '694-555-0114', '2013-02-28', '1-2 Miles'], ['11499', '311', 'AW00011499', 'NULL', 'Pedro', 'A', 'Vance', '0', '1980-05-13', 'S', 'NULL', 'M', 'pedro4@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4438 Chrislend Court', 'NULL', '149-555-0132', '2013-04-06', '1-2 Miles'], ['11500', '52', 'AW00011500', 'NULL', 'Sarah', 'V', 'Simmons', '0', '1980-03-17', 'S', 'NULL', 'F', 'sarah40@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1005 Valley Oak Plaza', 'NULL', '579-555-0169', '2013-01-31', '0-1 Miles'], ['11501', '49', 'AW00011501', 'NULL', 'Brandy', 'P', 'Chandra', '0', '1981-01-03', 'S', 'NULL', 'F', 'brandy20@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7089 Monti Circle', 'NULL', '323-555-0162', '2013-03-27', '1-2 Miles'], ['11502', '63', 'AW00011502', 'NULL', 'Jared', 'NULL', 'Peterson', '0', '1980-09-03', 'S', 'NULL', 'M', 'jared8@adventure-works.com', '40000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6878 Dublin', 'NULL', '879-555-0159', '2013-01-30', '0-1 Miles'], ['11503', '312', 'AW00011503', 'NULL', 'Dennis', 'G', 'Wu', '0', '1936-04-11', 'M', 'NULL', 'M', 'dennis8@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9810 Rishell Ct.', 'NULL', '724-555-0194', '2013-05-26', '1-2 Miles'], ['11504', '315', 'AW00011504', 'NULL', 'Jordan', 'P', 'Baker', '0', '1936-10-17', 'M', 'NULL', 'F', 'jordan45@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3427 B Wildbrook Ct.', 'NULL', '138-555-0117', '2013-05-01', '0-1 Miles'], ['11505', '43', 'AW00011505', 'NULL', 'Jasmine', 'A', 'Powell', '0', '1972-01-04', 'S', 'NULL', 'F', 'jasmine48@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5684 San Marino Ct.', 'NULL', '847-555-0156', '2013-02-22', '1-2 Miles'], ['11506', '60', 'AW00011506', 'NULL', 'Nicholas', 'S', 'Brown', '0', '1971-11-14', 'S', 'NULL', 'M', 'nicholas6@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '2813 Dew Drop Circle', 'NULL', '883-555-0144', '2013-03-08', '0-1 Miles'], ['11507', '69', 'AW00011507', 'NULL', 'Isabella', 'A', 'Russell', '0', '1972-05-19', 'S', 'NULL', 'F', 'isabella30@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2427 Pastime Dr', 'NULL', '168-555-0190', '2013-02-17', '1-2 Miles'], ['11508', '626', 'AW00011508', 'NULL', 'Elizabeth', 'R', 'Wilson', '0', '1972-01-04', 'S', 'NULL', 'F', 'elizabeth11@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1144 N. Jackson Way', 'NULL', '469-555-0110', '2013-05-02', '1-2 Miles'], ['11509', '347', 'AW00011509', 'NULL', 'Roger', 'NULL', 'Harui', '0', '1964-07-22', 'M', 'NULL', 'F', 'roger4@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3989 Tice Valley Blvd.', 'NULL', '731-555-0184', '2013-07-29', '5-10 Miles'], ['11510', '54', 'AW00011510', 'NULL', 'Seth', 'H', 'Roberts', '0', '1959-01-10', 'M', 'NULL', 'M', 'seth40@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5989 Concord Ave', 'NULL', '199-555-0147', '2013-03-12', '1-2 Miles'], ['11511', '543', 'AW00011511', 'NULL', 'Caleb', 'NULL', 'Perry', '0', '1964-06-10', 'M', 'NULL', 'M', 'caleb4@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2324 Cherry Street', 'NULL', '786-555-0137', '2013-03-13', '2-5 Miles'], ['11512', '59', 'AW00011512', 'NULL', 'Natalie', 'L', 'Campbell', '0', '1976-08-05', 'S', 'NULL', 'F', 'natalie50@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '3481 Broadmoor Drive', 'NULL', '178-555-0147', '2013-12-28', '1-2 Miles'], ['11513', '62', 'AW00011513', 'NULL', 'Alyssa', 'A', 'Howard', '0', '1965-09-23', 'S', 'NULL', 'F', 'alyssa38@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '5780 Conifer Terrace', 'NULL', '805-555-0188', '2013-06-08', '1-2 Miles'], ['11514', '642', 'AW00011514', 'NULL', 'Dalton', 'NULL', 'Diaz', '0', '1965-04-16', 'M', 'NULL', 'M', 'dalton67@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8033 Danesta Dr.', 'NULL', '994-555-0158', '2013-06-24', '2-5 Miles'], ['11515', '301', 'AW00011515', 'NULL', 'Shannon', 'H', 'Huang', '0', '1959-08-25', 'M', 'NULL', 'F', 'shannon6@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4679 Duke Way', 'NULL', '458-555-0116', '2011-08-31', '2-5 Miles'], ['11516', '310', 'AW00011516', 'NULL', 'Mya', 'NULL', 'Gonzales', '0', '1976-10-13', 'M', 'NULL', 'F', 'mya17@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8826 Fine Drive', 'NULL', '211-555-0110', '2011-09-15', '2-5 Miles'], ['11517', '355', 'AW00011517', 'NULL', 'Katherine', 'A', 'Bryant', '0', '1959-12-18', 'M', 'NULL', 'F', 'katherine44@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8761 Dancing Court', 'NULL', '802-555-0135', '2013-06-26', '0-1 Miles'], ['11518', '545', 'AW00011518', 'NULL', 'Edward', 'NULL', 'Washington', '0', '1960-11-06', 'M', 'NULL', 'M', 'edward62@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2747 Carmel Dr.', 'NULL', '446-555-0170', '2013-10-27', '0-1 Miles'], ['11519', '49', 'AW00011519', 'NULL', 'Jerome', 'B', 'Navarro', '0', '1960-09-13', 'M', 'NULL', 'M', 'jerome8@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9537 Ridgewood Drive', 'NULL', '934-555-0191', '2013-03-13', '1-2 Miles'], ['11520', '60', 'AW00011520', 'NULL', 'Jada', 'A', 'Morgan', '0', '1960-10-08', 'M', 'NULL', 'F', 'jada14@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8394 Lincoln Drive', 'NULL', '160-555-0131', '2013-02-22', '0-1 Miles'], ['11521', '644', 'AW00011521', 'NULL', 'Ariana', 'NULL', 'Peterson', '0', '1977-12-01', 'M', 'NULL', 'F', 'ariana4@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9052 Blue Ridge Dr', 'NULL', '298-555-0145', '2013-03-05', '0-1 Miles'], ['11522', '546', 'AW00011522', 'NULL', 'Christian', 'J', 'Hughes', '0', '1972-06-17', 'M', 'NULL', 'M', 'christian26@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3279 W 46th St', 'NULL', '231-555-0168', '2011-09-03', '0-1 Miles'], ['11523', '54', 'AW00011523', 'NULL', 'Lucas', 'V', 'Taylor', '0', '1962-02-07', 'M', 'NULL', 'M', 'lucas22@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2328 California Street', 'NULL', '149-555-0146', '2013-02-15', '0-1 Miles'], ['11524', '374', 'AW00011524', 'NULL', 'Alyssa', 'L', 'Jackson', '0', '1961-07-22', 'M', 'NULL', 'F', 'alyssa11@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8752 Greenway Drive', 'NULL', '398-555-0193', '2013-08-28', '1-2 Miles'], ['11525', '543', 'AW00011525', 'NULL', 'Ariana', 'NULL', 'Cook', '0', '1961-07-08', 'M', 'NULL', 'F', 'ariana19@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '869 Aspen Drive', 'NULL', '160-555-0119', '2011-09-06', '0-1 Miles'], ['11526', '70', 'AW00011526', 'NULL', 'Katherine', 'P', 'Diaz', '0', '1973-01-30', 'M', 'NULL', 'F', 'katherine48@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8160 Star Tree Court', 'NULL', '147-555-0124', '2013-02-03', '1-2 Miles'], ['11527', '361', 'AW00011527', 'NULL', 'Jenna', 'J', 'Green', '0', '1961-12-02', 'M', 'NULL', 'F', 'jenna14@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '905 Johnson Road', 'NULL', '961-555-0153', '2013-02-07', '1-2 Miles'], ['11528', '325', 'AW00011528', 'NULL', 'Joan', 'NULL', 'Washington', '0', '1968-08-15', 'M', 'NULL', 'F', 'joan7@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2932 Esperanza Dr', 'NULL', '732-555-0144', '2011-09-12', '1-2 Miles'], ['11529', '547', 'AW00011529', 'NULL', 'Austin', 'L', 'Bryant', '0', '1963-05-16', 'M', 'NULL', 'M', 'austin14@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '786 Eastgate Ave', 'NULL', '537-555-0113', '2011-09-24', '1-2 Miles'], ['11530', '54', 'AW00011530', 'NULL', 'Andrew', 'C', 'Martinez', '0', '1963-01-23', 'M', 'NULL', 'M', 'andrew24@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3183 Trasher Road', 'NULL', '226-555-0113', '2013-01-28', '1-2 Miles'], ['11531', '300', 'AW00011531', 'NULL', 'Nina', 'R', 'Yuan', '0', '1962-07-07', 'M', 'NULL', 'F', 'nina7@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4851 Heights Ave.', 'NULL', '568-555-0198', '2011-08-30', '0-1 Miles'], ['11532', '634', 'AW00011532', 'NULL', 'Lauren', 'NULL', 'Miller', '0', '1962-08-26', 'M', 'NULL', 'F', 'lauren24@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6437 Brookview Dr.', 'NULL', '827-555-0183', '2013-04-05', '1-2 Miles'], ['11533', '280', 'AW00011533', 'NULL', 'Ebony', 'E', 'Gill', '0', '1968-07-17', 'M', 'NULL', 'F', 'ebony35@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3235 Mi Casa Court', 'NULL', '327-555-0157', '2013-05-14', '1-2 Miles'], ['11534', '337', 'AW00011534', 'NULL', 'Cameron', 'M', 'Lewis', '0', '1964-05-12', 'S', 'NULL', 'M', 'cameron39@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7665 Terrace Road', 'NULL', '199-555-0180', '2011-09-18', '1-2 Miles'], ['11535', '543', 'AW00011535', 'NULL', 'Devin', 'NULL', 'Nelson', '0', '1963-12-31', 'M', 'NULL', 'M', 'devin32@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2569 Webster Drive', 'NULL', '256-555-0111', '2011-09-02', '0-1 Miles'], ['11536', '322', 'AW00011536', 'NULL', 'Logan', 'J', 'Chow', '0', '1969-04-13', 'M', 'NULL', 'M', 'logan25@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6024 Lacanda', 'NULL', '545-555-0121', '2011-09-24', '1-2 Miles'], ['11537', '310', 'AW00011537', 'NULL', 'Dakota', 'NULL', 'Ross', '0', '1963-09-21', 'M', 'NULL', 'M', 'dakota3@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1024 Walnut Blvd.', 'NULL', '186-555-0170', '2011-09-21', '0-1 Miles'], ['11538', '352', 'AW00011538', 'NULL', 'Nicole', 'B', 'Taylor', '0', '1965-02-24', 'S', 'NULL', 'F', 'nicole9@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '112 Kathleen Drive', 'NULL', '217-555-0170', '2011-09-16', '0-1 Miles'], ['11539', '311', 'AW00011539', 'NULL', 'Justin', 'NULL', 'Washington', '0', '1970-08-18', 'M', 'NULL', 'M', 'justin10@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6092 Chestnut', 'NULL', '701-555-0175', '2011-09-23', '1-2 Miles'], ['11540', '312', 'AW00011540', 'NULL', 'Alberto', 'C', 'Navarro', '0', '1970-01-24', 'S', 'NULL', 'M', 'alberto11@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7615 Buena Vista', 'NULL', '535-555-0131', '2011-09-13', '1-2 Miles'], ['11541', '547', 'AW00011541', 'NULL', 'Aidan', 'D', 'Ross', '0', '1964-10-09', 'S', 'NULL', 'M', 'aidan4@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '2209 Sequoia Drive', 'NULL', '154-555-0143', '2011-09-12', '0-1 Miles'], ['11542', '278', 'AW00011542', 'NULL', 'Alejandro', 'L', 'Tang', '0', '1979-09-07', 'S', 'NULL', 'M', 'alejandro30@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '5545 Clemson Court', 'NULL', '1 (11) 500 555-0124', '2013-05-11', '0-1 Miles'], ['11543', '201', 'AW00011543', 'NULL', 'Sheena', 'NULL', 'Chande', '0', '1973-08-16', 'M', 'NULL', 'F', 'sheena13@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '9, rue des Vendangeurs', 'NULL', '1 (11) 500 555-0178', '2013-12-21', '2-5 Miles'], ['11544', '127', 'AW00011544', 'NULL', 'Joel', 'A', 'Garcia', '0', '1979-05-04', 'M', 'NULL', 'M', 'joel14@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Essener Straße 8', 'NULL', '1 (11) 500 555-0159', '2013-08-28', '1-2 Miles'], ['11545', '200', 'AW00011545', 'NULL', 'Reginald', 'NULL', 'Dominguez', '0', '1973-09-22', 'M', 'NULL', 'M', 'reginald20@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '88, rue Georges-Clémenceau', 'NULL', '1 (11) 500 555-0137', '2013-07-13', '0-1 Miles'], ['11546', '189', 'AW00011546', 'NULL', 'Christine', 'NULL', 'Chande', '0', '1973-09-11', 'M', 'NULL', 'F', 'christine10@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '522bis, rue des Peupliers', 'NULL', '1 (11) 500 555-0179', '2012-12-02', '2-5 Miles'], ['11547', '201', 'AW00011547', 'NULL', 'Cindy', 'E', 'Sai', '0', '1979-03-05', 'M', 'NULL', 'F', 'cindy6@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '88, allée des Princes', 'NULL', '1 (11) 500 555-0111', '2012-12-25', '0-1 Miles'], ['11548', '230', 'AW00011548', 'NULL', 'Raymond', 'NULL', 'Sanchez', '0', '1974-04-11', 'S', 'NULL', 'M', 'raymond21@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2381 Tupelo Drive', 'NULL', '1 (11) 500 555-0160', '2011-12-02', '0-1 Miles'], ['11549', '257', 'AW00011549', 'NULL', 'Crystal', 'J', 'Liang', '0', '1979-09-03', 'M', 'NULL', 'F', 'crystal17@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5077 Bannock Ct.', 'NULL', '1 (11) 500 555-0120', '2011-12-21', '0-1 Miles'], ['11550', '263', 'AW00011550', 'NULL', 'Deb', 'NULL', 'Torres', '0', '1979-08-05', 'S', 'NULL', 'F', 'deb4@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7553 Harness Circle', 'NULL', '1 (11) 500 555-0125', '2012-01-20', '0-1 Miles'], ['11551', '215', 'AW00011551', 'NULL', 'Shannon', 'NULL', 'Alvarez', '0', '1978-05-21', 'S', 'NULL', 'M', 'shannon26@adventure-works.com', '10000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '268, avenue de l´Europe', 'NULL', '1 (11) 500 555-0159', '2013-03-01', '0-1 Miles'], ['11552', '135', 'AW00011552', 'NULL', 'Eddie', 'L', 'Rubio', '0', '1972-11-23', 'S', 'NULL', 'M', 'eddie21@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Heiderplatz 662', 'NULL', '1 (11) 500 555-0159', '2014-01-06', '1-2 Miles'], ['11553', '266', 'AW00011553', 'NULL', 'Sharon', 'D', 'Luo', '0', '1973-03-08', 'M', 'NULL', 'F', 'sharon12@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '6804 Coldwater Drive', 'NULL', '1 (11) 500 555-0118', '2013-08-22', '2-5 Miles'], ['11554', '224', 'AW00011554', 'NULL', 'Sydney', 'NULL', 'Simmons', '0', '1932-03-27', 'S', 'NULL', 'F', 'sydney37@adventure-works.com', '10000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '88, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0198', '2013-05-08', '0-1 Miles'], ['11555', '237', 'AW00011555', 'NULL', 'Alexandria', 'R', 'Henderson', '0', '1937-07-04', 'M', 'NULL', 'F', 'alexandria5@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '11, rue de la Cavalerie', 'NULL', '1 (11) 500 555-0182', '2013-05-08', '0-1 Miles'], ['11556', '271', 'AW00011556', 'NULL', 'Lucas', 'J', 'Evans', '0', '1972-11-10', 'M', 'NULL', 'M', 'lucas10@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '3663 A St.', 'NULL', '1 (11) 500 555-0153', '2013-12-21', '2-5 Miles'], ['11557', '278', 'AW00011557', 'NULL', 'Felicia', 'NULL', 'Ramos', '0', '1972-07-14', 'S', 'NULL', 'F', 'felicia16@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '9557 Steven Circle', 'NULL', '1 (11) 500 555-0191', '2013-08-08', '1-2 Miles'], ['11558', '276', 'AW00011558', 'NULL', 'Ivan', 'E', 'Malhotra', '0', '1973-02-18', 'S', 'NULL', 'M', 'ivan3@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '5086 Nottingham Place', 'NULL', '1 (11) 500 555-0198', '2013-11-30', '0-1 Miles'], ['11559', '161', 'AW00011559', 'NULL', 'Frederick', 'M', 'Subram', '0', '1978-12-12', 'S', 'NULL', 'M', 'frederick12@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Rotthäuser Weg 636', 'NULL', '1 (11) 500 555-0111', '2013-11-29', '0-1 Miles'], ['11560', '248', 'AW00011560', 'NULL', 'Whitney', 'NULL', 'Srini', '0', '1978-08-09', 'S', 'NULL', 'F', 'whitney7@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '1', '7341 Rockne Drive', 'NULL', '1 (11) 500 555-0115', '2013-12-03', '1-2 Miles'], ['11561', '159', 'AW00011561', 'NULL', 'Briana', 'NULL', 'Dominguez', '0', '1972-01-21', 'S', 'NULL', 'F', 'briana12@adventure-works.com', '10000.00', '5', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Hüttenstr 7005', 'NULL', '1 (11) 500 555-0166', '2012-02-19', '0-1 Miles'], ['11562', '158', 'AW00011562', 'NULL', 'Jarrod', 'NULL', 'Gonzalez', '0', '1971-10-17', 'M', 'NULL', 'M', 'jarrod17@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Nonnendamm 22', 'NULL', '1 (11) 500 555-0151', '2013-06-26', '2-5 Miles'], ['11563', '247', 'AW00011563', 'NULL', 'Cesar', 'NULL', 'Srini', '0', '1971-08-01', 'S', 'NULL', 'M', 'cesar7@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1547 Larkwood Ct.', 'NULL', '1 (11) 500 555-0189', '2013-07-05', '2-5 Miles'], ['11564', '146', 'AW00011564', 'NULL', 'Jorge', 'L', 'Liang', '0', '1972-01-09', 'S', 'NULL', 'M', 'jorge19@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Heiderweg 4982', 'NULL', '1 (11) 500 555-0161', '2012-02-16', '0-1 Miles'], ['11565', '229', 'AW00011565', 'NULL', 'Erik', 'S', 'Diaz', '0', '1971-12-30', 'S', 'NULL', 'M', 'erik4@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '4408 Trinity Ave.', 'NULL', '1 (11) 500 555-0157', '2013-09-08', '0-1 Miles'], ['11566', '226', 'AW00011566', 'NULL', 'April', 'L', 'Shan', '0', '1973-03-01', 'M', 'NULL', 'F', 'april8@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '401, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0172', '2013-01-28', '0-1 Miles'], ['11567', '165', 'AW00011567', 'NULL', 'Carla', 'NULL', 'Perez', '0', '1978-09-19', 'M', 'NULL', 'F', 'carla24@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Klara Straße 8463', 'NULL', '1 (11) 500 555-0146', '2013-03-15', '0-1 Miles'], ['11568', '236', 'AW00011568', 'NULL', 'Alexia', 'NULL', 'Foster', '0', '1972-04-21', 'S', 'NULL', 'F', 'alexia13@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '7246 Gloria Terr.', 'NULL', '1 (11) 500 555-0182', '2012-01-10', '0-1 Miles'], ['11569', '274', 'AW00011569', 'NULL', 'Troy', 'NULL', 'Malhotra', '0', '1977-05-06', 'M', 'NULL', 'M', 'troy5@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1629 Queens Road', 'NULL', '1 (11) 500 555-0125', '2013-11-20', '2-5 Miles'], ['11570', '124', 'AW00011570', 'NULL', 'Kristin', 'K', 'Andersen', '0', '1971-07-22', 'M', 'NULL', 'F', 'kristin14@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', 'Zimmerstr 137', 'NULL', '1 (11) 500 555-0199', '2012-03-25', '0-1 Miles'], ['11571', '183', 'AW00011571', 'NULL', 'Joel', 'NULL', 'Sai', '0', '1971-11-15', 'M', 'NULL', 'M', 'joel5@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '99, rue du Puits Dixme', 'NULL', '1 (11) 500 555-0144', '2012-12-12', '0-1 Miles'], ['11572', '186', 'AW00011572', 'NULL', 'Billy', 'NULL', 'Moreno', '0', '1977-03-11', 'M', 'NULL', 'M', 'billy8@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8733, rue Basse-du-Rocher', 'NULL', '1 (11) 500 555-0165', '2012-12-09', '0-1 Miles'], ['11573', '276', 'AW00011573', 'NULL', 'Meagan', 'W', 'Subram', '0', '1976-11-11', 'S', 'NULL', 'F', 'meagan13@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '7469 Paradise Ct.', 'NULL', '1 (11) 500 555-0144', '2013-07-27', '0-1 Miles'], ['11574', '274', 'AW00011574', 'NULL', 'Karla', 'V', 'Luo', '0', '1971-01-14', 'S', 'NULL', 'F', 'karla6@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '7390 Discovery Bay', 'NULL', '1 (11) 500 555-0139', '2013-03-15', '0-1 Miles'], ['11575', '243', 'AW00011575', 'NULL', 'Jackson', 'NULL', 'Campbell', '0', '1970-10-19', 'S', 'NULL', 'M', 'jackson37@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '2109 Mt. Washington', 'NULL', '1 (11) 500 555-0182', '2012-01-20', '0-1 Miles'], ['11576', '185', 'AW00011576', 'NULL', 'Micah', 'V', 'Zhu', '0', '1970-08-10', 'M', 'NULL', 'M', 'micah1@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '68, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0185', '2012-12-15', '0-1 Miles'], ['11577', '194', 'AW00011577', 'NULL', 'Janet', 'NULL', 'Serrano', '0', '1971-04-21', 'M', 'NULL', 'F', 'janet22@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6788 Edward Ave', 'NULL', '1 (11) 500 555-0135', '2012-12-21', '0-1 Miles'], ['11578', '222', 'AW00011578', 'NULL', 'Trisha', 'NULL', 'Huang', '0', '1970-05-08', 'S', 'NULL', 'F', 'trisha0@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '33, place de la République', 'NULL', '1 (11) 500 555-0128', '2012-11-29', '0-1 Miles'], ['11579', '272', 'AW00011579', 'NULL', 'Clayton', 'NULL', 'Beck', '0', '1981-02-13', 'S', 'NULL', 'M', 'clayton38@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '3626 N Ranchford Court', 'NULL', '1 (11) 500 555-0184', '2013-07-31', '0-1 Miles'], ['11580', '230', 'AW00011580', 'NULL', 'Melvin', 'NULL', 'Raje', '0', '1939-03-12', 'M', 'NULL', 'M', 'melvin12@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9113 Flamingo Dr.', 'NULL', '1 (11) 500 555-0167', '2013-04-16', '2-5 Miles'], ['11581', '193', 'AW00011581', 'NULL', 'Cindy', 'NULL', 'Jordan', '0', '1972-03-03', 'M', 'NULL', 'F', 'cindy2@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '987, rue de la Centenaire', 'NULL', '1 (11) 500 555-0161', '2013-02-11', '0-1 Miles'], ['11582', '222', 'AW00011582', 'NULL', 'Claudia', 'E', 'Ma', '0', '1974-04-09', 'S', 'NULL', 'F', 'claudia14@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '222, rue de Cambrai', 'NULL', '1 (11) 500 555-0167', '2012-12-07', '0-1 Miles'], ['11583', '207', 'AW00011583', 'NULL', 'Karla', 'M', 'Xu', '0', '1971-03-26', 'S', 'NULL', 'F', 'karla5@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '79, rue de la Comédie', 'NULL', '1 (11) 500 555-0160', '2012-12-21', '0-1 Miles'], ['11584', '171', 'AW00011584', 'NULL', 'Devin', 'J', 'Carter', '0', '1971-05-22', 'M', 'NULL', 'M', 'devin33@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Buergermeister-ulrich-str 5', 'NULL', '1 (11) 500 555-0183', '2013-09-16', '0-1 Miles'], ['11585', '231', 'AW00011585', 'NULL', 'Kari', 'L', 'Perez', '0', '1976-03-04', 'M', 'NULL', 'F', 'kari21@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6124 Clayton Road', 'NULL', '1 (11) 500 555-0192', '2014-01-10', '0-1 Miles'], ['11586', '278', 'AW00011586', 'NULL', 'Alberto', 'NULL', 'Romero', '0', '1971-06-14', 'M', 'NULL', 'M', 'alberto10@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2348 Fruitwood', 'NULL', '1 (11) 500 555-0133', '2013-10-28', '0-1 Miles'], ['11587', '184', 'AW00011587', 'NULL', 'Kevin', 'NULL', 'Bryant', '0', '1975-10-18', 'S', 'NULL', 'M', 'kevin20@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '21, rue du Puits Dixme', 'NULL', '1 (11) 500 555-0186', '2012-11-29', '0-1 Miles'], ['11588', '223', 'AW00011588', 'NULL', 'Candace', 'NULL', 'Mehta', '0', '1970-01-11', 'M', 'NULL', 'F', 'candace14@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '24, rue Royale', 'NULL', '1 (11) 500 555-0112', '2012-11-29', '0-1 Miles'], ['11589', '257', 'AW00011589', 'NULL', 'Ebony', 'NULL', 'Malhotra', '0', '1975-05-01', 'M', 'NULL', 'F', 'ebony4@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7959 Mt. Wilson Way', 'NULL', '1 (11) 500 555-0113', '2013-06-04', '0-1 Miles'], ['11590', '221', 'AW00011590', 'NULL', 'Erika', 'F', 'Diaz', '0', '1980-04-12', 'S', 'NULL', 'F', 'erika2@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Attaché de Presse', 'NULL', '1 (11) 500 555-0124', '2012-12-01', '0-1 Miles'], ['11591', '209', 'AW00011591', 'NULL', 'Stacey', 'W', 'Lu', '0', '1968-11-12', 'S', 'NULL', 'F', 'stacey12@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '67, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0157', '2011-01-11', '0-1 Miles'], ['11592', '198', 'AW00011592', 'NULL', 'Darrell', 'T', 'Raji', '0', '1984-03-03', 'S', 'NULL', 'M', 'darrell9@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '68, impasse Notre-Dame', 'NULL', '1 (11) 500 555-0178', '2011-01-11', '2-5 Miles'], ['11593', '183', 'AW00011593', 'NULL', 'Armando', 'NULL', 'Moreno', '0', '1982-09-22', 'S', 'NULL', 'M', 'armando6@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '121, rue de Cambrai', 'NULL', '1 (11) 500 555-0165', '2011-01-21', '2-5 Miles'], ['11594', '213', 'AW00011594', 'NULL', 'Corey', 'NULL', 'Goel', '0', '1985-05-03', 'S', 'NULL', 'M', 'corey16@adventure-works.com', '20000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', "11, rue de l'Espace De Schengen", 'NULL', '1 (11) 500 555-0111', '2013-08-17', '0-1 Miles'], ['11595', '117', 'AW00011595', 'NULL', 'Sebastian', 'NULL', 'Howard', '0', '1984-12-29', 'S', 'NULL', 'M', 'sebastian12@adventure-works.com', '20000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '3', 'Höhenstr 9419', 'NULL', '1 (11) 500 555-0112', '2013-12-30', '0-1 Miles'], ['11596', '267', 'AW00011596', 'NULL', 'Roger', 'E', 'Raje', '0', '1969-03-02', 'M', 'NULL', 'M', 'roger41@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9100 Main Street', 'NULL', '1 (11) 500 555-0154', '2013-10-01', '0-1 Miles'], ['11597', '225', 'AW00011597', 'NULL', 'Janelle', 'C', 'Chandra', '0', '1983-08-06', 'S', 'NULL', 'F', 'janelle2@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '25, avenue de la Gare', 'NULL', '1 (11) 500 555-0161', '2014-01-05', '0-1 Miles'], ['11598', '174', 'AW00011598', 'NULL', 'Meredith', 'B', 'Ruiz', '0', '1983-12-30', 'S', 'NULL', 'F', 'meredith24@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '3', 'Holzstr 6444', 'NULL', '1 (11) 500 555-0113', '2012-03-11', '0-1 Miles'], ['11599', '211', 'AW00011599', 'NULL', 'Melody', 'NULL', 'Diaz', '0', '1983-03-16', 'S', 'NULL', 'F', 'melody3@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Attaché de Presse', 'NULL', '1 (11) 500 555-0114', '2011-01-18', '1-2 Miles'], ['11600', '218', 'AW00011600', 'NULL', 'Linda', 'D', 'Rubio', '0', '1982-10-05', 'S', 'NULL', 'F', 'linda36@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '2616, rue de Linois', 'NULL', '1 (11) 500 555-0153', '2013-05-06', '2-5 Miles'], ['11601', '209', 'AW00011601', 'NULL', 'Ivan', 'S', 'Raman', '0', '1983-02-18', 'S', 'NULL', 'M', 'ivan8@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '335, rue Basse-du-Rocher', 'NULL', '1 (11) 500 555-0119', '2011-01-19', '2-5 Miles'], ['11602', '135', 'AW00011602', 'NULL', 'Larry', 'NULL', 'Gill', '0', '1982-10-11', 'S', 'NULL', 'M', 'larry16@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Am Gallberg 645', 'NULL', '1 (11) 500 555-0125', '2013-07-10', '2-5 Miles'], ['11603', '244', 'AW00011603', 'NULL', 'Geoffrey', 'NULL', 'Gonzalez', '0', '1982-08-06', 'S', 'NULL', 'M', 'geoffrey16@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '1538 Golden Meadow', 'NULL', '1 (11) 500 555-0131', '2012-01-18', '0-1 Miles'], ['11604', '275', 'AW00011604', 'NULL', 'Edgar', 'NULL', 'Sanchez', '0', '1982-12-01', 'S', 'NULL', 'M', 'edgar21@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6543 Jacobsen Street', 'NULL', '1 (11) 500 555-0117', '2012-01-03', '2-5 Miles'], ['11605', '176', 'AW00011605', 'NULL', 'Heidi', 'L', 'Subram', '0', '1982-05-20', 'S', 'NULL', 'F', 'heidi15@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Auf den Kuhlen Straße 9', 'NULL', '1 (11) 500 555-0183', '2012-03-08', '1-2 Miles'], ['11606', '212', 'AW00011606', 'NULL', 'Melody', 'NULL', 'Ramos', '0', '1986-01-30', 'S', 'NULL', 'F', 'melody17@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '2, rue de la Comédie', 'NULL', '1 (11) 500 555-0182', '2011-01-08', '0-1 Miles'], ['11607', '202', 'AW00011607', 'NULL', 'Clinton', 'H', 'Moreno', '0', '1986-05-05', 'S', 'NULL', 'M', 'clinton3@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '610, rue des Rosiers', 'NULL', '1 (11) 500 555-0152', '2011-01-19', '2-5 Miles'], ['11608', '217', 'AW00011608', 'NULL', 'Cesar', 'E', 'Madan', '0', '1981-09-01', 'S', 'NULL', 'M', 'cesar6@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '774, rue Descartes', 'NULL', '1 (11) 500 555-0157', '2013-12-13', '5-10 Miles'], ['11609', '277', 'AW00011609', 'NULL', 'Eugene', 'E', 'Ye', '0', '1981-12-24', 'S', 'NULL', 'M', 'eugene13@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '2877 Bounty Way', 'NULL', '1 (11) 500 555-0128', '2012-01-28', '0-1 Miles'], ['11610', '269', 'AW00011610', 'NULL', 'Blake', 'NULL', 'Collins', '0', '1980-10-20', 'S', 'NULL', 'M', 'blake47@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '4519 Lydia Lane', 'NULL', '1 (11) 500 555-0140', '2012-01-10', '0-1 Miles'], ['11611', '183', 'AW00011611', 'NULL', 'Ernest', 'NULL', 'Lin', '0', '1985-02-23', 'M', 'NULL', 'M', 'ernest7@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '65, rue Faubourg St Antoine', 'NULL', '1 (11) 500 555-0190', '2011-01-23', '2-5 Miles'], ['11612', '230', 'AW00011612', 'NULL', 'Keith', 'NULL', 'Andersen', '0', '1985-10-07', 'S', 'NULL', 'M', 'keith16@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '2411 Clark Creek Lane', 'NULL', '1 (11) 500 555-0182', '2012-02-02', '0-1 Miles'], ['11613', '158', 'AW00011613', 'NULL', 'Meredith', 'M', 'Prasad', '0', '1981-05-02', 'S', 'NULL', 'F', 'meredith8@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Hunzinger Allee 292', 'NULL', '1 (11) 500 555-0162', '2012-05-13', '0-1 Miles'], ['11614', '172', 'AW00011614', 'NULL', 'Katrina', 'M', 'Sharma', '0', '1981-02-13', 'S', 'NULL', 'F', 'katrina8@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Nollendorfplatz 62', 'NULL', '1 (11) 500 555-0115', '2012-05-10', '2-5 Miles'], ['11615', '242', 'AW00011615', 'NULL', 'Dwayne', 'H', 'Navarro', '0', '1981-05-20', 'M', 'NULL', 'M', 'dwayne9@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5717 Monterey Ave', 'NULL', '1 (11) 500 555-0163', '2012-02-22', '1-2 Miles'], ['11616', '260', 'AW00011616', 'NULL', 'Casey', 'NULL', 'Nath', '0', '1980-09-05', 'M', 'NULL', 'F', 'casey20@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3728 Chinquapin Ct.', 'NULL', '1 (11) 500 555-0130', '2012-02-03', '1-2 Miles'], ['11617', '326', 'AW00011617', 'NULL', 'Sean', 'NULL', 'Brooks', '0', '1964-10-01', 'S', 'NULL', 'M', 'sean8@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '6616 Baird Court', 'NULL', '294-555-0111', '2011-09-10', '0-1 Miles'], ['11618', '49', 'AW00011618', 'NULL', 'Brian', 'M', 'Ramirez', '0', '1964-10-21', 'M', 'NULL', 'M', 'brian19@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9145 Danesta Dr.', 'NULL', '167-555-0144', '2013-02-09', '1-2 Miles'], ['11619', '69', 'AW00011619', 'NULL', 'Sierra', 'J', 'Young', '0', '1978-10-29', 'S', 'NULL', 'F', 'sierra15@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3230 Virginia Hills', 'NULL', '410-555-0125', '2013-02-08', '1-2 Miles'], ['11620', '609', 'AW00011620', 'NULL', 'Megan', 'M', 'Rodriguez', '0', '1978-10-18', 'S', 'NULL', 'F', 'megan23@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7285 Roanwood Way', 'NULL', '156-555-0144', '2013-02-08', '0-1 Miles'], ['11621', '611', 'AW00011621', 'NULL', 'Leah', 'R', 'She', '0', '1978-08-19', 'S', 'NULL', 'F', 'leah19@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '8120 E Leland', 'NULL', '787-555-0163', '2013-08-01', '0-1 Miles'], ['11622', '623', 'AW00011622', 'NULL', 'Gabriel', 'NULL', 'Allen', '0', '1979-06-16', 'M', 'NULL', 'M', 'gabriel53@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8520 Waterview Place', 'NULL', '787-555-0146', '2013-04-08', '0-1 Miles'], ['11623', '322', 'AW00011623', 'NULL', 'Angela', 'NULL', 'Perry', '0', '1978-12-25', 'S', 'NULL', 'F', 'angela10@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4117 Missing Canyon Court', 'NULL', '198-555-0159', '2011-09-07', '1-2 Miles'], ['11624', '339', 'AW00011624', 'NULL', 'Ryan', 'C', 'Smith', '0', '1984-03-19', 'S', 'NULL', 'M', 'ryan39@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5462 El Pintado Rd.', 'NULL', '394-555-0168', '2011-09-21', '1-2 Miles'], ['11625', '352', 'AW00011625', 'NULL', 'Zachary', 'S', 'Moore', '0', '1978-07-19', 'M', 'NULL', 'M', 'zachary37@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9734 Jane Ct.', 'NULL', '209-555-0118', '2011-09-24', '1-2 Miles'], ['11626', '360', 'AW00011626', 'NULL', 'Destiny', 'NULL', 'Rogers', '0', '1978-12-12', 'M', 'NULL', 'F', 'destiny26@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3588 Vancouver Way', 'NULL', '262-555-0170', '2011-09-01', '0-1 Miles'], ['11627', '372', 'AW00011627', 'NULL', 'Dalton', 'NULL', 'Gray', '0', '1978-08-27', 'M', 'NULL', 'M', 'dalton76@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4833 Nottingham Pl.', 'NULL', '263-555-0144', '2013-08-27', '0-1 Miles'], ['11628', '298', 'AW00011628', 'NULL', 'Mariah', 'M', 'Wood', '0', '1977-11-14', 'S', 'NULL', 'F', 'mariah6@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4088 Mills Place', 'NULL', '662-555-0125', '2011-09-12', '1-2 Miles'], ['11629', '345', 'AW00011629', 'NULL', 'Isaiah', 'D', 'Wright', '0', '1976-08-07', 'S', 'NULL', 'M', 'isaiah45@adventure-works.com', '40000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '7501 Sandy Cove Lane', 'NULL', '525-555-0190', '2011-09-25', '10+ Miles'], ['11630', '637', 'AW00011630', 'NULL', 'Haley', 'NULL', 'Powell', '0', '1977-06-23', 'M', 'NULL', 'F', 'haley27@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '418 Alfred Avenue', 'NULL', '200-555-0198', '2011-09-21', '0-1 Miles'], ['11631', '52', 'AW00011631', 'NULL', 'Antonio', 'C', 'Bennett', '0', '1976-08-12', 'M', 'NULL', 'M', 'antonio1@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6200 Mt. Pisgah', 'NULL', '380-555-0192', '2013-02-07', '0-1 Miles'], ['11632', '51', 'AW00011632', 'NULL', 'Alexandra', 'D', 'Jenkins', '0', '1982-05-02', 'M', 'NULL', 'F', 'alexandra30@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '346 Sutcliffe Pl.', 'NULL', '664-555-0121', '2013-01-30', '1-2 Miles'], ['11633', '612', 'AW00011633', 'NULL', 'Thomas', 'NULL', 'Anderson', '0', '1977-11-23', 'M', 'NULL', 'M', 'thomas71@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8307 Monument Blvd.', 'NULL', '315-555-0121', '2013-11-13', '0-1 Miles'], ['11634', '633', 'AW00011634', 'NULL', 'Samuel', 'NULL', 'Collins', '0', '1977-12-10', 'M', 'NULL', 'M', 'samuel33@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2240 Inverness Dr.', 'NULL', '385-555-0179', '2013-03-11', '2-5 Miles'], ['11635', '300', 'AW00011635', 'NULL', 'Darrell', 'NULL', 'Chande', '0', '1983-08-11', 'M', 'NULL', 'M', 'darrell4@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3767 Banana Court', 'NULL', '455-555-0152', '2013-02-08', '2-5 Miles'], ['11636', '314', 'AW00011636', 'NULL', 'Kimberly', 'K', 'Cox', '0', '1978-06-21', 'S', 'NULL', 'F', 'kimberly14@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '752 Shuey Ave', 'NULL', '383-555-0177', '2013-09-11', '2-5 Miles'], ['11637', '338', 'AW00011637', 'NULL', 'Morgan', 'NULL', 'Hernandez', '0', '1983-08-11', 'M', 'NULL', 'F', 'morgan15@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3767 Benet Court', 'NULL', '379-555-0153', '2013-02-08', '2-5 Miles'], ['11638', '339', 'AW00011638', 'NULL', 'Antonio', 'E', 'Powell', '0', '1977-09-09', 'M', 'NULL', 'M', 'antonio8@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1328 Huntleigh Dr.', 'NULL', '966-555-0128', '2013-10-19', '0-1 Miles'], ['11639', '339', 'AW00011639', 'NULL', 'Angelica', 'NULL', 'Perry', '0', '1978-06-22', 'M', 'NULL', 'F', 'angelica7@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4059 High Street', 'NULL', '936-555-0157', '2013-11-09', '2-5 Miles'], ['11640', '51', 'AW00011640', 'NULL', 'Chloe', 'A', 'Wilson', '0', '1975-10-31', 'M', 'NULL', 'F', 'chloe40@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8885 Alta Vista', 'NULL', '748-555-0137', '2013-03-15', '2-5 Miles'], ['11641', '49', 'AW00011641', 'NULL', 'James', 'D', 'Chen', '0', '1976-02-09', 'M', 'NULL', 'M', 'james41@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3797 Baird Court', 'NULL', '143-555-0119', '2013-01-30', '0-1 Miles'], ['11642', '59', 'AW00011642', 'NULL', 'Morgan', 'T', 'Hughes', '0', '1976-06-24', 'M', 'NULL', 'F', 'morgan81@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3441 Wellington Ct.', 'NULL', '165-555-0182', '2013-02-09', '2-5 Miles'], ['11643', '612', 'AW00011643', 'NULL', 'Naomi', 'L', 'Munoz', '0', '1976-01-24', 'M', 'NULL', 'F', 'naomi7@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '316 Rose Ann Ave', 'NULL', '293-555-0147', '2013-04-21', '2-5 Miles'], ['11644', '634', 'AW00011644', 'NULL', 'Charles', 'S', 'Torres', '0', '1975-04-06', 'S', 'NULL', 'M', 'charles52@adventure-works.com', '40000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7347 Ready Road', 'NULL', '202-555-0114', '2013-05-17', '2-5 Miles'], ['11645', '548', 'AW00011645', 'NULL', 'Gabriella', 'M', 'Turner', '0', '1975-04-18', 'S', 'NULL', 'F', 'gabriella27@adventure-works.com', '40000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9976 Manila Avenue', 'NULL', '131-555-0142', '2013-11-10', '2-5 Miles'], ['11646', '612', 'AW00011646', 'NULL', 'Anna', 'A', 'Foster', '0', '1980-03-15', 'S', 'NULL', 'F', 'anna41@adventure-works.com', '40000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6580 Poor Ridge Court', 'NULL', '288-555-0189', '2013-07-15', '2-5 Miles'], ['11647', '49', 'AW00011647', 'NULL', 'Randy', 'J', 'Wu', '0', '1975-03-22', 'S', 'NULL', 'M', 'randy8@adventure-works.com', '40000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '589 Ashwood Dr.', 'NULL', '189-555-0124', '2013-02-15', '0-1 Miles'], ['11648', '307', 'AW00011648', 'NULL', 'Kevin', 'R', 'Scott', '0', '1980-04-12', 'S', 'NULL', 'M', 'kevin50@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4414 Kendree St.', 'NULL', '364-555-0111', '2013-08-28', '2-5 Miles'], ['11649', '345', 'AW00011649', 'NULL', 'Ian', 'M', 'White', '0', '1980-01-23', 'M', 'NULL', 'M', 'ian12@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6289 Duck Horn Court', 'NULL', '200-555-0138', '2013-04-05', '2-5 Miles'], ['11650', '325', 'AW00011650', 'NULL', 'Caleb', 'NULL', 'Hayes', '0', '1975-01-23', 'M', 'NULL', 'M', 'caleb19@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3824 White Dr', 'NULL', '243-555-0128', '2013-02-15', '0-1 Miles'], ['11651', '49', 'AW00011651', 'NULL', 'Patricia', 'NULL', 'Garcia', '0', '1982-12-13', 'M', 'NULL', 'F', 'patricia18@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2500 Ward Court', 'NULL', '501-555-0174', '2013-03-04', '2-5 Miles'], ['11652', '68', 'AW00011652', 'NULL', 'Samuel', 'V', 'Russell', '0', '1982-05-01', 'M', 'NULL', 'M', 'samuel19@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9668 Fieldbrook Pl', 'NULL', '828-555-0112', '2013-06-26', '0-1 Miles'], ['11653', '543', 'AW00011653', 'NULL', 'Sydney', 'NULL', 'Peterson', '0', '1982-06-04', 'S', 'NULL', 'F', 'sydney15@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3152 Woodcrest Drive', 'NULL', '848-555-0130', '2013-04-16', '2-5 Miles'], ['11654', '298', 'AW00011654', 'NULL', 'Ariana', 'C', 'Sanchez', '0', '1977-03-18', 'M', 'NULL', 'F', 'ariana22@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5278 Mill Road', 'NULL', '435-555-0160', '2011-10-18', '2-5 Miles'], ['11655', '311', 'AW00011655', 'NULL', 'Tamara', 'NULL', 'Sharma', '0', '1982-03-28', 'S', 'NULL', 'F', 'tamara21@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4221 Birch Bark Road', 'NULL', '164-555-0166', '2013-09-29', '2-5 Miles'], ['11656', '329', 'AW00011656', 'NULL', 'Katelyn', 'K', 'Perez', '0', '1977-03-19', 'M', 'NULL', 'F', 'katelyn35@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7494 Sunset Circle', 'NULL', '864-555-0116', '2013-09-11', '2-5 Miles'], ['11657', '347', 'AW00011657', 'NULL', 'Megan', 'A', 'Cox', '0', '1976-10-31', 'M', 'NULL', 'F', 'megan39@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9825 Coralie Drive', 'NULL', '466-555-0163', '2013-05-25', '2-5 Miles'], ['11658', '348', 'AW00011658', 'NULL', 'Robert', 'NULL', 'Mitchell', '0', '1985-08-03', 'M', 'NULL', 'M', 'robert53@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9350 Mt. Hood Circle', 'NULL', '132-555-0112', '2013-04-23', '0-1 Miles'], ['11659', '66', 'AW00011659', 'NULL', 'Miguel', 'NULL', 'Adams', '0', '1974-10-20', 'S', 'NULL', 'M', 'miguel32@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4912 Mellowood Street', 'NULL', '910-555-0185', '2013-05-09', '2-5 Miles'], ['11660', '60', 'AW00011660', 'NULL', 'Miranda', 'NULL', 'Gonzales', '0', '1980-01-19', 'M', 'NULL', 'F', 'miranda17@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2458 Blocking Ct.', 'NULL', '343-555-0197', '2013-05-08', '2-5 Miles'], ['11661', '49', 'AW00011661', 'NULL', 'Jeremiah', 'S', 'James', '0', '1981-01-03', 'S', 'NULL', 'M', 'jeremiah39@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4909 Vine Lane', 'NULL', '716-555-0117', '2013-04-06', '2-5 Miles'], ['11662', '545', 'AW00011662', 'NULL', 'Ethan', 'NULL', 'Kumar', '0', '1976-01-01', 'S', 'NULL', 'M', 'ethan24@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '447 Barberry Court', 'NULL', '214-555-0118', '2013-05-06', '2-5 Miles'], ['11663', '644', 'AW00011663', 'NULL', 'Seth', 'A', 'Williams', '0', '1975-08-25', 'M', 'NULL', 'M', 'seth2@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3796 Peachwillow', 'NULL', '878-555-0119', '2011-10-28', '0-1 Miles'], ['11664', '302', 'AW00011664', 'NULL', 'Alyssa', 'L', 'Morgan', '0', '1975-08-09', 'S', 'NULL', 'F', 'alyssa30@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6751 Yosemite Ct.', 'NULL', '144-555-0113', '2011-10-27', '2-5 Miles'], ['11665', '307', 'AW00011665', 'NULL', 'Janet', 'NULL', 'Dominguez', '0', '1976-06-11', 'M', 'NULL', 'F', 'janet18@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8914 Jam Way', 'NULL', '142-555-0139', '2011-10-13', '2-5 Miles'], ['11666', '374', 'AW00011666', 'NULL', 'Angel', 'NULL', 'Baker', '0', '1981-12-13', 'M', 'NULL', 'M', 'angel30@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7119 Iowa Drive', 'NULL', '616-555-0161', '2011-10-17', '0-1 Miles'], ['11667', '644', 'AW00011667', 'NULL', 'Blake', 'S', 'Moore', '0', '1972-12-18', 'M', 'NULL', 'M', 'blake7@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1245 Clay Road', 'NULL', '485-555-0144', '2013-07-04', '2-5 Miles'], ['11668', '300', 'AW00011668', 'NULL', 'Jada', 'C', 'Collins', '0', '1984-03-02', 'S', 'NULL', 'F', 'jada15@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1978 Medina Dr.', 'NULL', '169-555-0194', '2013-12-16', '2-5 Miles'], ['11669', '642', 'AW00011669', 'NULL', 'Isabella', 'NULL', 'Simmons', '0', '1978-10-17', 'S', 'NULL', 'F', 'isabella25@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3495 Virginia Lane', 'NULL', '424-555-0125', '2013-08-18', '2-5 Miles'], ['11670', '326', 'AW00011670', 'NULL', 'Jacqueline', 'NULL', 'Perry', '0', '1973-04-15', 'S', 'NULL', 'F', 'jacqueline8@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2326 MountainAire Parkway', 'NULL', '172-555-0136', '2013-04-13', '2-5 Miles'], ['11671', '316', 'AW00011671', 'NULL', 'Jessica', 'L', 'Brown', '0', '1971-11-15', 'S', 'NULL', 'F', 'jessica51@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '8874 Dallis Drive', 'NULL', '895-555-0138', '2011-10-21', '0-1 Miles'], ['11672', '300', 'AW00011672', 'NULL', 'Chad', 'C', 'Jai', '0', '1972-03-20', 'M', 'NULL', 'M', 'chad13@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1386 Fillet Ave.', 'NULL', '355-555-0162', '2013-07-25', '2-5 Miles'], ['11673', '612', 'AW00011673', 'NULL', 'Susan', 'C', 'Ye', '0', '1977-02-03', 'S', 'NULL', 'F', 'susan19@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2093 Dubhe Court', 'NULL', '268-555-0189', '2013-01-30', '0-1 Miles'], ['11674', '385', 'AW00011674', 'NULL', 'Morgan', 'B', 'Rogers', '0', '1972-02-15', 'M', 'NULL', 'F', 'morgan49@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1168 Escobar', 'NULL', '405-555-0116', '2013-05-30', '2-5 Miles'], ['11675', '616', 'AW00011675', 'NULL', 'Devin', 'J', 'Martinez', '0', '1977-01-29', 'S', 'NULL', 'M', 'devin16@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5571 Crawford', 'NULL', '594-555-0155', '2011-10-25', '2-5 Miles'], ['11676', '475', 'AW00011676', 'NULL', 'Alan', 'NULL', 'Hu', '0', '1971-08-13', 'M', 'NULL', 'M', 'alan24@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '970 Pheasant Circle', 'NULL', '723-555-0187', '2013-08-20', '0-1 Miles'], ['11677', '50', 'AW00011677', 'NULL', 'Charles', 'NULL', 'Walker', '0', '1980-10-10', 'S', 'NULL', 'M', 'charles27@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '189 Richview Dr', 'NULL', '162-555-0110', '2013-04-05', '2-5 Miles'], ['11678', '654', 'AW00011678', 'NULL', 'Johnny', 'A', 'Chavez', '0', '1974-07-28', 'M', 'NULL', 'M', 'johnny16@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4778 Geary Road', 'NULL', '895-555-0161', '2011-10-10', '2-5 Miles'], ['11679', '633', 'AW00011679', 'NULL', 'Dalton', 'W', 'Richardson', '0', '1974-11-05', 'M', 'NULL', 'M', 'dalton80@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '6453 Castle Hill Road', 'NULL', '385-555-0179', '2013-10-13', '2-5 Miles'], ['11680', '634', 'AW00011680', 'NULL', 'Kaylee', 'E', 'Nelson', '0', '1975-03-04', 'M', 'NULL', 'F', 'kaylee31@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '7755 West Road', 'NULL', '139-555-0186', '2013-09-01', '0-1 Miles'], ['11681', '641', 'AW00011681', 'NULL', 'Abigail', 'E', 'Jones', '0', '1975-02-04', 'M', 'NULL', 'F', 'abigail50@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '1433 C Mt. Hood Crest', 'NULL', '889-555-0151', '2013-03-07', '2-5 Miles'], ['11682', '642', 'AW00011682', 'NULL', 'Kaitlyn', 'NULL', 'Hall', '0', '1980-03-12', 'M', 'NULL', 'F', 'kaitlyn46@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '2', '5715 5th Ave.', 'NULL', '209-555-0173', '2013-09-05', '0-1 Miles'], ['11683', '316', 'AW00011683', 'NULL', 'Greg', 'M', 'Taylor', '0', '1974-07-05', 'M', 'NULL', 'M', 'greg10@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1052 Stanford Street', 'NULL', '959-555-0135', '2011-10-05', '0-1 Miles'], ['11684', '634', 'AW00011684', 'NULL', 'Devin', 'NULL', 'Parker', '0', '1971-03-31', 'S', 'NULL', 'M', 'devin40@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4024 Calhoun Court', 'NULL', '897-555-0155', '2013-07-01', '2-5 Miles'], ['11685', '545', 'AW00011685', 'NULL', 'Jose', 'A', 'Griffin', '0', '1970-08-07', 'M', 'NULL', 'M', 'jose15@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4769 Book Ct', 'NULL', '789-555-0114', '2013-03-11', '0-1 Miles'], ['11686', '325', 'AW00011686', 'NULL', 'Luke', 'C', 'Edwards', '0', '1976-04-09', 'S', 'NULL', 'M', 'luke33@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4895 Hickory Drive', 'NULL', '815-555-0192', '2013-03-08', '2-5 Miles'], ['11687', '331', 'AW00011687', 'NULL', 'Cody', 'NULL', 'Torres', '0', '1976-07-09', 'S', 'NULL', 'M', 'cody5@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3889 Castle Hill Road', 'NULL', '269-555-0120', '2013-04-12', '0-1 Miles'], ['11688', '638', 'AW00011688', 'NULL', 'Victoria', 'A', 'Morris', '0', '1976-12-21', 'S', 'NULL', 'F', 'victoria26@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7675 Moss Hollow Court', 'NULL', '178-555-0156', '2011-10-02', '2-5 Miles'], ['11689', '614', 'AW00011689', 'NULL', 'Ian', 'D', 'Diaz', '0', '1971-03-06', 'M', 'NULL', 'M', 'ian62@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4091 Hill Meadow Pl.', 'NULL', '136-555-0185', '2013-08-26', '2-5 Miles'], ['11690', '632', 'AW00011690', 'NULL', 'Caroline', 'NULL', 'Butler', '0', '1976-01-10', 'M', 'NULL', 'F', 'caroline15@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5629 Seagull Court', 'NULL', '101-555-0110', '2011-10-25', '2-5 Miles'], ['11691', '329', 'AW00011691', 'NULL', 'Kaitlyn', 'NULL', 'Wilson', '0', '1974-12-30', 'S', 'NULL', 'F', 'kaitlyn29@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '24 Roslyn Drive', 'NULL', '968-555-0196', '2013-02-08', '2-5 Miles'], ['11692', '301', 'AW00011692', 'NULL', 'Caleb', 'A', 'Gonzales', '0', '1969-12-17', 'M', 'NULL', 'M', 'caleb14@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '2150 Pershing Dr', 'NULL', '475-555-0114', '2013-07-07', '0-1 Miles'], ['11693', '50', 'AW00011693', 'NULL', 'Hailey', 'W', 'Diaz', '0', '1975-09-21', 'S', 'NULL', 'F', 'hailey42@adventure-works.com', '50000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9063 Vista Aven.', 'NULL', '835-555-0168', '2013-01-28', '0-1 Miles'], ['11694', '310', 'AW00011694', 'NULL', 'Jonathon', 'L', 'Ortega', '0', '1969-09-21', 'M', 'NULL', 'M', 'jonathon16@adventure-works.com', '50000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '4', '4453 Bannock Ct.', 'NULL', '733-555-0157', '2013-04-11', '10+ Miles'], ['11695', '300', 'AW00011695', 'NULL', 'Logan', 'NULL', 'Campbell', '0', '1969-07-10', 'M', 'NULL', 'M', 'logan33@adventure-works.com', '50000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '8910 Hilltop Road', 'NULL', '164-555-0159', '2013-04-09', '5-10 Miles'], ['11696', '642', 'AW00011696', 'NULL', 'Mackenzie', 'T', 'Campbell', '0', '1975-04-02', 'S', 'NULL', 'F', 'mackenzie29@adventure-works.com', '50000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '5905 Hawthorne Dr.', 'NULL', '786-555-0184', '2011-10-01', '5-10 Miles'], ['11697', '348', 'AW00011697', 'NULL', 'Eduardo', 'NULL', 'Lee', '0', '1975-06-21', 'M', 'NULL', 'M', 'eduardo21@adventure-works.com', '50000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '265 Jeff Ct', 'NULL', '993-555-0176', '2013-08-07', '0-1 Miles'], ['11698', '53', 'AW00011698', 'NULL', 'Jackson', 'NULL', 'Wright', '0', '1975-11-22', 'M', 'NULL', 'M', 'jackson51@adventure-works.com', '50000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7796 Adobe Drive', 'NULL', '112-555-0181', '2013-03-31', '2-5 Miles'], ['11699', '644', 'AW00011699', 'NULL', 'Chase', 'NULL', 'Peterson', '0', '1968-09-12', 'S', 'NULL', 'M', 'chase5@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4315 Glenside Ct.', 'NULL', '369-555-0167', '2013-05-29', '0-1 Miles'], ['11700', '385', 'AW00011700', 'NULL', 'Xavier', 'NULL', 'Richardson', '0', '1969-05-24', 'S', 'NULL', 'M', 'xavier76@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '3249 E Leland', 'NULL', '578-555-0132', '2013-02-02', '0-1 Miles'], ['11701', '347', 'AW00011701', 'NULL', 'David', 'NULL', 'Hayes', '0', '1985-08-16', 'M', 'NULL', 'M', 'david56@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '3570 Book Ct', 'NULL', '872-555-0191', '2013-04-24', '2-5 Miles'], ['11702', '302', 'AW00011702', 'NULL', 'Jenny', 'S', 'Zhou', '0', '1974-10-13', 'S', 'NULL', 'F', 'jenny11@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '2107 Cardinal', 'NULL', '763-555-0124', '2013-05-17', '0-1 Miles'], ['11703', '331', 'AW00011703', 'NULL', 'Kaylee', 'NULL', 'Baker', '0', '1973-12-22', 'S', 'NULL', 'F', 'kaylee39@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4668 Chilpancingo Park', 'NULL', '609-555-0179', '2013-02-13', '0-1 Miles'], ['11704', '368', 'AW00011704', 'NULL', 'Evan', 'G', 'Hernandez', '0', '1973-11-29', 'S', 'NULL', 'M', 'evan45@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6337 Margo Drive', 'NULL', '592-555-0143', '2013-07-07', '2-5 Miles'], ['11705', '385', 'AW00011705', 'NULL', 'Brooke', 'NULL', 'Richardson', '0', '1979-05-18', 'S', 'NULL', 'F', 'brooke9@adventure-works.com', '60000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4171 Miller Avenue', 'NULL', '752-555-0155', '2011-10-28', '2-5 Miles'], ['11706', '302', 'AW00011706', 'NULL', 'Blake', 'M', 'Perez', '0', '1968-08-13', 'M', 'NULL', 'M', 'blake39@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '3064 Fern Leaf Lane', 'NULL', '146-555-0191', '2013-03-08', '2-5 Miles'], ['11707', '385', 'AW00011707', 'NULL', 'Natalie', 'NULL', 'Cook', '0', '1969-06-20', 'S', 'NULL', 'F', 'natalie5@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '1064 William Way', 'NULL', '468-555-0193', '2011-10-10', '0-1 Miles'], ['11708', '336', 'AW00011708', 'NULL', 'Elizabeth', 'NULL', 'Weisman', '0', '1974-09-15', 'S', 'NULL', 'F', 'elizabeth6@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '7085 Valley Run', 'NULL', '117-555-0118', '2011-10-25', '2-5 Miles'], ['11709', '69', 'AW00011709', 'NULL', 'Hailey', 'NULL', 'Collins', '0', '1968-08-18', 'S', 'NULL', 'F', 'hailey45@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '5609 Gary Drive', 'NULL', '394-555-0185', '2013-03-11', '0-1 Miles'], ['11710', '331', 'AW00011710', 'NULL', 'Zoe', 'R', 'Ramirez', '0', '1967-09-17', 'M', 'NULL', 'F', 'zoe6@adventure-works.com', '40000.00', '3', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8085 Grasswood Ct', 'NULL', '712-555-0144', '2013-11-23', '2-5 Miles'], ['11711', '54', 'AW00011711', 'NULL', 'Daniel', 'NULL', 'Davis', '0', '1973-12-04', 'S', 'NULL', 'M', 'daniel23@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '263 La Orinda Pl.', 'NULL', '217-555-0147', '2013-02-07', '0-1 Miles'], ['11712', '50', 'AW00011712', 'NULL', 'Shelby', 'NULL', 'Rogers', '0', '1968-05-02', 'M', 'NULL', 'F', 'shelby19@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '16 White Pl.', 'NULL', '187-555-0139', '2013-02-04', '2-5 Miles'], ['11713', '623', 'AW00011713', 'NULL', 'Kyle', 'C', 'Zhang', '0', '1967-09-17', 'M', 'NULL', 'M', 'kyle19@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4417 W. Watson Court', 'NULL', '793-555-0118', '2013-07-07', '0-1 Miles'], ['11714', '359', 'AW00011714', 'NULL', 'Alexandria', 'E', 'Long', '0', '1968-04-16', 'M', 'NULL', 'F', 'alexandria9@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5543 Hamilton Ave.', 'NULL', '676-555-0172', '2013-02-18', '2-5 Miles'], ['11715', '361', 'AW00011715', 'NULL', 'Chloe', 'F', 'Robinson', '0', '1968-03-20', 'M', 'NULL', 'F', 'chloe28@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6779 Willcrest Circle', 'NULL', '570-555-0117', '2013-12-26', '2-5 Miles'], ['11716', '314', 'AW00011716', 'NULL', 'Evan', 'NULL', 'Kelly', '0', '1967-04-20', 'S', 'NULL', 'M', 'evan2@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9531 Lancaster', 'NULL', '222-555-0139', '2013-05-31', '2-5 Miles'], ['11717', '539', 'AW00011717', 'NULL', 'Marcus', 'J', 'Jones', '0', '1972-08-29', 'M', 'NULL', 'M', 'marcus3@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4836 Marina', 'NULL', '465-555-0162', '2013-05-25', '0-1 Miles'], ['11718', '546', 'AW00011718', 'NULL', 'Sarah', 'T', 'Jones', '0', '1972-11-10', 'M', 'NULL', 'F', 'sarah5@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2935 Pine Creek Way', 'NULL', '585-555-0177', '2013-03-06', '0-1 Miles'], ['11719', '49', 'AW00011719', 'NULL', 'Blake', 'P', 'Green', '0', '1971-05-05', 'M', 'NULL', 'M', 'blake32@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2850 D Bel Air Dr', 'NULL', '397-555-0128', '2013-04-26', '2-5 Miles'], ['11720', '359', 'AW00011720', 'NULL', 'Morgan', 'P', 'Morris', '0', '1965-09-23', 'M', 'NULL', 'F', 'morgan48@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9671 Leewood Place', 'NULL', '178-555-0115', '2013-05-17', '2-5 Miles'], ['11721', '336', 'AW00011721', 'NULL', 'Jennifer', 'A', 'Alexander', '0', '1971-01-18', 'M', 'NULL', 'F', 'jennifer92@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4195 San Paolo', 'NULL', '623-555-0122', '2013-06-15', '0-1 Miles'], ['11722', '609', 'AW00011722', 'NULL', 'Julian', 'S', 'Hughes', '0', '1965-12-30', 'M', 'NULL', 'M', 'julian13@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4408 Trinity Ave.', 'NULL', '301-555-0114', '2013-07-30', '0-1 Miles'], ['11723', '64', 'AW00011723', 'NULL', 'Luke', 'A', 'Coleman', '0', '1973-02-17', 'S', 'NULL', 'M', 'luke24@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '613 Glen Wood Drive', 'NULL', '959-555-0119', '2013-01-31', '2-5 Miles'], ['11724', '65', 'AW00011724', 'NULL', 'Jason', 'NULL', 'Carter', '0', '1972-10-12', 'S', 'NULL', 'M', 'jason39@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4848 Azalea Ave.', 'NULL', '234-555-0170', '2013-02-05', '2-5 Miles'], ['11725', '612', 'AW00011725', 'NULL', 'Jose', 'K', 'Li', '0', '1973-03-16', 'S', 'NULL', 'M', 'jose20@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '2033 Woodbury Place', 'NULL', '145-555-0188', '2013-04-01', '0-1 Miles'], ['11726', '612', 'AW00011726', 'NULL', 'Micah', 'R', 'Liang', '0', '1973-01-13', 'S', 'NULL', 'M', 'micah4@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4685 York Dr', 'NULL', '843-555-0120', '2013-10-10', '2-5 Miles'], ['11727', '343', 'AW00011727', 'NULL', 'Benjamin', 'NULL', 'Taylor', '0', '1973-01-05', 'S', 'NULL', 'M', 'benjamin43@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '2078 Jennifer Way', 'NULL', '571-555-0135', '2011-10-12', '0-1 Miles'], ['11728', '553', 'AW00011728', 'NULL', 'Logan', 'H', 'White', '0', '1965-07-06', 'M', 'NULL', 'M', 'logan64@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5087 Bonita Ave.', 'NULL', '710-555-0132', '2013-06-11', '2-5 Miles'], ['11729', '623', 'AW00011729', 'NULL', 'Caleb', 'NULL', 'Campbell', '0', '1971-05-03', 'M', 'NULL', 'M', 'caleb36@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1895 San Carlos Ave.', 'NULL', '459-555-0187', '2013-07-27', '2-5 Miles'], ['11730', '634', 'AW00011730', 'NULL', 'Emma', 'NULL', 'Torres', '0', '1966-04-01', 'M', 'NULL', 'F', 'emma40@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6062 Mota Dr.', 'NULL', '192-555-0182', '2013-05-11', '2-5 Miles'], ['11731', '302', 'AW00011731', 'NULL', 'Tanya', 'H', 'Gill', '0', '1966-02-16', 'M', 'NULL', 'F', 'tanya10@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8850 Thunderbird Drive', 'NULL', '742-555-0111', '2013-03-16', '2-5 Miles'], ['11732', '525', 'AW00011732', 'NULL', 'Erick', 'NULL', 'Sanchez', '0', '1970-02-04', 'M', 'NULL', 'M', 'erick20@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '664 Book Pl', 'NULL', '827-555-0145', '2013-06-09', '2-5 Miles'], ['11733', '311', 'AW00011733', 'NULL', 'Kristi', 'J', 'Schmidt', '0', '1970-07-23', 'M', 'NULL', 'F', 'kristi27@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1536 Camino Verde Ct.', 'NULL', '995-555-0114', '2014-01-01', '2-5 Miles'], ['11734', '312', 'AW00011734', 'NULL', 'Omar', 'J', 'Chen', '0', '1970-08-21', 'M', 'NULL', 'M', 'omar2@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3181 Hacienda', 'NULL', '938-555-0117', '2013-06-21', '0-1 Miles'], ['11735', '626', 'AW00011735', 'NULL', 'Sydney', 'K', 'Gray', '0', '1964-07-21', 'M', 'NULL', 'F', 'sydney16@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1229 Apollo Way', 'NULL', '637-555-0114', '2013-02-24', '0-1 Miles'], ['11736', '322', 'AW00011736', 'NULL', 'Sebastian', 'NULL', 'Sanchez', '0', '1970-09-21', 'M', 'NULL', 'M', 'sebastian16@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '7706 California St.', 'NULL', '404-555-0117', '2013-10-17', '0-1 Miles'], ['11737', '355', 'AW00011737', 'NULL', 'Megan', 'A', 'Martin', '0', '1970-02-04', 'M', 'NULL', 'F', 'megan17@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '8243 Gilardy Drive', 'NULL', '612-555-0171', '2013-02-14', '2-5 Miles'], ['11738', '59', 'AW00011738', 'NULL', 'Elijah', 'NULL', 'Alexander', '0', '1970-10-05', 'M', 'NULL', 'M', 'elijah20@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '6933 Sutton Circle', 'NULL', '100-555-0155', '2013-02-02', '2-5 Miles'], ['11739', '65', 'AW00011739', 'NULL', 'Aaron', 'L', 'King', '0', '1964-11-10', 'M', 'NULL', 'M', 'aaron51@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '2243 W St.', 'NULL', '600-555-0195', '2013-01-13', '0-1 Miles'], ['11740', '68', 'AW00011740', 'NULL', 'Jan', 'M', 'Hall', '0', '1964-10-21', 'M', 'NULL', 'F', 'jan18@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '3', '5793 West Road', 'NULL', '118-555-0131', '2013-03-07', '10+ Miles'], ['11741', '307', 'AW00011741', 'NULL', 'Tamara', 'L', 'Chander', '0', '1965-01-22', 'M', 'NULL', 'F', 'tamara27@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6344 Dartmouth Way', 'NULL', '112-555-0164', '2011-10-15', '0-1 Miles'], ['11742', '355', 'AW00011742', 'NULL', 'Edward', 'NULL', 'Lewis', '0', '1964-05-01', 'S', 'NULL', 'M', 'edward43@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3508 Canning Road', 'NULL', '936-555-0189', '2011-10-03', '0-1 Miles'], ['11743', '372', 'AW00011743', 'NULL', 'Chase', 'E', 'Kelly', '0', '1974-09-09', 'M', 'NULL', 'M', 'chase3@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5940 Dleta Road', 'NULL', '153-555-0118', '2011-10-25', '0-1 Miles'], ['11744', '372', 'AW00011744', 'NULL', 'Stephanie', 'D', 'Campbell', '0', '1964-03-06', 'M', 'NULL', 'F', 'stephanie54@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6339 E. 108th Street', 'NULL', '712-555-0117', '2013-04-13', '2-5 Miles'], ['11745', '644', 'AW00011745', 'NULL', 'Allison', 'NULL', 'Gonzalez', '0', '1964-04-11', 'M', 'NULL', 'F', 'allison31@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3345 Macaroon Drive', 'NULL', '728-555-0144', '2011-10-10', '0-1 Miles'], ['11746', '642', 'AW00011746', 'NULL', 'Seth', 'NULL', 'Brooks', '0', '1964-05-30', 'S', 'NULL', 'M', 'seth74@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '733 Eaker Way', 'NULL', '771-555-0118', '2013-01-28', '2-5 Miles'], ['11747', '614', 'AW00011747', 'NULL', 'Destiny', 'NULL', 'Davis', '0', '1963-08-09', 'M', 'NULL', 'F', 'destiny5@adventure-works.com', '70000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '7121 Oakleaf Ct.', 'NULL', '251-555-0153', '2013-08-07', '2-5 Miles'], ['11748', '69', 'AW00011748', 'NULL', 'Blake', 'NULL', 'Hill', '0', '1964-01-15', 'M', 'NULL', 'M', 'blake30@adventure-works.com', '70000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '1315 Norse Drive', 'NULL', '171-555-0174', '2013-06-07', '0-1 Miles'], ['11749', '2', 'AW00011749', 'NULL', 'Eduardo', 'C', 'Jackson', '0', '1980-09-09', 'M', 'NULL', 'M', 'eduardo10@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '5524 Virgil St', 'NULL', '1 (11) 500 555-0114', '2013-04-08', '0-1 Miles'], ['11750', '10', 'AW00011750', 'NULL', 'Latoya', 'A', 'She', '0', '1984-09-17', 'M', 'NULL', 'F', 'latoya0@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2681 Black Walnut Ct.', 'NULL', '1 (11) 500 555-0166', '2011-07-14', '0-1 Miles'], ['11751', '36', 'AW00011751', 'NULL', 'Victoria', 'NULL', 'Gonzales', '0', '1976-01-14', 'M', 'NULL', 'F', 'victoria63@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '1872 Walnut Avenue', 'NULL', '1 (11) 500 555-0176', '2011-07-08', '0-1 Miles'], ['11752', '4', 'AW00011752', 'NULL', 'Lauren', 'NULL', 'Bryant', '0', '1981-05-03', 'M', 'NULL', 'F', 'lauren64@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '7551 Santa Lucia', 'NULL', '1 (11) 500 555-0156', '2013-02-27', '0-1 Miles'], ['11753', '2', 'AW00011753', 'NULL', 'Felicia', 'J', 'Ortega', '0', '1975-09-15', 'M', 'NULL', 'F', 'felicia20@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '452 Rain Drop Circle', 'NULL', '1 (11) 500 555-0185', '2013-04-19', '0-1 Miles'], ['11754', '7', 'AW00011754', 'NULL', 'Janet', 'L', 'Ortega', '0', '1976-01-05', 'M', 'NULL', 'F', 'janet27@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '4921 Oakwood Circle', 'NULL', '1 (11) 500 555-0182', '2011-07-16', '0-1 Miles'], ['11755', '25', 'AW00011755', 'NULL', 'Willie', 'J', 'Pal', '0', '1973-11-12', 'M', 'NULL', 'M', 'willie31@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9893 Hastings Dr', 'NULL', '1 (11) 500 555-0164', '2013-05-31', '2-5 Miles'], ['11756', '17', 'AW00011756', 'NULL', 'Linda', 'C', 'Ortega', '0', '1974-03-13', 'S', 'NULL', 'F', 'linda37@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3544 Brush Creek Drive', 'NULL', '1 (11) 500 555-0150', '2011-07-28', '0-1 Miles'], ['11757', '33', 'AW00011757', 'NULL', 'Vincent', 'L', 'Cai', '0', '1979-05-11', 'M', 'NULL', 'M', 'vincent21@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '5917 Panoramic Avenue', 'NULL', '1 (11) 500 555-0116', '2013-02-23', '10+ Miles'], ['11758', '3', 'AW00011758', 'NULL', 'Colin', 'NULL', 'Yuan', '0', '1979-12-19', 'M', 'NULL', 'M', 'colin30@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '1064 William Way', 'NULL', '1 (11) 500 555-0170', '2013-03-30', '10+ Miles'], ['11759', '28', 'AW00011759', 'NULL', 'Dawn', 'L', 'Nath', '0', '1980-11-18', 'M', 'NULL', 'F', 'dawn42@adventure-works.com', '110000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '6969 Eaker Way', 'NULL', '1 (11) 500 555-0193', '2011-07-10', '0-1 Miles'], ['11760', '29', 'AW00011760', 'NULL', 'Melody', 'R', 'Moreno', '0', '1973-04-25', 'M', 'NULL', 'F', 'melody7@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '6312 San Ramon Road', 'NULL', '1 (11) 500 555-0163', '2013-03-31', '10+ Miles'], ['11761', '31', 'AW00011761', 'NULL', 'Edgar', 'NULL', 'Mehta', '0', '1972-10-16', 'S', 'NULL', 'M', 'edgar15@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '4173 Willow Pass Road', 'NULL', '1 (11) 500 555-0180', '2011-08-05', '10+ Miles'], ['11762', '19', 'AW00011762', 'NULL', 'Randall', 'R', 'Gomez', '0', '1984-02-17', 'M', 'NULL', 'M', 'randall2@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '1159 Lacassie Ave', 'NULL', '1 (11) 500 555-0179', '2011-08-07', '10+ Miles'], ['11763', '16', 'AW00011763', 'NULL', 'Ross', 'R', 'Fernandez', '0', '1972-08-10', 'M', 'NULL', 'M', 'ross15@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8461 Everett Ct', 'NULL', '1 (11) 500 555-0177', '2013-01-30', '0-1 Miles'], ['11764', '10', 'AW00011764', 'NULL', 'Jessie', 'R', 'Ramos', '0', '1973-01-13', 'S', 'NULL', 'F', 'jessie36@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '5613 Gary Drive', 'NULL', '1 (11) 500 555-0112', '2011-09-09', '0-1 Miles'], ['11765', '11', 'AW00011765', 'NULL', 'Marc', 'NULL', 'Torres', '0', '1983-04-06', 'M', 'NULL', 'M', 'marc15@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '1439 N. Michell Canyon Road', 'NULL', '1 (11) 500 555-0131', '2011-09-12', '0-1 Miles'], ['11766', '38', 'AW00011766', 'NULL', 'Candace', 'M', 'Raman', '0', '1972-01-01', 'S', 'NULL', 'F', 'candace12@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '1060 Mcelroy Court', 'NULL', '1 (11) 500 555-0148', '2011-09-19', '2-5 Miles'], ['11767', '24', 'AW00011767', 'NULL', 'Meagan', 'NULL', 'Madan', '0', '1977-05-20', 'S', 'NULL', 'F', 'meagan8@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '8250 11th Avenue', 'NULL', '1 (11) 500 555-0112', '2011-09-17', '2-5 Miles'], ['11768', '30', 'AW00011768', 'NULL', 'Clayton', 'NULL', 'Nara', '0', '1983-04-03', 'M', 'NULL', 'M', 'clayton34@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '4642 Peabody Road', 'NULL', '1 (11) 500 555-0162', '2011-09-03', '1-2 Miles'], ['11769', '55', 'AW00011769', 'NULL', 'Haley', 'L', 'Hernandez', '0', '1979-02-14', 'S', 'NULL', 'F', 'haley53@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1671 Via Del Verdes', 'NULL', '120-555-0112', '2013-04-28', '0-1 Miles'], ['11770', '607', 'AW00011770', 'NULL', 'Peter', 'T', 'Nara', '0', '1979-02-20', 'S', 'NULL', 'M', 'peter21@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '6489 Kentucky Drive', 'NULL', '244-555-0113', '2013-08-08', '1-2 Miles'], ['11771', '627', 'AW00011771', 'NULL', 'Isaac', 'D', 'Rivera', '0', '1979-04-07', 'S', 'NULL', 'M', 'isaac16@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '7962 Macalvey Drive', 'NULL', '750-555-0140', '2013-03-31', '1-2 Miles'], ['11772', '642', 'AW00011772', 'NULL', 'Cameron', 'M', 'Moore', '0', '1984-01-21', 'M', 'NULL', 'M', 'cameron48@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5551 Silverado Dr.', 'NULL', '293-555-0136', '2011-10-08', '1-2 Miles'], ['11773', '316', 'AW00011773', 'NULL', 'Gavin', 'E', 'Diaz', '0', '1979-01-03', 'S', 'NULL', 'M', 'gavin20@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6082 Trafalgar Circle', 'NULL', '726-555-0116', '2011-10-23', '1-2 Miles'], ['11774', '343', 'AW00011774', 'NULL', 'Emma', 'NULL', 'Sanchez', '0', '1978-10-10', 'M', 'NULL', 'F', 'emma25@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4996 Hillview Drive', 'NULL', '365-555-0125', '2011-10-26', '0-1 Miles'], ['11775', '352', 'AW00011775', 'NULL', 'Sierra', 'NULL', 'Roberts', '0', '1978-11-22', 'S', 'NULL', 'F', 'sierra3@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1721 Concord Blvd', 'NULL', '111-555-0177', '2011-10-03', '0-1 Miles'], ['11776', '368', 'AW00011776', 'NULL', 'Seth', 'A', 'Mitchell', '0', '1978-12-31', 'M', 'NULL', 'M', 'seth38@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8125 Westbury Drive', 'NULL', '171-555-0140', '2011-10-05', '1-2 Miles'], ['11777', '302', 'AW00011777', 'NULL', 'Miranda', 'NULL', 'Long', '0', '1978-01-21', 'S', 'NULL', 'F', 'miranda9@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8970 Cash Avenue', 'NULL', '258-555-0111', '2011-10-14', '0-1 Miles'], ['11778', '638', 'AW00011778', 'NULL', 'Haley', 'A', 'Henderson', '0', '1976-09-17', 'S', 'NULL', 'F', 'haley24@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1019 Chance Drive', 'NULL', '868-555-0128', '2011-10-27', '0-1 Miles'], ['11779', '553', 'AW00011779', 'NULL', 'Sarah', 'P', 'Jackson', '0', '1977-01-15', 'S', 'NULL', 'F', 'sarah14@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1058 Park Blvd.', 'NULL', '653-555-0150', '2011-10-17', '1-2 Miles'], ['11780', '614', 'AW00011780', 'NULL', 'Jessica', 'K', 'Alexander', '0', '1977-05-19', 'S', 'NULL', 'F', 'jessica43@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3459 Tri-state Ave', 'NULL', '617-555-0146', '2011-10-15', '0-1 Miles'], ['11781', '314', 'AW00011781', 'NULL', 'Carlos', 'NULL', 'Gray', '0', '1976-09-06', 'M', 'NULL', 'M', 'carlos7@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4239 Water St.', 'NULL', '252-555-0175', '2013-03-06', '0-1 Miles'], ['11782', '301', 'AW00011782', 'NULL', 'Barbara', 'K', 'Jai', '0', '1982-03-13', 'M', 'NULL', 'F', 'barbara42@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9834 Hamlet', 'NULL', '361-555-0177', '2013-08-02', '0-1 Miles'], ['11783', '359', 'AW00011783', 'NULL', 'Sara', 'A', 'Mitchell', '0', '1982-11-13', 'M', 'NULL', 'F', 'sara37@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9024 Dumbarton Drive', 'NULL', '537-555-0144', '2013-03-23', '0-1 Miles'], ['11784', '53', 'AW00011784', 'NULL', 'Jose', 'NULL', 'Turner', '0', '1978-06-18', 'M', 'NULL', 'M', 'jose42@adventure-works.com', '40000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6648 Choctaw Court', 'NULL', '189-555-0195', '2013-04-12', '0-1 Miles'], ['11785', '607', 'AW00011785', 'NULL', 'Theodore', 'D', 'Diaz', '0', '1983-02-21', 'M', 'NULL', 'M', 'theodore3@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4956 Vista Del Diablo', 'NULL', '690-555-0189', '2013-04-21', '0-1 Miles'], ['11786', '634', 'AW00011786', 'NULL', 'Ian', 'G', 'Murphy', '0', '1978-03-13', 'S', 'NULL', 'M', 'ian82@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2391 St. Peter Court', 'NULL', '754-555-0141', '2013-12-29', '2-5 Miles'], ['11787', '301', 'AW00011787', 'NULL', 'Jerry', 'NULL', 'Nath', '0', '1978-03-05', 'M', 'NULL', 'M', 'jerry20@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6096 Pheasant Circle', 'NULL', '271-555-0115', '2013-10-13', '2-5 Miles'], ['11788', '338', 'AW00011788', 'NULL', 'Destiny', 'A', 'James', '0', '1977-08-18', 'S', 'NULL', 'F', 'destiny43@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6538 Camelback Road', 'NULL', '913-555-0130', '2013-05-09', '2-5 Miles'], ['11789', '343', 'AW00011789', 'NULL', 'Bailey', 'NULL', 'Phillips', '0', '1981-02-16', 'M', 'NULL', 'F', 'bailey27@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '571 Lafayette Drive', 'NULL', '474-555-0183', '2013-03-07', '2-5 Miles'], ['11790', '307', 'AW00011790', 'NULL', 'Timothy', 'C', 'Gonzalez', '0', '1981-05-17', 'M', 'NULL', 'M', 'timothy34@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6615 Cambelback Place', 'NULL', '147-555-0193', '2013-03-11', '2-5 Miles'], ['11791', '641', 'AW00011791', 'NULL', 'Chase', 'D', 'Morgan', '0', '1975-10-19', 'M', 'NULL', 'M', 'chase13@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5446 N. Civic Dr.', 'NULL', '194-555-0127', '2013-09-29', '0-1 Miles'], ['11792', '310', 'AW00011792', 'NULL', 'Alexia', 'J', 'Perry', '0', '1974-11-24', 'M', 'NULL', 'F', 'alexia7@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '879 Hillview Ct', 'NULL', '193-555-0135', '2013-05-03', '0-1 Miles'], ['11793', '301', 'AW00011793', 'NULL', 'Xavier', 'G', 'Rogers', '0', '1980-03-16', 'M', 'NULL', 'M', 'xavier87@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1480 Oliveria Road', 'NULL', '457-555-0162', '2013-02-04', '2-5 Miles'], ['11794', '334', 'AW00011794', 'NULL', 'Lauren', 'NULL', 'Ross', '0', '1975-05-01', 'S', 'NULL', 'F', 'lauren51@adventure-works.com', '40000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5375 Clearland Circle', 'NULL', '143-555-0123', '2013-11-28', '2-5 Miles'], ['11795', '315', 'AW00011795', 'NULL', 'Nicole', 'NULL', 'Thomas', '0', '1974-08-15', 'S', 'NULL', 'F', 'nicole11@adventure-works.com', '40000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4303 Athene Drive', 'NULL', '667-555-0136', '2013-07-12', '2-5 Miles'], ['11796', '315', 'AW00011796', 'NULL', 'Isabel', 'C', 'Jenkins', '0', '1985-08-03', 'S', 'NULL', 'F', 'isabel7@adventure-works.com', '40000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '9348 Notre Dame Ave', 'NULL', '774-555-0127', '2011-10-16', '0-1 Miles'], ['11797', '348', 'AW00011797', 'NULL', 'Devin', 'R', 'Coleman', '0', '1980-03-03', 'S', 'NULL', 'M', 'devin44@adventure-works.com', '40000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4143 Heather Pl.', 'NULL', '792-555-0157', '2011-10-14', '2-5 Miles'], ['11798', '611', 'AW00011798', 'NULL', 'Brendan', 'Q', 'Chande', '0', '1974-08-12', 'M', 'NULL', 'M', 'brendan13@adventure-works.com', '40000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1519 Sheffield Place', 'NULL', '551-555-0157', '2011-10-15', '2-5 Miles'], ['11799', '612', 'AW00011799', 'NULL', 'Jessie', 'B', 'Wang', '0', '1980-09-09', 'M', 'NULL', 'M', 'jessie7@adventure-works.com', '40000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4593 Camino Peral', 'NULL', '527-555-0124', '2011-10-10', '0-1 Miles'], ['11800', '536', 'AW00011800', 'NULL', 'Jennifer', 'M', 'Baker', '0', '1975-05-07', 'M', 'NULL', 'F', 'jennifer19@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8998 Katharyn Drive', 'NULL', '506-555-0157', '2013-08-10', '2-5 Miles'], ['11801', '536', 'AW00011801', 'NULL', 'Aaron', 'J', 'Sharma', '0', '1975-03-16', 'M', 'NULL', 'M', 'aaron30@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4073 Niagara Court', 'NULL', '500-555-0177', '2013-12-12', '2-5 Miles'], ['11802', '59', 'AW00011802', 'NULL', 'Madison', 'A', 'Taylor', '0', '1977-02-05', 'M', 'NULL', 'F', 'madison9@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '627 La Salle Street', 'NULL', '635-555-0173', '2013-02-25', '0-1 Miles'], ['11803', '631', 'AW00011803', 'NULL', 'Jan', 'L', 'Hernandez', '0', '1977-03-11', 'S', 'NULL', 'F', 'jan15@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3553 Grant Street', 'NULL', '845-555-0160', '2013-07-29', '2-5 Miles'], ['11804', '634', 'AW00011804', 'NULL', 'Haley', 'M', 'Turner', '0', '1976-10-15', 'M', 'NULL', 'F', 'haley44@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5450 Bellows Ct.', 'NULL', '489-555-0139', '2013-05-29', '0-1 Miles'], ['11805', '300', 'AW00011805', 'NULL', 'Richard', 'M', 'Green', '0', '1976-09-08', 'M', 'NULL', 'M', 'richard25@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5407 Cougar Way', 'NULL', '142-555-0146', '2013-04-23', '0-1 Miles'], ['11806', '302', 'AW00011806', 'NULL', 'Jennifer', 'S', 'Stewart', '0', '1982-08-06', 'M', 'NULL', 'F', 'jennifer52@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1500 Grant Street', 'NULL', '159-555-0111', '2013-02-21', '0-1 Miles'], ['11807', '343', 'AW00011807', 'NULL', 'Lucas', 'NULL', 'Baker', '0', '1977-03-03', 'M', 'NULL', 'M', 'lucas48@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1086 Ash Lane', 'NULL', '787-555-0141', '2013-04-13', '2-5 Miles'], ['11808', '54', 'AW00011808', 'NULL', 'James', 'NULL', 'Parker', '0', '1974-10-10', 'M', 'NULL', 'M', 'james57@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '751 Countrywood Ct.', 'NULL', '730-555-0125', '2013-03-26', '2-5 Miles'], ['11809', '300', 'AW00011809', 'NULL', 'Juan', 'NULL', 'Gray', '0', '1973-07-01', 'M', 'NULL', 'M', 'juan16@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1289 Quigley St.', 'NULL', '995-555-0114', '2011-10-21', '0-1 Miles'], ['11810', '611', 'AW00011810', 'NULL', 'Antonio', 'K', 'Washington', '0', '1978-01-03', 'S', 'NULL', 'M', 'antonio13@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7095 Curletto Dr.', 'NULL', '373-555-0139', '2011-10-20', '2-5 Miles'], ['11811', '310', 'AW00011811', 'NULL', 'Abigail', 'C', 'Brooks', '0', '1978-06-11', 'S', 'NULL', 'F', 'abigail22@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1617 Crossbow Way', 'NULL', '367-555-0138', '2011-10-15', '2-5 Miles'], ['11812', '644', 'AW00011812', 'NULL', 'Andrew', 'N', 'Rodriguez', '0', '1973-03-21', 'M', 'NULL', 'M', 'andrew27@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3997 Via De Luna', 'NULL', '586-555-0118', '2011-10-03', '0-1 Miles'], ['11813', '552', 'AW00011813', 'NULL', 'Mary', 'NULL', 'Patterson', '0', '1973-05-11', 'M', 'NULL', 'F', 'mary40@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1102 Ravenwood', 'NULL', '956-555-0136', '2011-10-16', '0-1 Miles'], ['11814', '542', 'AW00011814', 'NULL', 'Dalton', 'L', 'Morgan', '0', '1976-01-05', 'M', 'NULL', 'M', 'dalton84@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4921 Oakwood Circle', 'NULL', '530-555-0182', '2013-06-23', '0-1 Miles'], ['11815', '642', 'AW00011815', 'NULL', 'Hannah', 'J', 'Patterson', '0', '1981-04-20', 'M', 'NULL', 'F', 'hannah33@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3327 Rockridge Dr.', 'NULL', '110-555-0136', '2011-10-02', '0-1 Miles'], ['11816', '300', 'AW00011816', 'NULL', 'Joe', 'A', 'Torres', '0', '1981-10-19', 'M', 'NULL', 'M', 'joe35@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8069 Vine Hill Way', 'NULL', '450-555-0115', '2011-10-02', '2-5 Miles'], ['11817', '310', 'AW00011817', 'NULL', 'Morgan', 'C', 'Miller', '0', '1981-11-23', 'S', 'NULL', 'F', 'morgan29@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5929 William Reed Dr.', 'NULL', '339-555-0137', '2011-10-13', '2-5 Miles'], ['11818', '312', 'AW00011818', 'NULL', 'Daniel', 'C', 'Garcia', '0', '1975-10-20', 'M', 'NULL', 'M', 'daniel8@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4010 Willow Pass Road', 'NULL', '125-555-0145', '2011-10-21', '2-5 Miles'], ['11819', '616', 'AW00011819', 'NULL', 'Jose', 'NULL', 'Lal', '0', '1973-04-08', 'M', 'NULL', 'M', 'jose23@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6264 Center Ave', 'NULL', '152-555-0130', '2013-02-15', '0-1 Miles'], ['11820', '69', 'AW00011820', 'NULL', 'Katelyn', 'NULL', 'Lopez', '0', '1977-08-22', 'M', 'NULL', 'F', 'katelyn45@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8873 Folson Drive', 'NULL', '316-555-0185', '2013-02-09', '0-1 Miles'], ['11821', '300', 'AW00011821', 'NULL', 'Austin', 'NULL', 'Johnson', '0', '1971-10-13', 'M', 'NULL', 'M', 'austin40@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6569 Endriss', 'NULL', '163-555-0134', '2013-07-30', '2-5 Miles'], ['11822', '336', 'AW00011822', 'NULL', 'Rohinton', 'H', 'Wadia', '0', '1971-12-11', 'M', 'NULL', 'F', 'rohinton1@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5935 Seawind Dr.', 'NULL', '792-555-0137', '2013-05-20', '2-5 Miles'], ['11823', '53', 'AW00011823', 'NULL', 'Morgan', 'NULL', 'Turner', '0', '1977-10-20', 'M', 'NULL', 'F', 'morgan3@adventure-works.com', '70000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6091 Bluefish Lane', 'NULL', '856-555-0168', '2013-05-18', '2-5 Miles'], ['11824', '55', 'AW00011824', 'NULL', 'Jill', 'C', 'Martin', '0', '1977-10-03', 'M', 'NULL', 'F', 'jill6@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9719 Hamilton Ave', 'NULL', '884-555-0127', '2013-03-18', '2-5 Miles'], ['11825', '298', 'AW00011825', 'NULL', 'Aimee', 'NULL', 'She', '0', '1971-11-15', 'S', 'NULL', 'F', 'aimee17@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6752 Covington Court', 'NULL', '137-555-0149', '2011-10-16', '2-5 Miles'], ['11826', '300', 'AW00011826', 'NULL', 'Jessie', 'J', 'Alonso', '0', '1971-08-15', 'M', 'NULL', 'F', 'jessie6@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7342 Dew Drop Circle', 'NULL', '579-555-0138', '2011-10-27', '0-1 Miles'], ['11827', '55', 'AW00011827', 'NULL', 'Sara', 'M', 'Baker', '0', '1980-09-16', 'M', 'NULL', 'F', 'sara43@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5269 Mt. Trinity Court', 'NULL', '256-555-0180', '2013-02-20', '2-5 Miles'], ['11828', '545', 'AW00011828', 'NULL', 'Katherine', 'NULL', 'Martinez', '0', '1980-06-04', 'M', 'NULL', 'F', 'katherine88@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '3836 Carletto Drive', 'NULL', '584-555-0118', '2013-04-03', '0-1 Miles'], ['11829', '637', 'AW00011829', 'NULL', 'Sophia', 'NULL', 'Campbell', '0', '1975-05-02', 'M', 'NULL', 'F', 'sophia5@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '8122 Mink Court', 'NULL', '766-555-0146', '2013-03-13', '0-1 Miles'], ['11830', '336', 'AW00011830', 'NULL', 'Taylor', 'N', 'Garcia', '0', '1974-07-15', 'M', 'NULL', 'F', 'taylor63@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6986 Ida Ave.', 'NULL', '301-555-0163', '2011-09-29', '0-1 Miles'], ['11831', '358', 'AW00011831', 'NULL', 'Christian', 'NULL', 'Ross', '0', '1975-05-24', 'M', 'NULL', 'M', 'christian18@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '971 Harness Circle', 'NULL', '123-555-0152', '2011-10-27', '0-1 Miles'], ['11832', '644', 'AW00011832', 'NULL', 'Zoe', 'NULL', 'Murphy', '0', '1976-04-01', 'S', 'NULL', 'F', 'zoe13@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3426 Calhoun Court', 'NULL', '798-555-0157', '2013-02-18', '2-5 Miles'], ['11833', '59', 'AW00011833', 'NULL', 'Oscar', 'G', 'Price', '0', '1982-01-16', 'M', 'NULL', 'M', 'oscar9@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5049 Teakwood Dr.', 'NULL', '389-555-0114', '2013-06-12', '2-5 Miles'], ['11834', '339', 'AW00011834', 'NULL', 'Fernando', 'M', 'Flores', '0', '1982-04-20', 'S', 'NULL', 'M', 'fernando55@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3789 Linden Lane', 'NULL', '162-555-0175', '2011-10-22', '0-1 Miles'], ['11835', '53', 'AW00011835', 'NULL', 'Elijah', 'M', 'Russell', '0', '1970-12-17', 'S', 'NULL', 'M', 'elijah21@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1592 Working Drive', 'NULL', '188-555-0159', '2013-01-10', '2-5 Miles'], ['11836', '616', 'AW00011836', 'NULL', 'Garrett', 'NULL', 'Travers', '0', '1970-10-25', 'M', 'NULL', 'M', 'garrett9@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7947 Stillman Court', 'NULL', '879-555-0116', '2013-03-24', '0-1 Miles'], ['11837', '360', 'AW00011837', 'NULL', 'Haley', 'NULL', 'Alexander', '0', '1976-08-05', 'S', 'NULL', 'F', 'haley38@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '80 Mozden Lane', 'NULL', '951-555-0164', '2011-10-13', '2-5 Miles'], ['11838', '536', 'AW00011838', 'NULL', 'Justin', 'J', 'Rodriguez', '0', '1970-08-09', 'S', 'NULL', 'M', 'justin48@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '761 Orchard View Ave.', 'NULL', '211-555-0112', '2013-05-31', '0-1 Miles'], ['11839', '369', 'AW00011839', 'NULL', 'Tyler', 'NULL', 'Brown', '0', '1976-07-21', 'S', 'NULL', 'M', 'tyler9@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '9271 Prestwick Ave.', 'NULL', '801-555-0121', '2011-10-26', '2-5 Miles'], ['11840', '336', 'AW00011840', 'NULL', 'Julian', 'D', 'Patterson', '0', '1976-05-13', 'M', 'NULL', 'M', 'julian12@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '9240 Limewood Pl.', 'NULL', '603-555-0169', '2013-04-30', '2-5 Miles'], ['11841', '52', 'AW00011841', 'NULL', 'Sean', 'NULL', 'Nelson', '0', '1969-09-13', 'M', 'NULL', 'M', 'sean41@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4594 Hill Drive', 'NULL', '314-555-0153', '2013-05-20', '0-1 Miles'], ['11842', '631', 'AW00011842', 'NULL', 'Justin', 'NULL', 'Wilson', '0', '1970-04-03', 'S', 'NULL', 'M', 'justin38@adventure-works.com', '50000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '7164 Pinncale Drive', 'NULL', '585-555-0152', '2013-05-12', '10+ Miles'], ['11843', '536', 'AW00011843', 'NULL', 'Christy', 'NULL', 'Nara', '0', '1975-11-08', 'S', 'NULL', 'F', 'christy34@adventure-works.com', '50000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '4678 Ygnacio Valley Road', 'NULL', '639-555-0189', '2013-02-07', '10+ Miles'], ['11844', '307', 'AW00011844', 'NULL', 'Michele', 'J', 'Alvarez', '0', '1969-10-06', 'S', 'NULL', 'F', 'michele39@adventure-works.com', '50000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '9249 Martin St', 'NULL', '103-555-0162', '2013-10-05', '10+ Miles'], ['11845', '63', 'AW00011845', 'NULL', 'Natalie', 'A', 'Jones', '0', '1930-02-15', 'S', 'NULL', 'F', 'natalie71@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1442 Hill Top Rd', 'NULL', '119-555-0148', '2013-02-13', '0-1 Miles'], ['11846', '337', 'AW00011846', 'NULL', 'Savannah', 'A', 'Reed', '0', '1969-12-13', 'S', 'NULL', 'F', 'savannah18@adventure-works.com', '50000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4080 Pelican Loop', 'NULL', '503-555-0151', '2013-04-28', '2-5 Miles'], ['11847', '547', 'AW00011847', 'NULL', 'Cassidy', 'NULL', 'Diaz', '0', '1970-05-31', 'S', 'NULL', 'F', 'cassidy23@adventure-works.com', '50000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3797 Concord Royale', 'NULL', '323-555-0140', '2013-06-28', '0-1 Miles'], ['11848', '648', 'AW00011848', 'NULL', 'Joshua', 'C', 'Lewis', '0', '1975-02-24', 'M', 'NULL', 'M', 'joshua23@adventure-works.com', '50000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7166 Brock Lane', 'NULL', '365-555-0198', '2013-07-27', '2-5 Miles'], ['11849', '331', 'AW00011849', 'NULL', 'Faith', 'C', 'Reed', '0', '1970-03-13', 'S', 'NULL', 'F', 'faith36@adventure-works.com', '50000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2751 Trail Way', 'Unit B', '727-555-0162', '2013-11-27', '2-5 Miles'], ['11850', '347', 'AW00011850', 'NULL', 'Brooke', 'C', 'Ramirez', '0', '1980-09-16', 'S', 'NULL', 'F', 'brooke7@adventure-works.com', '50000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8004 Water Street', 'NULL', '729-555-0139', '2013-04-08', '2-5 Miles'], ['11851', '311', 'AW00011851', 'NULL', 'Jada', 'NULL', 'Mitchell', '0', '1969-03-07', 'S', 'NULL', 'F', 'jada23@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '6848 Calico Way', 'NULL', '416-555-0196', '2013-06-16', '2-5 Miles'], ['11852', '334', 'AW00011852', 'NULL', 'Kyle', 'M', 'Russell', '0', '1969-04-23', 'S', 'NULL', 'M', 'kyle15@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '1345 Prospect Street', 'NULL', '473-555-0199', '2013-07-10', '0-1 Miles'], ['11853', '311', 'AW00011853', 'NULL', 'Grace', 'NULL', 'Jones', '0', '1979-11-15', 'S', 'NULL', 'F', 'grace2@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '8866 Alpha Way', 'NULL', '388-555-0168', '2013-05-10', '2-5 Miles'], ['11854', '383', 'AW00011854', 'NULL', 'Jason', 'K', 'Mitchell', '0', '1973-10-16', 'S', 'NULL', 'M', 'jason40@adventure-works.com', '60000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '7537 Clark Creek Lane', 'NULL', '480-555-0139', '2011-10-25', '0-1 Miles'], ['11855', '302', 'AW00011855', 'NULL', 'Christian', 'NULL', 'Walker', '0', '1974-08-09', 'M', 'NULL', 'M', 'christian44@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '1575 Brown Street', 'NULL', '531-555-0113', '2013-04-27', '2-5 Miles'], ['11856', '539', 'AW00011856', 'NULL', 'Seth', 'M', 'Hernandez', '0', '1969-02-13', 'M', 'NULL', 'M', 'seth26@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4107 St. Raphael Drive', 'NULL', '195-555-0146', '2013-11-29', '0-1 Miles'], ['11857', '614', 'AW00011857', 'NULL', 'Isabella', 'NULL', 'Young', '0', '1974-03-08', 'S', 'NULL', 'F', 'isabella56@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '9175 Benton Street', 'NULL', '747-555-0149', '2013-10-06', '0-1 Miles'], ['11858', '361', 'AW00011858', 'NULL', 'Jordan', 'A', 'Coleman', '0', '1968-06-05', 'M', 'NULL', 'M', 'jordan2@adventure-works.com', '40000.00', '3', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8005 Ranchhand Court', 'NULL', '996-555-0179', '2013-03-27', '2-5 Miles'], ['11859', '631', 'AW00011859', 'NULL', 'Blake', 'J', 'Garcia', '0', '1968-03-08', 'M', 'NULL', 'M', 'blake16@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9322 Driving Drive', 'NULL', '713-555-0128', '2013-04-22', '2-5 Miles'], ['11860', '343', 'AW00011860', 'NULL', 'Nicole', 'NULL', 'Walker', '0', '1967-07-09', 'M', 'NULL', 'F', 'nicole23@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8362 Abbey Court', 'NULL', '129-555-0165', '2013-07-03', '2-5 Miles'], ['11861', '71', 'AW00011861', 'NULL', 'Katherine', 'NULL', 'Carter', '0', '1967-10-22', 'M', 'NULL', 'F', 'katherine58@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '591 Laguna Street', '# 439', '572-555-0120', '2013-05-14', '0-1 Miles'], ['11862', '616', 'AW00011862', 'NULL', 'Olivia', 'NULL', 'Peterson', '0', '1972-09-11', 'S', 'NULL', 'F', 'olivia40@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9212 Tupelo Drive', 'NULL', '409-555-0135', '2013-05-16', '2-5 Miles'], ['11863', '638', 'AW00011863', 'NULL', 'Jessica', 'NULL', 'Wood', '0', '1967-04-10', 'M', 'NULL', 'F', 'jessica26@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1439 N. Canyon Road', 'NULL', '130-555-0137', '2013-09-03', '2-5 Miles'], ['11864', '642', 'AW00011864', 'NULL', 'Elizabeth', 'W', 'Thompson', '0', '1967-03-06', 'M', 'NULL', 'F', 'elizabeth19@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2894 Encino Dr.', 'NULL', '465-555-0154', '2013-03-01', '2-5 Miles'], ['11865', '343', 'AW00011865', 'NULL', 'Chloe', 'R', 'Rivera', '0', '1966-08-06', 'M', 'NULL', 'F', 'chloe54@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6282 Mcneil Place', 'NULL', '372-555-0142', '2013-02-17', '2-5 Miles'], ['11866', '325', 'AW00011866', 'NULL', 'Lucas', 'L', 'Scott', '0', '1966-12-30', 'M', 'NULL', 'M', 'lucas46@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1218 Woodside Court', 'NULL', '764-555-0119', '2013-02-18', '0-1 Miles'], ['11867', '343', 'AW00011867', 'NULL', 'Nathaniel', 'C', 'James', '0', '1971-04-21', 'M', 'NULL', 'M', 'nathaniel0@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4268 Weaver Court', 'NULL', '112-555-0116', '2013-06-04', '2-5 Miles'], ['11868', '68', 'AW00011868', 'NULL', 'Jessica', 'M', 'Peterson', '0', '1973-01-31', 'S', 'NULL', 'F', 'jessica17@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1613 Santa Maria', 'NULL', '974-555-0184', '2013-02-02', '2-5 Miles'], ['11869', '71', 'AW00011869', 'NULL', 'Kaitlyn', 'A', 'Adams', '0', '1984-05-01', 'S', 'NULL', 'F', 'kaitlyn13@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3815 Berry Dr.', 'NULL', '512-555-0158', '2013-03-20', '0-1 Miles'], ['11870', '612', 'AW00011870', 'NULL', 'Jillian', 'NULL', 'Garcia', '0', '1978-07-10', 'S', 'NULL', 'F', 'jillian15@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6375 Freda Drive', 'NULL', '386-555-0159', '2013-07-20', '0-1 Miles'], ['11871', '626', 'AW00011871', 'NULL', 'Dalton', 'L', 'Bennett', '0', '1978-08-12', 'S', 'NULL', 'M', 'dalton46@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4188 Green Valley Road', 'NULL', '941-555-0138', '2013-02-23', '2-5 Miles'], ['11872', '325', 'AW00011872', 'NULL', 'Faith', 'L', 'Patterson', '0', '1978-07-17', 'S', 'NULL', 'F', 'faith9@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '1141 Rolling Hill Way', 'NULL', '148-555-0143', '2011-10-21', '0-1 Miles'], ['11873', '372', 'AW00011873', 'NULL', 'Ryan', 'NULL', 'Zhang', '0', '1972-10-09', 'M', 'NULL', 'M', 'ryan27@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '4176 Cotton Ct', 'NULL', '295-555-0128', '2011-10-07', '0-1 Miles'], ['11874', '385', 'AW00011874', 'NULL', 'Adrian', 'NULL', 'Bell', '0', '1978-03-06', 'S', 'NULL', 'M', 'adrian15@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '302 Briarcliff Ct.', 'NULL', '254-555-0175', '2013-07-19', '2-5 Miles'], ['11875', '51', 'AW00011875', 'NULL', 'Jonathan', 'NULL', 'Brown', '0', '1966-01-31', 'M', 'NULL', 'M', 'jonathan54@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '5373 Montgomery Ave.', 'NULL', '108-555-0111', '2013-04-20', '0-1 Miles'], ['11876', '348', 'AW00011876', 'NULL', 'Madison', 'L', 'White', '0', '1966-05-13', 'M', 'NULL', 'F', 'madison13@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '27 Athens Circle', 'NULL', '813-555-0171', '2013-06-19', '2-5 Miles'], ['11877', '345', 'AW00011877', 'NULL', 'Alexis', 'NULL', 'Diaz', '0', '1966-04-06', 'M', 'NULL', 'F', 'alexis45@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8541 Summerfield Drive', 'NULL', '409-555-0139', '2013-10-05', '2-5 Miles'], ['11878', '607', 'AW00011878', 'NULL', 'Christine', 'NULL', 'Nara', '0', '1971-02-04', 'M', 'NULL', 'F', 'christine12@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5784 Yeoman Dr.', 'NULL', '792-555-0139', '2013-11-30', '2-5 Miles'], ['11879', '536', 'AW00011879', 'NULL', 'Edgar', 'NULL', 'Sai', '0', '1971-09-30', 'M', 'NULL', 'M', 'edgar6@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9037 Saddlehill Lane', 'NULL', '525-555-0117', '2013-02-27', '2-5 Miles'], ['11880', '548', 'AW00011880', 'NULL', 'Melissa', 'NULL', 'Sanchez', '0', '1965-02-16', 'M', 'NULL', 'F', 'melissa40@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2524 Fish Dr', 'NULL', '409-555-0153', '2013-04-10', '0-1 Miles'], ['11881', '326', 'AW00011881', 'NULL', 'Richard', 'T', 'Mitchell', '0', '1965-01-20', 'M', 'NULL', 'M', 'richard30@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '8998 Adobe Drive', 'NULL', '142-555-0165', '2013-12-02', '2-5 Miles'], ['11882', '637', 'AW00011882', 'NULL', 'Patrick', 'L', 'Stewart', '0', '1975-09-05', 'M', 'NULL', 'M', 'patrick27@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '2880 Ponderosa Dr.', 'NULL', '115-555-0181', '2013-02-17', '0-1 Miles'], ['11883', '612', 'AW00011883', 'NULL', 'Hannah', 'C', 'Anderson', '0', '1965-02-10', 'M', 'NULL', 'F', 'hannah9@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '3', '5622 Geary', 'NULL', '819-555-0146', '2013-02-21', '10+ Miles'], ['11884', '607', 'AW00011884', 'NULL', 'Latoya', 'S', 'Shen', '0', '1970-04-22', 'M', 'NULL', 'F', 'latoya2@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2328 Sand View Way', 'NULL', '390-555-0186', '2013-02-17', '0-1 Miles'], ['11885', '302', 'AW00011885', 'NULL', 'Kurt', 'NULL', 'Sharma', '0', '1970-09-21', 'M', 'NULL', 'M', 'kurt9@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4461 Centennial Way', 'NULL', '146-555-0179', '2011-10-28', '0-1 Miles'], ['11886', '369', 'AW00011886', 'NULL', 'Katelyn', 'NULL', 'Parker', '0', '1963-07-20', 'M', 'NULL', 'F', 'katelyn30@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7111 Concord Ct.', 'NULL', '451-555-0135', '2011-10-28', '0-1 Miles'], ['11887', '312', 'AW00011887', 'NULL', 'Joseph', 'NULL', 'White', '0', '1963-10-03', 'M', 'NULL', 'M', 'joseph19@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '8656 Lakespring Place', 'NULL', '149-555-0116', '2013-05-28', '2-5 Miles'], ['11888', '49', 'AW00011888', 'NULL', 'Aaron', 'N', 'Ross', '0', '1969-12-18', 'M', 'NULL', 'M', 'aaron3@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2111 Ringing Dr', 'NULL', '175-555-0139', '2013-03-18', '0-1 Miles'], ['11889', '633', 'AW00011889', 'NULL', 'Blake', 'NULL', 'Patterson', '0', '1963-11-25', 'S', 'NULL', 'M', 'blake58@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '8129 Golden Rain', 'NULL', '473-555-0194', '2013-02-23', '2-5 Miles'], ['11890', '299', 'AW00011890', 'NULL', 'Whitney', 'NULL', 'Lopez', '0', '1964-05-14', 'M', 'NULL', 'F', 'whitney15@adventure-works.com', '70000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '3098 Eastgate Ave', 'NULL', '307-555-0113', '2013-03-29', '0-1 Miles'], ['11891', '300', 'AW00011891', 'NULL', 'Jamie', 'E', 'Liang', '0', '1969-09-13', 'M', 'NULL', 'F', 'jamie20@adventure-works.com', '70000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '3213 Glenside Dr', 'NULL', '138-555-0111', '2013-03-07', '0-1 Miles'], ['11892', '14', 'AW00011892', 'NULL', 'Julio', 'M', 'Ortega', '0', '1975-04-07', 'M', 'NULL', 'M', 'julio23@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '1681 Via Estrella', 'NULL', '1 (11) 500 555-0180', '2011-09-04', '0-1 Miles'], ['11893', '18', 'AW00011893', 'NULL', 'Orlando', 'J', 'Carlson', '0', '1974-08-09', 'M', 'NULL', 'M', 'orlando18@adventure-works.com', '90000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '761 Orchard View Ave.', 'NULL', '1 (11) 500 555-0111', '2011-08-31', '0-1 Miles'], ['11894', '25', 'AW00011894', 'NULL', 'Ann', 'NULL', 'Gonzalez', '0', '1980-04-30', 'M', 'NULL', 'F', 'ann23@adventure-works.com', '100000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '4166 Deercreek Ln.', 'NULL', '1 (11) 500 555-0118', '2011-09-22', '2-5 Miles'], ['11895', '23', 'AW00011895', 'NULL', 'Dustin', 'NULL', 'Chander', '0', '1975-01-18', 'M', 'NULL', 'M', 'dustin16@adventure-works.com', '100000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '5553 Cash Avenue', 'NULL', '1 (11) 500 555-0196', '2011-09-12', '0-1 Miles'], ['11896', '16', 'AW00011896', 'NULL', 'Frank', 'NULL', 'Carlson', '0', '1975-05-18', 'M', 'NULL', 'M', 'frank26@adventure-works.com', '100000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '8851 Northridge Dr.', 'NULL', '1 (11) 500 555-0160', '2011-09-01', '2-5 Miles'], ['11897', '38', 'AW00011897', 'NULL', 'Orlando', 'I', 'Ashe', '0', '1974-05-28', 'S', 'NULL', 'M', 'orlando5@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9478 Rheem Dr.', 'NULL', '1 (11) 500 555-0184', '2011-08-30', '0-1 Miles'], ['11898', '20', 'AW00011898', 'NULL', 'Angela', 'T', 'Henderson', '0', '1975-12-31', 'M', 'NULL', 'F', 'angela7@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '9377 Ash Lane', 'NULL', '1 (11) 500 555-0118', '2011-09-14', '0-1 Miles'], ['11899', '36', 'AW00011899', 'NULL', 'Brenda', 'NULL', 'Perez', '0', '1976-03-15', 'S', 'NULL', 'F', 'brenda25@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '9935 San Carlos Avenue', 'NULL', '1 (11) 500 555-0181', '2011-09-04', '0-1 Miles'], ['11900', '10', 'AW00011900', 'NULL', 'Byron', 'NULL', 'Carlson', '0', '1981-03-03', 'S', 'NULL', 'M', 'byron12@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '4002 Fawn Glen Circle', 'NULL', '1 (11) 500 555-0115', '2011-09-21', '0-1 Miles'], ['11901', '3', 'AW00011901', 'NULL', 'Stacy', 'NULL', 'Alvarez', '0', '1973-08-18', 'S', 'NULL', 'F', 'stacy6@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3917 Catalpa Court', 'NULL', '1 (11) 500 555-0171', '2011-09-10', '0-1 Miles'], ['11902', '7', 'AW00011902', 'NULL', 'Drew', 'NULL', 'Pal', '0', '1972-09-14', 'M', 'NULL', 'M', 'drew13@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '8991 Olivera', 'NULL', '1 (11) 500 555-0151', '2013-02-21', '10+ Miles'], ['11903', '21', 'AW00011903', 'NULL', 'Kate', 'L', 'Raji', '0', '1985-10-21', 'S', 'NULL', 'F', 'kate18@adventure-works.com', '110000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '1225 Santa Lucia', 'NULL', '1 (11) 500 555-0124', '2011-09-21', '0-1 Miles'], ['11904', '34', 'AW00011904', 'NULL', 'Kaylee', 'NULL', 'Cook', '0', '1986-05-05', 'S', 'NULL', 'F', 'kaylee18@adventure-works.com', '110000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '5742 Curtis Drive', 'NULL', '1 (11) 500 555-0188', '2011-09-17', '2-5 Miles'], ['11905', '31', 'AW00011905', 'NULL', 'Isaiah', 'NULL', 'Ramirez', '0', '1974-12-14', 'S', 'NULL', 'M', 'isaiah6@adventure-works.com', '110000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '1069 Central Blvd.', 'NULL', '1 (11) 500 555-0177', '2011-08-29', '2-5 Miles'], ['11906', '20', 'AW00011906', 'NULL', 'Gabriella', 'NULL', 'Sanders', '0', '1972-08-17', 'M', 'NULL', 'F', 'gabriella1@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '4938 Nightingale Drive', 'NULL', '1 (11) 500 555-0115', '2011-09-10', '0-1 Miles'], ['11907', '19', 'AW00011907', 'NULL', 'Sarah', 'NULL', 'Garcia', '0', '1973-03-07', 'S', 'NULL', 'F', 'sarah18@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '9481 Laguna Street', 'NULL', '1 (11) 500 555-0145', '2011-09-28', '0-1 Miles'], ['11908', '38', 'AW00011908', 'NULL', 'Rafael', 'A', 'Tang', '0', '1972-01-08', 'S', 'NULL', 'M', 'rafael27@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '8839 Leonard Dr', 'NULL', '1 (11) 500 555-0157', '2011-09-19', '0-1 Miles'], ['11909', '26', 'AW00011909', 'NULL', 'Nichole', 'M', 'She', '0', '1971-08-10', 'M', 'NULL', 'F', 'nichole0@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '7484 Roundtree Drive', 'NULL', '1 (11) 500 555-0168', '2011-09-20', '0-1 Miles'], ['11910', '4', 'AW00011910', 'NULL', 'Jaclyn', 'F', 'Zheng', '0', '1971-12-10', 'M', 'NULL', 'F', 'jaclyn21@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '7413 Alpine Drive', 'NULL', '1 (11) 500 555-0117', '2011-10-09', '0-1 Miles'], ['11911', '34', 'AW00011911', 'NULL', 'Rachael', 'D', 'Kapoor', '0', '1972-05-15', 'M', 'NULL', 'F', 'rachael1@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '4159 Bayshore Rd.', 'NULL', '1 (11) 500 555-0149', '2013-06-01', '0-1 Miles'], ['11912', '27', 'AW00011912', 'NULL', 'Rachael', 'NULL', 'Sai', '0', '1971-06-16', 'S', 'NULL', 'F', 'rachael5@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5108 Heights Avenue', 'NULL', '1 (11) 500 555-0196', '2011-10-27', '5-10 Miles'], ['11913', '37', 'AW00011913', 'Ms.', 'Rebecca', 'A.', 'Robinson', '0', '1970-12-09', 'M', 'NULL', 'F', 'rebecca3@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1861 Chinquapin Ct', 'NULL', '648-555-0100', '2013-12-03', '5-10 Miles'], ['11914', '13', 'AW00011914', 'NULL', 'Meagan', 'M', 'Rana', '0', '1979-05-05', 'S', 'NULL', 'F', 'meagan11@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7867 F Mt Hood Circle', 'NULL', '1 (11) 500 555-0118', '2011-10-18', '0-1 Miles'], ['11915', '13', 'AW00011915', 'NULL', 'Philip', 'P', 'Carlson', '0', '1973-09-13', 'S', 'NULL', 'M', 'philip17@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6672 Mt. Dias Blvd.', 'NULL', '1 (11) 500 555-0110', '2011-10-02', '5-10 Miles'], ['11916', '40', 'AW00011916', 'NULL', 'Joe', 'D', 'Rana', '0', '1976-09-03', 'S', 'NULL', 'M', 'joe14@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6339 E. 108th Street', 'NULL', '1 (11) 500 555-0177', '2011-10-01', '5-10 Miles'], ['11917', '3', 'AW00011917', 'NULL', 'Roy', 'R', 'Sanz', '0', '1971-04-21', 'S', 'NULL', 'M', 'roy40@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5087 Valle Vista Avenue', 'NULL', '1 (11) 500 555-0156', '2011-10-27', '5-10 Miles'], ['11918', '2', 'AW00011918', 'NULL', 'Kaylee', 'L', 'Hill', '0', '1969-08-31', 'M', 'NULL', 'F', 'kaylee35@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '8205 Soto St.', 'NULL', '1 (11) 500 555-0131', '2011-10-13', '5-10 Miles'], ['11919', '26', 'AW00011919', 'NULL', 'Warren', 'NULL', 'Andersen', '0', '1969-08-17', 'M', 'NULL', 'M', 'warren2@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '7783 Limewood Pl', 'NULL', '1 (11) 500 555-0181', '2011-10-05', '5-10 Miles'], ['11920', '20', 'AW00011920', 'NULL', 'Adrienne', 'NULL', 'Gomez', '0', '1975-02-24', 'S', 'NULL', 'F', 'adrienne1@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '4373 Sherry Circle', 'NULL', '1 (11) 500 555-0149', '2011-10-10', '10+ Miles'], ['11921', '33', 'AW00011921', 'NULL', 'Gilbert', 'NULL', 'Zhu', '0', '1970-06-22', 'M', 'NULL', 'M', 'gilbert11@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '2939 West Ct.', 'NULL', '1 (11) 500 555-0127', '2013-09-19', '10+ Miles'], ['11922', '69', 'AW00011922', 'NULL', 'James', 'NULL', 'Davis', '0', '1985-02-13', 'S', 'NULL', 'M', 'james80@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3704 Elliott Dr.', 'NULL', '483-555-0135', '2013-02-15', '0-1 Miles'], ['11923', '343', 'AW00011923', 'NULL', 'Sarah', 'NULL', 'Bryant', '0', '1985-04-21', 'M', 'NULL', 'F', 'sarah42@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9855 Norse Ct.', 'NULL', '197-555-0118', '2013-02-12', '1-2 Miles'], ['11924', '347', 'AW00011924', 'NULL', 'Ian', 'C', 'Long', '0', '1985-04-23', 'S', 'NULL', 'M', 'ian50@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '2389 E Eagle Peak Rd.', 'NULL', '212-555-0171', '2011-10-26', '1-2 Miles'], ['11925', '609', 'AW00011925', 'NULL', 'Ashlee', 'NULL', 'Jai', '0', '1984-05-05', 'S', 'NULL', 'F', 'ashlee18@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6468 Gatewood Court', 'NULL', '547-555-0176', '2011-10-09', '5-10 Miles'], ['11926', '546', 'AW00011926', 'NULL', 'Eduardo', 'NULL', 'Foster', '0', '1983-09-15', 'S', 'NULL', 'M', 'eduardo60@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '609 Power Ave.', 'NULL', '522-555-0169', '2013-05-04', '5-10 Miles'], ['11927', '638', 'AW00011927', 'NULL', 'Nicole', 'D', 'Murphy', '0', '1984-01-21', 'S', 'NULL', 'F', 'nicole32@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '7468 Franklin Canyon Road', 'NULL', '373-555-0118', '2014-01-09', '5-10 Miles'], ['11928', '316', 'AW00011928', 'NULL', 'Isabella', 'M', 'Morris', '0', '1984-03-06', 'M', 'NULL', 'F', 'isabella83@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8487 Amador', 'NULL', '693-555-0146', '2013-05-31', '5-10 Miles'], ['11929', '17', 'AW00011929', 'NULL', 'Virginia', 'NULL', 'Gonzalez', '0', '1962-08-08', 'S', 'NULL', 'F', 'virginia21@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7566 Keller Ridge Dr.', 'NULL', '1 (11) 500 555-0188', '2011-10-14', '5-10 Miles'], ['11930', '12', 'AW00011930', 'NULL', 'Jaclyn', 'M', 'Nara', '0', '1952-10-31', 'M', 'NULL', 'F', 'jaclyn40@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2121 Royal Ann Lane', 'NULL', '1 (11) 500 555-0177', '2011-10-14', '1-2 Miles'], ['11931', '352', 'AW00011931', 'NULL', 'Marcus', 'M', 'Adams', '0', '1984-05-12', 'S', 'NULL', 'M', 'marcus34@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9246 Westminster Pl', 'NULL', '687-555-0170', '2013-02-16', '5-10 Miles'], ['11932', '369', 'AW00011932', 'NULL', 'Elizabeth', 'NULL', 'Coleman', '0', '1984-02-08', 'M', 'NULL', 'F', 'elizabeth35@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7546 Gonzalez Ct.', 'NULL', '400-555-0120', '2013-04-29', '0-1 Miles'], ['11933', '609', 'AW00011933', 'NULL', 'Mathew', 'NULL', 'Rubio', '0', '1982-09-01', 'S', 'NULL', 'M', 'mathew17@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9911 Northgate Road', 'NULL', '430-555-0126', '2011-10-13', '1-2 Miles'], ['11934', '612', 'AW00011934', 'NULL', 'Justin', 'L', 'Shan', '0', '1983-04-13', 'S', 'NULL', 'M', 'justin27@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9377 Lightwood Drive', 'NULL', '215-555-0113', '2011-11-19', '5-10 Miles'], ['11935', '543', 'AW00011935', 'NULL', 'Jessica', 'NULL', 'Taylor', '0', '1983-05-19', 'S', 'NULL', 'F', 'jessica56@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5843 Mountaire Pkwy.', 'NULL', '144-555-0123', '2013-06-06', '5-10 Miles'], ['11936', '634', 'AW00011936', 'NULL', 'Hunter', 'S', 'Clark', '0', '1982-10-09', 'M', 'NULL', 'M', 'hunter51@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9001 Esperanza', 'NULL', '121-555-0144', '2013-04-05', '5-10 Miles'], ['11937', '548', 'AW00011937', 'NULL', 'Devin', 'NULL', 'Perez', '0', '1982-12-03', 'M', 'NULL', 'M', 'devin35@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8510 G St.', 'NULL', '500-555-0169', '2011-10-29', '1-2 Miles'], ['11938', '314', 'AW00011938', 'NULL', 'Seth', 'D', 'Alexander', '0', '1983-03-21', 'M', 'NULL', 'M', 'seth67@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3842 Algiers Dr.', 'NULL', '178-555-0186', '2013-03-07', '5-10 Miles'], ['11939', '329', 'AW00011939', 'NULL', 'Kevin', 'C', 'Washington', '0', '1982-12-20', 'S', 'NULL', 'M', 'kevin16@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9105 Jacobsen Street', 'NULL', '970-555-0114', '2011-11-10', '1-2 Miles'], ['11940', '385', 'AW00011940', 'NULL', 'Tyler', 'E', 'Miller', '0', '1983-01-09', 'M', 'NULL', 'M', 'tyler11@adventure-works.com', '100000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '9231 Brook Hollow Ct.', 'NULL', '456-555-0191', '2013-08-02', '0-1 Miles'], ['11941', '553', 'AW00011941', 'NULL', 'Adam', 'L', 'Roberts', '0', '1982-05-26', 'S', 'NULL', 'M', 'adam34@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '626 Redlands Way', 'NULL', '868-555-0122', '2013-08-07', '5-10 Miles'], ['11942', '10', 'AW00011942', 'NULL', 'George', 'L', 'Gonzalez', '0', '1954-12-11', 'M', 'NULL', 'M', 'george25@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '80 San Remo Ct', 'NULL', '1 (11) 500 555-0181', '2011-10-15', '5-10 Miles'], ['11943', '40', 'AW00011943', 'NULL', 'Dawn', 'E', 'Huang', '0', '1954-08-27', 'M', 'NULL', 'F', 'dawn7@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1318 Ramer Ct.', 'NULL', '1 (11) 500 555-0154', '2011-10-18', '5-10 Miles'], ['11944', '15', 'AW00011944', 'NULL', 'Rachael', 'M', 'Rodriguez', '0', '1956-04-13', 'S', 'NULL', 'F', 'rachael18@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6335 Benita Way', 'NULL', '1 (11) 500 555-0134', '2011-10-19', '1-2 Miles'], ['11945', '311', 'AW00011945', 'NULL', 'Dennis', 'NULL', 'Huang', '0', '1986-03-11', 'M', 'NULL', 'M', 'dennis7@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1901 Mitchell Canyon Court', 'NULL', '183-555-0120', '2011-10-29', '1-2 Miles'], ['11946', '18', 'AW00011946', 'NULL', 'Brandy', 'NULL', 'Saunders', '0', '1956-07-02', 'S', 'NULL', 'F', 'brandy6@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3809 Lancelot Dr.', 'NULL', '1 (11) 500 555-0143', '2011-10-21', '5-10 Miles'], ['11947', '14', 'AW00011947', 'NULL', 'Jenny', 'R', 'Zheng', '0', '1957-04-20', 'S', 'NULL', 'F', 'jenny21@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8268 Donald Dr', 'NULL', '1 (11) 500 555-0162', '2011-10-13', '1-2 Miles'], ['11948', '17', 'AW00011948', 'NULL', 'Tasha', 'E', 'Xu', '0', '1956-10-07', 'M', 'NULL', 'F', 'tasha5@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2013 Filling Ave.', '#3', '1 (11) 500 555-0194', '2013-09-06', '5-10 Miles'], ['11949', '374', 'AW00011949', 'NULL', 'Julia', 'W', 'Brooks', '0', '1986-05-05', 'S', 'NULL', 'F', 'julia63@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1657 Morengo Ct.', 'NULL', '845-555-0143', '2013-07-16', '5-10 Miles'], ['11950', '312', 'AW00011950', 'NULL', 'Jordan', 'NULL', 'Carter', '0', '1985-03-09', 'M', 'NULL', 'F', 'jordan39@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1127 Oak Street', 'NULL', '609-555-0117', '2013-02-17', '5-10 Miles'], ['11951', '35', 'AW00011951', 'NULL', 'Lacey', 'J', 'Huang', '0', '1958-02-03', 'M', 'NULL', 'F', 'lacey18@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8762 Terrace', 'NULL', '1 (11) 500 555-0121', '2013-08-20', '5-10 Miles'], ['11952', '34', 'AW00011952', 'Ms.', 'Dorothy', 'B.', 'Robinson', '0', '1960-03-22', 'S', 'NULL', 'M', 'dorothy3@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4693 Mills Dr.', 'NULL', '423-555-0100', '2011-10-05', '1-2 Miles'], ['11953', '545', 'AW00011953', 'NULL', 'Courtney', 'D', 'Wright', '0', '1981-03-03', 'S', 'NULL', 'F', 'courtney16@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '445 San Carlos Avenue', 'NULL', '366-555-0162', '2013-02-09', '1-2 Miles'], ['11954', '325', 'AW00011954', 'NULL', 'Joseph', 'M', 'Garcia', '0', '1981-02-13', 'M', 'NULL', 'M', 'joseph23@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1220 Bradford Way', 'NULL', '594-555-0120', '2011-11-01', '5-10 Miles'], ['11955', '325', 'AW00011955', 'NULL', 'Gabriel', 'L', 'Green', '0', '1980-10-02', 'S', 'NULL', 'M', 'gabriel45@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6991 Gloria Terr.', 'NULL', '149-555-0162', '2011-10-29', '5-10 Miles'], ['11956', '300', 'AW00011956', 'NULL', 'Alexandria', 'NULL', 'Sandberg', '0', '1985-08-30', 'S', 'NULL', 'F', 'alexandria27@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '844 Sol Street', 'NULL', '998-555-0194', '2011-10-31', '5-10 Miles'], ['11957', '634', 'AW00011957', 'NULL', 'Courtney', 'NULL', 'Hernandez', '0', '1979-02-09', 'S', 'NULL', 'F', 'courtney14@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8426 Kendall Rd.', 'NULL', '424-555-0199', '2013-02-12', '1-2 Miles'], ['11958', '611', 'AW00011958', 'NULL', 'Dylan', 'D', 'Lal', '0', '1978-07-06', 'S', 'NULL', 'M', 'dylan28@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6746 River Ash Court', 'NULL', '844-555-0156', '2013-06-16', '5-10 Miles'], ['11959', '335', 'AW00011959', 'NULL', 'Elizabeth', 'K', 'Davis', '0', '1978-10-05', 'S', 'NULL', 'F', 'elizabeth9@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '117 Esperanza Dr', 'NULL', '884-555-0119', '2013-03-23', '0-1 Miles'], ['11960', '634', 'AW00011960', 'NULL', 'Ana', 'NULL', 'Griffin', '0', '1978-12-31', 'S', 'NULL', 'F', 'ana19@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '6612 Concord', 'NULL', '377-555-0180', '2013-03-25', '0-1 Miles'], ['11961', '299', 'AW00011961', 'NULL', 'Anne', 'A', 'Alvarez', '0', '1978-12-22', 'S', 'NULL', 'F', 'anne5@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6318 Merriewood Dr.', 'NULL', '297-555-0150', '2013-02-11', '5-10 Miles'], ['11962', '298', 'AW00011962', 'NULL', 'Alexandra', 'NULL', 'Roberts', '0', '1982-05-28', 'S', 'NULL', 'F', 'alexandra47@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '9024 Grant Street', 'NULL', '685-555-0149', '2013-08-11', '1-2 Miles'], ['11963', '2', 'AW00011963', 'NULL', 'Antonio', 'G', 'Patterson', '0', '1960-12-10', 'M', 'NULL', 'M', 'antonio10@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2355 Regina Lane', 'NULL', '1 (11) 500 555-0197', '2011-10-22', '1-2 Miles'], ['11964', '22', 'AW00011964', 'Ms.', 'Sharon', 'NULL', 'Salavaria', '0', '1967-02-13', 'S', 'NULL', 'M', 'sharon4@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5652 East View Place', 'NULL', '109-555-0100', '2011-10-14', '1-2 Miles'], ['11965', '8', 'AW00011965', 'NULL', 'Katie', 'B', 'She', '0', '1962-04-18', 'S', 'NULL', 'F', 'katie3@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1174 Royal Ann Lane', 'NULL', '1 (11) 500 555-0150', '2013-02-10', '5-10 Miles'], ['11966', '32', 'AW00011966', 'NULL', 'Rafael', 'NULL', 'Black', '0', '1967-02-13', 'S', 'NULL', 'M', 'rafael44@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1730 D Reliez Valley Ct.', 'NULL', '1 (11) 500 555-0147', '2013-11-01', '5-10 Miles'], ['11967', '25', 'AW00011967', 'NULL', 'Latasha', 'NULL', 'Munoz', '0', '1962-08-10', 'S', 'NULL', 'F', 'latasha7@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4799 Buena Vista', 'NULL', '1 (11) 500 555-0118', '2011-10-23', '5-10 Miles'], ['11968', '9', 'AW00011968', 'NULL', 'Kelsey', 'G', 'Becker', '0', '1964-04-19', 'S', 'NULL', 'F', 'kelsey19@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '6577 La Canada', 'NULL', '1 (11) 500 555-0135', '2011-10-28', '0-1 Miles'], ['11969', '30', 'AW00011969', 'NULL', 'Randy', 'S', 'Xu', '0', '1964-01-22', 'S', 'NULL', 'M', 'randy14@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '2140 Clifford Court', 'NULL', '1 (11) 500 555-0188', '2011-10-19', '0-1 Miles'], ['11970', '552', 'AW00011970', 'NULL', 'Bailey', 'NULL', 'Collins', '0', '1984-11-12', 'S', 'NULL', 'F', 'bailey22@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '2578 Welle Road', '# 118', '968-555-0128', '2013-05-25', '2-5 Miles'], ['11971', '322', 'AW00011971', 'NULL', 'Amanda', 'P', 'Adams', '0', '1979-03-03', 'S', 'NULL', 'F', 'amanda58@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '6730 Saddlehill Lane', 'NULL', '592-555-0166', '2013-04-15', '2-5 Miles'], ['11972', '614', 'AW00011972', 'NULL', 'Katherine', 'K', 'Williams', '0', '1979-09-20', 'M', 'NULL', 'F', 'katherine73@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '927 Live Oak Ave.', 'NULL', '351-555-0197', '2013-11-09', '1-2 Miles'], ['11973', '635', 'AW00011973', 'NULL', 'Caroline', 'NULL', 'Barnes', '0', '1979-08-03', 'S', 'NULL', 'F', 'caroline5@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '112 RaceCt', 'NULL', '820-555-0119', '2013-02-27', '1-2 Miles'], ['11974', '299', 'AW00011974', 'NULL', 'Randy', 'W', 'Sun', '0', '1979-08-07', 'S', 'NULL', 'M', 'randy15@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '8540 Ravenwood Dr.', 'NULL', '156-555-0147', '2013-10-30', '5-10 Miles'], ['11975', '307', 'AW00011975', 'NULL', 'Destiny', 'B', 'Garcia', '0', '1980-04-02', 'S', 'NULL', 'F', 'destiny16@adventure-works.com', '60000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '1993 South Villa Way', 'NULL', '928-555-0186', '2013-07-17', '1-2 Miles'], ['11976', '12', 'AW00011976', 'NULL', 'Audrey', 'NULL', 'Ramos', '0', '1970-05-22', 'S', 'NULL', 'F', 'audrey19@adventure-works.com', '120000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '598 Merry Drive', 'NULL', '1 (11) 500 555-0176', '2011-10-25', '0-1 Miles'], ['11977', '10', 'AW00011977', 'NULL', 'Bonnie', 'NULL', 'Jai', '0', '1964-11-19', 'M', 'NULL', 'F', 'bonnie17@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '2544 Ashley Way', 'NULL', '1 (11) 500 555-0185', '2011-11-01', '0-1 Miles'], ['11978', '322', 'AW00011978', 'NULL', 'Jackson', 'NULL', 'Washington', '0', '1977-10-18', 'M', 'NULL', 'M', 'jackson15@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '1374 Queens Road', 'NULL', '644-555-0115', '2013-02-03', '0-1 Miles'], ['11979', '69', 'AW00011979', 'NULL', 'Christopher', 'NULL', 'Johnson', '0', '1962-11-05', 'M', 'NULL', 'M', 'christopher25@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9234 Carmel Drive', 'NULL', '130-555-0198', '2013-02-14', '1-2 Miles'], ['11980', '369', 'AW00011980', 'NULL', 'Kimberly', 'NULL', 'Richardson', '0', '1963-06-17', 'S', 'NULL', 'F', 'kimberly13@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '7629 Bonanza', 'NULL', '116-555-0182', '2013-09-23', '1-2 Miles'], ['11981', '616', 'AW00011981', 'NULL', 'Alexandria', 'NULL', 'Howard', '0', '1962-08-03', 'S', 'NULL', 'F', 'alexandria33@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '341 Victory Lane', 'NULL', '935-555-0120', '2013-04-09', '1-2 Miles'], ['11982', '359', 'AW00011982', 'NULL', 'Alexandra', 'NULL', 'Foster', '0', '1962-10-02', 'S', 'NULL', 'F', 'alexandra37@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6754 Pampered Ct.', '# 19', '278-555-0183', '2013-08-17', '5-10 Miles'], ['11983', '298', 'AW00011983', 'NULL', 'Cheryl', 'NULL', 'Ortega', '0', '1968-02-24', 'M', 'NULL', 'F', 'cheryl24@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '6501 West Way', 'NULL', '354-555-0177', '2011-11-08', '5-10 Miles'], ['11984', '59', 'AW00011984', 'NULL', 'Alex', 'NULL', 'Campbell', '0', '1962-12-04', 'M', 'NULL', 'M', 'alex35@adventure-works.com', '80000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '4164 Kenneth Ct.', 'NULL', '376-555-0156', '2013-02-15', '0-1 Miles'], ['11985', '536', 'AW00011985', 'NULL', 'Melanie', 'A', 'Hughes', '0', '1963-05-18', 'M', 'NULL', 'F', 'melanie27@adventure-works.com', '80000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '2546 Crowe Place', 'NULL', '909-555-0153', '2013-02-27', '0-1 Miles'], ['11986', '34', 'AW00011986', 'NULL', 'Max', 'M', 'Alvarez', '0', '1969-01-20', 'S', 'NULL', 'M', 'max5@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4594 Rose Dr.', 'NULL', '1 (11) 500 555-0124', '2011-11-22', '5-10 Miles'], ['11987', '38', 'AW00011987', 'NULL', 'Diane', 'D', 'Vazquez', '0', '1973-05-26', 'M', 'NULL', 'F', 'diane19@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '6772 Geraldine Dr.', 'NULL', '1 (11) 500 555-0128', '2013-06-17', '0-1 Miles'], ['11988', '4', 'AW00011988', 'NULL', 'Kathryn', 'NULL', 'Chapman', '0', '1968-02-17', 'S', 'NULL', 'F', 'kathryn14@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4095 Minert Rd.', 'NULL', '1 (11) 500 555-0127', '2011-11-10', '5-10 Miles'], ['11989', '24', 'AW00011989', 'NULL', 'Kara', 'NULL', 'Anand', '0', '1984-03-20', 'S', 'NULL', 'F', 'kara20@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1088 Ash Lane', 'NULL', '1 (11) 500 555-0130', '2011-11-03', '5-10 Miles'], ['11990', '10', 'AW00011990', 'NULL', 'Joanna', 'J', 'Vazquez', '0', '1968-01-12', 'S', 'NULL', 'F', 'joanna13@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '198 Edie Ct.', 'NULL', '1 (11) 500 555-0182', '2011-11-13', '5-10 Miles'], ['11991', '9', 'AW00011991', 'NULL', 'Frederick', 'NULL', 'Martinez', '0', '1968-02-07', 'M', 'NULL', 'M', 'frederick14@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3410 Hemlock Ave.', 'NULL', '1 (11) 500 555-0142', '2011-11-01', '0-1 Miles'], ['11992', '20', 'AW00011992', 'NULL', 'Tonya', 'NULL', 'Chande', '0', '1972-06-09', 'S', 'NULL', 'F', 'tonya14@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4766 Palm Ave', 'NULL', '1 (11) 500 555-0177', '2011-11-17', '5-10 Miles'], ['11993', '4', 'AW00011993', 'NULL', 'Rosa', 'I', 'Wang', '0', '1977-09-12', 'S', 'NULL', 'F', 'rosa1@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9135 Rockford Dr.', 'NULL', '1 (11) 500 555-0178', '2011-11-13', '0-1 Miles'], ['11994', '27', 'AW00011994', 'NULL', 'Leah', 'NULL', 'Hu', '0', '1977-10-18', 'S', 'NULL', 'F', 'leah16@adventure-works.com', '110000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '1374 Queens Road', 'NULL', '1 (11) 500 555-0191', '2011-11-25', '1-2 Miles'], ['11995', '39', 'AW00011995', 'NULL', 'Kelvin', 'A', 'Carson', '0', '1965-12-12', 'M', 'NULL', 'M', 'kelvin11@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2599 Amaranth Way', 'NULL', '1 (11) 500 555-0149', '2011-11-08', '0-1 Miles'], ['11996', '21', 'AW00011996', 'NULL', 'Veronica', 'NULL', 'Srini', '0', '1966-01-30', 'S', 'NULL', 'F', 'veronica9@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4681 Deerfield Dr.', 'NULL', '1 (11) 500 555-0173', '2011-11-04', '5-10 Miles'], ['11997', '2', 'AW00011997', 'NULL', 'Kristina', 'NULL', 'Kapoor', '0', '1971-04-04', 'M', 'NULL', 'F', 'kristina1@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6828 Willow Pass Road', 'NULL', '1 (11) 500 555-0140', '2011-11-05', '0-1 Miles'], ['11998', '24', 'AW00011998', 'NULL', 'Donna', 'NULL', 'Sharma', '0', '1966-02-07', 'M', 'NULL', 'F', 'donna9@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1641 Overhill Rd', 'NULL', '1 (11) 500 555-0118', '2011-11-16', '5-10 Miles'], ['11999', '10', 'AW00011999', 'NULL', 'Johnny', 'NULL', 'Shan', '0', '1965-12-03', 'M', 'NULL', 'M', 'johnny11@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7177 Santa Rosa', 'NULL', '1 (11) 500 555-0145', '2011-11-10', '0-1 Miles'], ['12000', '21', 'AW00012000', 'NULL', 'Ashley', 'NULL', 'Russell', '0', '1970-09-09', 'S', 'NULL', 'F', 'ashley47@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9088 Ironwood Way', 'NULL', '1 (11) 500 555-0158', '2011-11-16', '0-1 Miles'], ['12001', '4', 'AW00012001', 'NULL', 'Shannon', 'NULL', 'Yang', '0', '1981-12-30', 'S', 'NULL', 'F', 'shannon5@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '8404 Houston Ct.', 'NULL', '1 (11) 500 555-0134', '2011-11-14', '1-2 Miles'], ['12002', '5', 'AW00012002', 'NULL', 'Adriana', 'A', 'Lopez', '0', '1969-08-05', 'S', 'NULL', 'F', 'adriana17@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5420 Thornwood Drive', 'NULL', '1 (11) 500 555-0120', '2011-11-24', '5-10 Miles'], ['12003', '25', 'AW00012003', 'NULL', 'Audrey', 'V', 'Munoz', '0', '1979-09-04', 'S', 'NULL', 'F', 'audrey8@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2288 Morning Way', 'NULL', '1 (11) 500 555-0124', '2011-11-06', '5-10 Miles'], ['12004', '36', 'AW00012004', 'NULL', 'Jarrod', 'E', 'Suri', '0', '1974-12-16', 'S', 'NULL', 'M', 'jarrod0@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '7265 Mt. Dell Dr.', 'NULL', '1 (11) 500 555-0128', '2011-11-08', '0-1 Miles'], ['12005', '24', 'AW00012005', 'NULL', 'Gilbert', 'C', 'Shen', '0', '1973-07-13', 'M', 'NULL', 'M', 'gilbert23@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3798 Baird Court', 'NULL', '1 (11) 500 555-0186', '2011-11-21', '0-1 Miles'], ['12006', '27', 'AW00012006', 'NULL', 'Richard', 'NULL', 'Blue', '0', '1973-03-12', 'M', 'NULL', 'M', 'richard59@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8005 Water St.', 'NULL', '1 (11) 500 555-0159', '2013-05-05', '5-10 Miles'], ['12007', '20', 'AW00012007', 'NULL', 'Shannon', 'NULL', 'Sun', '0', '1967-01-23', 'M', 'NULL', 'F', 'shannon12@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2602 Glenside Court', 'NULL', '1 (11) 500 555-0147', '2011-12-07', '5-10 Miles'], ['12008', '25', 'AW00012008', 'NULL', 'Sharon', 'NULL', 'Yuan', '0', '1967-02-19', 'M', 'NULL', 'F', 'sharon13@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1048 Burwood Way', 'NULL', '1 (11) 500 555-0128', '2013-06-10', '0-1 Miles'], ['12009', '11', 'AW00012009', 'NULL', 'Ann', 'NULL', 'Martinez', '0', '1963-01-31', 'S', 'NULL', 'F', 'ann22@adventure-works.com', '80000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8794 Seagull Court', 'NULL', '1 (11) 500 555-0189', '2011-12-11', '5-10 Miles'], ['12010', '27', 'AW00012010', 'NULL', 'Max', 'E', 'Serrano', '0', '1962-08-26', 'M', 'NULL', 'M', 'max16@adventure-works.com', '80000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1640 Windmill Way', 'NULL', '1 (11) 500 555-0152', '2011-12-21', '5-10 Miles'], ['12011', '32', 'AW00012011', 'NULL', 'Morgan', 'E', 'Johnson', '0', '1940-08-16', 'S', 'NULL', 'F', 'morgan24@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '415 Silver Cypress Ct.', 'NULL', '1 (11) 500 555-0168', '2011-12-01', '5-10 Miles'], ['12012', '2', 'AW00012012', 'NULL', 'Monica', 'NULL', 'Schmidt', '0', '1971-10-19', 'M', 'NULL', 'F', 'monica11@adventure-works.com', '60000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8711 Pepper Dr.', 'NULL', '1 (11) 500 555-0190', '2013-02-13', '0-1 Miles'], ['12013', '39', 'AW00012013', 'NULL', 'Kayla', 'NULL', 'Lewis', '0', '1958-09-04', 'S', 'NULL', 'F', 'kayla20@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7421 Lavetta Way', 'NULL', '1 (11) 500 555-0130', '2011-12-09', '5-10 Miles'], ['12014', '32', 'AW00012014', 'NULL', 'Devin', 'J', 'Sanders', '0', '1954-08-09', 'M', 'NULL', 'M', 'devin65@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '340 Danesta Dr.', 'NULL', '1 (11) 500 555-0152', '2011-12-08', '5-10 Miles'], ['12015', '336', 'AW00012015', 'NULL', 'Jacob', 'K', 'White', '0', '1982-01-06', 'S', 'NULL', 'M', 'jacob11@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3074 Ardith Drive', 'NULL', '983-555-0167', '2013-04-22', '5-10 Miles'], ['12016', '310', 'AW00012016', 'NULL', 'Meredith', 'NULL', 'Serrano', '0', '1981-06-11', 'S', 'NULL', 'F', 'meredith40@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '7440 Dorset Way', 'NULL', '335-555-0184', '2011-11-14', '0-1 Miles'], ['12017', '60', 'AW00012017', 'NULL', 'David', 'E', 'Simmons', '0', '1982-04-26', 'M', 'NULL', 'M', 'david48@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8442 Euclid Avenue', 'NULL', '712-555-0167', '2013-03-20', '5-10 Miles'], ['12018', '359', 'AW00012018', 'NULL', 'Devin', 'K', 'Henderson', '0', '1986-01-30', 'M', 'NULL', 'M', 'devin43@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '685 St. Peter Court', 'NULL', '382-555-0138', '2011-10-29', '5-10 Miles'], ['12019', '374', 'AW00012019', 'NULL', 'Gabrielle', 'NULL', 'Cox', '0', '1986-05-13', 'S', 'NULL', 'F', 'gabrielle10@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1585 Pacific Avenue', 'NULL', '694-555-0126', '2013-09-25', '0-1 Miles'], ['12020', '60', 'AW00012020', 'NULL', 'Olivia', 'NULL', 'Rogers', '0', '1985-03-13', 'M', 'NULL', 'F', 'olivia27@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7076 Terry Lynn Lane', 'NULL', '460-555-0156', '2013-10-12', '5-10 Miles'], ['12021', '16', 'AW00012021', 'NULL', 'Deborah', 'NULL', 'Yuan', '0', '1951-08-13', 'S', 'NULL', 'F', 'deborah11@adventure-works.com', '10000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6641 Morgan Territory Rd.', 'NULL', '1 (11) 500 555-0172', '2011-12-03', '0-1 Miles'], ['12022', '553', 'AW00012022', 'NULL', 'Jose', 'NULL', 'Wright', '0', '1986-05-22', 'S', 'NULL', 'M', 'jose56@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8011 Mcnutt Ave', 'NULL', '571-555-0110', '2013-08-16', '5-10 Miles'], ['12023', '310', 'AW00012023', 'NULL', 'Fernando', 'I', 'Johnson', '0', '1984-01-05', 'S', 'NULL', 'M', 'fernando2@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5931 San Carlos', 'NULL', '247-555-0143', '2011-10-30', '5-10 Miles'], ['12024', '632', 'AW00012024', 'NULL', 'Samuel', 'NULL', 'Edwards', '0', '1983-12-24', 'S', 'NULL', 'M', 'samuel32@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '710 Longbrook Way', 'NULL', '695-555-0151', '2013-02-23', '5-10 Miles'], ['12025', '542', 'AW00012025', 'NULL', 'Logan', 'A', 'Diaz', '0', '1983-12-16', 'M', 'NULL', 'M', 'logan22@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '297 Mt. Tank Circle', 'NULL', '965-555-0113', '2011-11-18', '5-10 Miles'], ['12026', '383', 'AW00012026', 'NULL', 'Lucas', 'NULL', 'Flores', '0', '1984-01-14', 'M', 'NULL', 'M', 'lucas60@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9431 Firestone', 'NULL', '468-555-0132', '2011-11-22', '0-1 Miles'], ['12027', '635', 'AW00012027', 'NULL', 'Haley', 'E', 'Wood', '0', '1984-04-24', 'M', 'NULL', 'F', 'haley21@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9695 Notre Dame Avenue', 'NULL', '920-555-0199', '2011-11-10', '5-10 Miles'], ['12028', '335', 'AW00012028', 'NULL', 'Sarah', 'E', 'Lewis', '0', '1983-05-11', 'S', 'NULL', 'F', 'sarah23@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7212 Santa Maria Ct.', 'NULL', '417-555-0178', '2013-09-26', '5-10 Miles'], ['12029', '298', 'AW00012029', 'NULL', 'Damien', 'NULL', 'Hu', '0', '1983-04-15', 'M', 'NULL', 'M', 'damien16@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2119 Virginia Hills', 'NULL', '805-555-0160', '2013-08-02', '0-1 Miles'], ['12030', '618', 'AW00012030', 'NULL', 'Ana', 'NULL', 'Washington', '0', '1982-08-05', 'S', 'NULL', 'F', 'ana12@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5157 Maywood Lane', 'NULL', '129-555-0170', '2011-11-06', '5-10 Miles'], ['12031', '49', 'AW00012031', 'NULL', 'Logan', 'H', 'Jai', '0', '1985-04-17', 'S', 'NULL', 'M', 'logan5@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6857 La Salle Ct', 'NULL', '720-555-0114', '2013-11-06', '5-10 Miles'], ['12032', '62', 'AW00012032', 'NULL', 'Tyler', 'A', 'Taylor', '0', '1984-11-22', 'S', 'NULL', 'M', 'tyler17@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5465 Janin Pl.', 'NULL', '541-555-0177', '2013-02-20', '5-10 Miles'], ['12033', '611', 'AW00012033', 'NULL', 'Kristen', 'A', 'Guo', '0', '1984-10-29', 'S', 'NULL', 'F', 'kristen15@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8452 Dewing Avenue', 'NULL', '865-555-0193', '2011-11-23', '0-1 Miles'], ['12034', '33', 'AW00012034', 'NULL', 'Julian', 'NULL', 'Long', '0', '1946-09-11', 'M', 'NULL', 'M', 'julian11@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9707 Daffodil Drive', 'NULL', '1 (11) 500 555-0143', '2013-09-23', '5-10 Miles'], ['12035', '31', 'AW00012035', 'NULL', 'Gerald', 'B', 'Prasad', '0', '1946-12-20', 'M', 'NULL', 'M', 'gerald39@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '4945 Noah Court', 'NULL', '1 (11) 500 555-0177', '2013-02-07', '0-1 Miles'], ['12036', '26', 'AW00012036', 'NULL', 'Summer', 'NULL', 'Lopez', '0', '1946-08-06', 'M', 'NULL', 'F', 'summer14@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2901 Sunny Ave', 'NULL', '1 (11) 500 555-0161', '2013-03-18', '0-1 Miles'], ['12037', '21', 'AW00012037', 'NULL', 'Patricia', 'NULL', 'Chapman', '0', '1949-03-13', 'S', 'NULL', 'F', 'patricia7@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5186 Elmhurst Lane', 'NULL', '1 (11) 500 555-0114', '2011-12-27', '5-10 Miles'], ['12038', '3', 'AW00012038', 'NULL', 'George', 'R', 'Vance', '0', '1949-02-06', 'S', 'NULL', 'M', 'george10@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1314 Skyline Dr.', 'NULL', '1 (11) 500 555-0197', '2013-05-04', '5-10 Miles'], ['12039', '32', 'AW00012039', 'NULL', 'Ricardo', 'C', 'Nath', '0', '1948-08-12', 'M', 'NULL', 'M', 'ricardo17@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '4472 Galveston Ct.', 'NULL', '1 (11) 500 555-0157', '2011-12-27', '1-2 Miles'], ['12040', '359', 'AW00012040', 'NULL', 'Richard', 'NULL', 'Torres', '0', '1982-02-15', 'M', 'NULL', 'M', 'richard85@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '125 Keller Ridge', 'NULL', '647-555-0134', '2013-02-13', '5-10 Miles'], ['12041', '627', 'AW00012041', 'NULL', 'Seth', 'NULL', 'Martin', '0', '1986-06-03', 'M', 'NULL', 'M', 'seth15@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1019 Pennsylvania Blvd', 'NULL', '499-555-0118', '2011-11-09', '5-10 Miles'], ['12042', '648', 'AW00012042', 'NULL', 'Alex', 'M', 'Carter', '0', '1981-03-26', 'M', 'NULL', 'M', 'alex39@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7468 Lindley Ct.', 'NULL', '716-555-0163', '2011-11-05', '5-10 Miles'], ['12043', '322', 'AW00012043', 'NULL', 'Carson', 'L', 'Patterson', '0', '1980-03-20', 'M', 'NULL', 'M', 'carson9@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4195 Sea Point Way', 'NULL', '840-555-0139', '2013-09-21', '5-10 Miles'], ['12044', '337', 'AW00012044', 'NULL', 'Madeline', 'G', 'Lopez', '0', '1979-11-24', 'S', 'NULL', 'F', 'madeline18@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9687 Maywood Ln.', 'NULL', '501-555-0149', '2013-11-18', '5-10 Miles'], ['12045', '339', 'AW00012045', 'NULL', 'Luis', 'A', 'Russell', '0', '1979-12-23', 'S', 'NULL', 'M', 'luis19@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9236 Woodland Drive', 'NULL', '855-555-0185', '2013-05-20', '1-2 Miles'], ['12046', '358', 'AW00012046', 'NULL', 'Alexa', 'NULL', 'Cook', '0', '1980-01-15', 'S', 'NULL', 'F', 'alexa20@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3005 Banyan Way', 'NULL', '666-555-0153', '2013-02-17', '1-2 Miles'], ['12047', '383', 'AW00012047', 'NULL', 'Alexandra', 'NULL', 'Davis', '0', '1979-09-22', 'S', 'NULL', 'F', 'alexandra68@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '8831 San Gabriel Dr.', 'NULL', '719-555-0185', '2013-05-02', '1-2 Miles'], ['12048', '542', 'AW00012048', 'NULL', 'Kayla', 'L', 'Coleman', '0', '1983-05-16', 'S', 'NULL', 'F', 'kayla30@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6869 Meier Road', 'NULL', '225-555-0182', '2013-09-11', '5-10 Miles'], ['12049', '338', 'AW00012049', 'NULL', 'Angela', 'NULL', 'Russell', '0', '1973-10-09', 'S', 'NULL', 'F', 'angela22@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '878 Rancho View Drive', 'NULL', '112-555-0124', '2013-08-19', '1-2 Miles'], ['12050', '336', 'AW00012050', 'NULL', 'Aaron', 'M', 'Young', '0', '1978-09-10', 'S', 'NULL', 'M', 'aaron49@adventure-works.com', '110000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '6350 Plumas Court', 'NULL', '911-555-0153', '2011-11-12', '1-2 Miles'], ['12051', '343', 'AW00012051', 'NULL', 'Isaiah', 'E', 'Scott', '0', '1984-03-19', 'S', 'NULL', 'M', 'isaiah39@adventure-works.com', '120000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '1987 Megan Dr.', 'NULL', '926-555-0181', '2013-02-23', '1-2 Miles'], ['12052', '355', 'AW00012052', 'NULL', 'Makayla', 'R', 'Ward', '0', '1972-11-23', 'S', 'NULL', 'F', 'makayla11@adventure-works.com', '120000.00', '0', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '9023 Brush Creek Court', 'NULL', '328-555-0112', '2011-11-03', '1-2 Miles'], ['12053', '301', 'AW00012053', 'NULL', 'Cedric', 'A', 'Gao', '0', '1972-11-11', 'S', 'NULL', 'M', 'cedric14@adventure-works.com', '130000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4283 Meaham Drive', 'NULL', '778-555-0133', '2011-10-29', '0-1 Miles'], ['12054', '57', 'AW00012054', 'NULL', 'Luke', 'NULL', 'Diaz', '0', '1973-12-02', 'M', 'NULL', 'M', 'luke11@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '6377 East Avenue', 'NULL', '670-555-0117', '2013-01-29', '0-1 Miles'], ['12055', '56', 'AW00012055', 'NULL', 'Arianna', 'C', 'Richardson', '0', '1974-05-20', 'M', 'NULL', 'F', 'arianna31@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '1105 N. 48th St', 'NULL', '675-555-0150', '2013-02-21', '0-1 Miles'], ['12056', '54', 'AW00012056', 'NULL', 'Ian', 'NULL', 'Ward', '0', '1947-12-13', 'M', 'NULL', 'M', 'ian69@adventure-works.com', '120000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '3710 Via Appia', 'NULL', '684-555-0115', '2013-06-14', '5-10 Miles'], ['12057', '627', 'AW00012057', 'NULL', 'Madeline', 'M', 'Collins', '0', '1948-09-11', 'M', 'NULL', 'F', 'madeline2@adventure-works.com', '120000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '1124 Leeds Ct. West', 'NULL', '622-555-0191', '2013-02-26', '5-10 Miles'], ['12058', '322', 'AW00012058', 'NULL', 'Chloe', 'E', 'Nelson', '0', '1948-12-30', 'M', 'NULL', 'F', 'chloe6@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '4627 Lakefield Place', 'NULL', '202-555-0125', '2011-11-14', '0-1 Miles'], ['12059', '635', 'AW00012059', 'NULL', 'Jason', 'L', 'Jenkins', '0', '1948-11-29', 'M', 'NULL', 'M', 'jason4@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '8480 Zebra Street', 'NULL', '535-555-0185', '2011-11-22', '0-1 Miles'], ['12060', '66', 'AW00012060', 'NULL', 'Andrew', 'T', 'Wedge', '0', '1948-10-13', 'S', 'NULL', 'M', 'andrew22@adventure-works.com', '150000.00', '1', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '9263 Mt. Mckinley Ct.', 'NULL', '842-555-0146', '2013-01-31', '0-1 Miles'], ['12061', '62', 'AW00012061', 'NULL', 'Bryce', 'NULL', 'Brooks', '0', '1948-11-05', 'M', 'NULL', 'M', 'bryce2@adventure-works.com', '160000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '5508 Glenmount Dr.', 'NULL', '110-555-0161', '2013-01-29', '0-1 Miles'], ['12062', '358', 'AW00012062', 'NULL', 'Edward', 'H', 'Long', '0', '1949-12-02', 'M', 'NULL', 'M', 'edward58@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9837 Larkwood Ct', 'NULL', '379-555-0182', '2013-02-24', '10+ Miles'], ['12063', '609', 'AW00012063', 'NULL', 'Xavier', 'NULL', 'Martinez', '0', '1950-03-08', 'M', 'NULL', 'M', 'xavier15@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3644 Rosarita', 'NULL', '957-555-0160', '2013-09-10', '10+ Miles'], ['12064', '539', 'AW00012064', 'NULL', 'John', 'D', 'White', '0', '1955-10-06', 'S', 'NULL', 'M', 'john50@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '244 La Cadena', 'NULL', '161-555-0125', '2013-03-18', '10+ Miles'], ['12065', '618', 'AW00012065', 'NULL', 'Isaiah', 'A', 'Collins', '0', '1949-12-31', 'M', 'NULL', 'M', 'isaiah24@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '745 Harvey Way', 'NULL', '869-555-0152', '2013-03-06', '10+ Miles'], ['12066', '338', 'AW00012066', 'NULL', 'Wyatt', 'L', 'Powell', '0', '1950-02-09', 'M', 'NULL', 'M', 'wyatt60@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8728 Argyll Ave.', 'NULL', '788-555-0163', '2013-03-01', '10+ Miles'], ['12067', '355', 'AW00012067', 'NULL', 'Aaron', 'NULL', 'Bryant', '0', '1950-05-14', 'S', 'NULL', 'M', 'aaron17@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2325 Candywood Ct', 'NULL', '754-555-0137', '2013-04-24', '10+ Miles'], ['12068', '345', 'AW00012068', 'NULL', 'Maria', 'L', 'Jenkins', '0', '1949-11-19', 'S', 'NULL', 'F', 'maria30@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1113 Catherine Way', 'NULL', '189-555-0198', '2013-07-05', '10+ Miles'], ['12069', '307', 'AW00012069', 'NULL', 'Garrett', 'S', 'Kelly', '0', '1950-05-01', 'M', 'NULL', 'M', 'garrett6@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '7129 N Larwin Ave.', 'NULL', '694-555-0142', '2011-10-30', '1-2 Miles'], ['12070', '300', 'AW00012070', 'NULL', 'Luke', 'J', 'Ross', '0', '1950-03-03', 'M', 'NULL', 'M', 'luke22@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2749 Greenbush Drive', 'NULL', '258-555-0153', '2013-11-27', '10+ Miles'], ['12071', '300', 'AW00012071', 'NULL', 'Robert', 'NULL', 'Robinson', '0', '1949-09-30', 'M', 'NULL', 'M', 'robert78@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9896 Walkim Court', 'NULL', '190-555-0141', '2011-11-23', '1-2 Miles'], ['12072', '334', 'AW00012072', 'NULL', 'Tristan', 'NULL', 'Ross', '0', '1950-02-21', 'M', 'NULL', 'M', 'tristan4@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5862 Crivello Ave.', 'NULL', '805-555-0133', '2011-11-12', '1-2 Miles'], ['12073', '334', 'AW00012073', 'NULL', 'Thomas', 'G', 'Rodriguez', '0', '1950-02-20', 'M', 'NULL', 'M', 'thomas68@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8094 Roxbury Drive', 'NULL', '972-555-0135', '2013-03-06', '10+ Miles'], ['12074', '59', 'AW00012074', 'NULL', 'Megan', 'R', 'Jenkins', '0', '1961-04-22', 'S', 'NULL', 'F', 'megan57@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2603 Condor Place', 'NULL', '661-555-0160', '2013-08-11', '10+ Miles'], ['12075', '618', 'AW00012075', 'NULL', 'Cameron', 'NULL', 'Griffin', '0', '1949-12-24', 'S', 'NULL', 'M', 'cameron16@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7330 Saddlehill Lane', 'NULL', '319-555-0148', '2011-11-22', '10+ Miles'], ['12076', '322', 'AW00012076', 'NULL', 'Chloe', 'W', 'Washington', '0', '1955-02-22', 'M', 'NULL', 'F', 'chloe80@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9115 Arthur Rd.', 'NULL', '276-555-0136', '2011-11-04', '10+ Miles'], ['12077', '65', 'AW00012077', 'NULL', 'Nicole', 'M', 'Sandberg', '0', '1956-03-17', 'S', 'NULL', 'F', 'nicole47@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1742 Breck Court', 'NULL', '371-555-0196', '2013-01-29', '10+ Miles'], ['12078', '648', 'AW00012078', 'NULL', 'Jose', 'W', 'Edwards', '0', '1950-08-18', 'M', 'NULL', 'M', 'jose39@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9601 Santa Fe Dr.', 'NULL', '171-555-0119', '2011-11-27', '2-5 Miles'], ['12079', '343', 'AW00012079', 'NULL', 'Nathaniel', 'NULL', 'Cooper', '0', '1956-10-09', 'M', 'NULL', 'M', 'nathaniel9@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '9566 Pine Hollow Road', 'NULL', '299-555-0194', '2011-11-05', '2-5 Miles'], ['12080', '49', 'AW00012080', 'NULL', 'Grace', 'NULL', 'Sanchez', '0', '1951-12-07', 'S', 'NULL', 'F', 'grace26@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '8844 Fitzpatrick Drive', 'NULL', '207-555-0158', '2013-03-31', '10+ Miles'], ['12081', '59', 'AW00012081', 'NULL', 'Kaitlyn', 'A', 'Perez', '0', '1957-06-01', 'S', 'NULL', 'F', 'kaitlyn10@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '8089 Mariposa Ct.', 'NULL', '154-555-0159', '2013-05-08', '10+ Miles'], ['12082', '315', 'AW00012082', 'NULL', 'Lauren', 'NULL', 'Sanchez', '0', '1952-04-10', 'M', 'NULL', 'F', 'lauren0@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5379 Treasure Island Way', 'Bldg 14', '694-555-0111', '2011-11-17', '10+ Miles'], ['12083', '614', 'AW00012083', 'NULL', 'Kayla', 'NULL', 'Alexander', '0', '1951-08-28', 'M', 'NULL', 'F', 'kayla43@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '2908 Piper Ridge Court', 'NULL', '179-555-0179', '2011-11-24', '10+ Miles'], ['12084', '545', 'AW00012084', 'NULL', 'Aidan', 'O', 'Perry', '0', '1953-02-03', 'M', 'NULL', 'M', 'aidan8@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '4772 Ravenwood', 'NULL', '932-555-0175', '2011-11-08', '2-5 Miles'], ['12085', '547', 'AW00012085', 'NULL', 'Tyler', 'NULL', 'Rodriguez', '0', '1953-06-23', 'M', 'NULL', 'M', 'tyler20@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '8980 Logan Court', 'NULL', '935-555-0186', '2013-06-21', '2-5 Miles'], ['12086', '62', 'AW00012086', 'NULL', 'Emily', 'R', 'Clark', '0', '1953-02-09', 'S', 'NULL', 'F', 'emily20@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '5368 Pierce Ct.', 'NULL', '165-555-0198', '2013-05-14', '10+ Miles'], ['12087', '334', 'AW00012087', 'NULL', 'Sean', 'NULL', 'Cook', '0', '1958-07-10', 'S', 'NULL', 'M', 'sean29@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '2715 Euclid Ave.', 'NULL', '390-555-0114', '2013-10-10', '10+ Miles'], ['12088', '548', 'AW00012088', 'NULL', 'Lauren', 'E', 'Thompson', '0', '1953-01-18', 'S', 'NULL', 'F', 'lauren33@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '9657 Wiget Lane', 'NULL', '123-555-0163', '2013-12-26', '10+ Miles'], ['12089', '54', 'AW00012089', 'NULL', 'Nathaniel', 'NULL', 'Richardson', '0', '1958-10-20', 'M', 'NULL', 'M', 'nathaniel10@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '1881 Pinehurst Court', 'NULL', '170-555-0160', '2013-02-02', '10+ Miles'], ['12090', '62', 'AW00012090', 'NULL', 'Savannah', 'M', 'Carter', '0', '1954-01-02', 'M', 'NULL', 'F', 'savannah32@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2582 South Ranchford Ct.', 'NULL', '838-555-0118', '2013-05-08', '10+ Miles'], ['12091', '536', 'AW00012091', 'NULL', 'Eddie', 'NULL', 'Munoz', '0', '1959-11-09', 'M', 'NULL', 'M', 'eddie7@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3005 Potomac Drive', 'NULL', '806-555-0179', '2013-02-05', '2-5 Miles'], ['12092', '612', 'AW00012092', 'NULL', 'Austin', 'L', 'White', '0', '1953-08-08', 'M', 'NULL', 'M', 'austin48@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6872 Sandalwood Dr.', 'NULL', '389-555-0198', '2013-05-02', '2-5 Miles'], ['12093', '300', 'AW00012093', 'NULL', 'Levi', 'NULL', 'Chandra', '0', '1954-05-08', 'M', 'NULL', 'M', 'levi1@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5974 Sequoia Drive', 'NULL', '990-555-0126', '2013-11-05', '2-5 Miles'], ['12094', '335', 'AW00012094', 'NULL', 'Bailey', 'A', 'Bailey', '0', '1954-03-19', 'M', 'NULL', 'F', 'bailey13@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '1723 StandingView Dr. Dr', 'NULL', '873-555-0132', '2011-11-05', '2-5 Miles'], ['12095', '336', 'AW00012095', 'NULL', 'Austin', 'K', 'Griffin', '0', '1953-08-24', 'M', 'NULL', 'M', 'austin17@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '7719 Athene Dr', 'NULL', '372-555-0193', '2013-05-02', '10+ Miles'], ['12096', '358', 'AW00012096', 'NULL', 'Caitlin', 'NULL', 'Brooks', '0', '1953-08-26', 'M', 'NULL', 'F', 'caitlin1@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '0', '458 Las Ramblas', 'NULL', '425-555-0131', '2011-11-17', '2-5 Miles'], ['12097', '65', 'AW00012097', 'NULL', 'Sean', 'L', 'Allen', '0', '1955-05-13', 'S', 'NULL', 'M', 'sean49@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4895 Cypress Ave.', 'NULL', '109-555-0183', '2013-05-21', '10+ Miles'], ['12098', '641', 'AW00012098', 'NULL', 'Grace', 'L', 'Clark', '0', '1955-04-24', 'S', 'NULL', 'F', 'grace18@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5235 Darnett Circle', 'NULL', '135-555-0124', '2013-01-29', '10+ Miles'], ['12099', '648', 'AW00012099', 'NULL', 'Sydney', 'NULL', 'Hall', '0', '1955-05-18', 'S', 'NULL', 'F', 'sydney86@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '4985 Claudia Dr.', 'NULL', '514-555-0134', '2013-04-11', '2-5 Miles'], ['12100', '301', 'AW00012100', 'NULL', 'Jon', 'NULL', 'Sun', '0', '1954-10-22', 'S', 'NULL', 'M', 'jon33@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '9211 Holiday Hills Drive', 'NULL', '183-555-0190', '2013-08-13', '10+ Miles'], ['12101', '345', 'AW00012101', 'NULL', 'Logan', 'NULL', 'Patterson', '0', '1954-10-22', 'S', 'NULL', 'M', 'logan13@adventure-works.com', '70000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9211 Holiday Hills Drive', 'NULL', '703-555-0171', '2013-03-14', '10+ Miles'], ['12102', '347', 'AW00012102', 'NULL', 'Devin', 'K', 'Simmons', '0', '1954-12-02', 'M', 'NULL', 'M', 'devin53@adventure-works.com', '70000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3716 D Mt. Hood Circle', 'NULL', '250-555-0138', '2011-11-07', '1-2 Miles'], ['12103', '348', 'AW00012103', 'NULL', 'Chloe', 'C', 'White', '0', '1960-10-08', 'M', 'NULL', 'F', 'chloe45@adventure-works.com', '70000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9312 Virginia Hills Drive', 'NULL', '432-555-0119', '2011-11-28', '10+ Miles'], ['12104', '352', 'AW00012104', 'NULL', 'Mariah', 'J', 'Ross', '0', '1960-01-08', 'M', 'NULL', 'F', 'mariah8@adventure-works.com', '70000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1698 10th Avenue', 'NULL', '129-555-0115', '2011-10-29', '10+ Miles'], ['12105', '385', 'AW00012105', 'NULL', 'Abigail', 'R', 'Foster', '0', '1954-11-13', 'S', 'NULL', 'F', 'abigail68@adventure-works.com', '70000.00', '5', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9849 Santa Fe Court', 'NULL', '156-555-0118', '2011-11-01', '10+ Miles'], ['12106', '59', 'AW00012106', 'NULL', 'Isaiah', 'NULL', 'Baker', '0', '1955-12-06', 'M', 'NULL', 'M', 'isaiah31@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8868 Sudan Loop', 'NULL', '504-555-0174', '2013-06-13', '2-5 Miles'], ['12107', '69', 'AW00012107', 'NULL', 'Nathan', 'M', 'Gonzales', '0', '1961-08-11', 'M', 'NULL', 'M', 'nathan13@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5616 Bayside Way', 'NULL', '459-555-0188', '2013-02-28', '2-5 Miles'], ['12108', '627', 'AW00012108', 'NULL', 'James', 'C', 'Walker', '0', '1961-02-19', 'M', 'NULL', 'M', 'james96@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9142 Altura Drive', 'NULL', '314-555-0135', '2011-11-18', '10+ Miles'], ['12109', '641', 'AW00012109', 'NULL', 'Morgan', 'W', 'Foster', '0', '1955-09-17', 'S', 'NULL', 'F', 'morgan85@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5537 Broadway', 'NULL', '118-555-0119', '2011-11-10', '10+ Miles'], ['12110', '302', 'AW00012110', 'NULL', 'Bianca', 'Y', 'Guo', '0', '1955-08-03', 'M', 'NULL', 'F', 'bianca14@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '2745 Mt. Dias Blvd.', 'NULL', '613-555-0188', '2011-11-14', '10+ Miles'], ['12111', '322', 'AW00012111', 'NULL', 'Jacqueline', 'NULL', 'Gonzales', '0', '1956-02-01', 'M', 'NULL', 'F', 'jacqueline18@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '1899 Trail Way', 'NULL', '128-555-0122', '2013-07-10', '2-5 Miles'], ['12112', '337', 'AW00012112', 'NULL', 'Arianna', 'NULL', 'Henderson', '0', '1955-12-07', 'M', 'NULL', 'F', 'arianna5@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '5283 Dumbarton Drive', 'NULL', '218-555-0142', '2011-11-27', '1-2 Miles'], ['12113', '51', 'AW00012113', 'NULL', 'Nathan', 'B', 'Hughes', '0', '1968-02-16', 'M', 'NULL', 'M', 'nathan7@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1771 Coastal Blvd.', 'NULL', '334-555-0173', '2013-02-19', '10+ Miles'], ['12114', '53', 'AW00012114', 'NULL', 'Charles', 'I', 'Richardson', '0', '1957-05-06', 'M', 'NULL', 'M', 'charles58@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5466 Kaitlin Pl.', 'NULL', '385-555-0136', '2013-03-02', '10+ Miles'], ['12115', '543', 'AW00012115', 'NULL', 'Chloe', 'R', 'Richardson', '0', '1956-08-07', 'S', 'NULL', 'F', 'chloe55@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '7563 Florencia', 'NULL', '890-555-0130', '2013-06-05', '2-5 Miles'], ['12116', '547', 'AW00012116', 'NULL', 'Amanda', 'E', 'Gray', '0', '1956-08-21', 'S', 'NULL', 'F', 'amanda15@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4701 Mt. Dell Drive', 'NULL', '361-555-0183', '2011-11-20', '10+ Miles'], ['12117', '637', 'AW00012117', 'NULL', 'Cameron', 'NULL', 'Yang', '0', '1957-01-30', 'M', 'NULL', 'M', 'cameron23@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '2672 Pansy Dr.', 'NULL', '743-555-0192', '2013-08-03', '2-5 Miles'], ['12118', '298', 'AW00012118', 'NULL', 'Miguel', 'L', 'Sanchez', '0', '1967-07-23', 'M', 'NULL', 'F', 'miguel72@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '5648 California St.', 'NULL', '384-555-0123', '2011-11-04', '10+ Miles'], ['12119', '299', 'AW00012119', 'NULL', 'Keith', 'L', 'Raje', '0', '1956-11-28', 'M', 'NULL', 'M', 'keith17@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '9216 Sandy Way', 'NULL', '143-555-0184', '2013-05-05', '2-5 Miles'], ['12120', '618', 'AW00012120', 'NULL', 'Xavier', 'D', 'Simmons', '0', '1958-01-08', 'M', 'NULL', 'M', 'xavier55@adventure-works.com', '60000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2837 Redhead Way', 'NULL', '710-555-0143', '2011-11-03', '10+ Miles'], ['12121', '545', 'AW00012121', 'NULL', 'Logan', 'H', 'Wilson', '0', '1958-03-25', 'S', 'NULL', 'M', 'logan58@adventure-works.com', '60000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6928 Toyon Dr.', 'NULL', '999-555-0111', '2011-11-21', '10+ Miles'], ['12122', '68', 'AW00012122', 'NULL', 'Destiny', 'W', 'Coleman', '0', '1958-06-17', 'M', 'NULL', 'F', 'destiny54@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8713 Live Oak Avenue', 'NULL', '446-555-0114', '2013-03-05', '10+ Miles'], ['12123', '275', 'AW00012123', 'NULL', 'Wesley', 'A', 'Liang', '0', '1963-12-12', 'M', 'NULL', 'M', 'wesley16@adventure-works.com', '170000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6048 Nightingale Drive', 'NULL', '1 (11) 500 555-0143', '2012-02-10', '0-1 Miles'], ['12124', '192', 'AW00012124', 'NULL', 'Brandi', 'D', 'Gill', '0', '1962-08-08', 'S', 'NULL', 'F', 'brandi13@adventure-works.com', '110000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '8, rue de l´Avenir', 'NULL', '1 (11) 500 555-0115', '2011-01-29', '5-10 Miles'], ['12125', '149', 'AW00012125', 'NULL', 'Diana', 'NULL', 'Ortega', '0', '1962-07-12', 'M', 'NULL', 'F', 'diana21@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Postfach 22 99 99', 'NULL', '1 (11) 500 555-0184', '2012-05-15', '0-1 Miles'], ['12126', '247', 'AW00012126', 'NULL', 'Tammy', 'NULL', 'Raman', '0', '1963-05-18', 'M', 'NULL', 'F', 'tammy13@adventure-works.com', '150000.00', '2', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '5760 Las Palmas', 'NULL', '1 (11) 500 555-0196', '2013-04-08', '5-10 Miles'], ['12127', '186', 'AW00012127', 'NULL', 'Grace', 'NULL', 'Davis', '0', '1962-06-13', 'M', 'NULL', 'F', 'grace4@adventure-works.com', '100000.00', '2', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '8188, rue Lamarck', 'NULL', '1 (11) 500 555-0178', '2013-11-10', '2-5 Miles'], ['12128', '123', 'AW00012128', 'NULL', 'Kristy', 'E', 'Munoz', '0', '1967-12-13', 'M', 'NULL', 'F', 'kristy7@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Altendorfer Straße 903', 'NULL', '1 (11) 500 555-0146', '2012-05-01', '5-10 Miles'], ['12129', '158', 'AW00012129', 'NULL', 'Wendy', 'V', 'Alvarez', '0', '1962-03-21', 'M', 'NULL', 'F', 'wendy5@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Wertheimer Straße 899', 'NULL', '1 (11) 500 555-0118', '2012-05-25', '5-10 Miles'], ['12130', '151', 'AW00012130', 'NULL', 'Suzanne', 'NULL', 'Zhou', '0', '1962-02-09', 'S', 'NULL', 'F', 'suzanne10@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Nonnendamm 6599', 'NULL', '1 (11) 500 555-0119', '2012-05-08', '5-10 Miles'], ['12131', '186', 'AW00012131', 'NULL', 'Randall', 'M', 'Dominguez', '0', '1961-04-15', 'M', 'NULL', 'M', 'randall14@adventure-works.com', '90000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '244, rue des Rosiers', 'NULL', '1 (11) 500 555-0136', '2011-02-21', '2-5 Miles'], ['12132', '224', 'AW00012132', 'NULL', 'Kaitlyn', 'J', 'Henderson', '0', '1961-05-18', 'M', 'NULL', 'F', 'kaitlyn72@adventure-works.com', '110000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '2222, rue Ste-Honoré', 'NULL', '1 (11) 500 555-0154', '2011-01-30', '5-10 Miles'], ['12133', '242', 'AW00012133', 'NULL', 'Colleen', 'C', 'Xie', '0', '1961-06-24', 'M', 'NULL', 'F', 'colleen27@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '8976 E Leland', 'NULL', '1 (11) 500 555-0175', '2012-02-11', '5-10 Miles'], ['12134', '269', 'AW00012134', 'NULL', 'Hector', 'L', 'Alonso', '0', '1966-09-19', 'M', 'NULL', 'M', 'hector6@adventure-works.com', '170000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '5276 Whitehall Drive', 'NULL', '1 (11) 500 555-0153', '2013-07-05', '0-1 Miles'], ['12135', '316', 'AW00012135', 'NULL', 'Fernando', 'W', 'Taylor', '0', '1962-10-09', 'M', 'NULL', 'M', 'fernando9@adventure-works.com', '90000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '7386 Rolph Park Drive', 'NULL', '672-555-0169', '2013-05-09', '5-10 Miles'], ['12136', '49', 'AW00012136', 'NULL', 'Blake', 'NULL', 'Turner', '0', '1938-05-08', 'M', 'NULL', 'M', 'blake41@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '7509 San Cristobal', 'NULL', '406-555-0125', '2013-04-24', '1-2 Miles'], ['12137', '347', 'AW00012137', 'NULL', 'Jack', 'NULL', 'Green', '0', '1938-05-04', 'M', 'NULL', 'M', 'jack51@adventure-works.com', '90000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '1224 Shoenic', 'NULL', '433-555-0195', '2013-03-19', '5-10 Miles'], ['12138', '536', 'AW00012138', 'NULL', 'Colin', 'NULL', 'Jai', '0', '1939-05-26', 'M', 'NULL', 'M', 'colin34@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3874 Claudia Court', 'NULL', '779-555-0111', '2013-08-28', '0-1 Miles'], ['12139', '609', 'AW00012139', 'NULL', 'Franklin', 'NULL', 'Yang', '0', '1944-03-11', 'M', 'NULL', 'M', 'franklin5@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4824 Discovery Bay', 'NULL', '390-555-0195', '2013-07-02', '0-1 Miles'], ['12140', '71', 'AW00012140', 'NULL', 'Oscar', 'A', 'Russell', '0', '1970-09-08', 'S', 'NULL', 'M', 'oscar6@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '2174 Pacheco St.', 'NULL', '616-555-0156', '2013-06-02', '0-1 Miles'], ['12141', '536', 'AW00012141', 'NULL', 'Kaitlyn', 'B', 'Lee', '0', '1976-09-16', 'S', 'NULL', 'F', 'kaitlyn45@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '4179 Maureen Lane', 'NULL', '936-555-0110', '2011-11-05', '2-5 Miles'], ['12142', '545', 'AW00012142', 'NULL', 'Gabriella', 'NULL', 'Torres', '0', '1981-07-02', 'S', 'NULL', 'F', 'gabriella11@adventure-works.com', '100000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '4790 Curletto Drive', 'NULL', '989-555-0133', '2011-11-27', '2-5 Miles'], ['12143', '632', 'AW00012143', 'NULL', 'Logan', 'K', 'Turner', '0', '1971-05-13', 'M', 'NULL', 'M', 'logan31@adventure-works.com', '100000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '2803 Fawn Glen Circle', 'NULL', '178-555-0116', '2011-11-16', '2-5 Miles'], ['12144', '632', 'AW00012144', 'NULL', 'Kelly', 'NULL', 'Jenkins', '0', '1971-05-10', 'M', 'NULL', 'F', 'kelly11@adventure-works.com', '100000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '4511 Gathering Court', 'NULL', '131-555-0124', '2013-03-22', '0-1 Miles'], ['12145', '644', 'AW00012145', 'NULL', 'Brandon', 'NULL', 'Butler', '0', '1976-09-30', 'M', 'NULL', 'M', 'brandon11@adventure-works.com', '100000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '5979 Meadowbrook Drive', 'NULL', '120-555-0143', '2013-11-28', '2-5 Miles'], ['12146', '311', 'AW00012146', 'NULL', 'Xavier', 'NULL', 'Thomas', '0', '1971-01-11', 'S', 'NULL', 'M', 'xavier8@adventure-works.com', '110000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '5139 The Trees Dr', 'NULL', '349-555-0116', '2013-06-29', '1-2 Miles'], ['12147', '50', 'AW00012147', 'NULL', 'Taylor', 'NULL', 'Patterson', '0', '1970-06-27', 'M', 'NULL', 'F', 'taylor35@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '5029 Blue Ridge', 'NULL', '415-555-0170', '2013-06-23', '2-5 Miles'], ['12148', '548', 'AW00012148', 'NULL', 'Gabrielle', 'A', 'Morris', '0', '1970-06-05', 'S', 'NULL', 'F', 'gabrielle1@adventure-works.com', '100000.00', '5', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '8553 R St.', 'NULL', '458-555-0132', '2013-11-23', '2-5 Miles'], ['12149', '552', 'AW00012149', 'NULL', 'Bailey', 'A', 'Scott', '0', '1975-06-21', 'M', 'NULL', 'F', 'bailey33@adventure-works.com', '100000.00', '5', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '560 Highland Drive', 'NULL', '549-555-0199', '2013-05-01', '2-5 Miles'], ['12150', '316', 'AW00012150', 'NULL', 'Logan', 'M', 'Wang', '0', '1975-08-09', 'M', 'NULL', 'M', 'logan24@adventure-works.com', '130000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3328 North Wateroak Ct', '#8', '606-555-0158', '2013-08-14', '1-2 Miles'], ['12151', '335', 'AW00012151', 'NULL', 'Steven', 'M', 'Kelly', '0', '1969-11-09', 'M', 'NULL', 'M', 'steven12@adventure-works.com', '130000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '8625 Olive Ave.', 'NULL', '582-555-0134', '2011-11-14', '1-2 Miles'], ['12152', '335', 'AW00012152', 'NULL', 'Adrian', 'K', 'Ramirez', '0', '1975-03-23', 'M', 'NULL', 'M', 'adrian9@adventure-works.com', '130000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '1461 Dantley Way', 'NULL', '728-555-0143', '2011-10-30', '0-1 Miles'], ['12153', '348', 'AW00012153', 'NULL', 'Kaitlyn', 'M', 'Bailey', '0', '1962-03-15', 'S', 'NULL', 'F', 'kaitlyn54@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '4836 Stratton Circle', 'NULL', '848-555-0159', '2011-11-27', '5-10 Miles'], ['12154', '71', 'AW00012154', 'NULL', 'Hailey', 'M', 'Adams', '0', '1967-07-21', 'S', 'NULL', 'F', 'hailey55@adventure-works.com', '80000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '4594 Rose Dr.', 'NULL', '906-555-0157', '2013-03-14', '2-5 Miles'], ['12155', '648', 'AW00012155', 'NULL', 'Gabriella', 'NULL', 'Lopez', '0', '1967-10-12', 'S', 'NULL', 'F', 'gabriella44@adventure-works.com', '80000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '6096 Fraga Court', 'NULL', '108-555-0196', '2011-11-21', '2-5 Miles'], ['12156', '301', 'AW00012156', 'NULL', 'Bonnie', 'NULL', 'Raji', '0', '1939-07-12', 'M', 'NULL', 'F', 'bonnie27@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '359 Pleasant Hill Rd', 'NULL', '409-555-0193', '2011-11-06', '5-10 Miles'], ['12157', '336', 'AW00012157', 'NULL', 'William', 'NULL', 'White', '0', '1940-03-21', 'M', 'NULL', 'M', 'william8@adventure-works.com', '120000.00', '1', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '5984 Mt. Whitney Dr.', 'NULL', '544-555-0147', '2013-05-10', '2-5 Miles'], ['12158', '66', 'AW00012158', 'NULL', 'Kyle', 'NULL', 'Phillips', '0', '1979-10-18', 'M', 'NULL', 'M', 'kyle36@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6133 Elderwood Dr.', 'NULL', '406-555-0176', '2013-09-01', '2-5 Miles'], ['12159', '71', 'AW00012159', 'NULL', 'Kaitlyn', 'A', 'Scott', '0', '1974-11-10', 'M', 'NULL', 'F', 'kaitlyn11@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8378 B Avenue I', 'NULL', '801-555-0114', '2013-02-24', '2-5 Miles'], ['12160', '536', 'AW00012160', 'NULL', 'Jaclyn', 'NULL', 'Zhang', '0', '1969-05-23', 'S', 'NULL', 'F', 'jaclyn0@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '4364 Viera Avenue', 'NULL', '819-555-0110', '2011-11-18', '5-10 Miles'], ['12161', '648', 'AW00012161', 'NULL', 'Alexandria', 'NULL', 'Rogers', '0', '1974-03-04', 'M', 'NULL', 'F', 'alexandria40@adventure-works.com', '100000.00', '5', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7279 Michael Ln.', 'NULL', '448-555-0119', '2013-03-09', '2-5 Miles'], ['12162', '331', 'AW00012162', 'NULL', 'Luke', 'A', 'Mitchell', '0', '1974-12-16', 'S', 'NULL', 'M', 'luke43@adventure-works.com', '120000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '7150 N. Broadway', 'NULL', '150-555-0113', '2011-11-11', '5-10 Miles'], ['12163', '368', 'AW00012163', 'NULL', 'Aaron', 'V', 'Wang', '0', '1969-03-04', 'S', 'NULL', 'M', 'aaron24@adventure-works.com', '150000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '228 Rock Creek Way', 'NULL', '648-555-0158', '2011-11-05', '0-1 Miles'], ['12164', '372', 'AW00012164', 'NULL', 'Noah', 'E', 'Butler', '0', '1974-04-09', 'M', 'NULL', 'M', 'noah11@adventure-works.com', '150000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '476 Bay Drive', 'NULL', '426-555-0158', '2011-11-25', '0-1 Miles'], ['12165', '51', 'AW00012165', 'NULL', 'Caleb', 'S', 'Flores', '0', '1967-12-10', 'M', 'NULL', 'M', 'caleb9@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1256 American Beauty Dr', 'NULL', '615-555-0157', '2013-01-30', '0-1 Miles'], ['12166', '54', 'AW00012166', 'NULL', 'Jared', 'J', 'Rogers', '0', '1984-03-06', 'M', 'NULL', 'M', 'jared21@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1261 Sierrawood Court', 'NULL', '903-555-0191', '2013-07-11', '5-10 Miles'], ['12167', '637', 'AW00012167', 'NULL', 'Sebastian', 'E', 'Stewart', '0', '1968-03-20', 'S', 'NULL', 'M', 'sebastian21@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '3307 Mt. Trinity Ct.', 'NULL', '367-555-0118', '2011-10-29', '5-10 Miles'], ['12168', '614', 'AW00012168', 'NULL', 'Hunter', 'NULL', 'Jackson', '0', '1966-08-09', 'M', 'NULL', 'M', 'hunter45@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '824 Gregory Drive', 'NULL', '312-555-0147', '2013-02-26', '5-10 Miles'], ['12169', '312', 'AW00012169', 'NULL', 'Abigail', 'NULL', 'Howard', '0', '1972-11-12', 'S', 'NULL', 'F', 'abigail16@adventure-works.com', '120000.00', '1', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '6490 El Camino', 'NULL', '197-555-0113', '2011-10-29', '5-10 Miles'], ['12170', '325', 'AW00012170', 'NULL', 'Sara', 'T', 'Reed', '0', '1972-01-04', 'M', 'NULL', 'F', 'sara22@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '7884 Power Ave.', 'NULL', '653-555-0182', '2011-11-23', '2-5 Miles'], ['12171', '335', 'AW00012171', 'NULL', 'Alyssa', 'E', 'Cooper', '0', '1972-01-31', 'S', 'NULL', 'F', 'alyssa35@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '9584 Logan Ct', 'NULL', '491-555-0143', '2011-11-01', '0-1 Miles'], ['12172', '345', 'AW00012172', 'NULL', 'Eduardo', 'E', 'Alexander', '0', '1972-03-01', 'S', 'NULL', 'M', 'eduardo62@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '2878 Bounty Way', 'NULL', '313-555-0148', '2011-11-20', '0-1 Miles'], ['12173', '345', 'AW00012173', 'NULL', 'Dalton', 'L', 'Edwards', '0', '1967-03-12', 'M', 'NULL', 'M', 'dalton44@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '4588 Morgan Territory Road', 'NULL', '745-555-0145', '2011-11-12', '2-5 Miles'], ['12174', '374', 'AW00012174', 'NULL', 'Charles', 'NULL', 'Phillips', '0', '1966-11-04', 'M', 'NULL', 'M', 'charles42@adventure-works.com', '170000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '4', '2499 Wilke Drive', 'NULL', '184-555-0111', '2011-12-06', '2-5 Miles'], ['12175', '368', 'AW00012175', 'NULL', 'Luke', 'A', 'Powell', '0', '1966-09-09', 'S', 'NULL', 'M', 'luke27@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '4591 Camino Peral', 'NULL', '678-555-0111', '2013-11-17', '5-10 Miles'], ['12176', '548', 'AW00012176', 'NULL', 'Cody', 'A', 'James', '0', '1966-11-12', 'S', 'NULL', 'M', 'cody0@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '677 Riveria Way', 'NULL', '676-555-0184', '2013-02-02', '5-10 Miles'], ['12177', '59', 'AW00012177', 'NULL', 'Kevin', 'S', 'Campbell', '0', '1960-09-23', 'S', 'NULL', 'M', 'kevin44@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '1468 Napa St.', 'NULL', '929-555-0135', '2013-03-07', '5-10 Miles'], ['12178', '547', 'AW00012178', 'NULL', 'Ethan', 'NULL', 'Shan', '0', '1959-11-08', 'M', 'NULL', 'M', 'ethan27@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9551 Jones Rd', 'NULL', '168-555-0113', '2011-12-25', '5-10 Miles'], ['12179', '543', 'AW00012179', 'NULL', 'Alexis', 'M', 'Jones', '0', '1941-04-08', 'S', 'NULL', 'F', 'alexis3@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5925 Rain Drop Circle', 'NULL', '982-555-0141', '2011-12-16', '5-10 Miles'], ['12180', '536', 'AW00012180', 'NULL', 'Holly', 'L', 'Mehta', '0', '1942-03-17', 'S', 'NULL', 'F', 'holly13@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1565 W. Lake Dr.', 'NULL', '123-555-0127', '2011-12-10', '1-2 Miles'], ['12181', '352', 'AW00012181', 'NULL', 'Katelyn', 'A', 'Sanders', '0', '1942-02-18', 'M', 'NULL', 'F', 'katelyn2@adventure-works.com', '130000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '2334 Brandywine Way', 'NULL', '417-555-0163', '2011-12-03', '0-1 Miles'], ['12182', '49', 'AW00012182', 'NULL', 'Erin', 'NULL', 'Torres', '0', '1966-06-06', 'M', 'NULL', 'F', 'erin8@adventure-works.com', '70000.00', '5', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '8700 Gloria Terrace', 'NULL', '402-555-0198', '2013-03-14', '2-5 Miles'], ['12183', '66', 'AW00012183', 'NULL', 'Emily', 'NULL', 'Robinson', '0', '1966-04-25', 'M', 'NULL', 'F', 'emily19@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '2627 Sandview Dr.', 'NULL', '796-555-0138', '2013-02-19', '5-10 Miles'], ['12184', '546', 'AW00012184', 'NULL', 'Isaiah', 'R', 'Perez', '0', '1966-06-07', 'M', 'NULL', 'M', 'isaiah26@adventure-works.com', '100000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '7243 St. George Dr.', 'NULL', '164-555-0121', '2011-12-22', '1-2 Miles'], ['12185', '648', 'AW00012185', 'NULL', 'Kaitlyn', 'R', 'Patterson', '0', '1966-01-24', 'S', 'NULL', 'F', 'kaitlyn77@adventure-works.com', '100000.00', '0', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3732 Camino Norte', 'NULL', '299-555-0110', '2013-03-29', '5-10 Miles'], ['12186', '299', 'AW00012186', 'NULL', 'Bryant', 'P', 'Srini', '0', '1971-05-09', 'S', 'NULL', 'M', 'bryant8@adventure-works.com', '100000.00', '0', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '9854 Martindale Drive', 'NULL', '949-555-0125', '2011-12-25', '1-2 Miles'], ['12187', '300', 'AW00012187', 'NULL', 'Ruben', 'NULL', 'Subram', '0', '1966-01-19', 'M', 'NULL', 'M', 'ruben14@adventure-works.com', '100000.00', '0', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '9058 East 23rd Street', 'NULL', '504-555-0163', '2011-12-25', '1-2 Miles'], ['12188', '307', 'AW00012188', 'NULL', 'Ashley', 'J', 'Thomas', '0', '1965-11-20', 'S', 'NULL', 'F', 'ashley11@adventure-works.com', '110000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '5071 Almaden Dr.', 'NULL', '190-555-0190', '2011-12-25', '5-10 Miles'], ['12189', '338', 'AW00012189', 'NULL', 'Sophia', 'NULL', 'Wright', '0', '1971-02-15', 'M', 'NULL', 'F', 'sophia18@adventure-works.com', '130000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '832 Bellows Ct.', 'NULL', '612-555-0166', '2011-12-14', '2-5 Miles'], ['12190', '361', 'AW00012190', 'NULL', 'Justin', 'NULL', 'Gonzales', '0', '1966-06-16', 'S', 'NULL', 'M', 'justin14@adventure-works.com', '170000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '9163 Hilltop Road', 'NULL', '801-555-0176', '2011-12-09', '0-1 Miles'], ['12191', '383', 'AW00012191', 'NULL', 'Melissa', 'NULL', 'Washington', '0', '1965-04-06', 'M', 'NULL', 'F', 'melissa8@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4091 Silver Oaks Place', '# 105', '275-555-0122', '2013-04-16', '5-10 Miles'], ['12192', '609', 'AW00012192', 'NULL', 'Jocelyn', 'G', 'Hayes', '0', '1960-05-25', 'S', 'NULL', 'F', 'jocelyn22@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9611 Hudson Ave', 'NULL', '936-555-0125', '2013-04-12', '1-2 Miles'], ['12193', '56', 'AW00012193', 'NULL', 'Caleb', 'M', 'Simmons', '0', '1959-08-04', 'S', 'NULL', 'M', 'caleb12@adventure-works.com', '70000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '7450 Olivera Rd', 'NULL', '164-555-0159', '2013-03-29', '5-10 Miles'], ['12194', '361', 'AW00012194', 'NULL', 'Destiny', 'E', 'Foster', '0', '1959-01-14', 'S', 'NULL', 'F', 'destiny64@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4655 Shuey Ave', 'NULL', '698-555-0118', '2013-04-18', '5-10 Miles'], ['12195', '343', 'AW00012195', 'NULL', 'Erin', 'NULL', 'Morris', '0', '1970-05-20', 'S', 'NULL', 'F', 'erin22@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5265 11th Ave.', 'NULL', '148-555-0168', '2013-05-23', '1-2 Miles'], ['12196', '68', 'AW00012196', 'NULL', 'Alexis', 'A', 'Miller', '0', '1959-03-07', 'S', 'NULL', 'F', 'alexis5@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6600 Court Street', 'NULL', '615-555-0111', '2013-04-10', '1-2 Miles'], ['12197', '339', 'AW00012197', 'NULL', 'Adam', 'W', 'Hernandez', '0', '1958-07-15', 'M', 'NULL', 'M', 'adam47@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '11 Sunrise Drive', 'NULL', '678-555-0162', '2013-02-01', '1-2 Miles'], ['12198', '545', 'AW00012198', 'NULL', 'Noah', 'NULL', 'Scott', '0', '1958-08-14', 'M', 'NULL', 'M', 'noah42@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1305 Willbrook Court', 'NULL', '208-555-0130', '2011-12-15', '5-10 Miles'], ['12199', '644', 'AW00012199', 'NULL', 'Christina', 'NULL', 'Richardson', '0', '1957-11-05', 'S', 'NULL', 'F', 'christina7@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '5279 East L Street', 'NULL', '474-555-0152', '2013-06-16', '1-2 Miles'], ['12200', '310', 'AW00012200', 'NULL', 'Rafael', 'B', 'Sharma', '0', '1943-01-20', 'M', 'NULL', 'M', 'rafael33@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1693 C Northwood Dr', 'NULL', '717-555-0111', '2011-12-20', '10+ Miles'], ['12201', '302', 'AW00012201', 'NULL', 'Mindy', 'D', 'Yuan', '0', '1944-02-03', 'M', 'NULL', 'F', 'mindy11@adventure-works.com', '100000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '66, avenue du Québec', 'NULL', '335-555-0116', '2013-06-11', '1-2 Miles'], ['12202', '66', 'AW00012202', 'NULL', 'Xavier', 'A', 'Ross', '0', '1943-11-22', 'M', 'NULL', 'M', 'xavier45@adventure-works.com', '100000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '8818 Gentrytown Dr.', 'NULL', '982-555-0113', '2013-02-05', '1-2 Miles'], ['12203', '60', 'AW00012203', 'NULL', 'Zachary', 'NULL', 'Hughes', '0', '1943-09-03', 'M', 'NULL', 'M', 'zachary10@adventure-works.com', '120000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '7600 Showtime Court', 'NULL', '136-555-0183', '2013-07-03', '5-10 Miles'], ['12204', '536', 'AW00012204', 'NULL', 'Bradley', 'NULL', 'Jai', '0', '1943-08-02', 'M', 'NULL', 'M', 'bradley13@adventure-works.com', '120000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '9847 Galloway Dr.', 'NULL', '598-555-0176', '2013-01-28', '2-5 Miles'], ['12205', '301', 'AW00012205', 'NULL', 'Madison', 'J', 'Long', '0', '1944-03-31', 'S', 'NULL', 'F', 'madison45@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '4643 Elkwood Dr.', 'NULL', '705-555-0113', '2013-10-26', '0-1 Miles'], ['12206', '337', 'AW00012206', 'NULL', 'Sierra', 'J', 'Parker', '0', '1944-10-09', 'M', 'NULL', 'F', 'sierra7@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9593 Power Ave.', 'NULL', '220-555-0129', '2011-12-28', '5-10 Miles'], ['12207', '618', 'AW00012207', 'NULL', 'Samuel', 'J', 'Hill', '0', '1945-12-18', 'S', 'NULL', 'M', 'samuel42@adventure-works.com', '80000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1637 Kingston Pl.', 'NULL', '125-555-0172', '2011-12-25', '5-10 Miles'], ['12208', '609', 'AW00012208', 'NULL', 'Dominique', 'A', 'Sanchez', '0', '1945-08-18', 'M', 'NULL', 'F', 'dominique17@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '3043 Gregory Dr.', 'NULL', '230-555-0175', '2011-12-16', '2-5 Miles'], ['12209', '298', 'AW00012209', 'NULL', 'Mindy', 'NULL', 'Jai', '0', '1945-12-24', 'M', 'NULL', 'F', 'mindy16@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '7559 Worth Ct.', 'NULL', '520-555-0110', '2011-12-17', '0-1 Miles'], ['12210', '247', 'AW00012210', 'NULL', 'Alan', 'A', 'He', '0', '1984-03-24', 'M', 'NULL', 'M', 'alan22@adventure-works.com', '10000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '1374 Wightman Lane', 'NULL', '1 (11) 500 555-0116', '2012-03-15', '0-1 Miles'], ['12211', '206', 'AW00012211', 'NULL', 'Victor', 'C', 'Romero', '0', '1985-02-23', 'M', 'NULL', 'M', 'victor10@adventure-works.com', '10000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '3355, rue de Longchamp', 'NULL', '1 (11) 500 555-0198', '2011-03-07', '0-1 Miles'], ['12212', '209', 'AW00012212', 'NULL', 'Shawna', 'J', 'Xie', '0', '1974-11-16', 'M', 'NULL', 'F', 'shawna3@adventure-works.com', '10000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '71, avenue Reille', 'NULL', '1 (11) 500 555-0134', '2011-03-27', '0-1 Miles'], ['12213', '159', 'AW00012213', 'NULL', 'Alejandro', 'NULL', 'Lal', '0', '1974-01-29', 'M', 'NULL', 'M', 'alejandro35@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Reiherweg 5', 'NULL', '1 (11) 500 555-0117', '2012-05-09', '0-1 Miles'], ['12214', '243', 'AW00012214', 'NULL', 'Julie', 'H', 'Raje', '0', '1968-03-19', 'M', 'NULL', 'F', 'julie19@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '3886 Delta View Ln.', 'NULL', '1 (11) 500 555-0159', '2012-03-07', '0-1 Miles'], ['12215', '254', 'AW00012215', 'NULL', 'Karla', 'T', 'She', '0', '1968-06-12', 'M', 'NULL', 'F', 'karla0@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2846 Veronica Ct.', 'NULL', '1 (11) 500 555-0122', '2012-03-10', '0-1 Miles'], ['12216', '258', 'AW00012216', 'NULL', 'Gerald', 'NULL', 'Rodriguez', '0', '1967-09-30', 'M', 'NULL', 'M', 'gerald5@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2608 Elm Rd.', 'NULL', '1 (11) 500 555-0120', '2012-03-25', '0-1 Miles'], ['12217', '209', 'AW00012217', 'NULL', 'Kyle', 'NULL', 'Roberts', '0', '1966-12-31', 'M', 'NULL', 'M', 'kyle34@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '611bis, rue des Peupliers', 'NULL', '1 (11) 500 555-0169', '2011-03-23', '0-1 Miles'], ['12218', '124', 'AW00012218', 'NULL', 'Mitchell', 'J', 'Xu', '0', '1967-05-26', 'M', 'NULL', 'M', 'mitchell4@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Celler Weg 4030', 'NULL', '1 (11) 500 555-0136', '2012-05-25', '0-1 Miles'], ['12219', '188', 'AW00012219', 'NULL', 'Kurt', 'NULL', 'Nara', '0', '1977-10-08', 'M', 'NULL', 'M', 'kurt17@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '1584 S. Forest Hill', 'NULL', '1 (11) 500 555-0187', '2011-03-24', '0-1 Miles'], ['12220', '217', 'AW00012220', 'NULL', 'Virginia', 'C', 'Sara', '0', '1966-07-16', 'M', 'NULL', 'F', 'virginia12@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '470, rue de Linois', 'NULL', '1 (11) 500 555-0186', '2011-03-09', '0-1 Miles'], ['12221', '208', 'AW00012221', 'NULL', 'Brandi', 'NULL', 'Ruiz', '0', '1966-07-09', 'M', 'NULL', 'F', 'brandi2@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '11, rue Saint Denis', 'NULL', '1 (11) 500 555-0113', '2011-03-02', '0-1 Miles'], ['12222', '248', 'AW00012222', 'NULL', 'Jenny', 'K', 'Xu', '0', '1966-09-17', 'M', 'NULL', 'F', 'jenny14@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3156 Crystal Avenue', 'NULL', '1 (11) 500 555-0158', '2012-03-13', '0-1 Miles'], ['12223', '166', 'AW00012223', 'NULL', 'Felicia', 'NULL', 'Vazquez', '0', '1966-08-19', 'M', 'NULL', 'F', 'felicia14@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Postfach 8 22 99', 'NULL', '1 (11) 500 555-0174', '2013-08-08', '0-1 Miles'], ['12224', '243', 'AW00012224', 'NULL', 'Tristan', 'NULL', 'Henderson', '0', '1941-03-17', 'M', 'NULL', 'M', 'tristan5@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3431 Wilton Pl.', 'NULL', '1 (11) 500 555-0157', '2013-11-15', '0-1 Miles'], ['12225', '173', 'AW00012225', 'NULL', 'Kathleen', 'G', 'Ortega', '0', '1964-05-01', 'M', 'NULL', 'F', 'kathleen21@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Celler Weg 504', 'NULL', '1 (11) 500 555-0178', '2012-05-19', '0-1 Miles'], ['12226', '120', 'AW00012226', 'NULL', 'Faith', 'A', 'Ward', '0', '1968-04-06', 'M', 'NULL', 'F', 'faith31@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Am Gallberg 24', 'NULL', '1 (11) 500 555-0185', '2012-05-19', '0-1 Miles'], ['12227', '241', 'AW00012227', 'NULL', 'Kelsey', 'W', 'Raje', '0', '1963-02-08', 'M', 'NULL', 'F', 'kelsey13@adventure-works.com', '10000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '8031 Pinon Dr.', 'NULL', '1 (11) 500 555-0135', '2013-04-29', '0-1 Miles'], ['12228', '125', 'AW00012228', 'NULL', 'Mayra', 'D', 'Martinez', '0', '1963-02-23', 'M', 'NULL', 'F', 'mayra17@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Husemann Straße 9574', 'NULL', '1 (11) 500 555-0147', '2012-06-22', '0-1 Miles'], ['12229', '149', 'AW00012229', 'NULL', 'Kari', 'NULL', 'Gomez', '0', '1962-05-17', 'M', 'NULL', 'F', 'kari22@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Pappelallee 123', 'NULL', '1 (11) 500 555-0146', '2012-06-07', '0-1 Miles'], ['12230', '132', 'AW00012230', 'NULL', 'Wesley', 'NULL', 'Zheng', '0', '1961-08-11', 'M', 'NULL', 'M', 'wesley19@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Krönerweg 49', 'NULL', '1 (11) 500 555-0126', '2012-06-20', '0-1 Miles'], ['12231', '161', 'AW00012231', 'NULL', 'Isabelle', 'C', 'Patterson', '0', '1960-09-15', 'S', 'NULL', 'F', 'isabelle9@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Wasserstr 6999', 'NULL', '1 (11) 500 555-0155', '2012-06-15', '0-1 Miles'], ['12232', '160', 'AW00012232', 'NULL', 'Sean', 'E', 'Hernandez', '0', '1960-10-11', 'S', 'NULL', 'M', 'sean51@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Holzstr 7555', 'NULL', '1 (11) 500 555-0119', '2012-06-03', '0-1 Miles'], ['12233', '254', 'AW00012233', 'NULL', 'Jerry', 'D', 'Yuan', '0', '1960-11-05', 'M', 'NULL', 'M', 'jerry7@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '136 Balboa Court', 'NULL', '1 (11) 500 555-0163', '2014-01-17', '1-2 Miles'], ['12234', '211', 'AW00012234', 'NULL', 'Clarence', 'L', 'Zeng', '0', '1959-08-25', 'M', 'NULL', 'M', 'clarence15@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '790, quai de Grenelle', 'NULL', '1 (11) 500 555-0126', '2013-04-26', '2-5 Miles'], ['12235', '235', 'AW00012235', 'NULL', 'Donna', 'NULL', 'Rai', '0', '1949-05-22', 'M', 'NULL', 'F', 'donna15@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2957 Tri-state Avenue', 'NULL', '1 (11) 500 555-0127', '2013-03-23', '0-1 Miles'], ['12236', '132', 'AW00012236', 'NULL', 'Kendra', 'H', 'Gill', '0', '1946-12-04', 'M', 'NULL', 'F', 'kendra13@adventure-works.com', '20000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Potsdamer Straße 929', 'NULL', '1 (11) 500 555-0193', '2013-07-13', '0-1 Miles'], ['12237', '133', 'AW00012237', 'NULL', 'Ruth', 'NULL', 'Madan', '0', '1952-05-07', 'M', 'NULL', 'F', 'ruth12@adventure-works.com', '20000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Carlsplatz 1', 'NULL', '1 (11) 500 555-0121', '2012-06-17', '0-1 Miles'], ['12238', '172', 'AW00012238', 'NULL', 'Monica', 'NULL', 'Raman', '0', '1952-07-24', 'M', 'NULL', 'F', 'monica12@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Hochstr 2777', 'NULL', '1 (11) 500 555-0113', '2013-07-09', '0-1 Miles'], ['12239', '254', 'AW00012239', 'NULL', 'Alberto', 'NULL', 'Ramos', '0', '1947-11-29', 'M', 'NULL', 'M', 'alberto17@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4776 Kentucky Drive', 'NULL', '1 (11) 500 555-0156', '2012-03-23', '0-1 Miles'], ['12240', '8', 'AW00012240', 'NULL', 'Clayton', 'D', 'Sharma', '0', '1986-06-03', 'S', 'NULL', 'M', 'clayton27@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '9429 Geraldine Dr', 'NULL', '1 (11) 500 555-0188', '2011-12-28', '2-5 Miles'], ['12241', '19', 'AW00012241', 'NULL', 'Kristine', 'NULL', 'Sandberg', '0', '1985-05-05', 'S', 'NULL', 'F', 'kristine21@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6141 Race Road', 'NULL', '1 (11) 500 555-0182', '2011-12-16', '0-1 Miles'], ['12242', '29', 'AW00012242', 'NULL', 'Gilbert', 'NULL', 'Liang', '0', '1984-08-03', 'S', 'NULL', 'M', 'gilbert14@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '4882 Darlene Drive', 'NULL', '1 (11) 500 555-0195', '2011-12-16', '2-5 Miles'], ['12243', '34', 'AW00012243', 'NULL', 'Kristy', 'NULL', 'Rubio', '0', '1985-11-15', 'S', 'NULL', 'F', 'kristy19@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1527 St. John Lane', 'NULL', '1 (11) 500 555-0180', '2011-12-24', '2-5 Miles'], ['12244', '14', 'AW00012244', 'NULL', 'Amy', 'C', 'Huang', '0', '1986-05-22', 'M', 'NULL', 'F', 'amy13@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7806 Reliez Valley Ct.', 'NULL', '1 (11) 500 555-0197', '2013-02-16', '0-1 Miles'], ['12245', '14', 'AW00012245', 'NULL', 'Francisco', 'L', 'Gonzalez', '0', '1984-05-25', 'S', 'NULL', 'M', 'francisco20@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '626 Redlands Way', 'NULL', '1 (11) 500 555-0118', '2011-12-12', '2-5 Miles'], ['12246', '36', 'AW00012246', 'NULL', 'Shawn', 'NULL', 'Luo', '0', '1985-04-10', 'M', 'NULL', 'M', 'shawn8@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '6365 Sun View Way', 'NULL', '1 (11) 500 555-0178', '2011-12-06', '2-5 Miles'], ['12247', '3', 'AW00012247', 'NULL', 'Brandy', 'NULL', 'Raman', '0', '1985-04-16', 'S', 'NULL', 'F', 'brandy8@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '30 Rolling Green Circle', 'NULL', '1 (11) 500 555-0142', '2013-02-01', '0-1 Miles'], ['12248', '34', 'AW00012248', 'NULL', 'Devin', 'L', 'Taylor', '0', '1983-09-11', 'S', 'NULL', 'M', 'devin7@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '658 Coastal Blvd', 'NULL', '1 (11) 500 555-0158', '2011-12-10', '1-2 Miles'], ['12249', '8', 'AW00012249', 'NULL', 'Jessie', 'A', 'Cai', '0', '1984-03-15', 'M', 'NULL', 'M', 'jessie27@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2429 Brown Street', 'NULL', '1 (11) 500 555-0192', '2013-03-29', '0-1 Miles'], ['12250', '20', 'AW00012250', 'NULL', 'Andrea', 'NULL', 'Collins', '0', '1982-10-06', 'S', 'NULL', 'F', 'andrea26@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '8946 Turning View', 'NULL', '1 (11) 500 555-0151', '2011-12-07', '1-2 Miles'], ['12251', '22', 'AW00012251', 'NULL', 'Troy', 'M', 'Suri', '0', '1982-10-07', 'M', 'NULL', 'M', 'troy0@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '5948 Seeno St.', 'NULL', '1 (11) 500 555-0152', '2011-12-05', '0-1 Miles'], ['12252', '21', 'AW00012252', 'NULL', 'Omar', 'L', 'Liu', '0', '1983-03-31', 'M', 'NULL', 'M', 'omar4@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '3199 Frayne Ct.', 'NULL', '1 (11) 500 555-0183', '2011-12-25', '0-1 Miles'], ['12253', '12', 'AW00012253', 'NULL', 'Jenny', 'L', 'Sun', '0', '1982-08-14', 'S', 'NULL', 'F', 'jenny15@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '6366 Dayton Court', 'NULL', '1 (11) 500 555-0134', '2011-12-18', '0-1 Miles'], ['12254', '222', 'AW00012254', 'NULL', 'Calvin', 'NULL', 'Deng', '0', '1948-08-25', 'S', 'NULL', 'M', 'calvin1@adventure-works.com', '20000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '100, rue des Rosiers', 'NULL', '1 (11) 500 555-0134', '2011-03-16', '1-2 Miles'], ['12255', '180', 'AW00012255', 'NULL', 'Robyn', 'M', 'Alvarez', '0', '1978-01-30', 'S', 'NULL', 'F', 'robyn3@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '3, place de la République', 'NULL', '1 (11) 500 555-0157', '2011-03-21', '0-1 Miles'], ['12256', '212', 'AW00012256', 'NULL', 'Wendy', 'NULL', 'Ramos', '0', '1972-10-19', 'M', 'NULL', 'F', 'wendy16@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '11, avenue du Président-Kennedy', 'NULL', '1 (11) 500 555-0125', '2011-03-30', '1-2 Miles'], ['12257', '123', 'AW00012257', 'NULL', 'Ross', 'K', 'Ruiz', '0', '1966-10-04', 'M', 'NULL', 'M', 'ross22@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Im Himmelsweg 89', 'NULL', '1 (11) 500 555-0139', '2013-12-05', '0-1 Miles'], ['12258', '144', 'AW00012258', 'NULL', 'Jamie', 'NULL', 'Li', '0', '1967-03-27', 'M', 'NULL', 'F', 'jamie5@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Heideweg 1459', 'NULL', '1 (11) 500 555-0188', '2013-10-01', '0-1 Miles'], ['12259', '230', 'AW00012259', 'NULL', 'Cindy', 'R', 'Madan', '0', '1972-04-12', 'M', 'NULL', 'F', 'cindy7@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1707 Ravenwood Dr.', 'NULL', '1 (11) 500 555-0198', '2013-03-03', '0-1 Miles'], ['12260', '236', 'AW00012260', 'NULL', 'Melinda', 'NULL', 'Romero', '0', '1972-05-01', 'M', 'NULL', 'F', 'melinda4@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '232 Pinnacle Drive', 'NULL', '1 (11) 500 555-0174', '2013-02-13', '0-1 Miles'], ['12261', '186', 'AW00012261', 'NULL', 'Kaitlin', 'NULL', 'Sanchez', '0', '1966-04-25', 'M', 'NULL', 'F', 'kaitlin19@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '8, rue de l´Esplanade', 'NULL', '1 (11) 500 555-0188', '2011-04-22', '2-5 Miles'], ['12262', '234', 'AW00012262', 'NULL', 'Morgan', 'J', 'Sanchez', '0', '1965-11-19', 'M', 'NULL', 'F', 'morgan47@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '6467 Buena Vista', 'NULL', '1 (11) 500 555-0166', '2013-03-10', '2-5 Miles'], ['12263', '259', 'AW00012263', 'NULL', 'Emmanuel', 'T', 'Garcia', '0', '1965-09-12', 'S', 'NULL', 'M', 'emmanuel13@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '6820 Montego', 'NULL', '1 (11) 500 555-0115', '2012-03-28', '0-1 Miles'], ['12264', '260', 'AW00012264', 'NULL', 'Bruce', 'NULL', 'Ashe', '0', '1976-08-16', 'S', 'NULL', 'M', 'bruce27@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '2720 Blue Ridge', 'NULL', '1 (11) 500 555-0191', '2012-04-10', '0-1 Miles'], ['12265', '219', 'AW00012265', 'NULL', 'Alan', 'NULL', 'Guo', '0', '1964-12-30', 'S', 'NULL', 'M', 'alan21@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '7, rue des Ecoles', 'NULL', '1 (11) 500 555-0126', '2011-04-26', '1-2 Miles'], ['12266', '160', 'AW00012266', 'NULL', 'Tiffany', 'NULL', 'Lin', '0', '1970-03-13', 'M', 'NULL', 'F', 'tiffany7@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Marketplatz 775', 'NULL', '1 (11) 500 555-0132', '2012-06-16', '2-5 Miles'], ['12267', '211', 'AW00012267', 'NULL', 'Clifford', 'NULL', 'Garcia', '0', '1963-11-07', 'S', 'NULL', 'M', 'clifford13@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '219, rue Descartes', 'NULL', '1 (11) 500 555-0164', '2011-04-01', '2-5 Miles'], ['12268', '138', 'AW00012268', 'NULL', 'Edwin', 'NULL', 'Shan', '0', '1963-10-30', 'M', 'NULL', 'M', 'edwin33@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Karl Liebknecht str 39', 'NULL', '1 (11) 500 555-0177', '2013-04-16', '0-1 Miles'], ['12269', '185', 'AW00012269', 'NULL', 'Warren', 'F', 'Zheng', '0', '1971-06-10', 'M', 'NULL', 'M', 'warren32@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '80, avenue de Malakoff', 'NULL', '1 (11) 500 555-0156', '2013-06-27', '0-1 Miles'], ['12270', '153', 'AW00012270', 'NULL', 'Ebony', 'NULL', 'Ramos', '0', '1966-03-09', 'S', 'NULL', 'F', 'ebony38@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Rotthäuser Weg 11', 'NULL', '1 (11) 500 555-0118', '2012-06-23', '0-1 Miles'], ['12271', '251', 'AW00012271', 'NULL', 'Tyrone', 'C', 'Hernandez', '0', '1965-03-15', 'M', 'NULL', 'M', 'tyrone3@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4839 Belle Dr', 'NULL', '1 (11) 500 555-0181', '2012-04-11', '0-1 Miles'], ['12272', '243', 'AW00012272', 'NULL', 'Justin', 'M', 'Alexander', '0', '1965-06-08', 'M', 'NULL', 'M', 'justin16@adventure-works.com', '40000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3101 Greendell Rd', 'NULL', '1 (11) 500 555-0121', '2012-04-02', '0-1 Miles'], ['12273', '121', 'AW00012273', 'NULL', 'Nelson', 'M', 'Carlson', '0', '1964-04-12', 'M', 'NULL', 'M', 'nelson17@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Welt Platz 876', 'NULL', '1 (11) 500 555-0133', '2013-08-01', '0-1 Miles'], ['12274', '203', 'AW00012274', 'NULL', 'Javier', 'R', 'Torres', '0', '1976-03-25', 'S', 'NULL', 'M', 'javier6@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '82, cours Mirabeau', 'NULL', '1 (11) 500 555-0119', '2013-10-07', '0-1 Miles'], ['12275', '125', 'AW00012275', 'NULL', 'Adriana', 'NULL', 'Madan', '0', '1981-06-07', 'S', 'NULL', 'F', 'adriana8@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Herzogstr 3998', 'NULL', '1 (11) 500 555-0126', '2012-07-15', '2-5 Miles'], ['12276', '123', 'AW00012276', 'NULL', 'Alisha', 'NULL', 'Shan', '0', '1976-01-10', 'M', 'NULL', 'F', 'alisha34@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Buergermeister-ulrich-str 100', 'NULL', '1 (11) 500 555-0190', '2012-07-01', '0-1 Miles'], ['12277', '237', 'AW00012277', 'NULL', 'Beth', 'A', 'Ortega', '0', '1974-10-20', 'S', 'NULL', 'F', 'beth24@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '4698 Royal Oak Rd.', 'NULL', '1 (11) 500 555-0194', '2012-04-14', '0-1 Miles'], ['12278', '130', 'AW00012278', 'NULL', 'Meredith', 'NULL', 'Johnsen', '0', '1974-07-06', 'S', 'NULL', 'F', 'meredith28@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Hochstr 8111', 'NULL', '1 (11) 500 555-0115', '2013-06-22', '0-1 Miles'], ['12279', '203', 'AW00012279', 'NULL', 'Mathew', 'NULL', 'Suarez', '0', '1975-12-19', 'M', 'NULL', 'M', 'mathew15@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '119, quai Paul Doumer', 'NULL', '1 (11) 500 555-0117', '2011-05-13', '0-1 Miles'], ['12280', '179', 'AW00012280', 'NULL', 'Theresa', 'H', 'Alvarez', '0', '1981-06-04', 'M', 'NULL', 'F', 'theresa1@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '33, allée des Princes', 'NULL', '1 (11) 500 555-0131', '2011-05-13', '0-1 Miles'], ['12281', '263', 'AW00012281', 'NULL', 'Janelle', 'NULL', 'Sanchez', '0', '1981-04-19', 'M', 'NULL', 'F', 'janelle17@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9809 Baltic Sea Ct', 'NULL', '1 (11) 500 555-0145', '2012-04-13', '0-1 Miles'], ['12282', '276', 'AW00012282', 'NULL', 'Nicolas', 'S', 'Tang', '0', '1981-01-03', 'S', 'NULL', 'M', 'nicolas2@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4909 Vine Lane', 'NULL', '1 (11) 500 555-0130', '2012-04-24', '0-1 Miles'], ['12283', '231', 'AW00012283', 'NULL', 'Todd', 'C', 'Zeng', '0', '1980-08-06', 'S', 'NULL', 'M', 'todd19@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '9215 Hamilton Ave.', 'NULL', '1 (11) 500 555-0195', '2012-03-30', '2-5 Miles'], ['12284', '233', 'AW00012284', 'NULL', 'Cristina', 'J', 'Beck', '0', '1980-09-28', 'M', 'NULL', 'F', 'cristina17@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '3249 Riverside Drive', 'NULL', '1 (11) 500 555-0156', '2012-04-06', '0-1 Miles'], ['12285', '221', 'AW00012285', 'NULL', 'Bethany', 'NULL', 'Chande', '0', '1975-05-28', 'S', 'NULL', 'F', 'bethany18@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4855, rue des Ecoles', 'NULL', '1 (11) 500 555-0130', '2011-05-30', '0-1 Miles'], ['12286', '265', 'AW00012286', 'NULL', 'Nathan', 'M', 'Jenkins', '0', '1975-03-06', 'S', 'NULL', 'M', 'nathan2@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3093 Roland Drive', 'NULL', '1 (11) 500 555-0123', '2012-05-16', '0-1 Miles'], ['12287', '241', 'AW00012287', 'NULL', 'Andre', 'E', 'Arun', '0', '1957-06-30', 'S', 'NULL', 'M', 'andre6@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '4398 Lakewood Court', 'NULL', '1 (11) 500 555-0114', '2012-05-29', '0-1 Miles'], ['12288', '265', 'AW00012288', 'NULL', 'Sara', 'A', 'Brooks', '0', '1984-09-17', 'M', 'NULL', 'F', 'sara2@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '2681 Black Walnut Ct.', 'NULL', '1 (11) 500 555-0186', '2013-10-01', '0-1 Miles'], ['12289', '269', 'AW00012289', 'NULL', 'Joseph', 'T', 'Taylor', '0', '1984-09-16', 'S', 'NULL', 'M', 'joseph15@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '6093 Midway Ct.', 'NULL', '1 (11) 500 555-0138', '2012-05-20', '0-1 Miles'], ['12290', '187', 'AW00012290', 'NULL', 'Kaylee', 'NULL', 'Morris', '0', '1973-10-23', 'S', 'NULL', 'F', 'kaylee15@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '9, quai de l´ Iton', 'NULL', '1 (11) 500 555-0143', '2011-05-06', '0-1 Miles'], ['12291', '115', 'AW00012291', 'NULL', 'Johnathan', 'E', 'Suri', '0', '1949-10-17', 'S', 'NULL', 'M', 'johnathan1@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Heidestieg Straße 8664', 'NULL', '1 (11) 500 555-0113', '2012-07-23', '2-5 Miles'], ['12292', '229', 'AW00012292', 'NULL', 'Nicolas', 'R', 'Kumar', '0', '1955-03-21', 'M', 'NULL', 'M', 'nicolas5@adventure-works.com', '130000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '5703 Rose Dr', 'NULL', '1 (11) 500 555-0177', '2012-05-20', '0-1 Miles'], ['12293', '233', 'AW00012293', 'NULL', 'Tammy', 'A', 'Garcia', '0', '1949-11-14', 'M', 'NULL', 'F', 'tammy15@adventure-works.com', '130000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '5866 Orange St.', 'NULL', '1 (11) 500 555-0164', '2013-06-01', '5-10 Miles'], ['12294', '254', 'AW00012294', 'NULL', 'Shane', 'L', 'Kovar', '0', '1950-05-31', 'M', 'NULL', 'M', 'shane7@adventure-works.com', '130000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '5194 Mendouno Dr', 'NULL', '1 (11) 500 555-0186', '2013-05-22', '0-1 Miles'], ['12295', '216', 'AW00012295', 'NULL', 'Dwayne', 'NULL', 'Gomez', '0', '1956-03-17', 'S', 'NULL', 'M', 'dwayne1@adventure-works.com', '60000.00', '3', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '4', '33, allée des Princes', 'NULL', '1 (11) 500 555-0113', '2013-02-12', '10+ Miles'], ['12296', '211', 'AW00012296', 'NULL', 'Francisco', 'A', 'Sara', '0', '1961-08-11', 'M', 'NULL', 'M', 'francisco11@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '24, rue Descartes', 'NULL', '1 (11) 500 555-0166', '2011-05-19', '2-5 Miles'], ['12297', '131', 'AW00012297', 'NULL', 'Felicia', 'NULL', 'Blanco', '0', '1950-07-08', 'S', 'NULL', 'F', 'felicia15@adventure-works.com', '80000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Kurfürstenstr 599', 'NULL', '1 (11) 500 555-0130', '2012-08-12', '2-5 Miles'], ['12298', '171', 'AW00012298', 'NULL', 'Crystal', 'NULL', 'Zeng', '0', '1950-11-18', 'S', 'NULL', 'F', 'crystal1@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Auf Der Steige 6', 'NULL', '1 (11) 500 555-0184', '2012-08-21', '2-5 Miles'], ['12299', '274', 'AW00012299', 'NULL', 'Walter', 'G', 'Serrano', '0', '1950-12-08', 'M', 'NULL', 'M', 'walter9@adventure-works.com', '150000.00', '3', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '4', '2761 Pinecreek Way', 'NULL', '1 (11) 500 555-0176', '2012-05-09', '5-10 Miles'], ['12300', '180', 'AW00012300', 'NULL', 'Adriana', 'L', 'Gonzalez', '0', '1952-01-15', 'S', 'NULL', 'F', 'adriana19@adventure-works.com', '80000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '310, rue des Rosiers', 'NULL', '1 (11) 500 555-0129', '2011-05-24', '10+ Miles'], ['12301', '223', 'AW00012301', 'NULL', 'Nichole', 'NULL', 'Nara', '0', '1952-06-03', 'S', 'NULL', 'F', 'nichole16@adventure-works.com', '100000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '21, avenue de la Gare', 'NULL', '1 (11) 500 555-0152', '2011-05-10', '10+ Miles'], ['12302', '131', 'AW00012302', 'NULL', 'Kevin', 'NULL', 'Coleman', '0', '1951-08-30', 'M', 'NULL', 'M', 'kevin9@adventure-works.com', '100000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', 'Reiherweg 5', 'NULL', '1 (11) 500 555-0167', '2012-08-23', '2-5 Miles'], ['12303', '250', 'AW00012303', 'NULL', 'Kristi', 'NULL', 'Alvarez', '0', '1951-10-14', 'M', 'NULL', 'F', 'kristi1@adventure-works.com', '130000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '3322 Haven Hill Drive', 'NULL', '1 (11) 500 555-0111', '2013-08-18', '0-1 Miles'], ['12304', '253', 'AW00012304', 'NULL', 'Alejandro', 'A', 'Zhou', '0', '1957-06-01', 'S', 'NULL', 'M', 'alejandro11@adventure-works.com', '130000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '8089 Mariposa Ct.', 'NULL', '1 (11) 500 555-0144', '2013-09-02', '0-1 Miles'], ['12305', '234', 'AW00012305', 'NULL', 'Xavier', 'NULL', 'Bailey', '0', '1960-01-03', 'M', 'NULL', 'M', 'xavier83@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '6720 Bryce Dr.', 'NULL', '1 (11) 500 555-0129', '2012-06-27', '2-5 Miles'], ['12306', '120', 'AW00012306', 'NULL', 'Logan', 'A', 'Parker', '0', '1958-12-04', 'M', 'NULL', 'M', 'logan27@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Wolfgangstraße 48', 'NULL', '1 (11) 500 555-0125', '2013-05-02', '10+ Miles'], ['12307', '226', 'AW00012307', 'NULL', 'Brad', 'NULL', 'She', '0', '1960-05-12', 'M', 'NULL', 'M', 'brad1@adventure-works.com', '90000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '12, rue Henri Gagnon', 'NULL', '1 (11) 500 555-0136', '2011-05-29', '2-5 Miles'], ['12308', '184', 'AW00012308', 'NULL', 'Margaret', 'NULL', 'He', '0', '1970-10-19', 'M', 'NULL', 'F', 'margaret25@adventure-works.com', '100000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '12bis, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0112', '2011-06-03', '10+ Miles'], ['12309', '235', 'AW00012309', 'NULL', 'Omar', 'R', 'Raje', '0', '1960-04-03', 'S', 'NULL', 'M', 'omar34@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '4192 Mines Road', 'NULL', '1 (11) 500 555-0110', '2013-03-29', '0-1 Miles'], ['12310', '239', 'AW00012310', 'NULL', 'Stacy', 'NULL', 'Munoz', '0', '1960-01-08', 'S', 'NULL', 'F', 'stacy8@adventure-works.com', '130000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '4', '1545 Bannock Ct.', 'NULL', '1 (11) 500 555-0162', '2013-10-12', '0-1 Miles'], ['12311', '255', 'AW00012311', 'NULL', 'Stanley', 'E', 'Weber', '0', '1965-06-15', 'S', 'NULL', 'M', 'stanley4@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '1', '7859 Green Valley Road', 'NULL', '1 (11) 500 555-0133', '2013-09-17', '0-1 Miles'], ['12312', '196', 'AW00012312', 'NULL', 'Jake', 'NULL', 'Zhao', '0', '1970-05-06', 'M', 'NULL', 'M', 'jake10@adventure-works.com', '100000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '454, boulevard Tremblay', 'NULL', '1 (11) 500 555-0192', '2013-10-28', '10+ Miles'], ['12313', '199', 'AW00012313', 'NULL', 'Jaime', 'NULL', 'Chande', '0', '1958-12-03', 'S', 'NULL', 'M', 'jaime37@adventure-works.com', '100000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '15, rue Philibert-Delorme', 'NULL', '1 (11) 500 555-0194', '2014-01-15', '10+ Miles'], ['12314', '119', 'AW00012314', 'NULL', 'Jill', 'J', 'Suarez', '0', '1959-03-20', 'M', 'NULL', 'F', 'jill27@adventure-works.com', '110000.00', '2', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', 'Postfach 22 99 99', 'NULL', '1 (11) 500 555-0162', '2012-08-16', '10+ Miles'], ['12315', '246', 'AW00012315', 'NULL', 'Ann', 'S', 'Rodriguez', '0', '1959-03-19', 'M', 'NULL', 'F', 'ann24@adventure-works.com', '130000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4865 Rivewview', 'NULL', '1 (11) 500 555-0116', '2012-06-26', '10+ Miles'], ['12316', '255', 'AW00012316', 'NULL', 'Alejandro', 'K', 'Luo', '0', '1964-11-21', 'M', 'NULL', 'M', 'alejandro32@adventure-works.com', '130000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '2625 Pacheco St', 'NULL', '1 (11) 500 555-0124', '2012-05-30', '10+ Miles'], ['12317', '262', 'AW00012317', 'NULL', 'Carl', 'A', 'She', '0', '1959-03-24', 'M', 'NULL', 'M', 'carl0@adventure-works.com', '150000.00', '2', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '7199 Natalie Drive', 'NULL', '1 (11) 500 555-0172', '2012-06-25', '0-1 Miles'], ['12318', '271', 'AW00012318', 'NULL', 'Kristina', 'NULL', 'Schmidt', '0', '1958-10-31', 'M', 'NULL', 'F', 'kristina10@adventure-works.com', '170000.00', '0', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '181 Buena Vista', 'NULL', '1 (11) 500 555-0116', '2012-06-11', '10+ Miles'], ['12319', '115', 'AW00012319', 'NULL', 'Shannon', 'D', 'Ye', '0', '1958-01-08', 'M', 'NULL', 'F', 'shannon10@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Welt Platz 99', 'NULL', '1 (11) 500 555-0116', '2013-04-10', '10+ Miles'], ['12320', '233', 'AW00012320', 'NULL', 'Cheryl', 'A', 'Alvarez', '0', '1963-06-14', 'S', 'NULL', 'F', 'cheryl6@adventure-works.com', '120000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '4716 Zebra Street', 'NULL', '1 (11) 500 555-0154', '2013-08-17', '10+ Miles'], ['12321', '211', 'AW00012321', 'NULL', 'Rosa', 'K', 'Hu', '0', '1956-08-14', 'M', 'NULL', 'F', 'rosa20@adventure-works.com', '70000.00', '5', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '28, place du Tertre', 'NULL', '1 (11) 500 555-0192', '2011-06-02', '2-5 Miles'], ['12322', '211', 'AW00012322', 'NULL', 'Kari', 'V', 'Mehta', '0', '1957-01-29', 'M', 'NULL', 'F', 'kari14@adventure-works.com', '80000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '9, rue de la Centenaire', 'NULL', '1 (11) 500 555-0189', '2013-12-22', '10+ Miles'], ['12323', '219', 'AW00012323', 'NULL', 'Lawrence', 'S', 'Alonso', '0', '1962-01-11', 'M', 'NULL', 'M', 'lawrence6@adventure-works.com', '80000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8111, rue Basse-du-Rocher', 'NULL', '1 (11) 500 555-0169', '2011-06-24', '10+ Miles'], ['12324', '147', 'AW00012324', 'NULL', 'Dale', 'NULL', 'Lal', '0', '1956-08-26', 'S', 'NULL', 'M', 'dale7@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', 'Postfach 20 99 99', 'NULL', '1 (11) 500 555-0130', '2013-10-31', '10+ Miles'], ['12325', '244', 'AW00012325', 'NULL', 'Gloria', 'A', 'Martin', '0', '1956-09-14', 'M', 'NULL', 'F', 'gloria3@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '4021 Raymond Dr', 'NULL', '1 (11) 500 555-0111', '2013-08-05', '10+ Miles'], ['12326', '279', 'AW00012326', 'NULL', 'Glenn', 'A', 'Zhou', '0', '1956-08-02', 'S', 'NULL', 'M', 'glenn9@adventure-works.com', '170000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '4', '1516 Redbird Lane', 'NULL', '1 (11) 500 555-0131', '2013-09-29', '0-1 Miles'], ['12327', '156', 'AW00012327', 'NULL', 'Edwin', 'W', 'Liang', '0', '1961-01-14', 'S', 'NULL', 'M', 'edwin17@adventure-works.com', '100000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '4', 'Alte Landstr 1595', 'NULL', '1 (11) 500 555-0112', '2013-02-05', '10+ Miles'], ['12328', '250', 'AW00012328', 'NULL', 'Eugene', 'NULL', 'Zhao', '0', '1955-09-15', 'S', 'NULL', 'M', 'eugene14@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '3', '2128 Evelyn Court', 'NULL', '1 (11) 500 555-0164', '2012-06-04', '0-1 Miles'], ['12329', '278', 'AW00012329', 'NULL', 'Bonnie', 'NULL', 'Shan', '0', '1956-04-21', 'S', 'NULL', 'F', 'bonnie16@adventure-works.com', '170000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '4', '9192 High Maple Court', 'NULL', '1 (11) 500 555-0145', '2013-05-22', '0-1 Miles'], ['12330', '144', 'AW00012330', 'NULL', 'Preston', 'M', 'Raman', '0', '1954-12-19', 'M', 'NULL', 'M', 'preston11@adventure-works.com', '100000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '4', 'Heiderplatz 918', 'NULL', '1 (11) 500 555-0168', '2012-08-20', '5-10 Miles'], ['12331', '185', 'AW00012331', 'NULL', 'Meagan', 'J', 'Chandra', '0', '1954-01-14', 'S', 'NULL', 'F', 'meagan2@adventure-works.com', '70000.00', '5', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '4', '54, rue Maillard', 'NULL', '1 (11) 500 555-0199', '2013-03-05', '10+ Miles'], ['12332', '193', 'AW00012332', 'NULL', 'Andres', 'A', 'Nara', '0', '1954-02-07', 'M', 'NULL', 'M', 'andres14@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '83, rue Jean Mermoz', 'NULL', '1 (11) 500 555-0173', '2011-06-13', '5-10 Miles'], ['12333', '190', 'AW00012333', 'NULL', 'Terrance', 'V', 'Rodriguez', '0', '1954-05-18', 'M', 'NULL', 'M', 'terrance17@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '3', '16, rue des Grands Champs', 'NULL', '1 (11) 500 555-0141', '2011-06-18', '5-10 Miles'], ['12334', '250', 'AW00012334', 'NULL', 'Roy', 'NULL', 'Jimenez', '0', '1959-08-17', 'M', 'NULL', 'M', 'roy26@adventure-works.com', '130000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '1528 Marlene Drive', 'NULL', '1 (11) 500 555-0131', '2013-06-13', '10+ Miles'], ['12335', '267', 'AW00012335', 'NULL', 'Francisco', 'W', 'Ashe', '0', '1959-02-19', 'S', 'NULL', 'M', 'francisco7@adventure-works.com', '150000.00', '3', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '2281 West Road', 'NULL', '1 (11) 500 555-0160', '2012-06-11', '0-1 Miles'], ['12336', '261', 'AW00012336', 'NULL', 'Wyatt', 'NULL', 'Price', '0', '1953-01-05', 'S', 'NULL', 'M', 'wyatt52@adventure-works.com', '130000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '4', '7232 Mulberry', 'NULL', '1 (11) 500 555-0119', '2013-02-23', '0-1 Miles'], ['12337', '6', 'AW00012337', 'NULL', 'Dustin', 'NULL', 'Goldstein', '0', '1981-04-07', 'S', 'NULL', 'M', 'dustin20@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '9343 Ironwood Way', 'NULL', '1 (11) 500 555-0190', '2011-12-05', '5-10 Miles'], ['12338', '38', 'AW00012338', 'NULL', 'Monica', 'G', 'Vance', '0', '1982-01-05', 'S', 'NULL', 'F', 'monica4@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '2422 Brookview Drive', 'NULL', '1 (11) 500 555-0113', '2011-12-24', '10+ Miles'], ['12339', '29', 'AW00012339', 'NULL', 'Clayton', 'NULL', 'Jai', '0', '1982-01-05', 'S', 'NULL', 'M', 'clayton29@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '9543 West I St.', 'NULL', '1 (11) 500 555-0112', '2012-01-13', '10+ Miles'], ['12340', '21', 'AW00012340', 'NULL', 'Stacy', 'L', 'Diaz', '0', '1982-05-05', 'S', 'NULL', 'F', 'stacy4@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '1456 Lake Nadine Pl.', 'NULL', '1 (11) 500 555-0182', '2012-01-23', '10+ Miles'], ['12341', '5', 'AW00012341', 'NULL', 'Katie', 'P', 'Kumar', '0', '1982-03-09', 'M', 'NULL', 'F', 'katie10@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '1463 Lincoln Dr', 'NULL', '1 (11) 500 555-0140', '2012-01-04', '10+ Miles'], ['12342', '18', 'AW00012342', 'NULL', 'Morgan', 'L', 'Young', '0', '1980-09-05', 'M', 'NULL', 'F', 'morgan22@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '2807 10th Avenue', 'NULL', '1 (11) 500 555-0195', '2012-01-10', '10+ Miles'], ['12343', '9', 'AW00012343', 'NULL', 'Gloria', 'NULL', 'Ruiz', '0', '1979-12-02', 'M', 'NULL', 'F', 'gloria4@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '406 Countrywood Ct.', 'NULL', '1 (11) 500 555-0187', '2012-01-17', '10+ Miles'], ['12344', '3', 'AW00012344', 'NULL', 'Dominique', 'NULL', 'Perez', '0', '1980-11-29', 'S', 'NULL', 'F', 'dominique18@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '1515 Palm Dr', 'NULL', '1 (11) 500 555-0123', '2013-03-14', '10+ Miles'], ['12345', '27', 'AW00012345', 'NULL', 'Alison', 'J', 'Raje', '0', '1980-12-24', 'S', 'NULL', 'F', 'alison14@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '4037 Kiska Court', 'NULL', '1 (11) 500 555-0176', '2013-03-31', '10+ Miles'], ['12346', '15', 'AW00012346', 'NULL', 'Wesley', 'NULL', 'Gao', '0', '1980-11-18', 'S', 'NULL', 'M', 'wesley15@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '9266 Trees Drive', 'NULL', '1 (11) 500 555-0115', '2012-01-04', '10+ Miles'], ['12347', '40', 'AW00012347', 'NULL', 'Summer', 'D', 'Madan', '0', '1980-08-20', 'M', 'NULL', 'F', 'summer6@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '8172 N. Ranchford', 'NULL', '1 (11) 500 555-0194', '2012-01-13', '10+ Miles'], ['12348', '6', 'AW00012348', 'NULL', 'Jimmy', 'D', 'Vazquez', '0', '1979-08-24', 'M', 'NULL', 'M', 'jimmy18@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '8978 Kingsford Dr.', 'NULL', '1 (11) 500 555-0187', '2012-01-28', '10+ Miles'], ['12349', '15', 'AW00012349', 'NULL', 'Lacey', 'W', 'Yuan', '0', '1980-01-23', 'S', 'NULL', 'F', 'lacey41@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '9852 Shirley Dr', 'NULL', '1 (11) 500 555-0125', '2011-12-29', '10+ Miles'], ['12350', '34', 'AW00012350', 'NULL', 'Logan', 'NULL', 'Hernandez', '0', '1984-02-22', 'M', 'NULL', 'M', 'logan44@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '7625 Cloudview Dr.', 'NULL', '1 (11) 500 555-0112', '2012-01-06', '10+ Miles'], ['12351', '39', 'AW00012351', 'NULL', 'Cara', 'NULL', 'Zhang', '0', '1984-09-28', 'M', 'NULL', 'F', 'cara0@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '2', '1860 Holiday Hill Dr.', 'NULL', '1 (11) 500 555-0124', '2013-06-23', '10+ Miles'], ['12352', '12', 'AW00012352', 'NULL', 'Ramon', 'D', 'Zhang', '0', '1978-09-02', 'M', 'NULL', 'M', 'ramon0@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '2', '3648 Willow Drive', 'NULL', '1 (11) 500 555-0136', '2013-09-28', '10+ Miles'], ['12353', '24', 'AW00012353', 'NULL', 'Joe', 'NULL', 'Ramos', '0', '1984-10-16', 'M', 'NULL', 'M', 'joe41@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '3', '8080 Lancelot Dr.', 'NULL', '1 (11) 500 555-0160', '2012-01-25', '10+ Miles'], ['12354', '34', 'AW00012354', 'NULL', 'Lance', 'C', 'Ortega', '0', '1984-08-03', 'M', 'NULL', 'M', 'lance22@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '3', '9735 Sullivan Ave.', 'NULL', '1 (11) 500 555-0123', '2012-01-03', '10+ Miles'], ['12355', '19', 'AW00012355', 'NULL', 'Monique', 'C', 'Ortega', '0', '1984-03-19', 'S', 'NULL', 'F', 'monique18@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '5462 El Pintado Rd.', 'NULL', '1 (11) 500 555-0177', '2011-12-29', '10+ Miles'], ['12356', '13', 'AW00012356', 'NULL', 'Julia', 'L', 'Wood', '0', '1977-02-18', 'S', 'NULL', 'F', 'julia68@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '1073 Bonnie Lane', 'NULL', '1 (11) 500 555-0148', '2012-01-09', '10+ Miles'], ['12357', '29', 'AW00012357', 'NULL', 'Susan', 'C', 'Lu', '0', '1982-04-03', 'S', 'NULL', 'F', 'susan21@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '4519 Sequoia Drive', 'NULL', '1 (11) 500 555-0148', '2013-10-29', '10+ Miles'], ['12358', '9', 'AW00012358', 'NULL', 'Lacey', 'T', 'Raje', '0', '1975-08-26', 'M', 'NULL', 'F', 'lacey4@adventure-works.com', '100000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '8986 Rubiem Ct', 'NULL', '1 (11) 500 555-0115', '2012-01-28', '10+ Miles'], ['12359', '9', 'AW00012359', 'NULL', 'Veronica', 'R', 'Raman', '0', '1975-08-19', 'M', 'NULL', 'F', 'veronica13@adventure-works.com', '130000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '4', '7107 Kingsford Dr.', 'NULL', '1 (11) 500 555-0157', '2013-09-11', '0-1 Miles'], ['12360', '12', 'AW00012360', 'NULL', 'Mario', 'J', 'Goel', '0', '1977-01-22', 'S', 'NULL', 'M', 'mario18@adventure-works.com', '130000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '4', '4898 Hillview Dr.', 'NULL', '1 (11) 500 555-0137', '2012-01-16', '0-1 Miles'], ['12361', '22', 'AW00012361', 'NULL', 'Dana', 'C', 'Diaz', '0', '1982-03-28', 'M', 'NULL', 'F', 'dana19@adventure-works.com', '160000.00', '4', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Management', 'Gestión', 'Direction', '0', '4', '2241 Concord Place', 'NULL', '1 (11) 500 555-0194', '2013-09-18', '10+ Miles'], ['12362', '335', 'AW00012362', 'NULL', 'Thomas', 'NULL', 'Harrison', '0', '1952-07-02', 'S', 'NULL', 'M', 'thomas25@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2662 Limewood Place', 'NULL', '677-555-0112', '2011-12-04', '5-10 Miles'], ['12363', '51', 'AW00012363', 'NULL', 'Kayla', 'D', 'Thompson', '0', '1947-06-24', 'M', 'NULL', 'F', 'kayla16@adventure-works.com', '110000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '412 Miller Dr.', 'NULL', '918-555-0192', '2013-03-29', '2-5 Miles'], ['12364', '632', 'AW00012364', 'NULL', 'Erin', 'NULL', 'Rogers', '0', '1947-04-27', 'M', 'NULL', 'F', 'erin23@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '8387 E. Lane Rd.', 'NULL', '920-555-0187', '2011-12-26', '2-5 Miles'], ['12365', '611', 'AW00012365', 'NULL', 'Alex', 'C', 'Evans', '0', '1953-02-08', 'M', 'NULL', 'M', 'alex27@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '6478 Fenway', 'NULL', '948-555-0138', '2013-04-01', '1-2 Miles'], ['12366', '607', 'AW00012366', 'NULL', 'Stephanie', 'R', 'Cox', '0', '1948-01-07', 'M', 'NULL', 'F', 'stephanie16@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9064 La Paz', 'NULL', '798-555-0198', '2013-04-11', '5-10 Miles'], ['12367', '243', 'AW00012367', 'NULL', 'Trinity', 'L', 'Townsend', '0', '1979-02-19', 'S', 'NULL', 'F', 'trinity4@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '370 Treat Blvd', 'NULL', '1 (11) 500 555-0155', '2013-02-10', '0-1 Miles'], ['12368', '184', 'AW00012368', 'NULL', 'Rodney', 'L', 'Rubio', '0', '1978-12-20', 'S', 'NULL', 'M', 'rodney15@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '40, rue Royale', 'NULL', '1 (11) 500 555-0119', '2013-11-27', '1-2 Miles'], ['12369', '36', 'AW00012369', 'NULL', 'Terrence', 'NULL', 'Lal', '0', '1969-04-04', 'S', 'NULL', 'M', 'terrence8@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '2680 Claudia Drive', 'NULL', '1 (11) 500 555-0168', '2013-09-25', '0-1 Miles'], ['12370', '15', 'AW00012370', 'NULL', 'Preston', 'NULL', 'Perez', '0', '1968-12-24', 'M', 'NULL', 'M', 'preston19@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '8306 Sun Tree Lane', 'NULL', '1 (11) 500 555-0136', '2013-02-10', '5-10 Miles'], ['12371', '14', 'AW00012371', 'NULL', 'Stefanie', 'NULL', 'Subram', '0', '1968-08-13', 'S', 'NULL', 'F', 'stefanie10@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '8433 Pacifica Avenue', '#331', '1 (11) 500 555-0113', '2013-07-01', '5-10 Miles'], ['12372', '22', 'AW00012372', 'NULL', 'Darren', 'NULL', 'Prasad', '0', '1969-03-17', 'S', 'NULL', 'M', 'darren12@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', 'P.O. Box 1052', 'NULL', '1 (11) 500 555-0193', '2013-03-22', '0-1 Miles'], ['12373', '209', 'AW00012373', 'NULL', 'Isaac', 'G', 'Gray', '0', '1985-08-02', 'S', 'NULL', 'M', 'isaac5@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '558, rue Faubourg St Antoine', 'NULL', '1 (11) 500 555-0161', '2011-06-27', '2-5 Miles'], ['12374', '185', 'AW00012374', 'NULL', 'Marie', 'NULL', 'Kapoor', '0', '1985-09-25', 'S', 'NULL', 'F', 'marie5@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '1020, quai de Grenelle', 'NULL', '1 (11) 500 555-0185', '2013-02-07', '0-1 Miles'], ['12375', '226', 'AW00012375', 'NULL', 'Jarrod', 'NULL', 'Raman', '0', '1985-08-23', 'S', 'NULL', 'M', 'jarrod12@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '64, route de Marseille', 'NULL', '1 (11) 500 555-0158', '2014-01-11', '1-2 Miles'], ['12376', '254', 'AW00012376', 'NULL', 'Holly', 'E', 'Perez', '0', '1985-09-29', 'S', 'NULL', 'F', 'holly19@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '4824 Kirkwood Ct.', 'NULL', '1 (11) 500 555-0112', '2013-05-10', '1-2 Miles'], ['12377', '155', 'AW00012377', 'NULL', 'Christopher', 'NULL', 'Miller', '0', '1985-09-11', 'S', 'NULL', 'M', 'christopher6@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Buergermeister-ulrich-str 39', 'NULL', '1 (11) 500 555-0116', '2013-06-24', '1-2 Miles'], ['12378', '121', 'AW00012378', 'NULL', 'Brianna', 'P', 'Sanchez', '0', '1985-02-16', 'S', 'NULL', 'F', 'brianna25@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Zeiter Weg 9922', 'NULL', '1 (11) 500 555-0164', '2012-08-07', '2-5 Miles'], ['12379', '147', 'AW00012379', 'NULL', 'Bridget', 'E', 'Chande', '0', '1984-02-16', 'S', 'NULL', 'F', 'bridget17@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Lindenalle 4284', 'NULL', '1 (11) 500 555-0153', '2013-04-21', '2-5 Miles'], ['12380', '231', 'AW00012380', 'NULL', 'Omar', 'C', 'Yuan', '0', '1979-09-04', 'S', 'NULL', 'M', 'omar26@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '2153 Cloudview Dr.', 'NULL', '1 (11) 500 555-0174', '2012-06-04', '2-5 Miles'], ['12381', '251', 'AW00012381', 'NULL', 'Johnny', 'G', 'Lal', '0', '1985-02-13', 'M', 'NULL', 'M', 'johnny9@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8396 Ruth Drive', 'NULL', '1 (11) 500 555-0148', '2012-06-19', '1-2 Miles'], ['12382', '252', 'AW00012382', 'NULL', 'Tamara', 'NULL', 'Chen', '0', '1983-11-08', 'S', 'NULL', 'F', 'tamara33@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '9199 Park Glenn', 'NULL', '1 (11) 500 555-0162', '2012-06-28', '1-2 Miles'], ['12383', '197', 'AW00012383', 'NULL', 'Albert', 'M', 'Gomez', '0', '1978-10-18', 'S', 'NULL', 'M', 'albert4@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '2401, rue des Bouchers', 'NULL', '1 (11) 500 555-0177', '2011-05-31', '1-2 Miles'], ['12384', '168', 'AW00012384', 'NULL', 'Jacquelyn', 'C', 'Gutierrez', '0', '1979-03-31', 'M', 'NULL', 'F', 'jacquelyn11@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Curieweg 942', 'NULL', '1 (11) 500 555-0161', '2012-08-16', '0-1 Miles'], ['12385', '229', 'AW00012385', 'NULL', 'Tara', 'NULL', 'Raji', '0', '1978-09-24', 'M', 'NULL', 'F', 'tara22@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6598 Lorie Ln.', 'NULL', '1 (11) 500 555-0120', '2012-06-01', '0-1 Miles'], ['12386', '117', 'AW00012386', 'NULL', 'Katherine', 'S', 'Perry', '0', '1977-10-06', 'S', 'NULL', 'F', 'katherine33@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Erftplatz 654', 'NULL', '1 (11) 500 555-0125', '2012-08-02', '1-2 Miles'], ['12387', '190', 'AW00012387', 'NULL', 'Meredith', 'M', 'Vazquez', '0', '1983-12-24', 'S', 'NULL', 'F', 'meredith38@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '2425, avenue de l´Europe', 'NULL', '1 (11) 500 555-0168', '2013-09-21', '2-5 Miles'], ['12388', '168', 'AW00012388', 'NULL', 'Casey', 'G', 'Kumar', '0', '1978-01-16', 'S', 'NULL', 'F', 'casey8@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Platz des Landtags 55', 'NULL', '1 (11) 500 555-0150', '2012-08-12', '1-2 Miles'], ['12389', '215', 'AW00012389', 'NULL', 'Albert', 'D', 'Jiménez', '0', '1978-01-03', 'S', 'NULL', 'M', 'albert8@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '61, place de Fontenoy', 'NULL', '1 (11) 500 555-0192', '2013-11-13', '2-5 Miles'], ['12390', '140', 'AW00012390', 'NULL', 'Denise', 'L', 'Martinez', '0', '1983-09-14', 'S', 'NULL', 'F', 'denise18@adventure-works.com', '40000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Am Grossen Dern 123', 'NULL', '1 (11) 500 555-0125', '2012-08-05', '0-1 Miles'], ['12391', '241', 'AW00012391', 'NULL', 'Olivia', 'L', 'Kelly', '0', '1983-02-20', 'S', 'NULL', 'F', 'olivia46@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6960 Trees Drive', 'NULL', '1 (11) 500 555-0133', '2012-06-24', '1-2 Miles'], ['12392', '237', 'AW00012392', 'NULL', 'Nichole', 'K', 'Nath', '0', '1977-01-22', 'S', 'NULL', 'F', 'nichole18@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '3228 Pembroke Dr', 'NULL', '1 (11) 500 555-0133', '2013-01-28', '0-1 Miles'], ['12393', '223', 'AW00012393', 'NULL', 'Brenda', 'V', 'Sai', '0', '1977-01-12', 'S', 'NULL', 'F', 'brenda9@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '2, rue Lamarck', 'NULL', '1 (11) 500 555-0171', '2013-09-27', '0-1 Miles'], ['12394', '268', 'AW00012394', 'NULL', 'Erika', 'NULL', 'Serrano', '0', '1982-03-09', 'S', 'NULL', 'F', 'erika14@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '4919 Hames Court', 'NULL', '1 (11) 500 555-0193', '2012-06-16', '1-2 Miles'], ['12395', '207', 'AW00012395', 'NULL', 'Kyle', 'K', 'Carter', '0', '1982-04-21', 'S', 'NULL', 'M', 'kyle39@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '8182, chaussée de Tournai', 'NULL', '1 (11) 500 555-0120', '2011-06-19', '2-5 Miles'], ['12396', '120', 'AW00012396', 'NULL', 'Susan', 'E', 'Yang', '0', '1976-10-11', 'S', 'NULL', 'F', 'susan14@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Erftplatz 900', 'NULL', '1 (11) 500 555-0175', '2013-10-15', '2-5 Miles'], ['12397', '173', 'AW00012397', 'NULL', 'Shaun', 'K', 'Chapman', '0', '1975-09-11', 'S', 'NULL', 'M', 'shaun17@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Am Grossen Dern 725', 'NULL', '1 (11) 500 555-0119', '2012-08-23', '1-2 Miles'], ['12398', '187', 'AW00012398', 'NULL', 'Ashley', 'H', 'Clark', '0', '1977-01-08', 'S', 'NULL', 'F', 'ashley20@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '804, avenue du Québec', 'NULL', '1 (11) 500 555-0196', '2011-06-17', '0-1 Miles'], ['12399', '156', 'AW00012399', 'NULL', 'Henry', 'L', 'Chapman', '0', '1977-03-11', 'S', 'NULL', 'M', 'henry4@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Knaackstr 556', 'NULL', '1 (11) 500 555-0161', '2013-08-23', '1-2 Miles'], ['12400', '144', 'AW00012400', 'NULL', 'Andy', 'F', 'Martin', '0', '1977-05-11', 'S', 'NULL', 'M', 'andy5@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Winter der Böck 8456', 'NULL', '1 (11) 500 555-0144', '2013-08-09', '1-2 Miles'], ['12401', '120', 'AW00012401', 'NULL', 'Kimberly', 'NULL', 'Rivera', '0', '1982-05-05', 'S', 'NULL', 'F', 'kimberly19@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Königstr 28', 'NULL', '1 (11) 500 555-0114', '2013-09-19', '1-2 Miles'], ['12402', '255', 'AW00012402', 'NULL', 'Albert', 'NULL', 'Moreno', '0', '1976-09-11', 'S', 'NULL', 'M', 'albert9@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3941 Teakwood Dr', 'NULL', '1 (11) 500 555-0171', '2012-06-08', '0-1 Miles'], ['12403', '273', 'AW00012403', 'NULL', 'Henry', 'NULL', 'Young', '0', '1976-12-15', 'S', 'NULL', 'M', 'henry24@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7499 Yolanda Circle', 'NULL', '1 (11) 500 555-0140', '2013-11-20', '1-2 Miles'], ['12404', '278', 'AW00012404', 'NULL', 'Krystal', 'S', 'Liang', '0', '1982-08-06', 'S', 'NULL', 'F', 'krystal17@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1500 Grant Street', 'NULL', '1 (11) 500 555-0137', '2012-07-22', '0-1 Miles'], ['12405', '261', 'AW00012405', 'NULL', 'Cole', 'NULL', 'Sanchez', '0', '1976-03-18', 'S', 'NULL', 'M', 'cole18@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2620 Tice', 'NULL', '1 (11) 500 555-0185', '2014-01-07', '1-2 Miles'], ['12406', '119', 'AW00012406', 'NULL', 'Ross', 'NULL', 'Gutierrez', '0', '1975-07-22', 'S', 'NULL', 'M', 'ross29@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', 'Alte Landstr 29', 'NULL', '1 (11) 500 555-0149', '2013-12-16', '1-2 Miles'], ['12407', '139', 'AW00012407', 'NULL', 'Shawn', 'NULL', 'Raji', '0', '1981-08-23', 'S', 'NULL', 'M', 'shawn23@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Zeiter Weg 6399', 'Einkaufsabteilung', '1 (11) 500 555-0122', '2013-10-26', '1-2 Miles'], ['12408', '175', 'AW00012408', 'NULL', 'Jon', 'M', 'Lu', '0', '1975-08-05', 'S', 'NULL', 'M', 'jon31@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', 'Hauptstr 6146', 'NULL', '1 (11) 500 555-0185', '2013-09-30', '1-2 Miles'], ['12409', '368', 'AW00012409', 'NULL', 'Savannah', 'E', 'Hill', '0', '1980-09-19', 'S', 'NULL', 'F', 'savannah35@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1583 Westwood Lane', 'NULL', '584-555-0142', '2013-05-20', '1-2 Miles'], ['12410', '300', 'AW00012410', 'NULL', 'Mariah', 'NULL', 'Richardson', '0', '1981-06-04', 'S', 'NULL', 'F', 'mariah34@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8032 Gumwood', 'NULL', '691-555-0171', '2013-04-05', '1-2 Miles'], ['12411', '311', 'AW00012411', 'NULL', 'Kevin', 'NULL', 'Alexander', '0', '1981-03-31', 'S', 'NULL', 'M', 'kevin21@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6115 Glenside Court', 'NULL', '915-555-0172', '2013-06-30', '0-1 Miles'], ['12412', '315', 'AW00012412', 'NULL', 'Mackenzie', 'K', 'Wright', '0', '1936-04-18', 'M', 'NULL', 'F', 'mackenzie41@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2287 El Dorado', 'NULL', '785-555-0197', '2013-10-25', '1-2 Miles'], ['12413', '631', 'AW00012413', 'NULL', 'James', 'L', 'Gonzales', '0', '1977-03-03', 'S', 'NULL', 'M', 'james32@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '5719 A St.', 'NULL', '988-555-0116', '2013-06-20', '1-2 Miles'], ['12414', '546', 'AW00012414', 'NULL', 'Ethan', 'A', 'Lal', '0', '1971-12-19', 'S', 'NULL', 'M', 'ethan25@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '8524 C Mt. Hood Circle', 'NULL', '569-555-0151', '2013-05-27', '1-2 Miles'], ['12415', '552', 'AW00012415', 'NULL', 'Brianna', 'G', 'Richardson', '0', '1972-05-01', 'S', 'NULL', 'F', 'brianna36@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '9178 Sand Pointe Lane', 'NULL', '424-555-0194', '2013-11-22', '0-1 Miles'], ['12416', '298', 'AW00012416', 'NULL', 'Veronica', 'S', 'Martinez', '0', '1983-02-07', 'S', 'NULL', 'F', 'veronica19@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '492 Loveridge Circle', 'NULL', '114-555-0170', '2013-06-29', '1-2 Miles'], ['12417', '307', 'AW00012417', 'NULL', 'Alexis', 'A', 'Bryant', '0', '1977-11-21', 'S', 'NULL', 'F', 'alexis41@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4617 Sheppard Way', 'NULL', '535-555-0111', '2014-01-05', '0-1 Miles'], ['12418', '539', 'AW00012418', 'NULL', 'Robert', 'NULL', 'Hernandez', '0', '1959-04-23', 'S', 'NULL', 'M', 'robert60@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '1725 La Salle Ave.', 'NULL', '175-555-0178', '2011-12-21', '1-2 Miles'], ['12419', '611', 'AW00012419', 'NULL', 'Destiny', 'A', 'Bell', '0', '1958-12-03', 'M', 'NULL', 'F', 'destiny30@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8807 Soto St.', 'NULL', '419-555-0128', '2013-06-10', '5-10 Miles'], ['12420', '545', 'AW00012420', 'NULL', 'Spencer', 'V', 'Hayes', '0', '1959-02-17', 'M', 'NULL', 'M', 'spencer25@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8336 Newport Dr.', 'NULL', '204-555-0153', '2013-03-15', '2-5 Miles'], ['12421', '345', 'AW00012421', 'NULL', 'Cameron', 'A', 'Hughes', '0', '1964-03-08', 'M', 'NULL', 'M', 'cameron6@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6396 Market Place', 'NULL', '287-555-0142', '2013-03-12', '5-10 Miles'], ['12422', '627', 'AW00012422', 'NULL', 'Hailey', 'C', 'Evans', '0', '1959-04-22', 'M', 'NULL', 'F', 'hailey43@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3591 East 18th Street', 'NULL', '489-555-0124', '2013-10-13', '5-10 Miles'], ['12423', '631', 'AW00012423', 'NULL', 'Sarah', 'NULL', 'Thompson', '0', '1970-10-19', 'S', 'NULL', 'F', 'sarah17@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6277 Morengo Ct.', 'NULL', '412-555-0111', '2011-12-19', '1-2 Miles'], ['12424', '638', 'AW00012424', 'NULL', 'Rebecca', 'M', 'Mitchell', '0', '1965-09-20', 'M', 'NULL', 'F', 'rebecca13@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '9809 St. Germain Lane', 'NULL', '337-555-0114', '2013-08-25', '5-10 Miles'], ['12425', '644', 'AW00012425', 'NULL', 'Brandon', 'C', 'White', '0', '1959-09-02', 'M', 'NULL', 'M', 'brandon33@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9146 Columbia River Ct.', 'NULL', '716-555-0187', '2013-11-17', '5-10 Miles'], ['12426', '334', 'AW00012426', 'NULL', 'Cody', 'NULL', 'Cox', '0', '1960-03-22', 'M', 'NULL', 'M', 'cody11@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4693 Mills Dr.', 'NULL', '328-555-0119', '2013-11-05', '0-1 Miles'], ['12427', '359', 'AW00012427', 'NULL', 'Kimberly', 'C', 'Stewart', '0', '1959-08-08', 'M', 'NULL', 'F', 'kimberly24@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6289 Via Del Verdes', 'NULL', '732-555-0139', '2013-06-04', '0-1 Miles'], ['12428', '361', 'AW00012428', 'NULL', 'Sean', 'K', 'Morris', '0', '1960-08-06', 'M', 'NULL', 'M', 'sean26@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6603 Jennifer Way', 'NULL', '951-555-0193', '2013-10-26', '1-2 Miles'], ['12429', '311', 'AW00012429', 'NULL', 'Melvin', 'NULL', 'Black', '0', '1961-05-26', 'M', 'NULL', 'M', 'melvin19@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4176 Alexander Pl', 'NULL', '810-555-0164', '2013-03-05', '1-2 Miles'], ['12430', '66', 'AW00012430', 'NULL', 'Kaitlyn', 'L', 'Thompson', '0', '1960-09-28', 'M', 'NULL', 'F', 'kaitlyn38@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5675 Fairoaks Way', 'NULL', '445-555-0190', '2013-04-20', '1-2 Miles'], ['12431', '66', 'AW00012431', 'NULL', 'Wyatt', 'R', 'Thomas', '0', '1960-09-17', 'M', 'NULL', 'M', 'wyatt11@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8033 Chaucer Drive', 'NULL', '213-555-0147', '2013-03-21', '1-2 Miles'], ['12432', '325', 'AW00012432', 'NULL', 'Nathan', 'NULL', 'Clark', '0', '1961-01-21', 'M', 'NULL', 'M', 'nathan53@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '342 Summerfield Dr.', 'NULL', '809-555-0149', '2013-10-26', '1-2 Miles'], ['12433', '361', 'AW00012433', 'NULL', 'Antonio', 'E', 'Price', '0', '1966-07-16', 'M', 'NULL', 'M', 'antonio0@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4451 Carmel Dr.', 'NULL', '652-555-0177', '2013-03-30', '1-2 Miles'], ['12434', '642', 'AW00012434', 'NULL', 'Thomas', 'M', 'Kumar', '0', '1960-09-05', 'M', 'NULL', 'M', 'thomas31@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3344 Arguello Blvd.', 'NULL', '404-555-0141', '2013-11-20', '1-2 Miles'], ['12435', '297', 'AW00012435', 'NULL', 'Christy', 'NULL', 'Zhou', '0', '1961-04-08', 'M', 'NULL', 'F', 'christy8@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7527 Brook Way', 'NULL', '721-555-0117', '2011-12-04', '0-1 Miles'], ['12436', '612', 'AW00012436', 'NULL', 'Albert', 'A', 'Diaz', '0', '1960-12-15', 'M', 'NULL', 'M', 'albert5@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8574 Hidden Oak Ct.', 'NULL', '744-555-0110', '2013-06-16', '0-1 Miles'], ['12437', '548', 'AW00012437', 'NULL', 'Jeremy', 'NULL', 'Young', '0', '1971-12-09', 'M', 'NULL', 'M', 'jeremy8@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1459 Placer Dr.', 'NULL', '657-555-0116', '2011-12-13', '0-1 Miles'], ['12438', '310', 'AW00012438', 'NULL', 'Bailey', 'NULL', 'Rogers', '0', '1966-10-15', 'S', 'NULL', 'F', 'bailey17@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6120 Evergreen Ct.', '# 126', '161-555-0140', '2011-12-09', '1-2 Miles'], ['12439', '536', 'AW00012439', 'NULL', 'Megan', 'J', 'Bennett', '0', '1961-11-23', 'M', 'NULL', 'F', 'megan51@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2176 Apollo Way', 'NULL', '802-555-0150', '2013-03-25', '0-1 Miles'], ['12440', '301', 'AW00012440', 'NULL', 'Francisco', 'A', 'Chandra', '0', '1962-04-11', 'M', 'NULL', 'M', 'francisco3@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2084 Ahwanee Lane', 'NULL', '146-555-0144', '2011-11-29', '0-1 Miles'], ['12441', '299', 'AW00012441', 'NULL', 'Trevor', 'NULL', 'Simmons', '0', '1963-05-21', 'M', 'NULL', 'M', 'trevor15@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5221 Del Vista Court', 'NULL', '146-555-0139', '2011-12-03', '1-2 Miles'], ['12442', '301', 'AW00012442', 'NULL', 'Allison', 'NULL', 'Richardson', '0', '1963-02-01', 'M', 'NULL', 'F', 'allison8@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4344 Azoras Cir', 'NULL', '618-555-0124', '2011-11-30', '0-1 Miles'], ['12443', '301', 'AW00012443', 'NULL', 'Garrett', 'NULL', 'James', '0', '1962-11-19', 'M', 'NULL', 'M', 'garrett3@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6190 Terra Granada', 'NULL', '744-555-0130', '2014-01-18', '1-2 Miles'], ['12444', '53', 'AW00012444', 'NULL', 'Mackenzie', 'NULL', 'Phillips', '0', '1962-10-20', 'M', 'NULL', 'F', 'mackenzie28@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6685 Rosina Court', 'NULL', '372-555-0117', '2013-03-03', '1-2 Miles'], ['12445', '546', 'AW00012445', 'NULL', 'Cameron', 'T', 'Taylor', '0', '1962-09-24', 'M', 'NULL', 'M', 'cameron49@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5083 Bates Court', 'NULL', '694-555-0145', '2013-08-08', '1-2 Miles'], ['12446', '331', 'AW00012446', 'NULL', 'Jasmine', 'M', 'Hall', '0', '1963-01-31', 'M', 'NULL', 'F', 'jasmine21@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5366 Clayton Way', 'NULL', '147-555-0117', '2011-12-08', '1-2 Miles'], ['12447', '60', 'AW00012447', 'NULL', 'Carson', 'A', 'Hayes', '0', '1963-04-23', 'M', 'NULL', 'M', 'carson22@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6799 El Camino Dr.', 'NULL', '137-555-0160', '2013-05-03', '1-2 Miles'], ['12448', '543', 'AW00012448', 'NULL', 'Hailey', 'NULL', 'Cox', '0', '1974-11-13', 'S', 'NULL', 'F', 'hailey11@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8203 Courtland Drive', 'NULL', '391-555-0176', '2011-12-26', '0-1 Miles'], ['12449', '60', 'AW00012449', 'NULL', 'Dylan', 'J', 'Brown', '0', '1963-09-06', 'S', 'NULL', 'M', 'dylan39@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '549 Via Appia', 'NULL', '480-555-0194', '2013-06-10', '1-2 Miles'], ['12450', '329', 'AW00012450', 'NULL', 'Cody', 'K', 'Cook', '0', '1964-03-22', 'M', 'NULL', 'M', 'cody21@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7084 Catanzaro Way', 'NULL', '807-555-0125', '2011-12-24', '0-1 Miles'], ['12451', '68', 'AW00012451', 'NULL', 'Anna', 'K', 'Simmons', '0', '1964-02-07', 'S', 'NULL', 'F', 'anna40@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6793 Longview Road', 'NULL', '242-555-0193', '2013-06-20', '1-2 Miles'], ['12452', '641', 'AW00012452', 'NULL', 'Sean', 'NULL', 'Sanchez', '0', '1964-05-23', 'M', 'NULL', 'M', 'sean25@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2350 Mildred Ln.', 'NULL', '496-555-0128', '2011-12-21', '1-2 Miles'], ['12453', '552', 'AW00012453', 'NULL', 'Madison', 'NULL', 'Bennett', '0', '1963-11-07', 'S', 'NULL', 'F', 'madison36@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4742 Granada Dr.', 'NULL', '127-555-0115', '2013-05-20', '1-2 Miles'], ['12454', '611', 'AW00012454', 'NULL', 'Samuel', 'K', 'Griffin', '0', '1964-08-29', 'M', 'NULL', 'M', 'samuel20@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4074 Northwood Dr', 'NULL', '884-555-0114', '2013-04-08', '1-2 Miles'], ['12455', '339', 'AW00012455', 'NULL', 'Benjamin', 'NULL', 'Lewis', '0', '1964-10-07', 'M', 'NULL', 'M', 'benjamin58@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3420 Weber Bryan Pl.', 'NULL', '763-555-0144', '2013-11-17', '1-2 Miles'], ['12456', '612', 'AW00012456', 'NULL', 'Thomas', 'NULL', 'Chen', '0', '1965-02-12', 'M', 'NULL', 'M', 'thomas28@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2530 Spring Hill Road', 'NULL', '860-555-0179', '2014-01-16', '1-2 Miles'], ['12457', '536', 'AW00012457', 'NULL', 'Misty', 'H', 'Rai', '0', '1965-03-01', 'S', 'NULL', 'F', 'misty19@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1094 Loveridge Circle', 'NULL', '619-555-0134', '2013-04-04', '1-2 Miles'], ['12458', '155', 'AW00012458', 'NULL', 'Veronica', 'A', 'Sanchez', '0', '1973-11-24', 'M', 'NULL', 'F', 'veronica22@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Königsteiner Straße 550', 'NULL', '1 (11) 500 555-0159', '2013-09-04', '1-2 Miles'], ['12459', '260', 'AW00012459', 'NULL', 'Stefanie', 'L', 'Rodriguez', '0', '1974-03-13', 'S', 'NULL', 'F', 'stefanie17@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '1293 Silverwood Drive', 'NULL', '1 (11) 500 555-0182', '2012-07-02', '1-2 Miles'], ['12460', '257', 'AW00012460', 'NULL', 'Dominique', 'NULL', 'Malhotra', '0', '1974-05-23', 'S', 'NULL', 'F', 'dominique4@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '9838 Westchester Pl.', 'NULL', '1 (11) 500 555-0140', '2012-07-25', '1-2 Miles'], ['12461', '147', 'AW00012461', 'NULL', 'Ruth', 'A', 'Suri', '0', '1979-02-24', 'M', 'NULL', 'F', 'ruth6@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Westheimer Straße 9292', 'NULL', '1 (11) 500 555-0114', '2012-08-15', '0-1 Miles'], ['12462', '178', 'AW00012462', 'NULL', 'Levi', 'J', 'Suri', '0', '1973-12-09', 'M', 'NULL', 'M', 'levi0@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Zollhof 6866', 'NULL', '1 (11) 500 555-0180', '2012-09-07', '0-1 Miles'], ['12463', '236', 'AW00012463', 'NULL', 'Todd', 'NULL', 'Huang', '0', '1974-05-23', 'M', 'NULL', 'M', 'todd7@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4369 Carpetta Circle', 'NULL', '1 (11) 500 555-0114', '2012-07-06', '0-1 Miles'], ['12464', '220', 'AW00012464', 'NULL', 'Jared', 'NULL', 'Cook', '0', '1973-04-13', 'S', 'NULL', 'M', 'jared23@adventure-works.com', '10000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '646, place du Tertre', 'NULL', '1 (11) 500 555-0112', '2011-07-23', '0-1 Miles'], ['12465', '239', 'AW00012465', 'NULL', 'Cassandra', 'P', 'Patel', '0', '1978-02-19', 'M', 'NULL', 'F', 'cassandra3@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '8374 Vista Del Diablo', 'NULL', '1 (11) 500 555-0134', '2013-03-30', '2-5 Miles'], ['12466', '221', 'AW00012466', 'NULL', 'Willie', 'D', 'He', '0', '1972-10-23', 'M', 'NULL', 'M', 'willie17@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '11, rue du Puits Dixme', 'NULL', '1 (11) 500 555-0159', '2013-03-19', '2-5 Miles'], ['12467', '196', 'AW00012467', 'NULL', 'Jennifer', 'L', 'Jones', '0', '1983-10-01', 'S', 'NULL', 'F', 'jennifer31@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '2, place de la République', 'NULL', '1 (11) 500 555-0197', '2013-04-21', '0-1 Miles'], ['12468', '200', 'AW00012468', 'NULL', 'Wayne', 'NULL', 'Nath', '0', '1978-10-21', 'M', 'NULL', 'M', 'wayne21@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '95, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0142', '2011-07-12', '2-5 Miles'], ['12469', '160', 'AW00012469', 'NULL', 'Shane', 'D', 'Srini', '0', '1972-02-18', 'M', 'NULL', 'M', 'shane12@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Haberstr 5776', 'NULL', '1 (11) 500 555-0163', '2013-09-19', '2-5 Miles'], ['12470', '164', 'AW00012470', 'NULL', 'Barbara', 'R', 'He', '0', '1971-08-06', 'M', 'NULL', 'F', 'barbara27@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Lieblingsweg 4', 'NULL', '1 (11) 500 555-0110', '2013-11-23', '2-5 Miles'], ['12471', '155', 'AW00012471', 'NULL', 'Lacey', 'NULL', 'Zeng', '0', '1972-11-10', 'M', 'NULL', 'F', 'lacey35@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Rehstr 1346', 'NULL', '1 (11) 500 555-0167', '2013-03-16', '0-1 Miles'], ['12472', '215', 'AW00012472', 'NULL', 'Jeffery', 'C', 'Zhang', '0', '1977-09-05', 'M', 'NULL', 'M', 'jeffery0@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9, avenue Reille', 'NULL', '1 (11) 500 555-0124', '2013-08-09', '2-5 Miles'], ['12473', '277', 'AW00012473', 'NULL', 'Sergio', 'NULL', 'Sai', '0', '1972-05-14', 'M', 'NULL', 'M', 'sergio6@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9790 Deer Creek Lane', 'NULL', '1 (11) 500 555-0122', '2012-07-11', '0-1 Miles'], ['12474', '226', 'AW00012474', 'NULL', 'Tammy', 'NULL', 'Chandra', '0', '1977-12-18', 'M', 'NULL', 'F', 'tammy2@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2, place Beaubernard', 'NULL', '1 (11) 500 555-0148', '2011-07-22', '0-1 Miles'], ['12475', '161', 'AW00012475', 'NULL', 'Logan', 'A', 'Carter', '0', '1970-09-22', 'S', 'NULL', 'M', 'logan36@adventure-works.com', '10000.00', '4', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Buergermeister-ulrich-str 111', 'NULL', '1 (11) 500 555-0192', '2012-09-03', '0-1 Miles'], ['12476', '260', 'AW00012476', 'NULL', 'Rodney', 'R', 'Jimenez', '0', '1981-08-02', 'S', 'NULL', 'M', 'rodney1@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '4977 Candlestick Dr.', 'NULL', '1 (11) 500 555-0152', '2013-10-09', '0-1 Miles'], ['12477', '197', 'AW00012477', 'NULL', 'Robin', 'J', 'Gill', '0', '1971-06-22', 'M', 'NULL', 'F', 'robin10@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '28, rue de Fontfroide', 'NULL', '1 (11) 500 555-0166', '2013-12-09', '0-1 Miles'], ['12478', '155', 'AW00012478', 'NULL', 'Ruben', 'NULL', 'Mehta', '0', '1970-08-17', 'S', 'NULL', 'M', 'ruben15@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Welt Platz 4', 'NULL', '1 (11) 500 555-0183', '2013-12-30', '0-1 Miles'], ['12479', '131', 'AW00012479', 'NULL', 'Priscilla', 'J', 'Tang', '0', '1970-11-09', 'M', 'NULL', 'F', 'priscilla3@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', 'Im Himmelsweg 89', 'NULL', '1 (11) 500 555-0159', '2012-09-04', '0-1 Miles'], ['12480', '187', 'AW00012480', 'NULL', 'Meredith', 'NULL', 'Alvarez', '0', '1980-10-10', 'S', 'NULL', 'F', 'meredith27@adventure-works.com', '10000.00', '5', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '20, rue Saint-Lazare', 'NULL', '1 (11) 500 555-0172', '2011-07-10', '0-1 Miles'], ['12481', '152', 'AW00012481', 'NULL', 'Victor', 'L', 'Diaz', '0', '1970-03-07', 'S', 'NULL', 'M', 'victor4@adventure-works.com', '10000.00', '5', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Hüttenstr 95', 'NULL', '1 (11) 500 555-0121', '2013-03-08', '0-1 Miles'], ['12482', '225', 'AW00012482', 'NULL', 'Jerome', 'NULL', 'Browning', '0', '1969-09-03', 'S', 'NULL', 'M', 'jerome14@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '2, rue de Fontfroide', 'NULL', '1 (11) 500 555-0146', '2013-12-25', '0-1 Miles'], ['12483', '189', 'AW00012483', 'NULL', 'Amanda', 'NULL', 'Perez', '0', '1969-10-02', 'S', 'NULL', 'F', 'amanda55@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '194, boulevard Tremblay', 'NULL', '1 (11) 500 555-0112', '2011-07-04', '0-1 Miles'], ['12484', '147', 'AW00012484', 'NULL', 'Lori', 'NULL', 'Suarez', '0', '1975-03-31', 'S', 'NULL', 'F', 'lori19@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Zollstr 8', 'NULL', '1 (11) 500 555-0115', '2012-09-24', '0-1 Miles'], ['12485', '180', 'AW00012485', 'NULL', 'Veronica', 'J', 'Subram', '0', '1975-03-22', 'S', 'NULL', 'F', 'veronica14@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '6, rue Saint-Lazare', 'NULL', '1 (11) 500 555-0127', '2011-07-12', '0-1 Miles'], ['12486', '274', 'AW00012486', 'NULL', 'Kristen', 'D', 'Ye', '0', '1980-08-05', 'S', 'NULL', 'F', 'kristen8@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '579 Meager Dr.', '# 1', '1 (11) 500 555-0146', '2012-07-19', '0-1 Miles'], ['12487', '135', 'AW00012487', 'NULL', 'Willie', 'NULL', 'Zhu', '0', '1975-04-03', 'S', 'NULL', 'M', 'willie12@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Conesweg 621', 'NULL', '1 (11) 500 555-0128', '2012-09-14', '0-1 Miles'], ['12488', '208', 'AW00012488', 'NULL', 'Jay', 'NULL', 'Garcia', '0', '1968-11-08', 'S', 'NULL', 'M', 'jay21@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '95, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0166', '2013-09-20', '0-1 Miles'], ['12489', '211', 'AW00012489', 'NULL', 'Wayne', 'T', 'Rai', '0', '1977-10-21', 'M', 'NULL', 'M', 'wayne20@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '17, rue de Maubeuge', 'NULL', '1 (11) 500 555-0190', '2013-03-20', '0-1 Miles'], ['12490', '201', 'AW00012490', 'NULL', 'Trisha', 'C', 'He', '0', '1972-01-25', 'M', 'NULL', 'F', 'trisha13@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '98bis, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0131', '2013-03-18', '0-1 Miles'], ['12491', '262', 'AW00012491', 'NULL', 'Alvin', 'NULL', 'Huang', '0', '1971-08-06', 'M', 'NULL', 'M', 'alvin7@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '3960 Temple Drive', '#304', '1 (11) 500 555-0192', '2013-08-02', '0-1 Miles'], ['12492', '269', 'AW00012492', 'NULL', 'Brittany', 'NULL', 'Price', '0', '1972-03-03', 'S', 'NULL', 'F', 'brittany0@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '3845 Mt. Dell Drive', 'NULL', '1 (11) 500 555-0110', '2012-07-13', '0-1 Miles'], ['12493', '121', 'AW00012493', 'NULL', 'Dwayne', 'C', 'Vazquez', '0', '1970-12-21', 'M', 'NULL', 'M', 'dwayne14@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', 'Zollhof 4822', 'NULL', '1 (11) 500 555-0169', '2013-05-15', '0-1 Miles'], ['12494', '209', 'AW00012494', 'NULL', 'Abby', 'NULL', 'Sandberg', '0', '1975-08-15', 'M', 'NULL', 'F', 'abby7@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '208, chaussée de Tournai', 'NULL', '1 (11) 500 555-0148', '2011-07-01', '0-1 Miles'], ['12495', '131', 'AW00012495', 'NULL', 'Lucas', 'L', 'Miller', '0', '1969-09-12', 'S', 'NULL', 'M', 'lucas19@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Postenweg 3138', 'NULL', '1 (11) 500 555-0131', '2012-09-18', '0-1 Miles'], ['12496', '238', 'AW00012496', 'NULL', 'Melanie', 'C', 'Cox', '0', '1980-07-18', 'M', 'NULL', 'F', 'melanie36@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7547 Delta Fair Blvd.', 'NULL', '1 (11) 500 555-0110', '2013-08-20', '0-1 Miles'], ['12497', '174', 'AW00012497', 'NULL', 'Ashlee', 'M', 'Kumar', '0', '1969-03-21', 'M', 'NULL', 'F', 'ashlee14@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Pflugstr 2464', 'NULL', '1 (11) 500 555-0192', '2013-07-01', '0-1 Miles'], ['12498', '147', 'AW00012498', 'NULL', 'Eduardo', 'L', 'Diaz', '0', '1979-10-14', 'M', 'NULL', 'M', 'eduardo65@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Werftstr 54', 'NULL', '1 (11) 500 555-0140', '2013-06-29', '0-1 Miles'], ['12499', '150', 'AW00012499', 'NULL', 'Heather', 'R', 'Wang', '0', '1984-02-01', 'S', 'NULL', 'F', 'heather1@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Knaackstr 756', 'NULL', '1 (11) 500 555-0116', '2012-09-13', '2-5 Miles'], ['12500', '172', 'AW00012500', 'NULL', 'Kathleen', 'M', 'Vazquez', '0', '1984-08-12', 'S', 'NULL', 'F', 'kathleen16@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Alderweg 7247', 'NULL', '1 (11) 500 555-0157', '2012-09-01', '0-1 Miles'], ['12501', '161', 'AW00012501', 'NULL', 'Cory', 'E', 'Sai', '0', '1985-03-12', 'S', 'NULL', 'M', 'cory4@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Am Gallberg 65', 'NULL', '1 (11) 500 555-0131', '2012-09-28', '0-1 Miles'], ['12502', '264', 'AW00012502', 'NULL', 'Darren', 'NULL', 'Sanchez', '0', '1985-05-17', 'S', 'NULL', 'M', 'darren21@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7444 Margo Drive', 'NULL', '1 (11) 500 555-0193', '2013-02-03', '0-1 Miles'], ['12503', '279', 'AW00012503', 'NULL', 'Casey', 'D', 'Shen', '0', '1985-02-16', 'S', 'NULL', 'F', 'casey2@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7709 Redhead Way', 'NULL', '1 (11) 500 555-0148', '2013-02-15', '0-1 Miles'], ['12504', '239', 'AW00012504', 'NULL', 'Arthur', 'A', 'Gutierrez', '0', '1968-08-19', 'M', 'NULL', 'M', 'arthur35@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3859 Argyll Ave', 'NULL', '1 (11) 500 555-0113', '2013-04-25', '0-1 Miles'], ['12505', '269', 'AW00012505', 'NULL', 'Dalton', 'J', 'Martin', '0', '1968-08-02', 'M', 'NULL', 'M', 'dalton13@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7158 Waterview Place', 'NULL', '1 (11) 500 555-0172', '2013-03-01', '0-1 Miles'], ['12506', '274', 'AW00012506', 'NULL', 'Preston', 'J', 'Sanchez', '0', '1968-12-29', 'M', 'NULL', 'M', 'preston18@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2823 Pheasant Court', 'NULL', '1 (11) 500 555-0179', '2013-02-11', '0-1 Miles'], ['12507', '161', 'AW00012507', 'NULL', 'Ian', 'NULL', 'Bell', '0', '1973-09-22', 'M', 'NULL', 'M', 'ian81@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Karl Liebknecht str 466', 'NULL', '1 (11) 500 555-0118', '2013-04-11', '0-1 Miles'], ['12508', '234', 'AW00012508', 'NULL', 'Nichole', 'NULL', 'Anand', '0', '1968-01-29', 'M', 'NULL', 'F', 'nichole22@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2988 Buckingham Dr.', 'NULL', '1 (11) 500 555-0143', '2013-05-31', '0-1 Miles'], ['12509', '221', 'AW00012509', 'NULL', 'Marc', 'NULL', 'Ferrier', '0', '1967-08-19', 'M', 'NULL', 'M', 'marc12@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '11, rue Saint Denis', 'NULL', '1 (11) 500 555-0118', '2013-02-21', '0-1 Miles'], ['12510', '205', 'AW00012510', 'NULL', 'Roberto', 'NULL', 'Sanz', '0', '1968-05-19', 'M', 'NULL', 'M', 'roberto18@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1, rue de Courtaboeuf', 'NULL', '1 (11) 500 555-0177', '2011-08-27', '0-1 Miles'], ['12511', '197', 'AW00012511', 'NULL', 'Grant', 'NULL', 'Chander', '0', '1983-09-14', 'S', 'NULL', 'M', 'grant17@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '35, avenue des Laurentides', 'NULL', '1 (11) 500 555-0117', '2013-06-28', '0-1 Miles'], ['12512', '164', 'AW00012512', 'NULL', 'Carolyn', 'A', 'Gomez', '0', '1983-11-19', 'M', 'NULL', 'F', 'carolyn23@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', 'Wasserstr 63', 'NULL', '1 (11) 500 555-0197', '2013-03-23', '0-1 Miles'], ['12513', '269', 'AW00012513', 'Mr.', 'Austin', 'NULL', 'Thompson', '0', '1983-09-17', 'S', 'NULL', 'M', 'austin31@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '3', '2754 Stanbridge Ct.', 'NULL', '1 (11) 500 555-0139', '2013-06-17', '0-1 Miles'], ['12514', '203', 'AW00012514', 'NULL', 'Lacey', 'C', 'Becker', '0', '1983-06-08', 'S', 'NULL', 'F', 'lacey9@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '61, rue Mazagran', 'NULL', '1 (11) 500 555-0181', '2013-02-14', '0-1 Miles'], ['12515', '189', 'AW00012515', 'NULL', 'Shelby', 'NULL', 'Bailey', '0', '1982-12-01', 'S', 'NULL', 'F', 'shelby16@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '111, rue des Pyrenees', 'NULL', '1 (11) 500 555-0195', '2013-07-24', '2-5 Miles'], ['12516', '145', 'AW00012516', 'NULL', 'Shawna', 'H', 'Chander', '0', '1982-11-24', 'S', 'NULL', 'F', 'shawna16@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Buergermeister-ulrich-str 888', 'NULL', '1 (11) 500 555-0182', '2013-12-16', '2-5 Miles'], ['12517', '133', 'AW00012517', 'NULL', 'Alexa', 'NULL', 'Watson', '0', '1983-02-22', 'S', 'NULL', 'F', 'alexa0@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Residenz Straße 98', 'NULL', '1 (11) 500 555-0191', '2013-10-19', '2-5 Miles'], ['12518', '161', 'AW00012518', 'NULL', 'Jacquelyn', 'NULL', 'Dominguez', '0', '1983-03-27', 'S', 'NULL', 'F', 'jacquelyn13@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Werftstr 544', 'NULL', '1 (11) 500 555-0134', '2013-08-01', '2-5 Miles'], ['12519', '265', 'AW00012519', 'NULL', 'Casey', 'NULL', 'Gutierrez', '0', '1983-06-16', 'S', 'NULL', 'M', 'casey34@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '2035 Emmons Canyon Lane', 'NULL', '1 (11) 500 555-0115', '2013-05-11', '0-1 Miles'], ['12520', '208', 'AW00012520', 'NULL', 'Seth', 'R', 'Jackson', '0', '1982-05-25', 'S', 'NULL', 'M', 'seth12@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '9, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0165', '2011-08-02', '2-5 Miles'], ['12521', '172', 'AW00012521', 'NULL', 'Meredith', 'NULL', 'Dominguez', '0', '1980-07-11', 'S', 'NULL', 'F', 'meredith36@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Kurfürstenstr 74', 'NULL', '1 (11) 500 555-0190', '2012-10-05', '0-1 Miles'], ['12522', '222', 'AW00012522', 'NULL', 'Brandy', 'NULL', 'Sanchez', '0', '1982-03-07', 'S', 'NULL', 'F', 'brandy16@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '882, place du Tertre', 'NULL', '1 (11) 500 555-0197', '2011-08-24', '1-2 Miles'], ['12523', '200', 'AW00012523', 'NULL', 'Steve', 'C', 'Wagner', '0', '1982-06-02', 'S', 'NULL', 'M', 'steve5@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '8188, chaussée de Tournai', 'NULL', '1 (11) 500 555-0164', '2011-08-28', '2-5 Miles'], ['12524', '211', 'AW00012524', 'NULL', 'Kate', 'NULL', 'Shan', '0', '1980-07-23', 'S', 'NULL', 'F', 'kate8@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '312, rue Villedo', 'NULL', '1 (11) 500 555-0191', '2013-06-13', '2-5 Miles'], ['12525', '237', 'AW00012525', 'NULL', 'Chelsea', 'NULL', 'Rodriguez', '0', '1980-10-25', 'M', 'NULL', 'F', 'chelsea21@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5444 Bohon Circle', 'NULL', '1 (11) 500 555-0111', '2013-05-25', '1-2 Miles'], ['12526', '256', 'AW00012526', 'NULL', 'Michele', 'C', 'Suarez', '0', '1986-05-15', 'M', 'NULL', 'F', 'michele53@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5549 Bluejay Dr.', 'NULL', '1 (11) 500 555-0147', '2012-07-10', '0-1 Miles'], ['12527', '301', 'AW00012527', 'NULL', 'José', 'NULL', 'Rodriguez', '0', '1965-05-23', 'M', 'NULL', 'M', 'josé81@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1686 Willow Drive', 'NULL', '821-555-0115', '2013-12-17', '0-1 Miles'], ['12528', '641', 'AW00012528', 'NULL', 'Devin', 'L', 'Wilson', '0', '1964-08-29', 'S', 'NULL', 'M', 'devin5@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5958 Meadow Glen Way', 'NULL', '216-555-0140', '2013-08-28', '1-2 Miles'], ['12529', '299', 'AW00012529', 'NULL', 'Isaiah', 'A', 'Allen', '0', '1965-04-09', 'M', 'NULL', 'M', 'isaiah41@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3476 Sunset Meadows', 'NULL', '457-555-0183', '2014-01-19', '1-2 Miles'], ['12530', '64', 'AW00012530', 'NULL', 'Isabel', 'S', 'Coleman', '0', '1977-11-23', 'S', 'NULL', 'F', 'isabel6@adventure-works.com', '40000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6398 Haviland Place', 'NULL', '909-555-0115', '2013-02-15', '0-1 Miles'], ['12531', '536', 'AW00012531', 'NULL', 'Autumn', 'I', 'Xu', '0', '1977-12-31', 'S', 'NULL', 'F', 'autumn11@adventure-works.com', '40000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2219 Dewing Avenue', 'NULL', '941-555-0190', '2013-03-18', '0-1 Miles'], ['12532', '53', 'AW00012532', 'NULL', 'Jose', 'H', 'Carter', '0', '1978-09-06', 'M', 'NULL', 'M', 'jose46@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4420 Tuolumne St.', 'NULL', '508-555-0175', '2013-09-26', '0-1 Miles'], ['12533', '644', 'AW00012533', 'NULL', 'Luis', 'T', 'Washington', '0', '1946-05-07', 'M', 'NULL', 'M', 'luis12@adventure-works.com', '170000.00', '1', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '5351 Maryland Drive', 'NULL', '150-555-0115', '2013-02-01', '0-1 Miles'], ['12534', '179', 'AW00012534', 'NULL', 'Katie', 'NULL', 'Shan', '0', '1967-12-13', 'M', 'NULL', 'F', 'katie13@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '11, quai de l´ Iton', 'NULL', '1 (11) 500 555-0136', '2013-09-08', '0-1 Miles'], ['12535', '161', 'AW00012535', 'NULL', 'Clifford', 'A', 'Kapoor', '0', '1973-02-14', 'S', 'NULL', 'M', 'clifford1@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Postenweg 4642', 'NULL', '1 (11) 500 555-0148', '2013-09-18', '0-1 Miles'], ['12536', '161', 'AW00012536', 'NULL', 'Javier', 'NULL', 'Dominguez', '0', '1966-12-15', 'M', 'NULL', 'M', 'javier7@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Buergermeister-ulrich-str 6', 'NULL', '1 (11) 500 555-0118', '2013-11-21', '0-1 Miles'], ['12537', '200', 'AW00012537', 'NULL', 'Terrence', 'NULL', 'Luo', '0', '1972-03-14', 'M', 'NULL', 'M', 'terrence6@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '851, rue Henri Gagnon', 'NULL', '1 (11) 500 555-0171', '2013-06-24', '0-1 Miles'], ['12538', '164', 'AW00012538', 'NULL', 'Paula', 'NULL', 'Blanco', '0', '1967-02-18', 'M', 'NULL', 'F', 'paula18@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Marketplatz 7935', 'NULL', '1 (11) 500 555-0180', '2013-05-27', '0-1 Miles'], ['12539', '225', 'AW00012539', 'NULL', 'Marc', 'J', 'Dominguez', '0', '1940-11-22', 'S', 'NULL', 'M', 'marc16@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1994, rue des Pyrenees', 'NULL', '1 (11) 500 555-0137', '2013-11-30', '0-1 Miles'], ['12540', '265', 'AW00012540', 'NULL', 'Levi', 'S', 'Sara', '0', '1942-03-06', 'M', 'NULL', 'M', 'levi9@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9527 Onley Dr.', 'NULL', '1 (11) 500 555-0166', '2013-03-02', '0-1 Miles'], ['12541', '221', 'AW00012541', 'NULL', 'Jonathan', 'W', 'Zhang', '0', '1968-04-02', 'M', 'NULL', 'M', 'jonathan23@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '47, impasse Ste-Madeleine', 'NULL', '1 (11) 500 555-0164', '2013-06-15', '0-1 Miles'], ['12542', '204', 'AW00012542', 'NULL', 'Preston', 'C', 'Patel', '0', '1967-12-25', 'M', 'NULL', 'M', 'preston3@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '835, avenue des Laurentides', 'NULL', '1 (11) 500 555-0186', '2014-01-11', '0-1 Miles'], ['12543', '213', 'AW00012543', 'NULL', 'Ruben', 'NULL', 'Alvarez', '0', '1963-07-20', 'M', 'NULL', 'M', 'ruben28@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '8, rue de la Comédie', 'NULL', '1 (11) 500 555-0112', '2013-05-04', '0-1 Miles'], ['12544', '168', 'AW00012544', 'NULL', 'Bruce', 'E', 'Jordan', '0', '1963-09-24', 'M', 'NULL', 'M', 'bruce1@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Heiderplatz 948', 'NULL', '1 (11) 500 555-0131', '2013-12-21', '0-1 Miles'], ['12545', '229', 'AW00012545', 'NULL', 'Marc', 'D', 'Ruiz', '0', '1968-02-29', 'M', 'NULL', 'M', 'marc5@adventure-works.com', '10000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '9963 Pacific', 'NULL', '1 (11) 500 555-0142', '2013-07-27', '0-1 Miles'], ['12546', '149', 'AW00012546', 'NULL', 'Clarence', 'NULL', 'Andersen', '0', '1962-05-16', 'S', 'NULL', 'M', 'clarence28@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Knaackstr 442', 'NULL', '1 (11) 500 555-0184', '2012-10-06', '0-1 Miles'], ['12547', '211', 'AW00012547', 'NULL', 'Bradley', 'NULL', 'Nara', '0', '1978-10-21', 'M', 'NULL', 'M', 'bradley19@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2, avenue des Champs-Elysées', 'NULL', '1 (11) 500 555-0174', '2011-08-14', '0-1 Miles'], ['12548', '155', 'AW00012548', 'NULL', 'Alexandra', 'NULL', 'Collins', '0', '1960-08-06', 'S', 'NULL', 'F', 'alexandra46@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Pflugstr 85', 'NULL', '1 (11) 500 555-0132', '2012-10-16', '0-1 Miles'], ['12549', '193', 'AW00012549', 'NULL', 'Donna', 'NULL', 'Xie', '0', '1960-08-06', 'S', 'NULL', 'F', 'donna3@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '3398, avenue de l´Europe', 'NULL', '1 (11) 500 555-0118', '2011-08-18', '0-1 Miles'], ['12550', '262', 'AW00012550', 'NULL', 'Austin', 'M', 'Diaz', '0', '1960-04-01', 'M', 'NULL', 'M', 'austin18@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '416 Tupelo Drive', 'NULL', '1 (11) 500 555-0162', '2013-06-13', '0-1 Miles'], ['12551', '250', 'AW00012551', 'NULL', 'Julio', 'NULL', 'Ramos', '0', '1948-11-29', 'M', 'NULL', 'M', 'julio18@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7053 Laurel Dr.', 'NULL', '1 (11) 500 555-0169', '2013-08-09', '0-1 Miles'], ['12552', '182', 'AW00012552', 'NULL', 'Bruce', 'NULL', 'Torres', '0', '1944-03-11', 'M', 'NULL', 'M', 'bruce33@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1, rue Ste-Honoré', 'NULL', '1 (11) 500 555-0128', '2013-10-13', '0-1 Miles'], ['12553', '219', 'AW00012553', 'NULL', 'Toni', 'C', 'Fernandez', '0', '1944-03-22', 'M', 'NULL', 'F', 'toni16@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8, rue des Ecoles', 'NULL', '1 (11) 500 555-0189', '2013-05-11', '0-1 Miles'], ['12554', '235', 'AW00012554', 'NULL', 'Barry', 'O', 'Rodriguez', '0', '1943-08-30', 'M', 'NULL', 'M', 'barry19@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2624 Pome Court', 'NULL', '1 (11) 500 555-0194', '2013-07-27', '0-1 Miles'], ['12555', '189', 'AW00012555', 'NULL', 'Edgar', 'K', 'Malhotra', '0', '1944-08-01', 'M', 'NULL', 'M', 'edgar5@adventure-works.com', '10000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2, rue de Cambrai', 'NULL', '1 (11) 500 555-0191', '2013-09-03', '2-5 Miles'], ['12556', '162', 'AW00012556', 'NULL', 'Manuel', 'R', 'Kapoor', '0', '1945-02-08', 'M', 'NULL', 'M', 'manuel1@adventure-works.com', '10000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Residenz Straße 244', 'NULL', '1 (11) 500 555-0158', '2013-11-27', '2-5 Miles'], ['12557', '214', 'AW00012557', 'NULL', 'Phillip', 'A', 'Lopez', '0', '1945-12-22', 'M', 'NULL', 'M', 'phillip18@adventure-works.com', '10000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', '100, rue Descartes', 'NULL', '1 (11) 500 555-0155', '2013-05-07', '2-5 Miles'], ['12558', '155', 'AW00012558', 'NULL', 'Amanda', 'NULL', 'Evans', '0', '1946-03-07', 'M', 'NULL', 'F', 'amanda44@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Parise Straße 1551', 'NULL', '1 (11) 500 555-0115', '2013-09-02', '0-1 Miles'], ['12559', '252', 'AW00012559', 'NULL', 'Emmanuel', 'R', 'Lopez', '0', '1946-05-01', 'M', 'NULL', 'M', 'emmanuel15@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1019 Mt. Davidson Court', 'NULL', '1 (11) 500 555-0167', '2012-07-23', '0-1 Miles'], ['12560', '256', 'AW00012560', 'NULL', 'Mandy', 'M', 'Gao', '0', '1945-06-30', 'M', 'NULL', 'F', 'mandy16@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7398 Winter Lane', 'NULL', '1 (11) 500 555-0167', '2012-07-15', '0-1 Miles'], ['12561', '220', 'AW00012561', 'NULL', 'Trisha', 'NULL', 'Lin', '0', '1947-01-16', 'S', 'NULL', 'F', 'trisha2@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '91, rue de Maubeuge', 'NULL', '1 (11) 500 555-0112', '2011-09-25', '0-1 Miles'], ['12562', '204', 'AW00012562', 'NULL', 'Kristina', 'NULL', 'Chandra', '0', '1947-06-10', 'M', 'NULL', 'F', 'kristina2@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '22, rue de Longchamp', 'NULL', '1 (11) 500 555-0114', '2013-03-14', '2-5 Miles'], ['12563', '236', 'AW00012563', 'NULL', 'Alejandro', 'L', 'Lin', '0', '1946-10-09', 'M', 'NULL', 'M', 'alejandro10@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9420 Blizzard Ave.', 'NULL', '1 (11) 500 555-0155', '2013-07-01', '0-1 Miles'], ['12564', '247', 'AW00012564', 'NULL', 'Marshall', 'E', 'Yang', '0', '1946-09-06', 'M', 'NULL', 'M', 'marshall4@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4827 Seawind Dr.', 'NULL', '1 (11) 500 555-0157', '2013-03-07', '0-1 Miles'], ['12565', '198', 'AW00012565', 'NULL', 'Kendra', 'S', 'Gutierrez', '0', '1947-12-31', 'M', 'NULL', 'F', 'kendra11@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '2, place Beaubernard', 'NULL', '1 (11) 500 555-0158', '2013-10-05', '0-1 Miles'], ['12566', '254', 'AW00012566', 'NULL', 'Omar', 'NULL', 'Yang', '0', '1947-10-31', 'M', 'NULL', 'M', 'omar5@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4970 B Way', 'NULL', '1 (11) 500 555-0115', '2013-05-31', '0-1 Miles'], ['12567', '261', 'AW00012567', 'NULL', 'Carmen', 'M', 'Arthur', '0', '1953-02-14', 'M', 'NULL', 'F', 'carmen9@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3748 Moss Hollow Court', 'NULL', '1 (11) 500 555-0147', '2013-02-11', '0-1 Miles'], ['12568', '269', 'AW00012568', 'NULL', 'Stacey', 'NULL', 'Ye', '0', '1947-12-14', 'M', 'NULL', 'F', 'stacey10@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9015 Denkinger Court', 'NULL', '1 (11) 500 555-0179', '2013-02-13', '0-1 Miles'], ['12569', '272', 'AW00012569', 'NULL', 'Kristin', 'C', 'Rai', '0', '1947-09-16', 'M', 'NULL', 'F', 'kristin16@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4289 Wellington Avenue', 'NULL', '1 (11) 500 555-0135', '2013-07-21', '0-1 Miles'], ['12570', '20', 'AW00012570', 'NULL', 'Casey', 'W', 'Munoz', '0', '1985-11-13', 'S', 'NULL', 'M', 'casey31@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '9324 Youngsdale Drive', 'NULL', '1 (11) 500 555-0167', '2012-01-02', '0-1 Miles'], ['12571', '2', 'AW00012571', 'NULL', 'Jennifer', 'NULL', 'Green', '0', '1985-11-16', 'M', 'NULL', 'F', 'jennifer17@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '4070 Lacorso Drive', 'NULL', '1 (11) 500 555-0139', '2011-12-29', '0-1 Miles'], ['12572', '29', 'AW00012572', 'NULL', 'Alisha', 'NULL', 'Chander', '0', '1985-11-24', 'S', 'NULL', 'F', 'alisha40@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '422 Quartermaster', 'NULL', '1 (11) 500 555-0176', '2012-01-22', '2-5 Miles'], ['12573', '6', 'AW00012573', 'NULL', 'Grant', 'R', 'Rai', '0', '1985-08-22', 'S', 'NULL', 'M', 'grant19@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '820 Dobrich Circle', 'NULL', '1 (11) 500 555-0177', '2012-01-08', '0-1 Miles'], ['12574', '15', 'AW00012574', 'NULL', 'Derek', 'NULL', 'Raje', '0', '1985-08-10', 'S', 'NULL', 'M', 'derek12@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '2742 Cincerto Circle', 'NULL', '1 (11) 500 555-0112', '2012-01-15', '0-1 Miles'], ['12575', '19', 'AW00012575', 'NULL', 'Jaclyn', 'A', 'Shen', '0', '1985-03-11', 'S', 'NULL', 'F', 'jaclyn25@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6131 Orangewood Court', 'NULL', '1 (11) 500 555-0134', '2012-01-15', '0-1 Miles'], ['12576', '35', 'AW00012576', 'NULL', 'Walter', 'NULL', 'Dominguez', '0', '1984-09-10', 'S', 'NULL', 'M', 'walter6@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '3578 Courthouse Drive', 'NULL', '1 (11) 500 555-0148', '2012-01-04', '2-5 Miles'], ['12577', '5', 'AW00012577', 'NULL', 'Francis', 'NULL', 'Sanz', '0', '1985-02-16', 'S', 'NULL', 'M', 'francis18@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '3492 Broadway Street', 'NULL', '1 (11) 500 555-0149', '2012-02-15', '2-5 Miles'], ['12578', '33', 'AW00012578', 'NULL', 'Gavin', 'M', 'Perry', '0', '1985-08-27', 'S', 'NULL', 'M', 'gavin7@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '5869 Sierra Ridge', 'NULL', '1 (11) 500 555-0195', '2012-02-14', '0-1 Miles'], ['12579', '16', 'AW00012579', 'NULL', 'Lydia', 'S', 'Sanchez', '0', '1984-03-09', 'S', 'NULL', 'F', 'lydia18@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '480 W. Holly Drive', 'NULL', '1 (11) 500 555-0177', '2012-02-15', '2-5 Miles'], ['12580', '38', 'AW00012580', 'NULL', 'Cedric', 'R', 'She', '0', '1984-03-07', 'S', 'NULL', 'M', 'cedric23@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '4634 St. Paul Way', 'NULL', '1 (11) 500 555-0174', '2012-02-14', '2-5 Miles'], ['12581', '36', 'AW00012581', 'NULL', 'Kristina', 'A', 'Fernandez', '0', '1983-09-08', 'S', 'NULL', 'F', 'kristina16@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '2595 Worth Ct.', 'NULL', '1 (11) 500 555-0178', '2012-02-27', '0-1 Miles'], ['12582', '16', 'AW00012582', 'NULL', 'Carmen', 'W', 'Sara', '0', '1982-09-22', 'S', 'NULL', 'F', 'carmen13@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '5030 Blue Ridge Dr.', 'NULL', '1 (11) 500 555-0113', '2013-07-31', '0-1 Miles'], ['12583', '10', 'AW00012583', 'NULL', 'Tyrone', 'H', 'Ortega', '0', '1982-02-04', 'S', 'NULL', 'M', 'tyrone21@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '332 West Slough Rd', 'NULL', '1 (11) 500 555-0190', '2012-02-28', '2-5 Miles'], ['12584', '27', 'AW00012584', 'NULL', 'Brittney', 'NULL', 'Ma', '0', '1982-01-01', 'S', 'NULL', 'F', 'brittney14@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '4844 Waterfall Way', 'NULL', '1 (11) 500 555-0177', '2012-02-10', '2-5 Miles'], ['12585', '31', 'AW00012585', 'NULL', 'Ian', 'NULL', 'Martinez', '0', '1984-12-21', 'M', 'NULL', 'M', 'ian15@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '6422 Vista Diablo', 'NULL', '1 (11) 500 555-0140', '2012-02-28', '2-5 Miles'], ['12586', '27', 'AW00012586', 'NULL', 'Kellie', 'A', 'Hernandez', '0', '1984-10-21', 'S', 'NULL', 'F', 'kellie4@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '8248 N. Ranchford Court', 'NULL', '1 (11) 500 555-0138', '2012-02-03', '1-2 Miles'], ['12587', '9', 'AW00012587', 'NULL', 'Danny', 'NULL', 'Travers', '0', '1984-02-17', 'S', 'NULL', 'M', 'danny13@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6908 Woodchuck Pl.', 'NULL', '1 (11) 500 555-0127', '2013-11-03', '0-1 Miles'], ['12588', '9', 'AW00012588', 'NULL', 'Tracy', 'J', 'Chande', '0', '1983-01-22', 'S', 'NULL', 'F', 'tracy14@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '9548 Jomar Drive', 'NULL', '1 (11) 500 555-0138', '2012-01-29', '1-2 Miles'], ['12589', '35', 'AW00012589', 'NULL', 'Ruben', 'NULL', 'Rodriguez', '0', '1982-11-14', 'M', 'NULL', 'M', 'ruben20@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '3923 Dew Drop Circle', 'NULL', '1 (11) 500 555-0188', '2012-02-19', '0-1 Miles'], ['12590', '261', 'AW00012590', 'NULL', 'Mario', 'NULL', 'Chander', '0', '1948-11-23', 'S', 'NULL', 'M', 'mario14@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1296 Banyan Way', 'NULL', '1 (11) 500 555-0112', '2013-10-13', '0-1 Miles'], ['12591', '126', 'AW00012591', 'NULL', 'Meredith', 'D', 'Madan', '0', '1972-04-17', 'M', 'NULL', 'F', 'meredith6@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Zollstr 68', 'NULL', '1 (11) 500 555-0146', '2013-08-05', '0-1 Miles'], ['12592', '232', 'AW00012592', 'Ms.', 'Amy', 'J', 'Li', '0', '1967-01-17', 'M', 'NULL', 'F', 'amy11@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2862 Pinehurst Court', 'NULL', '1 (11) 500 555-0151', '2013-06-27', '0-1 Miles'], ['12593', '234', 'AW00012593', 'NULL', 'Benjamin', 'F', 'Zhang', '0', '1966-10-31', 'S', 'NULL', 'M', 'benjamin25@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7980 Los Gatos Court', 'NULL', '1 (11) 500 555-0134', '2013-02-18', '0-1 Miles'], ['12594', '235', 'AW00012594', 'NULL', 'Sandra', 'NULL', 'Gao', '0', '1966-08-16', 'M', 'NULL', 'F', 'sandra22@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1121 Ferry Street', 'NULL', '1 (11) 500 555-0171', '2013-11-25', '0-1 Miles'], ['12595', '248', 'AW00012595', 'NULL', 'Mathew', 'B', 'Blanco', '0', '1966-12-17', 'S', 'NULL', 'M', 'mathew11@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3332 Walnut Blvd.', 'NULL', '1 (11) 500 555-0155', '2013-03-08', '0-1 Miles'], ['12596', '260', 'AW00012596', 'NULL', 'Armando', 'A', 'Romero', '0', '1966-07-14', 'M', 'NULL', 'M', 'armando9@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7390 Pinehurst Court', '#524', '1 (11) 500 555-0119', '2013-09-24', '0-1 Miles'], ['12597', '241', 'AW00012597', 'NULL', 'Franklin', 'L', 'Zhang', '0', '1965-11-30', 'M', 'NULL', 'M', 'franklin0@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '4192 East 39th Street', 'NULL', '1 (11) 500 555-0162', '2013-08-04', '2-5 Miles'], ['12598', '269', 'AW00012598', 'NULL', 'Alexandra', 'NULL', 'Bryant', '0', '1965-08-01', 'M', 'NULL', 'F', 'alexandra39@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7527 Eola', 'NULL', '1 (11) 500 555-0135', '2013-08-04', '0-1 Miles'], ['12599', '229', 'AW00012599', 'NULL', 'Jillian', 'K', 'Fernandez', '0', '1970-12-07', 'M', 'NULL', 'F', 'jillian16@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '9426 Georgia Street', 'NULL', '1 (11) 500 555-0165', '2012-08-17', '0-1 Miles'], ['12600', '115', 'AW00012600', 'NULL', 'Larry', 'S', 'Romero', '0', '1963-10-01', 'M', 'NULL', 'M', 'larry11@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Heiderplatz 918', 'NULL', '1 (11) 500 555-0148', '2013-09-08', '0-1 Miles'], ['12601', '265', 'AW00012601', 'NULL', 'Randy', 'NULL', 'Zhang', '0', '1971-08-10', 'M', 'NULL', 'M', 'randy2@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1098 Lawton Street', 'NULL', '1 (11) 500 555-0198', '2013-08-29', '0-1 Miles'], ['12602', '245', 'AW00012602', 'NULL', 'Francisco', 'H', 'Srini', '0', '1966-04-25', 'M', 'NULL', 'M', 'francisco9@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '792 Greendell Rd.', 'NULL', '1 (11) 500 555-0116', '2013-02-20', '0-1 Miles'], ['12603', '265', 'AW00012603', 'NULL', 'Cole', 'NULL', 'Reed', '0', '1971-02-15', 'S', 'NULL', 'M', 'cole21@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '117 Marvello Lane', 'NULL', '1 (11) 500 555-0177', '2013-04-06', '0-1 Miles'], ['12604', '127', 'AW00012604', 'NULL', 'Nathan', 'NULL', 'Lee', '0', '1976-09-11', 'M', 'NULL', 'M', 'nathan58@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Wallstr 834', 'NULL', '1 (11) 500 555-0179', '2013-05-30', '0-1 Miles'], ['12605', '175', 'AW00012605', 'NULL', 'Carol', 'D', 'Cooper', '0', '1977-01-30', 'M', 'NULL', 'F', 'carol26@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Alderweg 6246', 'NULL', '1 (11) 500 555-0146', '2013-05-12', '0-1 Miles'], ['12606', '189', 'AW00012606', 'NULL', 'Arthur', 'A', 'Van', '0', '1965-10-18', 'M', 'NULL', 'M', 'arthur6@adventure-works.com', '40000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '66, rue Georges-Clémenceau', 'NULL', '1 (11) 500 555-0192', '2013-09-03', '0-1 Miles'], ['12607', '213', 'AW00012607', 'NULL', 'Tamara', 'NULL', 'Zhu', '0', '1966-03-22', 'M', 'NULL', 'F', 'tamara3@adventure-works.com', '40000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '570, avenue de Malakoff', 'NULL', '1 (11) 500 555-0188', '2011-09-01', '0-1 Miles'], ['12608', '234', 'AW00012608', 'NULL', 'Brett', 'NULL', 'Sanchez', '0', '1970-11-05', 'M', 'NULL', 'M', 'brett20@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3260 Fountainhead Court', 'NULL', '1 (11) 500 555-0122', '2012-08-08', '0-1 Miles'], ['12609', '273', 'AW00012609', 'NULL', 'Linda', 'J', 'Carlson', '0', '1965-03-19', 'M', 'NULL', 'F', 'linda33@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6696 Adria Drive', 'NULL', '1 (11) 500 555-0140', '2012-08-08', '0-1 Miles'], ['12610', '278', 'AW00012610', 'NULL', 'Wendy', 'NULL', 'Gutierrez', '0', '1964-03-05', 'M', 'NULL', 'F', 'wendy10@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3443 Centennial Way', 'NULL', '1 (11) 500 555-0111', '2013-07-08', '0-1 Miles'], ['12611', '273', 'AW00012611', 'NULL', 'Manuel', 'NULL', 'Sara', '0', '1981-04-07', 'S', 'NULL', 'M', 'manuel9@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '878 Rancho View Drive', 'NULL', '1 (11) 500 555-0113', '2013-07-01', '2-5 Miles'], ['12612', '232', 'AW00012612', 'NULL', 'Shannon', 'NULL', 'Torres', '0', '1974-12-04', 'S', 'NULL', 'M', 'shannon33@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '7485 Las Palmas', 'NULL', '1 (11) 500 555-0180', '2012-08-15', '0-1 Miles'], ['12613', '223', 'AW00012613', 'NULL', 'Joel', 'C', 'Prasad', '0', '1981-08-30', 'M', 'NULL', 'M', 'joel8@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '15, rue de Cambrai', 'NULL', '1 (11) 500 555-0147', '2011-08-30', '0-1 Miles'], ['12614', '209', 'AW00012614', 'NULL', 'Lance', 'NULL', 'Gill', '0', '1975-12-12', 'S', 'NULL', 'M', 'lance13@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2, rue Georges-Clémenceau', 'NULL', '1 (11) 500 555-0175', '2011-09-20', '0-1 Miles'], ['12615', '243', 'AW00012615', 'NULL', 'Nathan', 'NULL', 'Hill', '0', '1985-08-16', 'S', 'NULL', 'M', 'nathan42@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '7282 Michele Drive', 'NULL', '1 (11) 500 555-0123', '2012-08-10', '0-1 Miles'], ['12616', '134', 'AW00012616', 'NULL', 'Kelsey', 'NULL', 'Tang', '0', '1980-10-08', 'S', 'NULL', 'F', 'kelsey3@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Heiderplatz 948', 'NULL', '1 (11) 500 555-0160', '2013-05-20', '0-1 Miles'], ['12617', '157', 'AW00012617', 'NULL', 'Jake', 'G', 'Ma', '0', '1975-04-04', 'M', 'NULL', 'M', 'jake14@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Hansaallee 6', 'NULL', '1 (11) 500 555-0136', '2013-07-18', '1-2 Miles'], ['12618', '205', 'AW00012618', 'NULL', 'Dawn', 'NULL', 'Lal', '0', '1974-12-21', 'M', 'NULL', 'F', 'dawn32@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '10571, rue de Varenne', 'NULL', '1 (11) 500 555-0195', '2011-09-03', '0-1 Miles'], ['12619', '262', 'AW00012619', 'NULL', 'Priscilla', 'C', 'Rai', '0', '1975-02-04', 'M', 'NULL', 'F', 'priscilla16@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7112 Thistle Court', 'NULL', '1 (11) 500 555-0132', '2012-08-04', '0-1 Miles'], ['12620', '190', 'AW00012620', 'NULL', 'Maurice', 'NULL', 'Lal', '0', '1974-10-15', 'M', 'NULL', 'M', 'maurice9@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9967, quai de Grenelle', 'NULL', '1 (11) 500 555-0152', '2011-09-20', '0-1 Miles'], ['12621', '198', 'AW00012621', 'NULL', 'Barry', 'D', 'Martinez', '0', '1980-12-08', 'M', 'NULL', 'M', 'barry18@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '295, avenue de la Gare', 'NULL', '1 (11) 500 555-0117', '2011-09-25', '0-1 Miles'], ['12622', '248', 'AW00012622', 'NULL', 'Micheal', 'K', 'Rubio', '0', '1974-10-08', 'M', 'NULL', 'M', 'micheal17@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '360 Vista Way', 'NULL', '1 (11) 500 555-0199', '2012-08-19', '0-1 Miles'], ['12623', '261', 'AW00012623', 'NULL', 'Jesse', 'M', 'Sanchez', '0', '1958-01-15', 'M', 'NULL', 'M', 'jesse18@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '2055 Fountain Road', 'NULL', '1 (11) 500 555-0127', '2012-08-24', '0-1 Miles'], ['12624', '145', 'AW00012624', 'NULL', 'Jamie', 'D', 'Xu', '0', '1958-04-01', 'M', 'NULL', 'F', 'jamie15@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Bundesallee 44', 'NULL', '1 (11) 500 555-0129', '2012-10-15', '2-5 Miles'], ['12625', '180', 'AW00012625', 'NULL', 'Carly', 'A', 'Andersen', '0', '1957-12-24', 'M', 'NULL', 'F', 'carly12@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '60bis, rue des Peupliers', 'NULL', '1 (11) 500 555-0136', '2013-09-04', '0-1 Miles'], ['12626', '244', 'AW00012626', 'NULL', 'Cassie', 'NULL', 'Lal', '0', '1956-10-30', 'M', 'NULL', 'F', 'cassie7@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '4535 Walnut Blvd.', 'NULL', '1 (11) 500 555-0148', '2013-11-08', '1-2 Miles'], ['12627', '255', 'AW00012627', 'NULL', 'Leah', 'R', 'Zheng', '0', '1978-12-31', 'S', 'NULL', 'F', 'leah15@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '1206 San Simeon Drive', 'NULL', '1 (11) 500 555-0162', '2013-04-21', '0-1 Miles'], ['12628', '180', 'AW00012628', 'NULL', 'Arturo', 'C', 'Ma', '0', '1979-11-01', 'M', 'NULL', 'M', 'arturo17@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '2408, rue Maillard', 'NULL', '1 (11) 500 555-0114', '2013-07-07', '2-5 Miles'], ['12629', '147', 'AW00012629', 'NULL', 'Russell', 'NULL', 'Nara', '0', '1979-12-23', 'S', 'NULL', 'M', 'russell19@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Hüttenstr 295', 'NULL', '1 (11) 500 555-0156', '2013-11-16', '0-1 Miles'], ['12630', '238', 'AW00012630', 'NULL', 'Kevin', 'NULL', 'Simmons', '0', '1960-03-21', 'M', 'NULL', 'M', 'kevin18@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '4060 Roundtree Court', 'NULL', '1 (11) 500 555-0139', '2012-08-09', '10+ Miles'], ['12631', '200', 'AW00012631', 'NULL', 'Clarence', 'H', 'Gao', '0', '1949-11-14', 'S', 'NULL', 'M', 'clarence8@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1, rue Pierre-Demoulin', 'NULL', '1 (11) 500 555-0113', '2011-10-25', '10+ Miles'], ['12632', '218', 'AW00012632', 'NULL', 'Bonnie', 'F', 'Nath', '0', '1961-02-11', 'M', 'NULL', 'F', 'bonnie24@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1, boulevard Beau Marchais', 'NULL', '1 (11) 500 555-0113', '2011-10-12', '2-5 Miles'], ['12633', '233', 'AW00012633', 'NULL', 'Shannon', 'R', 'Suarez', '0', '1950-08-09', 'M', 'NULL', 'M', 'shannon39@adventure-works.com', '110000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '4137 E St.', 'NULL', '1 (11) 500 555-0136', '2013-07-15', '5-10 Miles'], ['12634', '244', 'AW00012634', 'NULL', 'Derrick', 'C', 'Ruiz', '0', '1951-03-13', 'M', 'NULL', 'M', 'derrick2@adventure-works.com', '120000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '673 Old Mountain View Dr.', 'NULL', '1 (11) 500 555-0135', '2012-08-29', '5-10 Miles'], ['12635', '221', 'AW00012635', 'NULL', 'Brad', 'NULL', 'Beck', '0', '1957-09-21', 'S', 'NULL', 'M', 'brad21@adventure-works.com', '80000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '132, rue des Pyrenees', 'NULL', '1 (11) 500 555-0187', '2013-03-22', '2-5 Miles'], ['12636', '163', 'AW00012636', 'NULL', 'Tamer', 'A', 'Salah', '0', '1952-01-31', 'M', 'NULL', 'F', 'tamer0@adventure-works.com', '100000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', 'Heiderweg 8349', 'NULL', '1 (11) 500 555-0113', '2013-05-31', '10+ Miles'], ['12637', '257', 'AW00012637', 'NULL', 'Leonard', 'L', 'Nath', '0', '1951-08-30', 'M', 'NULL', 'M', 'leonard20@adventure-works.com', '130000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '487 Ash Lane', 'NULL', '1 (11) 500 555-0146', '2012-09-08', '5-10 Miles'], ['12638', '131', 'AW00012638', 'NULL', 'Sebastian', 'NULL', 'Brooks', '0', '1964-12-30', 'M', 'NULL', 'M', 'sebastian2@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', 'Altendorfer Straße 299', 'NULL', '1 (11) 500 555-0154', '2013-10-04', '10+ Miles'], ['12639', '188', 'AW00012639', 'NULL', 'Ruben', 'NULL', 'Lopez', '0', '1959-01-09', 'S', 'NULL', 'M', 'ruben18@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1, cours Mirabeau', 'NULL', '1 (11) 500 555-0128', '2013-02-18', '10+ Miles'], ['12640', '231', 'AW00012640', 'NULL', 'Angel', 'NULL', 'Richardson', '0', '1964-11-18', 'M', 'NULL', 'M', 'angel9@adventure-works.com', '90000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7354 Diablo View Road', 'NULL', '1 (11) 500 555-0152', '2012-09-15', '10+ Miles'], ['12641', '203', 'AW00012641', 'NULL', 'Willie', 'C', 'Raje', '0', '1959-09-02', 'M', 'NULL', 'M', 'willie33@adventure-works.com', '100000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '5, rue de Courtaboeuf', 'NULL', '1 (11) 500 555-0172', '2013-12-02', '10+ Miles'], ['12642', '189', 'AW00012642', 'NULL', 'Jimmy', 'NULL', 'Carlson', '0', '1965-04-09', 'M', 'NULL', 'M', 'jimmy22@adventure-works.com', '100000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '13, boulevard d´Albi', 'NULL', '1 (11) 500 555-0175', '2013-05-15', '2-5 Miles'], ['12643', '176', 'AW00012643', 'NULL', 'Kristina', 'A', 'Perez', '0', '1959-01-21', 'M', 'NULL', 'F', 'kristina20@adventure-works.com', '120000.00', '3', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', 'Marienplatz 46', 'NULL', '1 (11) 500 555-0176', '2013-02-08', '10+ Miles'], ['12644', '237', 'AW00012644', 'NULL', 'Rachel', 'E', 'Reed', '0', '1958-12-01', 'M', 'NULL', 'F', 'rachel31@adventure-works.com', '130000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8335 Elm Rd.', 'NULL', '1 (11) 500 555-0150', '2012-09-01', '10+ Miles'], ['12645', '277', 'AW00012645', 'NULL', 'Audrey', 'NULL', 'Ruiz', '0', '1964-05-03', 'M', 'NULL', 'F', 'audrey3@adventure-works.com', '170000.00', '0', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '4559 July Loop', 'NULL', '1 (11) 500 555-0199', '2012-09-15', '10+ Miles'], ['12646', '143', 'AW00012646', 'NULL', 'Kenneth', 'NULL', 'Xu', '0', '1958-01-08', 'S', 'NULL', 'M', 'kenneth5@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Conesweg 180', 'NULL', '1 (11) 500 555-0178', '2013-02-21', '10+ Miles'], ['12647', '268', 'AW00012647', 'NULL', 'Colleen', 'N', 'Anand', '0', '1963-09-23', 'M', 'NULL', 'F', 'colleen45@adventure-works.com', '170000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '7814 Milburn Dr.', 'NULL', '1 (11) 500 555-0160', '2012-08-28', '10+ Miles'], ['12648', '271', 'AW00012648', 'NULL', 'Lori', 'NULL', 'Dominguez', '0', '1957-09-07', 'M', 'NULL', 'F', 'lori14@adventure-works.com', '170000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '2466 Clearland Circle', 'NULL', '1 (11) 500 555-0163', '2012-09-23', '10+ Miles'], ['12649', '203', 'AW00012649', 'NULL', 'Omar', 'M', 'Goel', '0', '1957-06-08', 'M', 'NULL', 'M', 'omar40@adventure-works.com', '80000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '1, avenue des Champs-Elysées', 'NULL', '1 (11) 500 555-0134', '2013-09-29', '10+ Miles'], ['12650', '220', 'AW00012650', 'NULL', 'Aaron', 'L', 'Wright', '0', '1955-09-03', 'M', 'NULL', 'M', 'aaron52@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '7024, rue Surcouf', 'NULL', '1 (11) 500 555-0180', '2011-10-06', '5-10 Miles'], ['12651', '187', 'AW00012651', 'NULL', 'Martin', 'NULL', 'Malhotra', '0', '1955-12-14', 'S', 'NULL', 'M', 'martin10@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '4252, rue Saint-Lazare', 'NULL', '1 (11) 500 555-0117', '2013-10-05', '10+ Miles'], ['12652', '251', 'AW00012652', 'NULL', 'Carolyn', 'M', 'Martin', '0', '1956-02-06', 'M', 'NULL', 'F', 'carolyn22@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '5818 San Rafael', 'NULL', '1 (11) 500 555-0117', '2013-09-01', '10+ Miles'], ['12653', '253', 'AW00012653', 'NULL', 'Nichole', 'NULL', 'Andersen', '0', '1955-07-25', 'M', 'NULL', 'F', 'nichole13@adventure-works.com', '150000.00', '4', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '811 Mcneil Place', 'NULL', '1 (11) 500 555-0141', '2012-09-12', '0-1 Miles'], ['12654', '268', 'AW00012654', 'NULL', 'Briana', 'D', 'Gill', '0', '1956-05-26', 'M', 'NULL', 'F', 'briana13@adventure-works.com', '160000.00', '2', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '3', '3220 Liscome Way', 'NULL', '1 (11) 500 555-0170', '2013-02-23', '10+ Miles'], ['12655', '215', 'AW00012655', 'NULL', 'Larry', 'M', 'Vazquez', '0', '1954-08-20', 'M', 'NULL', 'M', 'larry17@adventure-works.com', '80000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '954, rue de Bas Marin', 'NULL', '1 (11) 500 555-0140', '2011-10-10', '5-10 Miles'], ['12656', '209', 'AW00012656', 'NULL', 'Blake', 'NULL', 'Roberts', '0', '1960-09-01', 'M', 'NULL', 'M', 'blake40@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '188, rue de Cambrai', 'NULL', '1 (11) 500 555-0115', '2013-05-17', '10+ Miles'], ['12657', '119', 'AW00012657', 'NULL', 'Audrey', 'NULL', 'Blanco', '0', '1954-12-04', 'M', 'NULL', 'F', 'audrey17@adventure-works.com', '110000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', 'Berliner Platz 654', 'NULL', '1 (11) 500 555-0113', '2012-10-27', '10+ Miles'], ['12658', '279', 'AW00012658', 'NULL', 'Joy', 'J', 'Gomez', '0', '1960-01-08', 'M', 'NULL', 'F', 'joy2@adventure-works.com', '170000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '1698 10th Avenue', 'NULL', '1 (11) 500 555-0127', '2012-09-10', '0-1 Miles'], ['12659', '198', 'AW00012659', 'NULL', 'Damien', 'A', 'Chande', '0', '1953-09-14', 'M', 'NULL', 'M', 'damien31@adventure-works.com', '80000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '57, avenue du Québec', 'NULL', '1 (11) 500 555-0147', '2013-04-16', '10+ Miles'], ['12660', '183', 'AW00012660', 'NULL', 'Toni', 'H', 'Sanchez', '0', '1953-04-17', 'M', 'NULL', 'F', 'toni21@adventure-works.com', '80000.00', '5', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '4', '75, rue du Départ', 'NULL', '1 (11) 500 555-0116', '2013-11-30', '10+ Miles'], ['12661', '225', 'AW00012661', 'NULL', 'Deborah', 'M', 'Pal', '0', '1953-02-18', 'M', 'NULL', 'F', 'deborah16@adventure-works.com', '80000.00', '5', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '4', '65, avenue du Port', 'NULL', '1 (11) 500 555-0177', '2013-03-31', '10+ Miles'], ['12662', '199', 'AW00012662', 'NULL', 'Jessie', 'NULL', 'Huang', '0', '1952-11-21', 'M', 'NULL', 'M', 'jessie11@adventure-works.com', '90000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3, place de Brazaville', 'NULL', '1 (11) 500 555-0156', '2013-12-12', '5-10 Miles'], ['12663', '223', 'AW00012663', 'NULL', 'Morgan', 'NULL', 'Adams', '0', '1952-12-21', 'M', 'NULL', 'F', 'morgan12@adventure-works.com', '90000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '810, rue des Rosiers', 'NULL', '1 (11) 500 555-0167', '2013-11-17', '10+ Miles'], ['12664', '271', 'AW00012664', 'NULL', 'Krista', 'NULL', 'Gill', '0', '1952-07-02', 'M', 'NULL', 'F', 'krista13@adventure-works.com', '130000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '4399 Trembath Court', 'NULL', '1 (11) 500 555-0131', '2013-05-12', '0-1 Miles'], ['12665', '33', 'AW00012665', 'NULL', 'Joy', 'B', 'Suarez', '0', '1981-04-03', 'M', 'NULL', 'F', 'joy18@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '3341 Teakwood Dr', 'NULL', '1 (11) 500 555-0115', '2013-06-29', '10+ Miles'], ['12666', '25', 'AW00012666', 'NULL', 'Jessie', 'D', 'Zhu', '0', '1981-02-16', 'S', 'NULL', 'M', 'jessie18@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '8001 Roosevelt Avenue', 'NULL', '1 (11) 500 555-0150', '2013-11-03', '2-5 Miles'], ['12667', '31', 'AW00012667', 'NULL', 'Maria', 'NULL', 'Wood', '0', '1982-05-22', 'M', 'NULL', 'F', 'maria25@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '9270 Via Pablo Neruda', 'NULL', '1 (11) 500 555-0188', '2012-02-01', '10+ Miles'], ['12668', '19', 'AW00012668', 'NULL', 'Melissa', 'E', 'Patterson', '0', '1981-10-24', 'S', 'NULL', 'F', 'melissa5@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '806 San Jose Drive', 'NULL', '1 (11) 500 555-0157', '2012-02-10', '10+ Miles'], ['12669', '2', 'AW00012669', 'Mr.', 'Irving', 'W', 'Schmidt', '0', '1981-09-01', 'S', 'NULL', 'M', 'irving0@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '1408 Bonifacio St.', 'NULL', '111-555-0100', '2012-02-07', '10+ Miles'], ['12670', '18', 'AW00012670', 'NULL', 'Sarah', 'S', 'Martinez', '0', '1981-01-17', 'S', 'NULL', 'F', 'sarah19@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '977 Davona Drive', 'NULL', '1 (11) 500 555-0185', '2012-02-23', '10+ Miles'], ['12671', '26', 'AW00012671', 'NULL', 'Alan', 'A', 'Huang', '0', '1979-08-11', 'S', 'NULL', 'M', 'alan10@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '6660 Poppy Circle', 'NULL', '1 (11) 500 555-0122', '2012-02-09', '10+ Miles'], ['12672', '18', 'AW00012672', 'NULL', 'Carson', 'T', 'Butler', '0', '1981-05-06', 'S', 'NULL', 'M', 'carson13@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '3595 Hawthorne Dr.', 'NULL', '1 (11) 500 555-0142', '2013-04-16', '10+ Miles'], ['12673', '35', 'AW00012673', 'NULL', 'Colin', 'K', 'Stone', '0', '1981-02-24', 'M', 'NULL', 'M', 'colin25@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '1860 Alameda Dr.', 'NULL', '1 (11) 500 555-0181', '2012-02-24', '10+ Miles'], ['12674', '26', 'AW00012674', 'NULL', 'Jimmy', 'V', 'Travers', '0', '1981-01-23', 'M', 'NULL', 'M', 'jimmy15@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '962 Gonzalez Court', 'NULL', '1 (11) 500 555-0152', '2012-02-20', '10+ Miles'], ['12675', '37', 'AW00012675', 'NULL', 'Holly', 'M', 'Fernandez', '0', '1984-10-01', 'S', 'NULL', 'F', 'holly15@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '6433 E. 70th Street', 'NULL', '1 (11) 500 555-0115', '2012-02-10', '10+ Miles'], ['12676', '32', 'AW00012676', 'NULL', 'Michele', 'A', 'Madan', '0', '1979-12-26', 'S', 'NULL', 'F', 'michele63@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '8189 Lydia Lane', 'NULL', '1 (11) 500 555-0150', '2012-02-18', '10+ Miles'], ['12677', '2', 'AW00012677', 'NULL', 'Cedric', 'NULL', 'Liu', '0', '1980-05-04', 'M', 'NULL', 'M', 'cedric4@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '2', '8228 Seal Way', 'NULL', '1 (11) 500 555-0184', '2012-02-04', '10+ Miles'], ['12678', '15', 'AW00012678', 'NULL', 'Dana', 'S', 'Serrano', '0', '1980-04-08', 'S', 'NULL', 'F', 'dana9@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '1934 Pacifica', 'NULL', '1 (11) 500 555-0117', '2013-03-25', '0-1 Miles'], ['12679', '7', 'AW00012679', 'NULL', 'Stacy', 'NULL', 'Gill', '0', '1979-05-10', 'M', 'NULL', 'F', 'stacy14@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '2', '3718 Loma Linda', 'NULL', '1 (11) 500 555-0171', '2013-03-13', '10+ Miles'], ['12680', '18', 'AW00012680', 'NULL', 'George', 'M', 'Sanchez', '0', '1977-12-30', 'S', 'NULL', 'M', 'george27@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '1779 Virginia Hills Dr', 'NULL', '1 (11) 500 555-0179', '2012-02-21', '10+ Miles'], ['12681', '21', 'AW00012681', 'NULL', 'Christy', 'M', 'Chow', '0', '1977-09-05', 'S', 'NULL', 'F', 'christy2@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '7598 Holland Circle', 'NULL', '1 (11) 500 555-0119', '2012-02-26', '10+ Miles'], ['12682', '36', 'AW00012682', 'NULL', 'Kari', 'NULL', 'Subram', '0', '1978-12-12', 'M', 'NULL', 'F', 'kari13@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '2', '3588 Vancouver Way', 'NULL', '1 (11) 500 555-0139', '2013-06-02', '10+ Miles'], ['12683', '25', 'AW00012683', 'NULL', 'Laura', 'D', 'Zhou', '0', '1978-08-01', 'S', 'NULL', 'F', 'laura15@adventure-works.com', '120000.00', '5', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '6463 Landover Ln', 'NULL', '1 (11) 500 555-0170', '2012-02-18', '10+ Miles'], ['12684', '4', 'AW00012684', 'NULL', 'Shaun', 'NULL', 'Shen', '0', '1978-11-20', 'M', 'NULL', 'M', 'shaun4@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '7811 Woodsworth Lane', 'NULL', '1 (11) 500 555-0195', '2012-02-06', '10+ Miles'], ['12685', '40', 'AW00012685', 'NULL', 'Jaclyn', 'L', 'Xu', '0', '1977-09-19', 'M', 'NULL', 'F', 'jaclyn28@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '4143 Smith Lane', 'NULL', '1 (11) 500 555-0199', '2012-01-29', '10+ Miles'], ['12686', '32', 'AW00012686', 'NULL', 'Trisha', 'B', 'Zhou', '0', '1978-04-17', 'S', 'NULL', 'F', 'trisha3@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '7688 P St.', 'NULL', '1 (11) 500 555-0128', '2012-02-28', '10+ Miles'], ['12687', '2', 'AW00012687', 'NULL', 'Marshall', 'NULL', 'Li', '0', '1977-10-18', 'S', 'NULL', 'M', 'marshall2@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '1158 Roundtree Place', 'NULL', '1 (11) 500 555-0173', '2012-03-17', '10+ Miles'], ['12688', '24', 'AW00012688', 'NULL', 'Stacy', 'C', 'Navarro', '0', '1978-02-01', 'S', 'NULL', 'F', 'stacy10@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '8375 Springwood Way', 'NULL', '1 (11) 500 555-0111', '2012-03-08', '10+ Miles'], ['12689', '21', 'AW00012689', 'NULL', 'Tamara', 'NULL', 'Pal', '0', '1978-04-04', 'S', 'NULL', 'F', 'tamara23@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '446 Wilke Drive', 'NULL', '1 (11) 500 555-0152', '2012-03-23', '10+ Miles'], ['12690', '18', 'AW00012690', 'NULL', 'Roger', 'NULL', 'Zhang', '0', '1978-03-12', 'M', 'NULL', 'M', 'roger5@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '2', '1715 Leed Court West', 'NULL', '1 (11) 500 555-0132', '2013-07-05', '10+ Miles'], ['12691', '29', 'AW00012691', 'NULL', 'Rafael', 'E', 'Andersen', '0', '1977-08-08', 'M', 'NULL', 'M', 'rafael37@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '9491 Fountain Road', 'NULL', '1 (11) 500 555-0175', '2013-04-24', '10+ Miles'], ['12692', '24', 'AW00012692', 'NULL', 'Glenn', 'NULL', 'Lu', '0', '1977-01-22', 'S', 'NULL', 'M', 'glenn12@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '5230 E. 67th Street', 'NULL', '1 (11) 500 555-0127', '2013-06-05', '10+ Miles'], ['12693', '14', 'AW00012693', 'NULL', 'Ruth', 'NULL', 'Gonzalez', '0', '1976-07-08', 'M', 'NULL', 'F', 'ruth22@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '2752 Northridge Road', 'NULL', '1 (11) 500 555-0143', '2012-03-02', '10+ Miles'], ['12694', '17', 'AW00012694', 'NULL', 'Jay', 'R', 'Arthur', '0', '1983-01-07', 'S', 'NULL', 'M', 'jay13@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '5898 Mt. Dell', 'NULL', '1 (11) 500 555-0169', '2012-03-12', '10+ Miles'], ['12695', '2', 'AW00012695', 'NULL', 'Kari', 'L', 'Ruiz', '0', '1976-08-01', 'M', 'NULL', 'F', 'kari23@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '6909 Hamilton Avenue', 'NULL', '1 (11) 500 555-0135', '2013-05-10', '10+ Miles'], ['12696', '15', 'AW00012696', 'NULL', 'Stacey', 'NULL', 'Hu', '0', '1982-03-13', 'M', 'NULL', 'F', 'stacey21@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '6299 Elmonte Drive', 'NULL', '1 (11) 500 555-0172', '2013-05-12', '10+ Miles'], ['12697', '9', 'AW00012697', 'NULL', 'Brenda', 'J', 'Stone', '0', '1975-12-22', 'S', 'NULL', 'F', 'brenda12@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '1750 Morengo Ct.', 'NULL', '1 (11) 500 555-0111', '2013-09-07', '10+ Miles'], ['12698', '13', 'AW00012698', 'NULL', 'Mohamed', 'D', 'Pal', '0', '1981-05-10', 'M', 'NULL', 'M', 'mohamed2@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '6711 Frayne Ct.', 'NULL', '1 (11) 500 555-0110', '2012-03-13', '10+ Miles'], ['12699', '35', 'AW00012699', 'NULL', 'Amy', 'E', 'Chow', '0', '1975-09-15', 'M', 'NULL', 'F', 'amy10@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '3785 Treat Blvd.', 'NULL', '1 (11) 500 555-0175', '2012-03-14', '10+ Miles'], ['12700', '24', 'AW00012700', 'NULL', 'Mindy', 'R', 'Kumar', '0', '1976-09-16', 'M', 'NULL', 'F', 'mindy12@adventure-works.com', '110000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '8486 July Loop', 'NULL', '1 (11) 500 555-0164', '2012-04-28', '10+ Miles'], ['12701', '10', 'AW00012701', 'NULL', 'Gary', 'C', 'Gutierrez', '0', '1982-10-14', 'M', 'NULL', 'M', 'gary22@adventure-works.com', '110000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '1792 Belmont Rd.', 'NULL', '1 (11) 500 555-0169', '2012-04-17', '10+ Miles'], ['12702', '27', 'AW00012702', 'NULL', 'Yolanda', 'NULL', 'Shan', '0', '1977-03-06', 'M', 'NULL', 'F', 'yolanda9@adventure-works.com', '110000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '3929 Fern Street', 'NULL', '1 (11) 500 555-0111', '2012-04-18', '10+ Miles'], ['12703', '6', 'AW00012703', 'NULL', 'Renee', 'L', 'Suarez', '0', '1976-12-17', 'M', 'NULL', 'F', 'renee17@adventure-works.com', '110000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '9414 Pamplona Ct', 'NULL', '1 (11) 500 555-0148', '2012-04-04', '10+ Miles'], ['12704', '34', 'AW00012704', 'Mrs.', 'Barbara', 'NULL', 'Nara', '0', '1976-10-13', 'M', 'NULL', 'F', 'barbara45@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Management', 'Gestión', 'Direction', '1', '4', '7933 Ashwood Dr', 'NULL', '1 (11) 500 555-0144', '2013-08-08', '10+ Miles'], ['12705', '30', 'AW00012705', 'NULL', 'Andre', 'H', 'Garcia', '0', '1980-08-06', 'M', 'NULL', 'M', 'andre15@adventure-works.com', '150000.00', '0', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '6064 Brodia Court', 'NULL', '1 (11) 500 555-0151', '2012-03-30', '0-1 Miles'], ['12706', '24', 'AW00012706', 'NULL', 'Louis', 'M', 'Liang', '0', '1980-01-10', 'M', 'NULL', 'M', 'louis11@adventure-works.com', '160000.00', '0', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '8355 Lighthouse Way', 'NULL', '1 (11) 500 555-0127', '2012-04-12', '0-1 Miles'], ['12707', '638', 'AW00012707', 'NULL', 'Ian', 'NULL', 'Lewis', '0', '1947-03-28', 'M', 'NULL', 'M', 'ian19@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8985 Camino Segundo', 'NULL', '441-555-0164', '2011-12-23', '10+ Miles'], ['12708', '307', 'AW00012708', 'NULL', 'Bonnie', 'NULL', 'Pal', '0', '1952-04-21', 'M', 'NULL', 'F', 'bonnie18@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8071 Daylight Place', 'NULL', '134-555-0141', '2013-02-02', '5-10 Miles'], ['12709', '358', 'AW00012709', 'NULL', 'Ian', 'W', 'Rodriguez', '0', '1946-07-14', 'M', 'NULL', 'M', 'ian18@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '7744 Lacorso Drive', 'NULL', '631-555-0178', '2011-12-08', '0-1 Miles'], ['12710', '52', 'AW00012710', 'NULL', 'Dalton', 'E', 'Evans', '0', '1946-12-17', 'S', 'NULL', 'M', 'dalton43@adventure-works.com', '170000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '3601 Stinson', '#7', '251-555-0135', '2013-03-17', '0-1 Miles'], ['12711', '211', 'AW00012711', 'NULL', 'Heather', 'NULL', 'Zheng', '0', '1978-10-18', 'S', 'NULL', 'F', 'heather18@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '3bis, boulevard Saint Germain', 'NULL', '1 (11) 500 555-0187', '2011-10-25', '1-2 Miles'], ['12712', '159', 'AW00012712', 'NULL', 'Arthur', 'NULL', 'Romero', '0', '1979-02-14', 'S', 'NULL', 'M', 'arthur33@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Werftstr 54', 'NULL', '1 (11) 500 555-0110', '2012-10-10', '0-1 Miles'], ['12713', '172', 'AW00012713', 'NULL', 'Deborah', 'C', 'Xie', '0', '1978-12-07', 'S', 'NULL', 'F', 'deborah7@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Husemann Straße 7574', 'NULL', '1 (11) 500 555-0168', '2012-10-11', '1-2 Miles'], ['12714', '157', 'AW00012714', 'NULL', 'Colleen', 'NULL', 'Lu', '0', '1979-01-14', 'S', 'NULL', 'F', 'colleen11@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Hüttenstr 20995', 'NULL', '1 (11) 500 555-0174', '2013-07-19', '2-5 Miles'], ['12715', '37', 'AW00012715', 'NULL', 'Eddie', 'J', 'Gill', '0', '1969-01-14', 'M', 'NULL', 'M', 'eddie14@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '4440 Stillwater Court', 'NULL', '1 (11) 500 555-0132', '2013-03-12', '5-10 Miles'], ['12716', '185', 'AW00012716', 'NULL', 'Dale', 'NULL', 'Shen', '0', '1979-09-13', 'S', 'NULL', 'M', 'dale2@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '280, avenue de la Gare', 'NULL', '1 (11) 500 555-0124', '2013-02-12', '2-5 Miles'], ['12717', '184', 'AW00012717', 'NULL', 'Hannah', 'NULL', 'Wood', '0', '1979-12-05', 'M', 'NULL', 'F', 'hannah25@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '22, rue de la Cavalerie', 'NULL', '1 (11) 500 555-0140', '2011-10-21', '0-1 Miles'], ['12718', '193', 'AW00012718', 'NULL', 'Tammy', 'NULL', 'Sai', '0', '1980-05-13', 'S', 'NULL', 'F', 'tammy6@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1, place Beaubernard', 'NULL', '1 (11) 500 555-0188', '2013-11-12', '2-5 Miles'], ['12719', '218', 'AW00012719', 'NULL', 'Cheryl', 'J', 'Ruiz', '0', '1985-11-30', 'S', 'NULL', 'F', 'cheryl3@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '660, rue Villedo', 'NULL', '1 (11) 500 555-0121', '2013-07-10', '0-1 Miles'], ['12720', '219', 'AW00012720', 'NULL', 'Nicolas', 'J', 'Chande', '0', '1980-05-01', 'S', 'NULL', 'M', 'nicolas13@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '44, rue du Départ', 'NULL', '1 (11) 500 555-0115', '2013-06-12', '0-1 Miles'], ['12721', '175', 'AW00012721', 'NULL', 'Rebekah', 'A', 'Martinez', '0', '1979-07-14', 'S', 'NULL', 'F', 'rebekah17@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Auf Der Steige 111', 'NULL', '1 (11) 500 555-0118', '2013-05-04', '1-2 Miles'], ['12722', '155', 'AW00012722', 'NULL', 'Latasha', 'L', 'Gomez', '0', '1985-08-11', 'S', 'NULL', 'F', 'latasha1@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Heiderweg 4983', 'NULL', '1 (11) 500 555-0177', '2013-04-06', '0-1 Miles'], ['12723', '183', 'AW00012723', 'NULL', 'Kurt', 'L', 'Jai', '0', '1986-05-13', 'M', 'NULL', 'M', 'kurt11@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '5165 Wintergreen Court', 'NULL', '1 (11) 500 555-0124', '2013-02-27', '0-1 Miles'], ['12724', '170', 'AW00012724', 'NULL', 'Eddie', 'C', 'Martin', '0', '1985-07-23', 'S', 'NULL', 'M', 'eddie1@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Hochstr 2777', 'NULL', '1 (11) 500 555-0189', '2013-02-01', '1-2 Miles'], ['12725', '171', 'AW00012725', 'NULL', 'Gabrielle', 'NULL', 'James', '0', '1916-02-10', 'M', 'NULL', 'F', 'gabrielle17@adventure-works.com', '10000.00', '4', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Nonnendamm 6500', 'NULL', '1 (11) 500 555-0125', '2013-08-18', '1-2 Miles'], ['12726', '121', 'AW00012726', 'NULL', 'Kurt', 'NULL', 'Goel', '0', '1985-08-18', 'S', 'NULL', 'M', 'kurt19@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Am Kreuz 999', 'NULL', '1 (11) 500 555-0173', '2013-08-03', '0-1 Miles'], ['12727', '220', 'AW00012727', 'NULL', 'Amanda', 'E', 'Ross', '0', '1985-10-10', 'S', 'NULL', 'F', 'amanda25@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '141, rue Jean Mermoz', 'NULL', '1 (11) 500 555-0184', '2013-06-25', '1-2 Miles'], ['12728', '131', 'AW00012728', 'NULL', 'Jeremiah', 'NULL', 'Stewart', '0', '1984-12-23', 'S', 'NULL', 'M', 'jeremiah44@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Alte Landstr 9902', 'NULL', '1 (11) 500 555-0129', '2013-04-07', '1-2 Miles'], ['12729', '265', 'AW00012729', 'NULL', 'Jose', 'M', 'Perry', '0', '1984-11-12', 'S', 'NULL', 'M', 'jose31@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '6416 Honey Court', 'NULL', '1 (11) 500 555-0115', '2013-05-29', '2-5 Miles'], ['12730', '279', 'AW00012730', 'NULL', 'Karla', 'M', 'Becker', '0', '1984-04-14', 'S', 'NULL', 'F', 'karla21@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '4185 River Ash Court', 'NULL', '1 (11) 500 555-0164', '2013-08-22', '2-5 Miles'], ['12731', '162', 'AW00012731', 'NULL', 'Steven', 'L', 'Murphy', '0', '1984-09-10', 'S', 'NULL', 'M', 'steven24@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Kulmer Straße 4234', 'NULL', '1 (11) 500 555-0191', '2013-09-16', '1-2 Miles'], ['12732', '183', 'AW00012732', 'NULL', 'Todd', 'K', 'Guo', '0', '1977-08-20', 'S', 'NULL', 'M', 'todd17@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '72, rue de Berri', 'NULL', '1 (11) 500 555-0173', '2013-08-22', '1-2 Miles'], ['12733', '252', 'AW00012733', 'NULL', 'Lacey', 'L', 'Cai', '0', '1977-08-26', 'S', 'NULL', 'F', 'lacey34@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '2546 Fawn Glen Circle', 'NULL', '1 (11) 500 555-0184', '2013-04-10', '0-1 Miles'], ['12734', '226', 'AW00012734', 'NULL', 'Margaret', 'R', 'Zhou', '0', '1978-04-02', 'S', 'NULL', 'F', 'margaret15@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '6, rue Descartes', 'NULL', '1 (11) 500 555-0182', '2013-09-22', '1-2 Miles'], ['12735', '144', 'AW00012735', 'NULL', 'Donald', 'S', 'Mehta', '0', '1983-10-16', 'S', 'NULL', 'M', 'donald15@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Celler Weg 45', 'NULL', '1 (11) 500 555-0174', '2012-10-08', '1-2 Miles'], ['12736', '118', 'AW00012736', 'NULL', 'Diana', 'C', 'Ruiz', '0', '1978-01-23', 'S', 'NULL', 'F', 'diana1@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Westheimer Straße 924322', 'NULL', '1 (11) 500 555-0181', '2012-10-08', '1-2 Miles'], ['12737', '215', 'AW00012737', 'NULL', 'Brett', 'S', 'Chandra', '0', '1978-07-19', 'S', 'NULL', 'M', 'brett1@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '22, rue de Bas Marin', 'NULL', '1 (11) 500 555-0121', '2013-04-07', '2-5 Miles'], ['12738', '153', 'AW00012738', 'NULL', 'Melinda', 'A', 'Rubio', '0', '1978-12-14', 'M', 'NULL', 'F', 'melinda15@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Am Gallberg 8667', 'NULL', '1 (11) 500 555-0162', '2012-10-10', '1-2 Miles'], ['12739', '241', 'AW00012739', 'NULL', 'Evan', 'NULL', 'Young', '0', '1979-06-11', 'M', 'NULL', 'M', 'evan43@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2361 Polson Court', 'NULL', '1 (11) 500 555-0174', '2013-06-28', '1-2 Miles'], ['12740', '229', 'AW00012740', 'NULL', 'Kathryn', 'NULL', 'Goel', '0', '1978-05-27', 'S', 'NULL', 'F', 'kathryn17@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '1086 Clayton Road', 'NULL', '1 (11) 500 555-0166', '2013-12-24', '2-5 Miles'], ['12741', '176', 'AW00012741', 'Mr.', 'Raymond', 'NULL', 'Sam', '0', '1977-08-02', 'S', 'NULL', 'M', 'raymond1@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Kalkweg 43', 'NULL', '313-555-0100', '2013-04-10', '2-5 Miles'], ['12742', '161', 'AW00012742', 'NULL', 'Samantha', 'C', 'Martinez', '0', '1978-05-22', 'S', 'NULL', 'F', 'samantha19@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Unter Linden 44', 'NULL', '1 (11) 500 555-0164', '2012-11-23', '0-1 Miles'], ['12743', '234', 'AW00012743', 'NULL', 'Carl', 'NULL', 'Kumar', '0', '1978-06-18', 'M', 'NULL', 'M', 'carl7@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '0', '6648 Choctaw Court', 'NULL', '1 (11) 500 555-0199', '2013-10-17', '0-1 Miles'], ['12744', '236', 'AW00012744', 'NULL', 'Anna', 'A', 'Moore', '0', '1978-05-27', 'S', 'NULL', 'F', 'anna68@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9682 Concord Blvd.', 'NULL', '1 (11) 500 555-0183', '2013-08-29', '0-1 Miles'], ['12745', '241', 'AW00012745', 'NULL', 'Rafael', 'NULL', 'Wu', '0', '1977-12-11', 'S', 'NULL', 'M', 'rafael7@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3200 Wren Ave.', 'NULL', '1 (11) 500 555-0123', '2012-10-13', '1-2 Miles'], ['12746', '234', 'AW00012746', 'NULL', 'Juan', 'M', 'Torres', '0', '1976-10-15', 'S', 'NULL', 'M', 'juan2@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '2874 Tice', 'NULL', '1 (11) 500 555-0173', '2013-07-24', '0-1 Miles'], ['12747', '147', 'AW00012747', 'NULL', 'Colleen', 'J', 'Hu', '0', '1982-10-29', 'S', 'NULL', 'F', 'colleen21@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Buergermeister-ulrich-str 543', 'NULL', '1 (11) 500 555-0156', '2012-11-27', '1-2 Miles'], ['12748', '221', 'AW00012748', 'NULL', 'Grace', 'NULL', 'Bell', '0', '1977-02-07', 'S', 'NULL', 'F', 'grace30@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '81, route de Marseille', 'NULL', '1 (11) 500 555-0118', '2013-07-30', '2-5 Miles'], ['12749', '207', 'AW00012749', 'NULL', 'Miguel', 'NULL', 'Lee', '0', '1976-08-29', 'S', 'NULL', 'M', 'miguel22@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '26, rue de l´Esplanade', 'NULL', '1 (11) 500 555-0150', '2011-10-27', '1-2 Miles'], ['12750', '212', 'AW00012750', 'NULL', 'Teresa', 'NULL', 'Vazquez', '0', '1976-02-08', 'S', 'NULL', 'F', 'teresa15@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', "77, rue de l'Espace De Schengen", 'NULL', '1 (11) 500 555-0111', '2011-10-10', '1-2 Miles'], ['12751', '117', 'AW00012751', 'NULL', 'Priscilla', 'E', 'Xu', '0', '1976-06-10', 'S', 'NULL', 'F', 'priscilla4@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Auf Der Steige 55', 'NULL', '1 (11) 500 555-0175', '2013-12-09', '0-1 Miles'], ['12752', '216', 'AW00012752', 'NULL', 'Jonathon', 'D', 'Alvarez', '0', '1976-05-17', 'S', 'NULL', 'M', 'jonathon1@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '25, rue de Cambrai', 'NULL', '1 (11) 500 555-0168', '2013-07-06', '0-1 Miles'], ['12753', '190', 'AW00012753', 'NULL', 'Ramon', 'K', 'Zhao', '0', '1976-11-16', 'S', 'NULL', 'M', 'ramon10@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1234, rue Ste-Honoré', 'NULL', '1 (11) 500 555-0192', '2013-03-04', '1-2 Miles'], ['12754', '223', 'AW00012754', 'NULL', 'Lindsey', 'NULL', 'Deng', '0', '1981-06-16', 'M', 'NULL', 'F', 'lindsey1@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '68, impasse Notre-Dame', 'NULL', '1 (11) 500 555-0191', '2011-10-06', '0-1 Miles'], ['12755', '368', 'AW00012755', 'NULL', 'Chloe', 'J', 'Hughes', '0', '1981-03-31', 'S', 'NULL', 'F', 'chloe78@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4416 Harvard Drive', 'NULL', '909-555-0199', '2011-12-13', '1-2 Miles'], ['12756', '300', 'AW00012756', 'NULL', 'Antonio', 'NULL', 'Butler', '0', '1980-12-23', 'S', 'NULL', 'M', 'antonio14@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8590 Dublin Court', 'NULL', '709-555-0140', '2011-12-18', '1-2 Miles'], ['12757', '614', 'AW00012757', 'NULL', 'Sara', 'A', 'Ramirez', '0', '1980-06-18', 'S', 'NULL', 'F', 'sara7@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7306 Keller Ridge', 'NULL', '359-555-0132', '2013-04-03', '1-2 Miles'], ['12758', '623', 'AW00012758', 'NULL', 'Stephanie', 'E', 'Ramirez', '0', '1935-07-11', 'M', 'NULL', 'F', 'stephanie22@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9491 Toyon Dr', 'NULL', '187-555-0139', '2013-05-26', '2-5 Miles'], ['12759', '637', 'AW00012759', 'NULL', 'Jada', 'J', 'Sanders', '0', '1937-01-10', 'M', 'NULL', 'F', 'jada1@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6473 Crown Court', 'NULL', '439-555-0153', '2013-06-26', '1-2 Miles'], ['12760', '49', 'AW00012760', 'NULL', 'Krista', 'NULL', 'Gomez', '0', '1971-07-26', 'S', 'NULL', 'F', 'krista1@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '890 Breck Court', 'NULL', '187-555-0149', '2013-03-22', '1-2 Miles'], ['12761', '553', 'AW00012761', 'NULL', 'Alexandra', 'NULL', 'Richardson', '0', '1971-09-01', 'S', 'NULL', 'F', 'alexandra13@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3117 Story Lane', 'NULL', '159-555-0117', '2011-12-23', '1-2 Miles'], ['12762', '372', 'AW00012762', 'NULL', 'Jonathan', 'L', 'Smith', '0', '1964-12-16', 'M', 'NULL', 'M', 'jonathan60@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1064 Diver Way', 'NULL', '480-555-0187', '2011-12-22', '5-10 Miles'], ['12763', '49', 'AW00012763', 'NULL', 'Chloe', 'M', 'Russell', '0', '1969-08-01', 'M', 'NULL', 'F', 'chloe85@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8452 Pine Hollow Rd.', 'NULL', '344-555-0116', '2013-06-03', '2-5 Miles'], ['12764', '642', 'AW00012764', 'NULL', 'Alexandra', 'NULL', 'Harris', '0', '1964-08-13', 'M', 'NULL', 'F', 'alexandra77@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5454 Old Mt. View Drive', 'NULL', '846-555-0165', '2011-12-16', '5-10 Miles'], ['12765', '49', 'AW00012765', 'NULL', 'Robyn', 'J', 'Gill', '0', '1959-11-17', 'M', 'NULL', 'F', 'robyn11@adventure-works.com', '20000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '6510 Northridge Drive', 'NULL', '417-555-0149', '2013-03-18', '0-1 Miles'], ['12766', '539', 'AW00012766', 'NULL', 'Jordyn', 'NULL', 'Bryant', '0', '1971-02-08', 'M', 'NULL', 'F', 'jordyn17@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3237 Orchid Ct', 'NULL', '119-555-0181', '2011-12-21', '1-2 Miles'], ['12767', '648', 'AW00012767', 'NULL', 'Christopher', 'A', 'Robinson', '0', '1960-05-02', 'M', 'NULL', 'M', 'christopher18@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9863 Mt. Mckinley Ct.', 'NULL', '910-555-0123', '2013-08-23', '5-10 Miles'], ['12768', '310', 'AW00012768', 'NULL', 'Johnathan', 'J', 'Chapman', '0', '1959-11-23', 'M', 'NULL', 'M', 'johnathan3@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5328 Mitchelleanjen Ln.', 'NULL', '588-555-0191', '2011-12-12', '2-5 Miles'], ['12769', '631', 'AW00012769', 'NULL', 'Thomas', 'H', 'Zhang', '0', '1960-09-17', 'M', 'NULL', 'M', 'thomas26@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '994 Counting Drive', 'NULL', '659-555-0155', '2011-12-23', '0-1 Miles'], ['12770', '338', 'AW00012770', 'NULL', 'Charles', 'L', 'Evans', '0', '1966-09-19', 'M', 'NULL', 'M', 'charles44@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5276 Whitehall Drive', 'NULL', '362-555-0140', '2011-12-18', '1-2 Miles'], ['12771', '372', 'AW00012771', 'NULL', 'Morgan', 'NULL', 'Thomas', '0', '1966-10-18', 'M', 'NULL', 'F', 'morgan33@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3406 Oak Brook Place', 'NULL', '650-555-0176', '2011-12-09', '0-1 Miles'], ['12772', '616', 'AW00012772', 'NULL', 'Abigail', 'NULL', 'Clark', '0', '1960-10-22', 'M', 'NULL', 'F', 'abigail60@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2466 Kentucky Dr.', 'NULL', '751-555-0176', '2011-12-07', '0-1 Miles'], ['12773', '609', 'AW00012773', 'NULL', 'Samantha', 'K', 'Taylor', '0', '1961-05-08', 'M', 'NULL', 'F', 'samantha10@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1700 Glazier Ct.', 'NULL', '741-555-0192', '2011-12-27', '0-1 Miles'], ['12774', '302', 'AW00012774', 'NULL', 'Kristen', 'NULL', 'Gao', '0', '1971-09-18', 'M', 'NULL', 'F', 'kristen13@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9456 Bell Dr.', 'NULL', '368-555-0152', '2011-12-20', '1-2 Miles'], ['12775', '352', 'AW00012775', 'NULL', 'Connor', 'S', 'Griffin', '0', '1972-03-03', 'M', 'NULL', 'M', 'connor15@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '400 Matterhorn Court', 'NULL', '526-555-0175', '2013-06-08', '1-2 Miles'], ['12776', '648', 'AW00012776', 'NULL', 'Blake', 'NULL', 'Campbell', '0', '1960-07-17', 'M', 'NULL', 'M', 'blake43@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '5119 Valley Run', 'NULL', '474-555-0186', '2013-03-26', '0-1 Miles'], ['12777', '626', 'AW00012777', 'NULL', 'Joseph', 'A', 'Anderson', '0', '1961-11-19', 'M', 'NULL', 'M', 'joseph16@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9297 Kenston Dr.', 'NULL', '606-555-0186', '2011-12-07', '1-2 Miles'], ['12778', '368', 'AW00012778', 'NULL', 'Connie', 'NULL', 'Morgan', '0', '1961-10-06', 'M', 'NULL', 'F', 'connie3@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1893 Northridge Drive', 'NULL', '857-555-0185', '2013-12-20', '1-2 Miles'], ['12779', '648', 'AW00012779', 'NULL', 'Mason', 'E', 'Rogers', '0', '1962-01-31', 'M', 'NULL', 'M', 'mason18@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6948 Lakespring Pl.', 'NULL', '850-555-0199', '2011-12-01', '1-2 Miles'], ['12780', '631', 'AW00012780', 'NULL', 'Jeremy', 'P', 'Richardson', '0', '1967-03-19', 'M', 'NULL', 'M', 'jeremy39@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7948 Walnut Blvd', 'NULL', '817-555-0123', '2011-12-21', '1-2 Miles'], ['12781', '52', 'AW00012781', 'NULL', 'Emma', 'NULL', 'James', '0', '1961-12-26', 'M', 'NULL', 'F', 'emma44@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8626 Lillian Dr', 'NULL', '145-555-0111', '2013-06-18', '0-1 Miles'], ['12782', '66', 'AW00012782', 'NULL', 'Elizabeth', 'F', 'Long', '0', '1978-03-12', 'M', 'NULL', 'F', 'elizabeth39@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '110 E. Watson Court', 'NULL', '921-555-0171', '2013-07-02', '0-1 Miles'], ['12783', '49', 'AW00012783', 'NULL', 'Jerome', 'NULL', 'Gutierrez', '0', '1961-10-06', 'M', 'NULL', 'M', 'jerome9@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6797 Smiling Tree Court', 'NULL', '781-555-0154', '2013-07-29', '0-1 Miles'], ['12784', '548', 'AW00012784', 'NULL', 'Jonathan', 'D', 'Campbell', '0', '1961-09-04', 'M', 'NULL', 'M', 'jonathan36@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5706 Manila Ave.', 'NULL', '549-555-0133', '2011-12-19', '0-1 Miles'], ['12785', '43', 'AW00012785', 'NULL', 'Javier', 'P', 'Ortega', '0', '1967-03-19', 'M', 'NULL', 'M', 'javier15@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7948 Walnut Blvd', 'NULL', '175-555-0128', '2013-07-28', '1-2 Miles'], ['12786', '298', 'AW00012786', 'NULL', 'James', 'NULL', 'Yang', '0', '1961-08-31', 'M', 'NULL', 'M', 'james43@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8242 Gilardy Dr', 'NULL', '424-555-0139', '2013-11-11', '1-2 Miles'], ['12787', '633', 'AW00012787', 'NULL', 'Katelyn', 'E', 'Cook', '0', '1967-10-18', 'S', 'NULL', 'F', 'katelyn20@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7878 Delacy Ave.', 'NULL', '994-555-0172', '2013-05-12', '1-2 Miles'], ['12788', '307', 'AW00012788', 'NULL', 'Amanda', 'NULL', 'Nelson', '0', '1962-12-26', 'M', 'NULL', 'F', 'amanda52@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '51, rue Henri Gagnon', 'NULL', '948-555-0127', '2013-07-05', '1-2 Miles'], ['12789', '302', 'AW00012789', 'NULL', 'Jamie', 'L', 'Zeng', '0', '1962-10-22', 'M', 'NULL', 'F', 'jamie26@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5339 Cashew Street', 'NULL', '664-555-0191', '2011-12-23', '0-1 Miles'], ['12790', '335', 'AW00012790', 'NULL', 'Brandon', 'A', 'Kumar', '0', '1964-04-03', 'S', 'NULL', 'M', 'brandon25@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7647 Slow Creek Road', 'NULL', '321-555-0115', '2013-12-13', '1-2 Miles'], ['12791', '337', 'AW00012791', 'NULL', 'Angelica', 'NULL', 'Foster', '0', '1975-03-23', 'S', 'NULL', 'F', 'angelica15@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2390 Broad Court', 'NULL', '290-555-0117', '2013-02-22', '0-1 Miles'], ['12792', '611', 'AW00012792', 'NULL', 'Blake', 'P', 'White', '0', '1963-09-18', 'M', 'NULL', 'M', 'blake12@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9922 Hawthorne Dr', 'NULL', '520-555-0154', '2014-01-06', '0-1 Miles'], ['12793', '307', 'AW00012793', 'NULL', 'Jessie', 'J', 'Guo', '0', '1969-04-13', 'M', 'NULL', 'M', 'jessie22@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6024 Lacanda', 'NULL', '871-555-0172', '2013-02-19', '1-2 Miles'], ['12794', '553', 'AW00012794', 'NULL', 'Megan', 'NULL', 'Jackson', '0', '1965-04-06', 'S', 'NULL', 'F', 'megan15@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3503 Springwood Way', 'NULL', '854-555-0136', '2013-08-26', '1-2 Miles'], ['12795', '53', 'AW00012795', 'NULL', 'Antonio', 'NULL', 'Foster', '0', '1964-10-09', 'M', 'NULL', 'M', 'antonio16@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6454 Denkinger Road', 'NULL', '155-555-0158', '2013-02-03', '0-1 Miles'], ['12796', '611', 'AW00012796', 'NULL', 'Jason', 'L', 'Zhang', '0', '1964-09-04', 'M', 'NULL', 'M', 'jason21@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '6598 Oak Street', 'NULL', '901-555-0172', '2013-04-04', '0-1 Miles'], ['12797', '383', 'AW00012797', 'NULL', 'Patrick', 'L', 'Howard', '0', '1965-02-19', 'S', 'NULL', 'M', 'patrick16@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1933 Lorie Lane', 'NULL', '407-555-0182', '2013-06-23', '1-2 Miles'], ['12798', '224', 'AW00012798', 'NULL', 'Andy', 'NULL', 'Gutierrez', '0', '1973-07-13', 'M', 'NULL', 'M', 'andy15@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '13, rue de Terre Neuve', 'NULL', '1 (11) 500 555-0195', '2013-03-08', '2-5 Miles'], ['12799', '171', 'AW00012799', 'NULL', 'George', 'H', 'Chandra', '0', '1984-12-09', 'M', 'NULL', 'M', 'george8@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Parkstr 4256', 'NULL', '1 (11) 500 555-0127', '2013-06-22', '1-2 Miles'], ['12800', '158', 'AW00012800', 'NULL', 'Lacey', 'E', 'Chen', '0', '1973-09-18', 'M', 'NULL', 'F', 'lacey14@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Essener Straße 802', 'Verkaufsabteilung', '1 (11) 500 555-0126', '2013-08-20', '0-1 Miles'], ['12801', '117', 'AW00012801', 'NULL', 'Melody', 'NULL', 'Browning', '0', '1973-07-04', 'S', 'NULL', 'F', 'melody16@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Postfach 11 00 99', 'NULL', '1 (11) 500 555-0182', '2014-01-24', '1-2 Miles'], ['12802', '176', 'AW00012802', 'NULL', 'Alan', 'W', 'Sun', '0', '1973-10-16', 'S', 'NULL', 'M', 'alan16@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Conesweg 681', 'NULL', '1 (11) 500 555-0153', '2014-01-12', '1-2 Miles'], ['12803', '279', 'AW00012803', 'NULL', 'Heather', 'C', 'Li', '0', '1973-09-15', 'M', 'NULL', 'F', 'heather3@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1624 Carlisle Way', 'NULL', '1 (11) 500 555-0120', '2013-05-06', '0-1 Miles'], ['12804', '190', 'AW00012804', 'NULL', 'Jaclyn', 'A', 'Chander', '0', '1973-12-02', 'S', 'NULL', 'F', 'jaclyn39@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '34, route de Marseille', 'NULL', '1 (11) 500 555-0132', '2011-10-03', '1-2 Miles'], ['12805', '215', 'AW00012805', 'NULL', 'Marvin', 'M', 'Moreno', '0', '1973-12-11', 'M', 'NULL', 'M', 'marvin7@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1216, place de la Concorde', 'NULL', '1 (11) 500 555-0110', '2011-10-24', '0-1 Miles'], ['12806', '150', 'AW00012806', 'NULL', 'Ronnie', 'L', 'Zeng', '0', '1973-09-15', 'M', 'NULL', 'M', 'ronnie19@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Nonnendamm 123', 'NULL', '1 (11) 500 555-0115', '2012-11-18', '0-1 Miles'], ['12807', '172', 'AW00012807', 'NULL', 'Nina', 'L', 'Kumar', '0', '1974-02-01', 'S', 'NULL', 'F', 'nina8@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Altendorfer Straße 5', 'NULL', '1 (11) 500 555-0115', '2012-11-09', '0-1 Miles'], ['12808', '277', 'AW00012808', 'NULL', 'Marc', 'NULL', 'Schmidt', '0', '1973-11-08', 'M', 'NULL', 'M', 'marc24@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4429 Langford Court', 'NULL', '1 (11) 500 555-0115', '2012-10-08', '0-1 Miles'], ['12809', '119', 'AW00012809', 'NULL', 'Michele', 'S', 'Navarro', '0', '1973-03-21', 'M', 'NULL', 'F', 'michele43@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Rykestr 85', 'NULL', '1 (11) 500 555-0118', '2013-05-07', '2-5 Miles'], ['12810', '162', 'AW00012810', 'NULL', 'Chase', 'NULL', 'Stewart', '0', '1932-01-25', 'M', 'NULL', 'M', 'chase23@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Nollendorfplatz 4118', 'NULL', '1 (11) 500 555-0144', '2013-12-01', '0-1 Miles'], ['12811', '135', 'AW00012811', 'NULL', 'Marc', 'NULL', 'Serrano', '0', '1978-04-16', 'S', 'NULL', 'M', 'marc20@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Auf den Kuhlen Straße 4666', 'NULL', '1 (11) 500 555-0117', '2013-10-25', '0-1 Miles'], ['12812', '224', 'AW00012812', 'NULL', 'Brandi', 'J', 'Sanz', '0', '1973-02-17', 'M', 'NULL', 'F', 'brandi19@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '7, rue des Vendangeurs', 'NULL', '1 (11) 500 555-0185', '2013-05-16', '2-5 Miles'], ['12813', '128', 'AW00012813', 'NULL', 'Reginald', 'NULL', 'Ramos', '0', '1973-05-07', 'M', 'NULL', 'M', 'reginald3@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Herzogstr 3998', 'NULL', '1 (11) 500 555-0119', '2012-11-02', '2-5 Miles'], ['12814', '144', 'AW00012814', 'NULL', 'Casey', 'A', 'Sharma', '0', '1983-10-04', 'S', 'NULL', 'F', 'casey10@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Auf den Kuhlen Straße 3', 'NULL', '1 (11) 500 555-0176', '2013-04-28', '0-1 Miles'], ['12815', '134', 'AW00012815', 'NULL', 'Dominique', 'F', 'Mehta', '0', '1972-12-23', 'M', 'NULL', 'F', 'dominique11@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Lieblingsweg 545', 'NULL', '1 (11) 500 555-0164', '2013-10-26', '2-5 Miles'], ['12816', '150', 'AW00012816', 'NULL', 'Tammy', 'NULL', 'Mehta', '0', '1977-06-20', 'S', 'NULL', 'F', 'tammy14@adventure-works.com', '10000.00', '5', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Moritzstr 8', 'NULL', '1 (11) 500 555-0191', '2012-11-19', '0-1 Miles'], ['12817', '194', 'AW00012817', 'NULL', 'Theodore', 'NULL', 'Suarez', '0', '1971-08-09', 'S', 'NULL', 'M', 'theodore20@adventure-works.com', '10000.00', '5', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '336, rue des Rosiers', 'NULL', '1 (11) 500 555-0123', '2011-11-24', '0-1 Miles'], ['12818', '221', 'AW00012818', 'NULL', 'Curtis', 'NULL', 'She', '0', '1971-08-18', 'M', 'NULL', 'M', 'curtis20@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '343, rue de Cambrai', 'NULL', '1 (11) 500 555-0127', '2013-11-27', '2-5 Miles'], ['12819', '208', 'AW00012819', 'NULL', 'Nicolas', 'NULL', 'Chander', '0', '1977-04-19', 'S', 'NULL', 'M', 'nicolas14@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '500, avenue de la Gare', 'NULL', '1 (11) 500 555-0125', '2011-11-05', '0-1 Miles'], ['12820', '183', 'AW00012820', 'NULL', 'Derek', 'L', 'Tang', '0', '1971-08-09', 'S', 'NULL', 'M', 'derek4@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '421, rue Léo Delibes', 'NULL', '1 (11) 500 555-0195', '2011-11-13', '0-1 Miles'], ['12821', '189', 'AW00012821', 'NULL', 'Cesar', 'C', 'McDonald', '0', '1978-06-11', 'M', 'NULL', 'M', 'cesar3@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '54, rue Philibert-Delorme', 'NULL', '1 (11) 500 555-0199', '2013-06-05', '0-1 Miles'], ['12822', '162', 'AW00012822', 'NULL', 'Alexandra', 'NULL', 'James', '0', '1978-05-20', 'M', 'NULL', 'F', 'alexandra19@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Holzstr 6444', 'NULL', '1 (11) 500 555-0117', '2013-11-26', '0-1 Miles'], ['12823', '188', 'AW00012823', 'NULL', 'Bethany', 'NULL', 'She', '0', '1933-05-16', 'M', 'NULL', 'F', 'bethany4@adventure-works.com', '10000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '812, rue Mazagran', 'NULL', '1 (11) 500 555-0112', '2013-12-24', '0-1 Miles'], ['12824', '198', 'AW00012824', 'NULL', 'Kristopher', 'NULL', 'Subram', '0', '1971-11-03', 'S', 'NULL', 'M', 'kristopher11@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '1', '33, place de la République', 'NULL', '1 (11) 500 555-0189', '2013-12-10', '1-2 Miles'], ['12825', '147', 'AW00012825', 'NULL', 'Kelvin', 'NULL', 'Hu', '0', '1971-07-20', 'M', 'NULL', 'M', 'kelvin39@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Heiderweg 4982', 'NULL', '1 (11) 500 555-0153', '2012-11-15', '1-2 Miles'], ['12826', '133', 'AW00012826', 'NULL', 'Caleb', 'NULL', 'Gonzalez', '0', '1971-01-04', 'S', 'NULL', 'M', 'caleb38@adventure-works.com', '10000.00', '5', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Buergermeister-ulrich-str 2', 'NULL', '1 (11) 500 555-0191', '2012-11-17', '0-1 Miles'], ['12827', '174', 'AW00012827', 'NULL', 'Nicolas', 'NULL', 'Raje', '0', '1971-01-12', 'S', 'NULL', 'M', 'nicolas12@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Postenweg 4642', 'NULL', '1 (11) 500 555-0117', '2012-12-08', '0-1 Miles'], ['12828', '175', 'AW00012828', 'NULL', 'Carol', 'K', 'Rubio', '0', '1975-06-01', 'S', 'NULL', 'F', 'carol12@adventure-works.com', '10000.00', '5', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Postfach 66 16 11', 'NULL', '1 (11) 500 555-0126', '2013-03-18', '0-1 Miles'], ['12829', '178', 'AW00012829', 'NULL', 'Micah', 'NULL', 'Li', '0', '1970-01-11', 'S', 'NULL', 'M', 'micah13@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Zur Lindung 609', 'NULL', '1 (11) 500 555-0164', '2012-12-08', '0-1 Miles'], ['12830', '223', 'AW00012830', 'NULL', 'Russell', 'NULL', 'Raje', '0', '1970-06-23', 'S', 'NULL', 'M', 'russell16@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '10, rue de la Centenaire', 'NULL', '1 (11) 500 555-0173', '2011-11-10', '0-1 Miles'], ['12831', '173', 'AW00012831', 'NULL', 'Kathryn', 'H', 'Lal', '0', '1975-01-12', 'S', 'NULL', 'F', 'kathryn7@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Kampstr 257', 'NULL', '1 (11) 500 555-0121', '2013-11-15', '0-1 Miles'], ['12832', '163', 'AW00012832', 'NULL', 'Douglas', 'J', 'Prasad', '0', '1969-10-19', 'S', 'NULL', 'M', 'douglas13@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Platz des Landtags 505', 'NULL', '1 (11) 500 555-0153', '2013-03-23', '0-1 Miles'], ['12833', '126', 'AW00012833', 'NULL', 'Sheena', 'NULL', 'Goel', '0', '1975-01-13', 'S', 'NULL', 'F', 'sheena18@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Postfach 55 00 00', 'NULL', '1 (11) 500 555-0145', '2012-12-24', '0-1 Miles'], ['12834', '201', 'AW00012834', 'NULL', 'Kelsey', 'NULL', 'Xie', '0', '1975-03-10', 'M', 'NULL', 'F', 'kelsey2@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '43, rue Faubourg St Antoine', 'NULL', '1 (11) 500 555-0185', '2011-11-18', '0-1 Miles'], ['12835', '121', 'AW00012835', 'NULL', 'Karl', 'L', 'Yuan', '0', '1969-03-21', 'S', 'NULL', 'M', 'karl7@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Curieweg 294', 'NULL', '1 (11) 500 555-0131', '2013-06-02', '0-1 Miles'], ['12836', '236', 'AW00012836', 'NULL', 'Rodney', 'NULL', 'Munoz', '0', '1968-08-30', 'S', 'NULL', 'M', 'rodney3@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '6883 Freda Drive', 'NULL', '1 (11) 500 555-0114', '2013-06-10', '0-1 Miles'], ['12837', '120', 'AW00012837', 'NULL', 'Nicole', 'K', 'Anderson', '0', '1939-03-27', 'M', 'NULL', 'F', 'nicole10@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Nonnendamm 22', 'NULL', '1 (11) 500 555-0199', '2013-02-10', '1-2 Miles'], ['12838', '171', 'AW00012838', 'NULL', 'Ralph', 'NULL', 'Beck', '0', '1971-11-08', 'M', 'NULL', 'M', 'ralph0@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', 'Buergermeister-ulrich-str 500', 'NULL', '1 (11) 500 555-0160', '2013-03-30', '0-1 Miles'], ['12839', '264', 'AW00012839', 'NULL', 'Dominique', 'NULL', 'Fernandez', '0', '1971-12-16', 'S', 'NULL', 'F', 'dominique13@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '1708 Shadow Lane', 'NULL', '1 (11) 500 555-0183', '2012-10-10', '0-1 Miles'], ['12840', '238', 'AW00012840', 'NULL', 'Naomi', 'NULL', 'Sanz', '0', '1945-08-08', 'M', 'NULL', 'F', 'naomi20@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1013 Holiday Hills Dr.', 'NULL', '1 (11) 500 555-0166', '2013-02-26', '0-1 Miles'], ['12841', '211', 'AW00012841', 'NULL', 'Yolanda', 'NULL', 'Xie', '0', '1976-08-20', 'S', 'NULL', 'F', 'yolanda3@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '74, rue de Terre Neuve', 'NULL', '1 (11) 500 555-0135', '2011-11-26', '0-1 Miles'], ['12842', '197', 'AW00012842', 'NULL', 'Kelvin', 'NULL', 'Becker', '0', '1981-08-30', 'S', 'NULL', 'M', 'kelvin17@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '157, rue de l´Esplanade', 'NULL', '1 (11) 500 555-0124', '2013-09-25', '0-1 Miles'], ['12843', '182', 'AW00012843', 'NULL', 'Summer', 'K', 'Smith', '0', '1971-01-30', 'S', 'NULL', 'F', 'summer7@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '15, rue de Terre Neuve', 'NULL', '1 (11) 500 555-0117', '2011-11-14', '0-1 Miles'], ['12844', '170', 'AW00012844', 'NULL', 'Gerald', 'NULL', 'Gonzalez', '0', '1970-09-25', 'M', 'NULL', 'M', 'gerald4@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Auf dem Ufer 764', 'NULL', '1 (11) 500 555-0137', '2013-03-25', '0-1 Miles'], ['12845', '161', 'AW00012845', 'NULL', 'Angela', 'G', 'Torres', '0', '1976-11-24', 'M', 'NULL', 'F', 'angela30@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Zimmerstr 466', 'NULL', '1 (11) 500 555-0187', '2013-05-22', '0-1 Miles'], ['12846', '155', 'AW00012846', 'NULL', 'Bridget', 'L', 'Nara', '0', '1970-01-03', 'S', 'NULL', 'F', 'bridget18@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Winter der Böck 8', 'NULL', '1 (11) 500 555-0120', '2012-12-21', '0-1 Miles'], ['12847', '241', 'AW00012847', 'NULL', 'Colin', 'P', 'Chander', '0', '1970-01-14', 'M', 'NULL', 'M', 'colin39@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '645 Dublin Court', 'NULL', '1 (11) 500 555-0184', '2013-06-26', '0-1 Miles'], ['12848', '266', 'AW00012848', 'NULL', 'Brittney', 'A', 'Lu', '0', '1970-05-02', 'M', 'NULL', 'F', 'brittney10@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5511 Cape Cod Way', 'NULL', '1 (11) 500 555-0116', '2013-05-29', '0-1 Miles'], ['12849', '221', 'AW00012849', 'NULL', 'Adam', 'NULL', 'Baker', '0', '1974-02-22', 'S', 'NULL', 'M', 'adam38@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6, rue du Départ', 'NULL', '1 (11) 500 555-0118', '2011-11-11', '0-1 Miles'], ['12850', '118', 'AW00012850', 'NULL', 'Johnny', 'S', 'Raji', '0', '1982-12-04', 'S', 'NULL', 'M', 'johnny22@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Galeriestr 2829', 'NULL', '1 (11) 500 555-0145', '2012-12-27', '1-2 Miles'], ['12851', '183', 'AW00012851', 'NULL', 'Brandy', 'S', 'Sai', '0', '1985-03-25', 'S', 'NULL', 'F', 'brandy1@adventure-works.com', '20000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '151, rue Jean Mermoz', 'NULL', '1 (11) 500 555-0175', '2013-11-26', '0-1 Miles'], ['12852', '176', 'AW00012852', 'NULL', 'Teresa', 'L', 'Carlson', '0', '1984-08-03', 'S', 'NULL', 'F', 'teresa19@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Westheimer Straße 6', 'NULL', '1 (11) 500 555-0159', '2012-12-05', '0-1 Miles'], ['12853', '239', 'AW00012853', 'NULL', 'Evelyn', 'NULL', 'Malhotra', '0', '1969-02-21', 'M', 'NULL', 'F', 'evelyn5@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6820 Willow Pass Dr', 'NULL', '1 (11) 500 555-0134', '2012-10-15', '0-1 Miles'], ['12854', '242', 'AW00012854', 'NULL', 'Reginald', 'F', 'Romero', '0', '1968-11-19', 'M', 'NULL', 'M', 'reginald16@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3462 Melody', 'NULL', '1 (11) 500 555-0188', '2012-10-01', '0-1 Miles'], ['12855', '243', 'AW00012855', 'NULL', 'Philip', 'J', 'Diaz', '0', '1968-08-02', 'M', 'NULL', 'M', 'philip2@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7158 Waterview Place', 'NULL', '1 (11) 500 555-0148', '2012-10-06', '0-1 Miles'], ['12856', '254', 'AW00012856', 'NULL', 'Rosa', 'NULL', 'Lin', '0', '1979-10-01', 'M', 'NULL', 'F', 'rosa8@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '544 Magda Way', 'NULL', '1 (11) 500 555-0161', '2012-10-05', '0-1 Miles'], ['12857', '272', 'AW00012857', 'NULL', 'Raul', 'B', 'Kumar', '0', '1969-02-13', 'M', 'NULL', 'M', 'raul7@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7942 Palms', 'NULL', '1 (11) 500 555-0154', '2012-09-29', '0-1 Miles'], ['12858', '125', 'AW00012858', 'NULL', 'Adriana', 'NULL', 'Mehta', '0', '1967-10-19', 'S', 'NULL', 'F', 'adriana15@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Altendorfer Straße 390', 'NULL', '1 (11) 500 555-0116', '2012-12-16', '2-5 Miles'], ['12859', '231', 'AW00012859', 'NULL', 'Evelyn', 'L', 'Gonzalez', '0', '1968-02-14', 'S', 'NULL', 'F', 'evelyn19@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8967 Hamilton Ave.', 'NULL', '1 (11) 500 555-0159', '2012-10-02', '2-5 Miles'], ['12860', '275', 'AW00012860', 'NULL', 'Jillian', 'NULL', 'Prasad', '0', '1973-03-21', 'M', 'NULL', 'F', 'jillian10@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4333 Elmonte Dr.', 'NULL', '1 (11) 500 555-0162', '2012-11-16', '0-1 Miles'], ['12861', '256', 'AW00012861', 'NULL', 'Robyn', 'M', 'Jimenez', '0', '1973-03-21', 'M', 'NULL', 'F', 'robyn4@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '170 Minert Rd.', 'NULL', '1 (11) 500 555-0110', '2012-11-19', '0-1 Miles'], ['12862', '222', 'AW00012862', 'NULL', 'Melinda', 'L', 'Ortega', '0', '1983-08-11', 'S', 'NULL', 'F', 'melinda16@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2, rue Henri Gagnon', 'NULL', '1 (11) 500 555-0128', '2013-10-06', '0-1 Miles'], ['12863', '160', 'AW00012863', 'NULL', 'Caleb', 'NULL', 'Zhang', '0', '1984-02-22', 'S', 'NULL', 'M', 'caleb20@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Auf Der Steige 77', 'NULL', '1 (11) 500 555-0177', '2012-12-08', '0-1 Miles'], ['12864', '231', 'AW00012864', 'NULL', 'Michelle', 'P', 'Townsend', '0', '1983-10-31', 'S', 'NULL', 'F', 'michelle6@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5109 C Northwood Dr', 'NULL', '1 (11) 500 555-0165', '2013-02-25', '0-1 Miles'], ['12865', '266', 'AW00012865', 'NULL', 'Brandy', 'L', 'Martinez', '0', '1981-09-21', 'M', 'NULL', 'F', 'brandy14@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '5195 Graham Street', 'NULL', '1 (11) 500 555-0177', '2013-04-05', '2-5 Miles'], ['12866', '195', 'AW00012866', 'NULL', 'Janelle', 'NULL', 'Fernandez', '0', '1980-12-15', 'S', 'NULL', 'F', 'janelle12@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '100, boulevard d´Albi', 'NULL', '1 (11) 500 555-0173', '2011-11-11', '0-1 Miles'], ['12867', '160', 'AW00012867', 'NULL', 'Laura', 'J', 'Ye', '0', '1981-01-16', 'S', 'NULL', 'F', 'laura16@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Dunckerstr 55', 'NULL', '1 (11) 500 555-0196', '2012-12-11', '0-1 Miles'], ['12868', '195', 'AW00012868', 'NULL', 'Julie', 'B', 'Anand', '0', '1980-11-09', 'S', 'NULL', 'F', 'julie23@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '66, place de la République', 'NULL', '1 (11) 500 555-0151', '2013-03-19', '5-10 Miles'], ['12869', '191', 'AW00012869', 'NULL', 'Alisha', 'A', 'Tang', '0', '1981-09-22', 'M', 'NULL', 'F', 'alisha28@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '55, rue de la Cavalerie', 'NULL', '1 (11) 500 555-0137', '2013-02-13', '2-5 Miles'], ['12870', '154', 'AW00012870', 'NULL', 'Tyrone', 'G', 'Munoz', '0', '1982-03-19', 'S', 'NULL', 'M', 'tyrone7@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Alderweg 1845', 'NULL', '1 (11) 500 555-0122', '2013-12-13', '5-10 Miles'], ['12871', '233', 'AW00012871', 'NULL', 'Leah', 'NULL', 'Li', '0', '1982-04-05', 'S', 'NULL', 'F', 'leah2@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '9405 Curletto Dr.', 'NULL', '1 (11) 500 555-0122', '2013-11-09', '2-5 Miles'], ['12872', '117', 'AW00012872', 'NULL', 'Olivia', 'C', 'Hughes', '0', '1980-11-07', 'S', 'NULL', 'F', 'olivia57@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Hochstr 8111', 'NULL', '1 (11) 500 555-0156', '2013-11-28', '0-1 Miles'], ['12873', '250', 'AW00012873', 'NULL', 'Mandar', 'NULL', 'Samant', '0', '1980-03-17', 'S', 'NULL', 'F', 'mandar2@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '1005 Valley Oak Plaza', 'NULL', '129-555-0100', '2012-11-06', '0-1 Miles'], ['12874', '254', 'AW00012874', 'NULL', 'Kirk', 'J', 'Nason', '0', '1980-03-04', 'S', 'NULL', 'F', 'kirk3@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '1246 Amaryl Drive', 'NULL', '1 (11) 500 555-0190', '2012-11-13', '0-1 Miles'], ['12875', '609', 'AW00012875', 'NULL', 'Brianna', 'L', 'Ross', '0', '1964-11-11', 'S', 'NULL', 'F', 'brianna50@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1666 Edward Avenue', 'NULL', '149-555-0118', '2013-12-12', '1-2 Miles'], ['12876', '348', 'AW00012876', 'NULL', 'Blake', 'E', 'Robinson', '0', '1965-01-18', 'M', 'NULL', 'M', 'blake18@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3768 Door Way', 'NULL', '512-555-0149', '2014-01-12', '1-2 Miles'], ['12877', '638', 'AW00012877', 'NULL', 'Alexander', 'L', 'Williams', '0', '1964-11-01', 'M', 'NULL', 'M', 'alexander4@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7169 Jane Ct.', 'NULL', '133-555-0141', '2013-06-13', '1-2 Miles'], ['12878', '300', 'AW00012878', 'NULL', 'Gilbert', 'L', 'Sun', '0', '1978-03-14', 'M', 'NULL', 'M', 'gilbert10@adventure-works.com', '40000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '7264 Ambush Dr..', 'NULL', '131-555-0171', '2013-02-23', '10+ Miles'], ['12879', '338', 'AW00012879', 'NULL', 'Elijah', 'NULL', 'Nelson', '0', '1983-07-13', 'M', 'NULL', 'M', 'elijah37@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5841 Longview Rd.', 'NULL', '185-555-0178', '2013-12-22', '0-1 Miles'], ['12880', '60', 'AW00012880', 'NULL', 'Luis', 'NULL', 'Hayes', '0', '1979-03-11', 'S', 'NULL', 'M', 'luis22@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '344, rue Descartes', 'NULL', '682-555-0116', '2013-05-13', '1-2 Miles'], ['12881', '301', 'AW00012881', 'NULL', 'Isabella', 'A', 'Edwards', '0', '1979-05-14', 'S', 'NULL', 'F', 'isabella34@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5438 Sharon Place', 'NULL', '674-555-0178', '2011-12-16', '0-1 Miles'], ['12882', '358', 'AW00012882', 'NULL', 'Eduardo', 'NULL', 'Allen', '0', '1978-09-24', 'M', 'NULL', 'M', 'eduardo24@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4497 Near Dr', 'NULL', '518-555-0162', '2011-12-18', '0-1 Miles'], ['12883', '312', 'AW00012883', 'NULL', 'Stephanie', 'M', 'Bailey', '0', '1977-05-05', 'S', 'NULL', 'F', 'stephanie12@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '174 Kim Court', 'NULL', '278-555-0183', '2011-12-13', '1-2 Miles'], ['12884', '385', 'AW00012884', 'NULL', 'Megan', 'A', 'Williams', '0', '1976-11-08', 'S', 'NULL', 'F', 'megan5@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7348 Quail Court', 'NULL', '124-555-0124', '2011-12-04', '1-2 Miles'], ['12885', '360', 'AW00012885', 'NULL', 'Jonathan', 'R', 'Anderson', '0', '1982-08-11', 'M', 'NULL', 'M', 'jonathan62@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8673 Mt. Wilson Way', 'NULL', '470-555-0179', '2011-12-10', '0-1 Miles'], ['12886', '359', 'AW00012886', 'NULL', 'Jocelyn', 'NULL', 'Long', '0', '1982-10-30', 'S', 'NULL', 'F', 'jocelyn10@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3319 North 90th St', 'NULL', '644-555-0177', '2011-12-17', '1-2 Miles'], ['12887', '298', 'AW00012887', 'NULL', 'Brendan', 'L', 'Pal', '0', '1976-08-12', 'M', 'NULL', 'M', 'brendan10@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2673 Peterson Place', 'NULL', '810-555-0165', '2013-10-20', '1-2 Miles'], ['12888', '542', 'AW00012888', 'NULL', 'Melissa', 'K', 'Barnes', '0', '1982-10-05', 'M', 'NULL', 'F', 'melissa22@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '927 Parkside Dr', 'NULL', '358-555-0111', '2013-10-13', '1-2 Miles'], ['12889', '547', 'AW00012889', 'NULL', 'James', 'NULL', 'Adams', '0', '1977-05-26', 'M', 'NULL', 'M', 'james66@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1086 Clayton Road', 'NULL', '331-555-0189', '2013-10-01', '1-2 Miles'], ['12890', '347', 'AW00012890', 'NULL', 'Steven', 'G', 'Thorpe', '0', '1977-01-15', 'M', 'NULL', 'M', 'steven8@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6186 Berry Court', 'NULL', '410-555-0151', '2014-01-05', '0-1 Miles'], ['12891', '546', 'AW00012891', 'NULL', 'Kaylee', 'T', 'King', '0', '1976-10-13', 'M', 'NULL', 'F', 'kaylee42@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1162 Thunderbird Drive', 'NULL', '775-555-0122', '2013-12-17', '0-1 Miles'], ['12892', '62', 'AW00012892', 'NULL', 'Brian', 'NULL', 'Peterson', '0', '1977-10-08', 'M', 'NULL', 'M', 'brian17@adventure-works.com', '40000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1284 Poppy Pl.', 'NULL', '427-555-0137', '2013-02-14', '1-2 Miles'], ['12893', '355', 'AW00012893', 'NULL', 'Brittany', 'R', 'Foster', '0', '1977-10-02', 'M', 'NULL', 'F', 'brittany14@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2546 Woodchuck Pl', 'NULL', '442-555-0178', '2013-07-21', '2-5 Miles'], ['12894', '368', 'AW00012894', 'NULL', 'Natalie', 'NULL', 'Walker', '0', '1978-02-04', 'M', 'NULL', 'F', 'natalie89@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1644 Alicante Court', 'NULL', '499-555-0110', '2013-07-15', '0-1 Miles'], ['12895', '43', 'AW00012895', 'NULL', 'Destiny', 'NULL', 'Anderson', '0', '1975-10-04', 'M', 'NULL', 'F', 'destiny10@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '70 Tobi Drive', 'NULL', '868-555-0139', '2013-02-16', '0-1 Miles'], ['12896', '539', 'AW00012896', 'NULL', 'Victoria', 'V', 'Wood', '0', '1981-07-12', 'M', 'NULL', 'F', 'victoria50@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '372 Canyon Creek Drive', 'NULL', '656-555-0132', '2013-03-30', '0-1 Miles'], ['12897', '301', 'AW00012897', 'NULL', 'Alyssa', 'NULL', 'Wilson', '0', '1975-07-06', 'M', 'NULL', 'F', 'alyssa6@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2247 Lemonwood Drive', 'NULL', '426-555-0134', '2013-09-05', '0-1 Miles'], ['12898', '301', 'AW00012898', 'NULL', 'Madeline', 'NULL', 'Campbell', '0', '1976-03-08', 'M', 'NULL', 'F', 'madeline6@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9790 Fruitwood Drive', 'NULL', '846-555-0142', '2011-12-10', '2-5 Miles'], ['12899', '325', 'AW00012899', 'NULL', 'Ana', 'T', 'Ross', '0', '1976-01-08', 'M', 'NULL', 'F', 'ana4@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1059 Stonewood Ct', 'NULL', '532-555-0185', '2013-12-17', '2-5 Miles'], ['12900', '352', 'AW00012900', 'NULL', 'Carlos', 'NULL', 'Ward', '0', '1975-12-03', 'M', 'NULL', 'M', 'carlos14@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1372 Quartermaster', 'NULL', '548-555-0166', '2013-11-19', '2-5 Miles'], ['12901', '552', 'AW00012901', 'NULL', 'Robert', 'Q', 'Adams', '0', '1974-08-12', 'M', 'NULL', 'M', 'robert57@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1519 Sheffield Place', 'NULL', '529-555-0126', '2011-12-05', '2-5 Miles'], ['12902', '68', 'AW00012902', 'NULL', 'Julia', 'L', 'Stewart', '0', '1974-10-20', 'S', 'NULL', 'F', 'julia46@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4139 Bailey Road', 'NULL', '708-555-0197', '2013-07-23', '2-5 Miles'], ['12903', '49', 'AW00012903', 'Mr.', 'John', 'J', 'Sandstone', '0', '1980-09-28', 'S', 'NULL', 'F', 'john27@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2286 Sunset Way', 'NULL', '114-555-0100', '2013-07-08', '2-5 Miles'], ['12904', '307', 'AW00012904', 'NULL', 'Thomas', 'NULL', 'Jai', '0', '1980-02-16', 'M', 'NULL', 'M', 'thomas35@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2743 Veale Ave', 'NULL', '906-555-0113', '2011-12-22', '2-5 Miles'], ['12905', '626', 'AW00012905', 'NULL', 'Alexandra', 'J', 'Sanchez', '0', '1975-03-10', 'M', 'NULL', 'F', 'alexandra2@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3758 Springwood Way', 'NULL', '701-555-0143', '2013-08-14', '0-1 Miles'], ['12906', '612', 'AW00012906', 'NULL', 'Philip', 'NULL', 'Ramos', '0', '1977-02-15', 'M', 'NULL', 'M', 'philip16@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7492 Duckhorn Court', 'NULL', '145-555-0145', '2013-02-16', '2-5 Miles'], ['12907', '623', 'AW00012907', 'NULL', 'Julia', 'L', 'Bryant', '0', '1977-05-22', 'M', 'NULL', 'F', 'julia84@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8895 Margo Dr.', 'NULL', '345-555-0135', '2013-03-19', '0-1 Miles'], ['12908', '635', 'AW00012908', 'NULL', 'Tyler', 'A', 'Clark', '0', '1976-09-08', 'M', 'NULL', 'M', 'tyler19@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1117 Diablo View Road', 'NULL', '587-555-0118', '2013-03-06', '2-5 Miles'], ['12909', '299', 'AW00012909', 'NULL', 'Kelsey', 'NULL', 'Shan', '0', '1982-05-21', 'M', 'NULL', 'F', 'kelsey10@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5291 Juliet Court', 'NULL', '369-555-0128', '2013-10-18', '2-5 Miles'], ['12910', '299', 'AW00012910', 'NULL', 'Robert', 'D', 'Brown', '0', '1976-08-04', 'M', 'NULL', 'M', 'robert62@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2497 Hazel Drive', 'NULL', '171-555-0160', '2013-10-06', '0-1 Miles'], ['12911', '302', 'AW00012911', 'NULL', 'Sebastian', 'P', 'Rogers', '0', '1986-04-21', 'S', 'NULL', 'M', 'sebastian18@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9979 Sundance Dr.', 'NULL', '385-555-0192', '2014-01-06', '2-5 Miles'], ['12912', '542', 'AW00012912', 'NULL', 'Brianna', 'P', 'Morris', '0', '1973-09-22', 'S', 'NULL', 'F', 'brianna26@adventure-works.com', '40000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '9605 Pheasant Circle', 'NULL', '926-555-0144', '2011-12-27', '10+ Miles'], ['12913', '635', 'AW00012913', 'NULL', 'Benjamin', 'D', 'Moore', '0', '1979-02-19', 'M', 'NULL', 'M', 'benjamin42@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8065 Sand Point Road', 'NULL', '145-555-0170', '2011-12-25', '2-5 Miles'], ['12914', '60', 'AW00012914', 'NULL', 'Jill', 'NULL', 'Miller', '0', '1983-10-05', 'S', 'NULL', 'F', 'jill4@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9425 Calle Verde Dr.', 'NULL', '788-555-0113', '2013-07-06', '0-1 Miles'], ['12915', '633', 'AW00012915', 'NULL', 'Kaitlyn', 'T', 'Alexander', '0', '1972-09-16', 'S', 'NULL', 'F', 'kaitlyn86@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5826 Norman Avenue', 'NULL', '461-555-0157', '2011-12-10', '2-5 Miles'], ['12916', '60', 'AW00012916', 'NULL', 'Natalie', 'J', 'Ross', '0', '1981-05-19', 'M', 'NULL', 'F', 'natalie26@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4019 Shadow Lane', 'NULL', '184-555-0116', '2013-05-10', '2-5 Miles'], ['12917', '553', 'AW00012917', 'NULL', 'Vanessa', 'M', 'Russell', '0', '1975-08-30', 'M', 'NULL', 'F', 'vanessa20@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2260 Discovery Bay', 'NULL', '874-555-0157', '2011-12-21', '0-1 Miles'], ['12918', '369', 'AW00012918', 'NULL', 'Brooke', 'NULL', 'Murphy', '0', '1981-02-09', 'M', 'NULL', 'F', 'brooke13@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '182 Perry Way', 'NULL', '125-555-0164', '2012-01-03', '0-1 Miles'], ['12919', '51', 'AW00012919', 'NULL', 'Carlos', 'NULL', 'Hill', '0', '1973-01-06', 'S', 'NULL', 'M', 'carlos39@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4200 Greenbrook Dr.', 'NULL', '307-555-0171', '2013-02-12', '0-1 Miles'], ['12920', '614', 'AW00012920', 'NULL', 'Kelly', 'L', 'Henderson', '0', '1973-03-12', 'S', 'NULL', 'F', 'kelly9@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '65 Ayers Rd', 'NULL', '757-555-0160', '2013-06-17', '0-1 Miles'], ['12921', '329', 'AW00012921', 'NULL', 'Wyatt', 'M', 'Lee', '0', '1971-12-31', 'S', 'NULL', 'M', 'wyatt23@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '135 Grant Street', 'NULL', '229-555-0188', '2012-01-24', '0-1 Miles'], ['12922', '352', 'AW00012922', 'NULL', 'Jennifer', 'E', 'Sanders', '0', '1982-09-09', 'S', 'NULL', 'F', 'jennifer74@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6488 Dublin Blvd.', 'NULL', '670-555-0184', '2012-01-17', '2-5 Miles'], ['12923', '339', 'AW00012923', 'NULL', 'Fernando', 'L', 'Wright', '0', '1972-02-18', 'S', 'NULL', 'M', 'fernando26@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9019 Class Avenue', 'NULL', '635-555-0185', '2012-01-16', '2-5 Miles'], ['12924', '300', 'AW00012924', 'NULL', 'Devon', 'L', 'Chande', '0', '1972-04-07', 'M', 'NULL', 'M', 'devon12@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6977 Evergreen Ct.', 'NULL', '459-555-0110', '2013-11-01', '2-5 Miles'], ['12925', '301', 'AW00012925', 'NULL', 'Mackenzie', 'NULL', 'Blue', '0', '1977-08-09', 'M', 'NULL', 'F', 'mackenzie12@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4363 Galindo Street', 'NULL', '954-555-0112', '2013-03-15', '2-5 Miles'], ['12926', '334', 'AW00012926', 'NULL', 'Sara', 'M', 'Murphy', '0', '1972-01-15', 'M', 'NULL', 'F', 'sara16@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9967 Stroer Lane', 'NULL', '373-555-0178', '2012-01-22', '0-1 Miles'], ['12927', '298', 'AW00012927', 'NULL', 'Savannah', 'NULL', 'Sanchez', '0', '1971-12-11', 'M', 'NULL', 'F', 'savannah25@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '365 Shirley Drive', 'NULL', '116-555-0180', '2013-04-27', '2-5 Miles'], ['12928', '55', 'AW00012928', 'NULL', 'Carol', 'C', 'Wright', '0', '1975-05-10', 'M', 'NULL', 'F', 'carol15@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '872 Patterson Blvd.', 'NULL', '117-555-0157', '2013-03-19', '0-1 Miles'], ['12929', '539', 'AW00012929', 'NULL', 'Vanessa', 'NULL', 'Bryant', '0', '1974-09-02', 'M', 'NULL', 'F', 'vanessa19@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4650 Peachwillow', 'NULL', '571-555-0127', '2011-12-31', '0-1 Miles'], ['12930', '616', 'AW00012930', 'NULL', 'Grace', 'L', 'Harris', '0', '1974-11-13', 'M', 'NULL', 'F', 'grace13@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1898 Pine Tree Drive', 'NULL', '708-555-0111', '2012-01-11', '2-5 Miles'], ['12931', '307', 'AW00012931', 'NULL', 'Ann', 'M', 'Fernandez', '0', '1975-04-04', 'S', 'NULL', 'F', 'ann20@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '9892 N. Spoonwood Ct.', 'NULL', '145-555-0155', '2013-02-04', '2-5 Miles'], ['12932', '310', 'AW00012932', 'NULL', 'Tyler', 'NULL', 'Johnson', '0', '1975-05-10', 'M', 'NULL', 'M', 'tyler4@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '3', '375 Hillview Drive', 'NULL', '723-555-0125', '2013-04-26', '10+ Miles'], ['12933', '310', 'AW00012933', 'NULL', 'Jonathan', 'NULL', 'Hall', '0', '1980-02-07', 'M', 'NULL', 'M', 'jonathan52@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '3', '3919 Bayview Circle', 'NULL', '973-555-0119', '2013-06-22', '10+ Miles'], ['12934', '336', 'AW00012934', 'NULL', 'Jason', 'A', 'Foster', '0', '1980-11-08', 'S', 'NULL', 'M', 'jason13@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1472 South Creek Drive', 'NULL', '779-555-0194', '2012-01-07', '0-1 Miles'], ['12935', '345', 'AW00012935', 'NULL', 'Robert', 'L', 'Hill', '0', '1980-04-30', 'M', 'NULL', 'M', 'robert54@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3830 York Dr.', 'NULL', '652-555-0153', '2012-01-19', '0-1 Miles'], ['12936', '49', 'AW00012936', 'NULL', 'Renee', 'C', 'Moreno', '0', '1970-09-24', 'S', 'NULL', 'F', 'renee6@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6743 E. Leland', 'NULL', '641-555-0114', '2013-09-25', '2-5 Miles'], ['12937', '637', 'AW00012937', 'NULL', 'Megan', 'NULL', 'Wilson', '0', '1976-01-01', 'S', 'NULL', 'F', 'megan10@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9444 Camelback Ct.', 'NULL', '773-555-0164', '2013-08-04', '0-1 Miles'], ['12938', '641', 'AW00012938', 'NULL', 'Edward', 'N', 'Parker', '0', '1970-08-08', 'S', 'NULL', 'M', 'edward19@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '2693 Dance Court', 'NULL', '174-555-0127', '2013-02-19', '0-1 Miles'], ['12939', '64', 'AW00012939', 'NULL', 'Eduardo', 'M', 'Parker', '0', '1970-09-30', 'S', 'NULL', 'M', 'eduardo41@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9068 Bohon Circle', 'NULL', '131-555-0192', '2013-03-22', '2-5 Miles'], ['12940', '369', 'AW00012940', 'NULL', 'Steven', 'NULL', 'Rogers', '0', '1970-09-21', 'M', 'NULL', 'M', 'steven29@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7202 Sun View Court', 'NULL', '120-555-0163', '2013-06-12', '2-5 Miles'], ['12941', '626', 'AW00012941', 'NULL', 'Maria', 'NULL', 'Morgan', '0', '1976-05-06', 'S', 'NULL', 'F', 'maria6@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2187 S. Rising Ave', 'NULL', '997-555-0135', '2012-01-14', '2-5 Miles'], ['12942', '315', 'AW00012942', 'NULL', 'Morgan', 'NULL', 'Harris', '0', '1976-11-11', 'S', 'NULL', 'F', 'morgan35@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7384 Ironwood Drive.', 'NULL', '667-555-0172', '2012-01-10', '2-5 Miles'], ['12943', '326', 'AW00012943', 'NULL', 'Caleb', 'NULL', 'Perez', '0', '1970-08-17', 'S', 'NULL', 'M', 'caleb32@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '5154 Brannan Pl.', 'NULL', '178-555-0156', '2013-04-25', '10+ Miles'], ['12944', '49', 'AW00012944', 'NULL', 'Jose', 'NULL', 'Jai', '0', '1971-01-18', 'M', 'NULL', 'M', 'jose26@adventure-works.com', '80000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2460 Tanager Court', 'NULL', '617-555-0182', '2013-03-26', '2-5 Miles'], ['12945', '54', 'AW00012945', 'NULL', 'Jessica', 'L', 'Bailey', '0', '1970-09-21', 'M', 'NULL', 'F', 'jessica9@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '4453 Bannock Ct.', 'NULL', '601-555-0134', '2013-05-17', '2-5 Miles'], ['12946', '633', 'AW00012946', 'NULL', 'Seth', 'M', 'Allen', '0', '1971-06-03', 'M', 'NULL', 'M', 'seth24@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '3079 Ricardo', 'NULL', '198-555-0172', '2013-09-17', '2-5 Miles'], ['12947', '298', 'AW00012947', 'NULL', 'Isaiah', 'NULL', 'Sanchez', '0', '1969-08-16', 'S', 'NULL', 'M', 'isaiah17@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5340 Greenwood Circle', 'NULL', '100-555-0137', '2011-12-30', '2-5 Miles'], ['12948', '325', 'AW00012948', 'NULL', 'Adam', 'K', 'Kumar', '0', '1975-09-29', 'M', 'NULL', 'M', 'adam24@adventure-works.com', '50000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6975 Ridgewood Drive', 'NULL', '592-555-0113', '2013-02-14', '2-5 Miles'], ['12949', '548', 'AW00012949', 'NULL', 'Morgan', 'S', 'Rivera', '0', '1970-06-18', 'S', 'NULL', 'F', 'morgan55@adventure-works.com', '50000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '1127 Wellington Avenue', 'NULL', '164-555-0143', '2012-01-10', '5-10 Miles'], ['12950', '545', 'AW00012950', 'NULL', 'Mary', 'D', 'Adams', '0', '1970-04-14', 'S', 'NULL', 'F', 'mary29@adventure-works.com', '50000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '7971 Calle Verde Drive', 'NULL', '388-555-0172', '2012-01-26', '5-10 Miles'], ['12951', '552', 'AW00012951', 'NULL', 'Blake', 'NULL', 'Simmons', '0', '1974-12-02', 'S', 'NULL', 'M', 'blake63@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1680 I St.', 'NULL', '639-555-0126', '2013-03-29', '0-1 Miles'], ['12952', '335', 'AW00012952', 'NULL', 'Jennifer', 'W', 'Hughes', '0', '1979-12-12', 'S', 'NULL', 'F', 'jennifer85@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9067 Argonne Drive', 'NULL', '781-555-0160', '2013-08-13', '0-1 Miles'], ['12953', '641', 'AW00012953', 'NULL', 'Catherine', 'A', 'Cooper', '0', '1969-05-11', 'S', 'NULL', 'F', 'catherine15@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '174 MacArthur Avenue', 'NULL', '450-555-0149', '2013-04-18', '2-5 Miles'], ['12954', '612', 'AW00012954', 'NULL', 'Pedro', 'J', 'Diaz', '0', '1968-02-19', 'M', 'NULL', 'M', 'pedro23@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5619 Gatter Court', 'NULL', '863-555-0148', '2013-05-18', '0-1 Miles'], ['12955', '302', 'AW00012955', 'NULL', 'Theresa', 'NULL', 'Hernandez', '0', '1968-03-09', 'S', 'NULL', 'F', 'theresa0@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '618 Oak Street', 'NULL', '783-555-0197', '2013-11-18', '2-5 Miles'], ['12956', '525', 'AW00012956', 'NULL', 'Marshall', 'NULL', 'Sun', '0', '1973-03-07', 'S', 'NULL', 'M', 'marshall12@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1044 San Carlos', 'NULL', '776-555-0182', '2013-06-29', '2-5 Miles'], ['12957', '372', 'AW00012957', 'NULL', 'Isabella', 'NULL', 'Lopez', '0', '1968-02-23', 'S', 'NULL', 'F', 'isabella52@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1259 Ygnacio Valley Road', 'NULL', '496-555-0194', '2013-05-15', '0-1 Miles'], ['12958', '641', 'AW00012958', 'NULL', 'Jennifer', 'W', 'Campbell', '0', '1968-01-24', 'S', 'NULL', 'F', 'jennifer9@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4589 Mori Court', 'NULL', '537-555-0144', '2013-09-22', '2-5 Miles'], ['12959', '63', 'AW00012959', 'NULL', 'Sydney', 'NULL', 'Carter', '0', '1973-05-20', 'S', 'NULL', 'F', 'sydney51@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '873 Winding Lane', 'NULL', '338-555-0183', '2013-07-09', '2-5 Miles'], ['12960', '374', 'AW00012960', 'NULL', 'Ashley', 'L', 'Lewis', '0', '1973-11-08', 'S', 'NULL', 'F', 'ashley22@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9557 Tara St.', 'NULL', '690-555-0133', '2013-04-06', '2-5 Miles'], ['12961', '536', 'AW00012961', 'NULL', 'Kimberly', 'NULL', 'Murphy', '0', '1973-05-11', 'M', 'NULL', 'F', 'kimberly17@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '222 Dancing Road', 'NULL', '668-555-0114', '2013-11-04', '2-5 Miles'], ['12962', '345', 'AW00012962', 'NULL', 'Jennifer', 'NULL', 'Edwards', '0', '1973-04-18', 'M', 'NULL', 'F', 'jennifer5@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9242 St George Dr.', '# 225', '226-555-0117', '2013-10-25', '0-1 Miles'], ['12963', '546', 'AW00012963', 'NULL', 'Marcus', 'NULL', 'Anderson', '0', '1979-04-20', 'M', 'NULL', 'M', 'marcus10@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '177 11th Ave', 'NULL', '582-555-0196', '2013-12-08', '2-5 Miles'], ['12964', '66', 'AW00012964', 'NULL', 'Xavier', 'NULL', 'Russell', '0', '1973-05-10', 'M', 'NULL', 'M', 'xavier60@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8858 Via Doble', 'NULL', '292-555-0140', '2013-04-13', '0-1 Miles'], ['12965', '343', 'AW00012965', 'NULL', 'Cody', 'A', 'Bell', '0', '1967-03-19', 'M', 'NULL', 'M', 'cody14@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '89 Ancona Ct.', 'NULL', '416-555-0119', '2013-02-04', '10+ Miles'], ['12966', '300', 'AW00012966', 'NULL', 'Dennis', 'E', 'Zhu', '0', '1966-09-06', 'M', 'NULL', 'M', 'dennis15@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '5149 Atchinson Stage Ct.', 'NULL', '558-555-0129', '2013-07-05', '10+ Miles'], ['12967', '336', 'AW00012967', 'NULL', 'Fernando', 'A', 'Rodriguez', '0', '1966-10-08', 'M', 'NULL', 'M', 'fernando18@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8240 Clear Court', 'NULL', '338-555-0117', '2013-06-09', '0-1 Miles'], ['12968', '552', 'AW00012968', 'NULL', 'Paige', 'C', 'Butler', '0', '1978-06-14', 'M', 'NULL', 'F', 'paige13@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6736 Redbird Lane', 'NULL', '458-555-0135', '2013-11-23', '0-1 Miles'], ['12969', '68', 'AW00012969', 'NULL', 'Richard', 'NULL', 'Rodriguez', '0', '1965-11-30', 'M', 'NULL', 'M', 'richard14@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9639 M St.', 'NULL', '274-555-0181', '2013-05-15', '0-1 Miles'], ['12970', '68', 'AW00012970', 'NULL', 'Angela', 'R', 'Powell', '0', '1966-01-14', 'S', 'NULL', 'F', 'angela11@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5613 Gary Drive', 'NULL', '384-555-0196', '2013-04-30', '2-5 Miles'], ['12971', '310', 'AW00012971', 'NULL', 'Carl', 'K', 'Nara', '0', '1965-08-30', 'M', 'NULL', 'M', 'carl16@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4945 Pennsylvania Blvd.', 'NULL', '250-555-0172', '2013-07-11', '0-1 Miles'], ['12972', '49', 'AW00012972', 'NULL', 'Carolyn', 'S', 'Suri', '0', '1978-06-18', 'S', 'NULL', 'F', 'carolyn1@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6831 Boxwood Drive', 'NULL', '255-555-0127', '2013-05-21', '0-1 Miles'], ['12973', '634', 'AW00012973', 'NULL', 'Adrian', 'B', 'Howard', '0', '1978-03-08', 'S', 'NULL', 'M', 'adrian13@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9623 Dennis Circle', 'NULL', '341-555-0183', '2013-10-24', '2-5 Miles'], ['12974', '307', 'AW00012974', 'NULL', 'Marc', 'NULL', 'Gill', '0', '1972-08-27', 'S', 'NULL', 'M', 'marc17@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '9800 St. George Dr', 'NULL', '177-555-0114', '2014-01-15', '2-5 Miles'], ['12975', '312', 'AW00012975', 'NULL', 'Marcus', 'L', 'Wilson', '0', '1972-10-15', 'S', 'NULL', 'M', 'marcus7@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '6891 Ham Drive', 'NULL', '914-555-0180', '2012-01-10', '0-1 Miles'], ['12976', '337', 'AW00012976', 'NULL', 'Hunter', 'NULL', 'Thompson', '0', '1972-12-18', 'S', 'NULL', 'M', 'hunter47@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '1389 Walters Way', 'NULL', '665-555-0163', '2013-09-02', '2-5 Miles'], ['12977', '338', 'AW00012977', 'NULL', 'Destiny', 'NULL', 'Johnson', '0', '1978-02-19', 'S', 'NULL', 'F', 'destiny1@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '4557 Redwood Road', 'NULL', '307-555-0124', '2013-03-06', '2-5 Miles'], ['12978', '301', 'AW00012978', 'NULL', 'Danielle', 'NULL', 'James', '0', '1934-05-15', 'M', 'NULL', 'F', 'danielle10@adventure-works.com', '20000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5673 Arlington Circle', 'NULL', '485-555-0144', '2013-07-05', '0-1 Miles'], ['12979', '641', 'AW00012979', 'NULL', 'Christina', 'H', 'Ward', '0', '1966-02-16', 'M', 'NULL', 'F', 'christina10@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8850 Thunderbird Drive', 'NULL', '473-555-0199', '2013-02-20', '2-5 Miles'], ['12980', '612', 'AW00012980', 'NULL', 'Max', 'C', 'Moyer', '0', '1965-02-10', 'M', 'NULL', 'M', 'max10@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '22 Geary', 'NULL', '370-555-0126', '2012-01-05', '0-1 Miles'], ['12981', '302', 'AW00012981', 'NULL', 'Joe', 'NULL', 'Sanz', '0', '1964-10-13', 'S', 'NULL', 'M', 'joe43@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6696 Park Highlands Blvd.', 'NULL', '729-555-0156', '2012-01-20', '0-1 Miles'], ['12982', '312', 'AW00012982', 'NULL', 'Brittany', 'M', 'Patterson', '0', '1974-11-13', 'M', 'NULL', 'F', 'brittany9@adventure-works.com', '80000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5282 Book Pl', 'NULL', '662-555-0186', '2013-08-30', '2-5 Miles'], ['12983', '329', 'AW00012983', 'NULL', 'Gabriella', 'NULL', 'Carter', '0', '1969-12-17', 'M', 'NULL', 'F', 'gabriella33@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6854 Muir Road', 'NULL', '962-555-0178', '2013-03-03', '2-5 Miles'], ['12984', '62', 'AW00012984', 'NULL', 'Adam', 'NULL', 'Young', '0', '1963-08-06', 'M', 'NULL', 'M', 'adam48@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2534 Coggins Drive', 'NULL', '156-555-0183', '2013-02-03', '2-5 Miles'], ['12985', '337', 'AW00012985', 'NULL', 'Hailey', 'L', 'Roberts', '0', '1963-11-08', 'M', 'NULL', 'F', 'hailey46@adventure-works.com', '70000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '867 Calico Way', 'NULL', '191-555-0114', '2013-07-19', '2-5 Miles'], ['12986', '60', 'AW00012986', 'NULL', 'Rachel', 'L', 'Garcia', '0', '1964-03-06', 'M', 'NULL', 'F', 'rachel19@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8403 Esperanza', 'NULL', '429-555-0199', '2013-03-06', '0-1 Miles'], ['12987', '39', 'AW00012987', 'NULL', 'Felicia', 'A', 'Moreno', '0', '1980-05-08', 'M', 'NULL', 'F', 'felicia5@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '0', '7613 Orwood Dr', 'NULL', '1 (11) 500 555-0184', '2012-04-16', '0-1 Miles'], ['12988', '5', 'AW00012988', 'NULL', 'Barbara', 'NULL', 'Goel', '0', '1980-01-23', 'S', 'NULL', 'F', 'barbara47@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '8885 Riber Ash Court', 'NULL', '1 (11) 500 555-0137', '2012-03-31', '0-1 Miles'], ['12989', '3', 'AW00012989', 'NULL', 'Carly', 'C', 'Goel', '0', '1975-05-13', 'M', 'NULL', 'F', 'carly17@adventure-works.com', '100000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '4348 Via Romero', 'NULL', '1 (11) 500 555-0118', '2012-03-31', '0-1 Miles'], ['12990', '25', 'AW00012990', 'NULL', 'Leslie', 'D', 'Hernandez', '0', '1975-04-14', 'S', 'NULL', 'F', 'leslie4@adventure-works.com', '100000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '7971 Calle Verde Drive', 'NULL', '1 (11) 500 555-0128', '2012-04-17', '0-1 Miles'], ['12991', '3', 'AW00012991', 'NULL', 'Jésus', 'B', 'Serrano', '0', '1979-03-09', 'M', 'NULL', 'M', 'jésus15@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7468 Lindley Ct.', 'NULL', '1 (11) 500 555-0170', '2012-04-17', '0-1 Miles'], ['12992', '30', 'AW00012992', 'NULL', 'Ernest', 'M', 'Zeng', '0', '1979-10-18', 'M', 'NULL', 'M', 'ernest20@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4620 Kane Circle', 'NULL', '1 (11) 500 555-0128', '2013-03-23', '2-5 Miles'], ['12993', '31', 'AW00012993', 'NULL', 'Xavier', 'K', 'Henderson', '0', '1979-12-23', 'M', 'NULL', 'M', 'xavier46@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '8604 Dolores Way', 'NULL', '1 (11) 500 555-0125', '2013-04-05', '2-5 Miles'], ['12994', '27', 'AW00012994', 'NULL', 'Anna', 'J', 'Martinez', '0', '1975-10-07', 'S', 'NULL', 'F', 'anna55@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '7718 Beech Ct.', 'NULL', '1 (11) 500 555-0148', '2012-04-27', '0-1 Miles'], ['12995', '13', 'AW00012995', 'NULL', 'Grant', 'NULL', 'Nara', '0', '1976-03-01', 'M', 'NULL', 'M', 'grant18@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4246 Falls Ct.', 'NULL', '1 (11) 500 555-0153', '2012-04-16', '0-1 Miles'], ['12996', '28', 'AW00012996', 'NULL', 'Jaclyn', 'NULL', 'Liu', '0', '1975-11-10', 'M', 'NULL', 'F', 'jaclyn4@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '7827 Mt. Hood Circle', 'NULL', '1 (11) 500 555-0176', '2012-04-21', '1-2 Miles'], ['12997', '3', 'AW00012997', 'NULL', 'Nina', 'NULL', 'Xie', '0', '1973-11-08', 'M', 'NULL', 'F', 'nina3@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5666 Hazelnut Lane', 'NULL', '1 (11) 500 555-0115', '2013-07-05', '2-5 Miles'], ['12998', '8', 'AW00012998', 'NULL', 'Mayra', 'NULL', 'Mehta', '0', '1979-01-07', 'S', 'NULL', 'F', 'mayra14@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '2098 Crown Ct', '# 235', '1 (11) 500 555-0111', '2012-03-31', '0-1 Miles'], ['12999', '7', 'AW00012999', 'NULL', 'Nichole', 'NULL', 'Shen', '0', '1972-12-17', 'S', 'NULL', 'F', 'nichole2@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '4512 M St.', 'NULL', '1 (11) 500 555-0179', '2012-04-22', '10+ Miles'], ['13000', '31', 'AW00013000', 'NULL', 'Rafael', 'M', 'Raje', '0', '1980-09-16', 'M', 'NULL', 'M', 'rafael38@adventure-works.com', '110000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '5269 Mt. Trinity Court', 'NULL', '1 (11) 500 555-0183', '2012-04-09', '5-10 Miles'], ['13001', '39', 'AW00013001', 'NULL', 'Clarence', 'M', 'Zhang', '0', '1975-03-06', 'S', 'NULL', 'M', 'clarence37@adventure-works.com', '130000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '3093 Roland Drive', 'NULL', '1 (11) 500 555-0167', '2012-04-23', '0-1 Miles'], ['13002', '14', 'AW00013002', 'NULL', 'Roger', 'A', 'Cai', '0', '1973-02-18', 'M', 'NULL', 'M', 'roger25@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '8311 Roland Drive', 'NULL', '1 (11) 500 555-0194', '2013-02-25', '0-1 Miles'], ['13003', '25', 'AW00013003', 'NULL', 'Jill', 'L', 'Hernandez', '0', '1978-01-16', 'M', 'NULL', 'F', 'jill11@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6465 S. 97th Street', 'NULL', '1 (11) 500 555-0197', '2013-03-11', '0-1 Miles'], ['13004', '3', 'AW00013004', 'NULL', 'Randy', 'NULL', 'Chen', '0', '1972-10-31', 'M', 'NULL', 'M', 'randy4@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '8391 Olivera', 'NULL', '1 (11) 500 555-0161', '2013-06-22', '0-1 Miles'], ['13005', '23', 'AW00013005', 'NULL', 'Desiree', 'NULL', 'Alvarez', '0', '1972-02-12', 'M', 'NULL', 'F', 'desiree0@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '3818 Landana Drive', 'NULL', '1 (11) 500 555-0147', '2013-08-15', '0-1 Miles'], ['13006', '34', 'AW00013006', 'NULL', 'Whitney', 'A', 'Rana', '0', '1971-10-19', 'S', 'NULL', 'F', 'whitney10@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '2230 May Way', 'NULL', '1 (11) 500 555-0156', '2012-04-23', '2-5 Miles'], ['13007', '27', 'AW00013007', 'NULL', 'Brooke', 'NULL', 'Ward', '0', '1971-04-04', 'S', 'NULL', 'F', 'brooke11@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '8250 Levee Rd', 'NULL', '1 (11) 500 555-0180', '2012-04-05', '0-1 Miles'], ['13008', '34', 'AW00013008', 'NULL', 'Alberto', 'J', 'Muñoz', '0', '1976-07-05', 'M', 'NULL', 'M', 'alberto8@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1962 Race Road', 'NULL', '1 (11) 500 555-0148', '2013-08-17', '0-1 Miles'], ['13009', '35', 'AW00013009', 'NULL', 'Mindy', 'J', 'She', '0', '1970-09-08', 'M', 'NULL', 'F', 'mindy4@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '448 Roanoke Dr.', 'NULL', '1 (11) 500 555-0174', '2013-09-17', '5-10 Miles'], ['13010', '27', 'AW00013010', 'NULL', 'Erica', 'E', 'Ye', '0', '1976-08-12', 'M', 'NULL', 'F', 'erica9@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '48 Lacanda Ct.', 'NULL', '1 (11) 500 555-0175', '2012-04-27', '5-10 Miles'], ['13011', '34', 'AW00013011', 'NULL', 'Anne', 'NULL', 'Ortega', '0', '1970-11-01', 'S', 'NULL', 'F', 'anne22@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9327 Greenbrook Dr.', 'NULL', '1 (11) 500 555-0122', '2012-04-19', '0-1 Miles'], ['13012', '4', 'AW00013012', 'NULL', 'Krystal', 'D', 'Hu', '0', '1971-03-24', 'S', 'NULL', 'F', 'krystal20@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6534 Leslie Avenue', 'NULL', '1 (11) 500 555-0165', '2012-04-19', '0-1 Miles'], ['13013', '26', 'AW00013013', 'NULL', 'Vincent', 'NULL', 'Ye', '0', '1970-05-08', 'M', 'NULL', 'M', 'vincent9@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7509 San Cristobal', 'NULL', '1 (11) 500 555-0146', '2013-09-27', '0-1 Miles'], ['13014', '614', 'AW00013014', 'NULL', 'James', 'E', 'Clark', '0', '1985-01-06', 'M', 'NULL', 'M', 'james92@adventure-works.com', '100000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5124 Palmer Rd.', 'NULL', '336-555-0177', '2013-05-06', '0-1 Miles'], ['13015', '542', 'AW00013015', 'NULL', 'Rebecca', 'L', 'Parker', '0', '1974-01-08', 'S', 'NULL', 'F', 'rebecca10@adventure-works.com', '100000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '8138 Brook Way', 'NULL', '936-555-0190', '2013-01-28', '1-2 Miles'], ['13016', '644', 'AW00013016', 'NULL', 'Antonio', 'R', 'Bryant', '0', '1974-01-01', 'M', 'NULL', 'M', 'antonio18@adventure-works.com', '110000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7482 Melody', 'NULL', '110-555-0188', '2012-01-11', '1-2 Miles'], ['13017', '311', 'AW00013017', 'NULL', 'Xavier', 'A', 'Alexander', '0', '1984-08-15', 'M', 'NULL', 'M', 'xavier59@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9072 U St.', 'NULL', '806-555-0199', '2013-08-19', '5-10 Miles'], ['13018', '8', 'AW00013018', 'NULL', 'Brendan', 'NULL', 'Xie', '0', '1950-04-10', 'M', 'NULL', 'M', 'brendan3@adventure-works.com', '10000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '4', '7700 The Alameda', 'NULL', '1 (11) 500 555-0134', '2012-03-30', '5-10 Miles'], ['13019', '358', 'AW00013019', 'NULL', 'Destiny', 'A', 'Murphy', '0', '1984-08-28', 'S', 'NULL', 'F', 'destiny31@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2012 Reisling Court', 'NULL', '875-555-0171', '2012-01-12', '5-10 Miles'], ['13020', '6', 'AW00013020', 'Ms.', 'Madalena', 'J.', 'Sanchez', '0', '1950-11-07', 'M', 'NULL', 'M', 'madalena0@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6537 N Ranchford Court', 'NULL', '749-555-0100', '2012-04-01', '5-10 Miles'], ['13021', '9', 'AW00013021', 'NULL', 'Kendra', 'NULL', 'Diaz', '0', '1952-01-06', 'S', 'NULL', 'F', 'kendra3@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3712 Kirker Pass Road', 'NULL', '1 (11) 500 555-0188', '2012-04-17', '5-10 Miles'], ['13022', '22', 'AW00013022', 'NULL', 'Rafael', 'T', 'Ma', '0', '1953-02-20', 'M', 'NULL', 'M', 'rafael17@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1906 Twinview Place', 'NULL', '1 (11) 500 555-0118', '2012-03-31', '5-10 Miles'], ['13023', '7', 'AW00013023', 'NULL', 'Dominique', 'D', 'Raman', '0', '1952-08-26', 'S', 'NULL', 'F', 'dominique9@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6787 Terra Calitina', 'NULL', '1 (11) 500 555-0152', '2013-09-07', '5-10 Miles'], ['13024', '37', 'AW00013024', 'NULL', 'Marc', 'NULL', 'Moreno', '0', '1952-09-05', 'M', 'NULL', 'M', 'marc10@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6556 Gilly Lane', 'NULL', '1 (11) 500 555-0122', '2012-04-16', '5-10 Miles'], ['13025', '19', 'AW00013025', 'NULL', 'Reginald', 'J', 'Serrano', '0', '1953-05-18', 'M', 'NULL', 'M', 'reginald2@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2310 Donegal Way', 'NULL', '1 (11) 500 555-0118', '2012-04-11', '1-2 Miles'], ['13026', '9', 'AW00013026', 'NULL', 'Colleen', 'NULL', 'Zheng', '0', '1964-10-09', 'S', 'NULL', 'F', 'colleen20@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9474 Rose Street', 'NULL', '1 (11) 500 555-0174', '2013-06-27', '5-10 Miles'], ['13027', '60', 'AW00013027', 'NULL', 'Jeremy', 'NULL', 'Patterson', '0', '1983-06-10', 'S', 'NULL', 'M', 'jeremy27@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9412 Alhambra Avenue', 'NULL', '924-555-0142', '2013-08-11', '5-10 Miles'], ['13028', '626', 'AW00013028', 'NULL', 'Dalton', 'Y', 'Thompson', '0', '1983-03-17', 'S', 'NULL', 'M', 'dalton14@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5489 Patterson Blvd.', 'NULL', '644-555-0185', '2013-12-22', '5-10 Miles'], ['13029', '632', 'AW00013029', 'NULL', 'Jennifer', 'NULL', 'Foster', '0', '1983-03-05', 'S', 'NULL', 'F', 'jennifer89@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4581 Coggins Drive', 'NULL', '234-555-0149', '2012-01-20', '1-2 Miles'], ['13030', '312', 'AW00013030', 'NULL', 'Sophia', 'C', 'Lopez', '0', '1983-01-10', 'S', 'NULL', 'F', 'sophia19@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4855 Wawona Lane', 'NULL', '123-555-0170', '2013-09-09', '5-10 Miles'], ['13031', '335', 'AW00013031', 'NULL', 'Hunter', 'NULL', 'Shan', '0', '1982-08-16', 'S', 'NULL', 'M', 'hunter26@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6671 Santa Barbara', 'NULL', '653-555-0115', '2013-03-25', '1-2 Miles'], ['13032', '343', 'AW00013032', 'NULL', 'Kevin', 'NULL', 'Baker', '0', '1982-10-07', 'M', 'NULL', 'M', 'kevin45@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8614 Lagoon Court', 'NULL', '489-555-0119', '2011-12-31', '5-10 Miles'], ['13033', '348', 'AW00013033', 'NULL', 'Xavier', 'L', 'Gonzalez', '0', '1982-05-20', 'S', 'NULL', 'M', 'xavier31@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8475 Riverwood Circle', 'NULL', '544-555-0195', '2014-01-17', '1-2 Miles'], ['13034', '4', 'AW00013034', 'NULL', 'Kelsey', 'D', 'Yuan', '0', '1954-08-27', 'S', 'NULL', 'F', 'kelsey6@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3029 Delta View Ln.', 'NULL', '1 (11) 500 555-0116', '2013-06-07', '5-10 Miles'], ['13035', '26', 'AW00013035', 'NULL', 'Kristy', 'M', 'Torres', '0', '1956-05-02', 'M', 'NULL', 'F', 'kristy11@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '8957 Royal Ann Lane', 'NULL', '1 (11) 500 555-0130', '2012-04-21', '5-10 Miles'], ['13036', '14', 'AW00013036', 'NULL', 'Virginia', 'NULL', 'Subram', '0', '1955-08-03', 'S', 'NULL', 'F', 'virginia15@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '393 Yellowood Lane', 'NULL', '1 (11) 500 555-0115', '2012-04-08', '5-10 Miles'], ['13037', '9', 'AW00013037', 'NULL', 'Terrence', 'M', 'Pal', '0', '1961-04-22', 'M', 'NULL', 'M', 'terrence12@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9696 Brentwood Circle', 'NULL', '1 (11) 500 555-0156', '2013-04-28', '1-2 Miles'], ['13038', '5', 'AW00013038', 'NULL', 'Wilson', 'C', 'Pais', '0', '1961-01-28', 'M', 'NULL', 'M', 'wilson0@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '5901 Larch Ct.', 'NULL', '1 (11) 500 555-0112', '2012-04-11', '1-2 Miles'], ['13039', '312', 'AW00013039', 'NULL', 'Trisha', 'E', 'Ma', '0', '1986-02-17', 'S', 'NULL', 'F', 'trisha10@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1660 Stonyhill Circle', 'NULL', '845-555-0181', '2011-12-31', '1-2 Miles'], ['13040', '22', 'AW00013040', 'NULL', 'Roy', 'M', 'Gonzalez', '0', '1973-09-12', 'M', 'NULL', 'M', 'roy19@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3627 Creekside Drive', 'NULL', '1 (11) 500 555-0129', '2013-11-20', '5-10 Miles'], ['13041', '35', 'AW00013041', 'NULL', 'Cameron', 'D', 'Brown', '0', '1957-05-04', 'M', 'NULL', 'M', 'cameron45@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7900 Pacheco St.', 'NULL', '1 (11) 500 555-0131', '2013-04-04', '1-2 Miles'], ['13042', '23', 'AW00013042', 'NULL', 'Alison', 'NULL', 'Pal', '0', '1957-03-20', 'M', 'NULL', 'F', 'alison12@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1178 Sandy Blvd.', 'NULL', '1 (11) 500 555-0149', '2013-05-23', '5-10 Miles'], ['13043', '33', 'AW00013043', 'NULL', 'Brenda', 'NULL', 'Madan', '0', '1957-10-23', 'M', 'NULL', 'F', 'brenda11@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8354 Hamiliton Avenue', 'NULL', '1 (11) 500 555-0180', '2013-04-11', '1-2 Miles'], ['13044', '34', 'AW00013044', 'NULL', 'Katrina', 'NULL', 'Jai', '0', '1957-07-22', 'M', 'NULL', 'F', 'katrina10@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5332 Bonifacio St', 'NULL', '1 (11) 500 555-0147', '2013-07-24', '1-2 Miles'], ['13045', '39', 'AW00013045', 'NULL', 'Anne', 'NULL', 'Gomez', '0', '1969-05-09', 'M', 'NULL', 'F', 'anne2@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '845 Lay Brooke Way', 'NULL', '1 (11) 500 555-0161', '2013-04-10', '5-10 Miles'], ['13046', '20', 'AW00013046', 'NULL', 'Jonathan', 'J', 'Rodriguez', '0', '1958-04-04', 'M', 'NULL', 'M', 'jonathan74@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '734 Clayton Rd.', 'NULL', '1 (11) 500 555-0113', '2013-03-19', '5-10 Miles'], ['13047', '39', 'AW00013047', 'NULL', 'Rodney', 'M', 'Vazquez', '0', '1963-08-30', 'M', 'NULL', 'M', 'rodney10@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3092 Beatrice Rd.', 'NULL', '1 (11) 500 555-0190', '2013-08-25', '5-10 Miles'], ['13048', '35', 'AW00013048', 'NULL', 'Alexis', 'NULL', 'Hayes', '0', '1957-12-24', 'M', 'NULL', 'F', 'alexis46@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6111 Newcastle Road', 'NULL', '1 (11) 500 555-0125', '2013-05-28', '5-10 Miles'], ['13049', '23', 'AW00013049', 'NULL', 'Autumn', 'NULL', 'Wang', '0', '1959-01-03', 'M', 'NULL', 'F', 'autumn1@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7256 St. Paul Circle', 'NULL', '1 (11) 500 555-0134', '2012-04-22', '1-2 Miles'], ['13050', '28', 'AW00013050', 'NULL', 'Dennis', 'S', 'Zeng', '0', '1959-06-18', 'M', 'NULL', 'M', 'dennis24@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3184 Roskelley Dr.', 'NULL', '1 (11) 500 555-0135', '2012-04-19', '1-2 Miles'], ['13051', '4', 'AW00013051', 'NULL', 'Ethan', 'NULL', 'Jones', '0', '1960-05-26', 'S', 'NULL', 'M', 'ethan33@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '671 Deerwood Court', 'NULL', '1 (11) 500 555-0142', '2012-04-11', '1-2 Miles'], ['13052', '536', 'AW00013052', 'NULL', 'Jared', 'NULL', 'Morris', '0', '1981-05-10', 'S', 'NULL', 'M', 'jared20@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9593 Delaware Dr.', 'NULL', '849-555-0125', '2013-05-05', '5-10 Miles'], ['13053', '609', 'AW00013053', 'NULL', 'Vincent', 'NULL', 'Lu', '0', '1980-11-12', 'S', 'NULL', 'M', 'vincent11@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '923 Woodbury Place', 'NULL', '971-555-0119', '2013-03-07', '1-2 Miles'], ['13054', '612', 'AW00013054', 'NULL', 'Bryce', 'C', 'Ward', '0', '1981-03-16', 'M', 'NULL', 'M', 'bryce11@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5898 Heritage Oaks', 'NULL', '732-555-0112', '2013-12-12', '5-10 Miles'], ['13055', '543', 'AW00013055', 'NULL', 'Patrick', 'J', 'Gray', '0', '1981-04-17', 'S', 'NULL', 'M', 'patrick12@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '648 Ridgewood Dr.', 'NULL', '169-555-0159', '2012-01-13', '5-10 Miles'], ['13056', '553', 'AW00013056', 'NULL', 'Morgan', 'A', 'Blue', '0', '1981-03-22', 'S', 'NULL', 'F', 'morgan52@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '59 Sharon Place', 'NULL', '190-555-0127', '2012-01-06', '5-10 Miles'], ['13057', '299', 'AW00013057', 'NULL', 'Destiny', 'NULL', 'Powell', '0', '1980-12-18', 'S', 'NULL', 'F', 'destiny57@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3200 Glenmount Drive', 'NULL', '832-555-0190', '2012-01-06', '5-10 Miles'], ['13058', '307', 'AW00013058', 'NULL', 'Ramon', 'NULL', 'Huang', '0', '1981-02-12', 'M', 'NULL', 'M', 'ramon5@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '623 Chestnut Ave', 'NULL', '144-555-0194', '2012-01-17', '5-10 Miles'], ['13059', '310', 'AW00013059', 'NULL', 'Keith', 'NULL', 'Deng', '0', '1980-08-14', 'M', 'NULL', 'M', 'keith3@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4551 Thistle Circle', 'NULL', '439-555-0122', '2012-01-01', '5-10 Miles'], ['13060', '311', 'AW00013060', 'NULL', 'Eugene', 'D', 'Zhu', '0', '1986-06-05', 'M', 'NULL', 'M', 'eugene18@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1292 Marsh Elder', 'NULL', '246-555-0155', '2012-01-04', '5-10 Miles'], ['13061', '348', 'AW00013061', 'NULL', 'Ethan', 'NULL', 'Anderson', '0', '1979-11-29', 'S', 'NULL', 'M', 'ethan43@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1092 Pinole Valley Rd.', 'NULL', '947-555-0130', '2013-09-06', '1-2 Miles'], ['13062', '631', 'AW00013062', 'NULL', 'Eduardo', 'NULL', 'Williams', '0', '1980-01-06', 'S', 'NULL', 'M', 'eduardo2@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1542 Orangewood Dr', 'NULL', '694-555-0193', '2011-12-29', '5-10 Miles'], ['13063', '631', 'AW00013063', 'NULL', 'Jessica', 'NULL', 'Johnson', '0', '1985-03-10', 'S', 'NULL', 'F', 'jessica48@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8060 Roslyn Drive', 'NULL', '156-555-0112', '2012-01-08', '5-10 Miles'], ['13064', '611', 'AW00013064', 'NULL', 'Dalton', 'NULL', 'Parker', '0', '1985-03-13', 'S', 'NULL', 'M', 'dalton42@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3561 East Avenue', 'NULL', '535-555-0190', '2012-01-19', '1-2 Miles'], ['13065', '59', 'AW00013065', 'NULL', 'Morgan', 'NULL', 'Gonzalez', '0', '1979-10-19', 'S', 'NULL', 'F', 'morgan14@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '239 Stephanie Way', 'NULL', '946-555-0113', '2013-06-07', '1-2 Miles'], ['13066', '542', 'AW00013066', 'NULL', 'Carson', 'C', 'Perry', '0', '1980-03-24', 'S', 'NULL', 'M', 'carson6@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6545 N Ridgewood Dr.', 'NULL', '284-555-0145', '2012-01-16', '1-2 Miles'], ['13067', '612', 'AW00013067', 'NULL', 'Olivia', 'S', 'Garcia', '0', '1980-05-24', 'S', 'NULL', 'F', 'olivia15@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4605 Springvale Court', 'NULL', '819-555-0179', '2012-01-19', '5-10 Miles'], ['13068', '298', 'AW00013068', 'NULL', 'Alexandria', 'NULL', 'Morris', '0', '1985-02-14', 'S', 'NULL', 'F', 'alexandria39@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7320 Blocking Circle', 'NULL', '862-555-0112', '2012-01-09', '1-2 Miles'], ['13069', '609', 'AW00013069', 'NULL', 'Adam', 'M', 'Green', '0', '1980-02-16', 'M', 'NULL', 'M', 'adam45@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9808 Virginia Circle', 'NULL', '464-555-0196', '2012-01-14', '5-10 Miles'], ['13070', '542', 'AW00013070', 'NULL', 'Emma', 'D', 'Clark', '0', '1979-04-17', 'S', 'NULL', 'F', 'emma18@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3709 Leonard Ct.', 'NULL', '155-555-0135', '2013-03-18', '5-10 Miles'], ['13071', '69', 'AW00013071', 'NULL', 'Thomas', 'NULL', 'Walker', '0', '1978-11-08', 'M', 'NULL', 'M', 'thomas82@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2637 Broadway St.', 'NULL', '173-555-0112', '2013-05-28', '5-10 Miles'], ['13072', '543', 'AW00013072', 'NULL', 'Emma', 'J', 'Rogers', '0', '1984-10-29', 'S', 'NULL', 'F', 'emma27@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6277 Greenview Court', 'NULL', '580-555-0168', '2013-06-29', '5-10 Miles'], ['13073', '368', 'AW00013073', 'NULL', 'Sydney', 'NULL', 'Lopez', '0', '1981-07-11', 'M', 'NULL', 'F', 'sydney62@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3782 Fox Way', 'NULL', '920-555-0185', '2013-11-06', '5-10 Miles'], ['13074', '372', 'AW00013074', 'NULL', 'Grace', 'A', 'Hughes', '0', '1982-03-12', 'M', 'NULL', 'F', 'grace59@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6835 Lynwood Drive', 'NULL', '867-555-0182', '2013-05-02', '5-10 Miles'], ['13075', '32', 'AW00013075', 'NULL', 'Kelvin', 'A', 'Lin', '0', '1960-10-08', 'M', 'NULL', 'M', 'kelvin27@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8394 Lincoln Drive', 'NULL', '1 (11) 500 555-0197', '2012-04-21', '1-2 Miles'], ['13076', '30', 'AW00013076', 'NULL', 'Craig', 'V', 'Munoz', '0', '1960-08-30', 'S', 'NULL', 'M', 'craig8@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3131 San Miguel Circle', 'NULL', '1 (11) 500 555-0183', '2012-04-21', '1-2 Miles'], ['13077', '14', 'AW00013077', 'NULL', 'Alejandro', 'K', 'Goel', '0', '1967-05-21', 'S', 'NULL', 'M', 'alejandro44@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9383 Ashmount Way', 'NULL', '1 (11) 500 555-0117', '2012-04-22', '1-2 Miles'], ['13078', '15', 'AW00013078', 'NULL', 'Michele', 'C', 'Chande', '0', '1961-07-21', 'S', 'NULL', 'F', 'michele15@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4041 Jam Way', 'NULL', '1 (11) 500 555-0188', '2012-04-06', '5-10 Miles'], ['13079', '38', 'AW00013079', 'NULL', 'Edwin', 'NULL', 'Bhat', '0', '1962-08-26', 'S', 'NULL', 'M', 'edwin43@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '4779 Scenic Dr.', 'NULL', '1 (11) 500 555-0137', '2012-04-24', '5-10 Miles'], ['13080', '30', 'AW00013080', 'NULL', 'Denise', 'NULL', 'Mehta', '0', '1968-05-14', 'S', 'NULL', 'F', 'denise15@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '2242 Panoramic Ave', 'NULL', '1 (11) 500 555-0164', '2012-05-05', '5-10 Miles'], ['13081', '25', 'AW00013081', 'NULL', 'Krista', 'C', 'Ruiz', '0', '1962-09-21', 'S', 'NULL', 'F', 'krista2@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '8908 The Trees Drive', 'NULL', '1 (11) 500 555-0127', '2012-05-27', '1-2 Miles'], ['13082', '33', 'AW00013082', 'NULL', 'Juan', 'H', 'Peterson', '0', '1963-08-24', 'S', 'NULL', 'M', 'juan15@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '7011 Oak Dr.', 'NULL', '1 (11) 500 555-0174', '2012-05-07', '2-5 Miles'], ['13083', '644', 'AW00013083', 'NULL', 'Jordyn', 'NULL', 'Butler', '0', '1978-08-26', 'S', 'NULL', 'F', 'jordyn14@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3838 Sanford St', 'NULL', '685-555-0165', '2012-01-11', '5-10 Miles'], ['13084', '59', 'AW00013084', 'NULL', 'Luis', 'NULL', 'Hughes', '0', '1980-04-12', 'S', 'NULL', 'M', 'luis10@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '1160 Via Del Sol', 'NULL', '136-555-0168', '2013-06-09', '1-2 Miles'], ['13085', '611', 'AW00013085', 'NULL', 'Daniel', 'T', 'Harris', '0', '1979-09-16', 'S', 'NULL', 'M', 'daniel10@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9605 Mcelroy Court', 'NULL', '101-555-0119', '2012-01-01', '5-10 Miles'], ['13086', '626', 'AW00013086', 'NULL', 'Blake', 'I', 'Nelson', '0', '1979-11-17', 'S', 'NULL', 'M', 'blake36@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5414 Camel Place', 'NULL', '629-555-0193', '2012-01-24', '5-10 Miles'], ['13087', '546', 'AW00013087', 'NULL', 'Jeremy', 'NULL', 'Collins', '0', '1980-05-07', 'S', 'NULL', 'M', 'jeremy19@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6296 Elmonte Drive', 'NULL', '779-555-0186', '2012-01-26', '5-10 Miles'], ['13088', '638', 'AW00013088', 'NULL', 'Megan', 'NULL', 'Powell', '0', '1979-08-23', 'S', 'NULL', 'F', 'megan58@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '3238 Laguna Circle', 'NULL', '807-555-0130', '2012-01-28', '1-2 Miles'], ['13089', '27', 'AW00013089', 'NULL', 'Elizabeth', 'NULL', 'Alexander', '0', '1965-02-28', 'M', 'NULL', 'F', 'elizabeth47@adventure-works.com', '120000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1183 Tono Lane', 'NULL', '1 (11) 500 555-0193', '2012-05-19', '0-1 Miles'], ['13090', '27', 'AW00013090', 'NULL', 'Wayne', 'S', 'Tang', '0', '1964-11-28', 'S', 'NULL', 'M', 'wayne5@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '8356 Royal Palm Lane', 'NULL', '1 (11) 500 555-0178', '2012-06-22', '0-1 Miles'], ['13091', '21', 'AW00013091', 'NULL', 'Deanna', 'NULL', 'Martin', '0', '1970-08-07', 'S', 'NULL', 'F', 'deanna25@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '8162 Milden Road', 'NULL', '1 (11) 500 555-0170', '2012-06-24', '0-1 Miles'], ['13092', '352', 'AW00013092', 'NULL', 'William', 'E', 'Walker', '0', '1977-10-31', 'M', 'NULL', 'M', 'william29@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '3332 Green Valley Road', 'NULL', '894-555-0145', '2013-02-26', '0-1 Miles'], ['13093', '631', 'AW00013093', 'NULL', 'Michelle', 'M', 'James', '0', '1963-04-14', 'S', 'NULL', 'F', 'michelle9@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9772 Mountain View Drive', 'NULL', '471-555-0167', '2012-01-02', '1-2 Miles'], ['13094', '385', 'AW00013094', 'NULL', 'Antonio', 'NULL', 'Diaz', '0', '1968-03-19', 'M', 'NULL', 'M', 'antonio22@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '6373 Berrellesa St.', 'NULL', '469-555-0172', '2014-01-09', '5-10 Miles'], ['13095', '64', 'AW00013095', 'NULL', 'Jordan', 'NULL', 'Griffin', '0', '1963-01-21', 'S', 'NULL', 'M', 'jordan18@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2785 Snow Drive', 'NULL', '160-555-0138', '2013-02-09', '5-10 Miles'], ['13096', '50', 'AW00013096', 'NULL', 'Jonathan', 'G', 'Chen', '0', '1963-04-19', 'M', 'NULL', 'M', 'jonathan24@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '7289 Las Quebrados Ln', 'NULL', '513-555-0125', '2013-10-15', '1-2 Miles'], ['13097', '310', 'AW00013097', 'NULL', 'Dalton', 'E', 'Hughes', '0', '1968-05-10', 'M', 'NULL', 'M', 'dalton57@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '6457 Appalachian Dr.', 'NULL', '219-555-0166', '2013-04-08', '5-10 Miles'], ['13098', '616', 'AW00013098', 'NULL', 'Miguel', 'Z', 'Russell', '0', '1963-04-06', 'M', 'NULL', 'M', 'miguel66@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '1288 Vista Del Rio', 'NULL', '196-555-0169', '2013-05-08', '5-10 Miles'], ['13099', '448', 'AW00013099', 'NULL', 'Jay', 'N', 'Romero', '0', '1963-02-01', 'M', 'NULL', 'M', 'jay38@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '0', '5740 Elderwood Dr', 'NULL', '977-555-0126', '2013-05-03', '0-1 Miles'], ['13100', '347', 'AW00013100', 'NULL', 'Jeremy', 'M', 'Perez', '0', '1968-07-12', 'M', 'NULL', 'M', 'jeremy14@adventure-works.com', '80000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '0', '3595 Santa Fe', 'NULL', '149-555-0119', '2013-04-17', '0-1 Miles'], ['13101', '52', 'AW00013101', 'NULL', 'Alex', 'K', 'Sanchez', '0', '1963-04-06', 'S', 'NULL', 'M', 'alex21@adventure-works.com', '90000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '3164 San Simeon Dr.', 'NULL', '793-555-0179', '2013-04-03', '2-5 Miles'], ['13102', '545', 'AW00013102', 'NULL', 'Mariah', 'M', 'Bryant', '0', '1963-03-19', 'S', 'NULL', 'F', 'mariah23@adventure-works.com', '90000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '4428 C St.', 'NULL', '202-555-0153', '2013-04-08', '2-5 Miles'], ['13103', '34', 'AW00013103', 'NULL', 'Brendan', 'NULL', 'Raji', '0', '1969-01-29', 'S', 'NULL', 'M', 'brendan19@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4355 Via Vista', 'NULL', '1 (11) 500 555-0147', '2012-06-26', '0-1 Miles'], ['13104', '3', 'AW00013104', 'NULL', 'Gregory', 'M', 'Becker', '0', '1974-04-08', 'S', 'NULL', 'M', 'gregory24@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5617 Landing Dr', 'NULL', '1 (11) 500 555-0173', '2012-06-10', '5-10 Miles'], ['13105', '32', 'AW00013105', 'NULL', 'Whitney', 'NULL', 'Kovár', '0', '1967-12-30', 'M', 'NULL', 'F', 'whitney4@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2208 Mauna Kea Court', 'NULL', '1 (11) 500 555-0164', '2012-06-10', '0-1 Miles'], ['13106', '7', 'AW00013106', 'NULL', 'Ebony', 'NULL', 'Munoz', '0', '1973-07-04', 'M', 'NULL', 'F', 'ebony30@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6809 El Capitan Lane', 'NULL', '1 (11) 500 555-0113', '2012-06-16', '5-10 Miles'], ['13107', '20', 'AW00013107', 'NULL', 'Mary', 'L', 'Nelson', '0', '1968-01-08', 'M', 'NULL', 'F', 'mary22@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', 'Am Karlshof 2562', 'NULL', '1 (11) 500 555-0172', '2012-06-03', '0-1 Miles'], ['13108', '32', 'AW00013108', 'NULL', 'Curtis', 'A', 'Wang', '0', '1968-06-24', 'M', 'NULL', 'M', 'curtis2@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9566 River Ash Court', 'NULL', '1 (11) 500 555-0117', '2012-06-18', '5-10 Miles'], ['13109', '21', 'AW00013109', 'NULL', 'Cheryl', 'NULL', 'Navarro', '0', '1973-08-08', 'M', 'NULL', 'F', 'cheryl12@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5278 White Dr', 'NULL', '1 (11) 500 555-0190', '2012-06-18', '0-1 Miles'], ['13110', '5', 'AW00013110', 'NULL', 'Levi', 'M', 'Mehta', '0', '1972-12-08', 'M', 'NULL', 'M', 'levi13@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8789 Valley Oak Plaza', 'NULL', '1 (11) 500 555-0161', '2012-06-04', '5-10 Miles'], ['13111', '19', 'AW00013111', 'NULL', 'Hannah', 'R', 'Butler', '0', '1967-02-13', 'S', 'NULL', 'F', 'hannah36@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2219 Alfred Ave.', 'NULL', '1 (11) 500 555-0136', '2012-06-29', '5-10 Miles'], ['13112', '12', 'AW00013112', 'NULL', 'Bianca', 'C', 'Gao', '0', '1978-01-16', 'S', 'NULL', 'F', 'bianca11@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8458 Wiget Lane', 'NULL', '1 (11) 500 555-0181', '2012-06-10', '5-10 Miles'], ['13113', '4', 'AW00013113', 'NULL', 'Bryant', 'C', 'Sanchez', '0', '1972-01-11', 'S', 'NULL', 'M', 'bryant19@adventure-works.com', '100000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3585 Holly Oak Dr.', 'NULL', '1 (11) 500 555-0151', '2012-06-15', '5-10 Miles'], ['13114', '9', 'AW00013114', 'NULL', 'Claudia', 'NULL', 'Zhang', '0', '1971-10-29', 'S', 'NULL', 'F', 'claudia0@adventure-works.com', '100000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '969 Standing Grove Dr.', 'NULL', '1 (11) 500 555-0126', '2012-05-31', '5-10 Miles'], ['13115', '12', 'AW00013115', 'NULL', 'Clarence', 'L', 'Wu', '0', '1983-03-23', 'S', 'NULL', 'M', 'clarence2@adventure-works.com', '110000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '3099 Corte Segundo', 'NULL', '1 (11) 500 555-0164', '2012-06-26', '5-10 Miles'], ['13116', '12', 'AW00013116', 'NULL', 'Tyrone', 'NULL', 'Diaz', '0', '1971-11-05', 'S', 'NULL', 'M', 'tyrone2@adventure-works.com', '110000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '6659 Poplar Street', 'NULL', '1 (11) 500 555-0152', '2013-03-14', '0-1 Miles'], ['13117', '18', 'AW00013117', 'NULL', 'Evelyn', 'NULL', 'Rodriguez', '0', '1971-07-11', 'S', 'NULL', 'F', 'evelyn20@adventure-works.com', '110000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '9236 Hanson Lane', 'NULL', '1 (11) 500 555-0122', '2012-06-02', '0-1 Miles'], ['13118', '33', 'AW00013118', 'NULL', 'Sydney', 'D', 'Cook', '0', '1966-01-05', 'M', 'NULL', 'F', 'sydney5@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2297 Via Valencia', 'NULL', '1 (11) 500 555-0124', '2012-06-22', '5-10 Miles'], ['13119', '21', 'AW00013119', 'NULL', 'Jaclyn', 'NULL', 'Guo', '0', '1971-05-10', 'S', 'NULL', 'F', 'jaclyn19@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4511 Gatter Court', 'NULL', '1 (11) 500 555-0115', '2012-06-11', '0-1 Miles'], ['13120', '6', 'AW00013120', 'NULL', 'Levi', 'A', 'Weber', '0', '1976-07-05', 'M', 'NULL', 'M', 'levi3@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '8861 Flamingo Dr', 'NULL', '1 (11) 500 555-0181', '2013-02-13', '0-1 Miles'], ['13121', '36', 'AW00013121', 'NULL', 'Latasha', 'E', 'Jimenez', '0', '1976-03-18', 'M', 'NULL', 'F', 'latasha5@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '7259 Birchwood', 'NULL', '1 (11) 500 555-0118', '2013-04-06', '1-2 Miles'], ['13122', '32', 'AW00013122', 'NULL', 'Catherine', 'K', 'Cox', '0', '1971-01-30', 'M', 'NULL', 'F', 'catherine9@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4014 Donegal Road', 'NULL', '1 (11) 500 555-0179', '2012-06-12', '1-2 Miles'], ['13123', '2', 'AW00013123', 'NULL', 'Kelli', 'G', 'Raji', '0', '1975-05-01', 'S', 'NULL', 'F', 'kelli44@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6146 Holland Drive', 'NULL', '1 (11) 500 555-0117', '2012-06-14', '0-1 Miles'], ['13124', '24', 'AW00013124', 'NULL', 'Marco', 'NULL', 'Vance', '0', '1969-08-29', 'S', 'NULL', 'M', 'marco4@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5565 Logan Court', 'NULL', '1 (11) 500 555-0163', '2013-10-30', '5-10 Miles'], ['13125', '35', 'AW00013125', 'NULL', 'Alejandro', 'NULL', 'Hu', '0', '1975-07-05', 'S', 'NULL', 'M', 'alejandro23@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5747 Shirley Drive', 'NULL', '1 (11) 500 555-0196', '2013-05-19', '5-10 Miles'], ['13126', '36', 'AW00013126', 'NULL', 'Lydia', 'NULL', 'Suri', '0', '1969-08-03', 'S', 'NULL', 'F', 'lydia0@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1874 Valley Blvd.', 'NULL', '1 (11) 500 555-0114', '2012-06-07', '0-1 Miles'], ['13127', '36', 'AW00013127', 'NULL', 'Shane', 'A', 'Fernandez', '0', '1970-06-09', 'S', 'NULL', 'M', 'shane18@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1888 Buena Vista', 'NULL', '1 (11) 500 555-0136', '2013-06-19', '5-10 Miles'], ['13128', '16', 'AW00013128', 'NULL', 'Colleen', 'C', 'West', '0', '1975-04-20', 'S', 'NULL', 'F', 'colleen1@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3302 Alan Dr', 'NULL', '1 (11) 500 555-0119', '2012-06-29', '0-1 Miles'], ['13129', '39', 'AW00013129', 'NULL', 'Joy', 'NULL', 'Ramos', '0', '1969-11-29', 'S', 'NULL', 'F', 'joy16@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9564 Wiget Lane', 'NULL', '1 (11) 500 555-0176', '2012-06-18', '5-10 Miles'], ['13130', '32', 'AW00013130', 'NULL', 'Dalton', 'D', 'Miller', '0', '1970-10-22', 'M', 'NULL', 'M', 'dalton5@adventure-works.com', '90000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9334 Cougar Way', 'NULL', '1 (11) 500 555-0152', '2012-06-25', '2-5 Miles'], ['13131', '36', 'AW00013131', 'NULL', 'Briana', 'NULL', 'Diaz', '0', '1965-02-28', 'M', 'NULL', 'F', 'briana3@adventure-works.com', '90000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6046 Flamingo Drive', 'NULL', '1 (11) 500 555-0160', '2012-06-23', '2-5 Miles'], ['13132', '18', 'AW00013132', 'NULL', 'Casey', 'S', 'Vazquez', '0', '1964-08-20', 'S', 'NULL', 'M', 'casey38@adventure-works.com', '90000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4498 Dennis Circle', 'NULL', '1 (11) 500 555-0180', '2012-06-08', '2-5 Miles'], ['13133', '12', 'AW00013133', 'NULL', 'Devon', 'J', 'Kennedy', '0', '1965-02-15', 'S', 'NULL', 'M', 'devon5@adventure-works.com', '100000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3518 Benita Way', 'NULL', '1 (11) 500 555-0153', '2012-06-14', '5-10 Miles'], ['13134', '27', 'AW00013134', 'NULL', 'Sara', 'NULL', 'Morgan', '0', '1939-10-29', 'S', 'NULL', 'F', 'sara24@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '317 Jacqueline Way', 'NULL', '1 (11) 500 555-0199', '2012-06-17', '5-10 Miles'], ['13135', '16', 'AW00013135', 'NULL', 'Johnny', 'A', 'Rai', '0', '1963-01-31', 'S', 'NULL', 'M', 'johnny19@adventure-works.com', '80000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '104 Hilltop Dr.', 'NULL', '1 (11) 500 555-0157', '2012-06-08', '5-10 Miles'], ['13136', '24', 'AW00013136', 'NULL', 'Virginia', 'NULL', 'Martinez', '0', '1942-05-12', 'M', 'NULL', 'F', 'virginia20@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3955 Anchor Avenue', 'NULL', '1 (11) 500 555-0160', '2013-06-22', '5-10 Miles'], ['13137', '36', 'AW00013137', 'NULL', 'Jacqueline', 'W', 'Simmons', '0', '1965-08-08', 'M', 'NULL', 'F', 'jacqueline16@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '3781 San View Way', 'NULL', '1 (11) 500 555-0154', '2013-03-26', '5-10 Miles'], ['13138', '38', 'AW00013138', 'NULL', 'Teresa', 'NULL', 'Alonso', '0', '1965-12-09', 'M', 'NULL', 'F', 'teresa8@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '2380 Abbey Court', 'NULL', '1 (11) 500 555-0114', '2013-02-02', '5-10 Miles'], ['13139', '5', 'AW00013139', 'NULL', 'Carmen', 'C', 'Perez', '0', '1967-02-05', 'S', 'NULL', 'F', 'carmen3@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1622 Silver Oaks Place', 'NULL', '1 (11) 500 555-0195', '2012-06-09', '0-1 Miles'], ['13140', '29', 'AW00013140', 'NULL', 'Jamie', 'J', 'Zhu', '0', '1958-10-08', 'M', 'NULL', 'F', 'jamie17@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '4556 Rolling Green Circle', 'NULL', '1 (11) 500 555-0115', '2013-07-23', '5-10 Miles'], ['13141', '15', 'AW00013141', 'NULL', 'Walter', 'NULL', 'Hernandez', '0', '1959-04-07', 'M', 'NULL', 'M', 'walter16@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '9746 Vallejo', 'NULL', '1 (11) 500 555-0130', '2013-10-15', '0-1 Miles'], ['13142', '347', 'AW00013142', 'NULL', 'Xavier', 'L', 'Moore', '0', '1980-09-19', 'M', 'NULL', 'M', 'xavier6@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7489 Relief Valley Ct', 'NULL', '647-555-0131', '2011-12-31', '5-10 Miles'], ['13143', '51', 'AW00013143', 'NULL', 'Hannah', 'G', 'Jackson', '0', '1980-08-05', 'M', 'NULL', 'F', 'hannah11@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3486 Flora Ave.', 'NULL', '565-555-0181', '2013-08-02', '5-10 Miles'], ['13144', '62', 'AW00013144', 'NULL', 'Destiny', 'NULL', 'Stewart', '0', '1982-02-24', 'S', 'NULL', 'F', 'destiny23@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '557 Diver Way', 'NULL', '333-555-0116', '2013-03-06', '0-1 Miles'], ['13145', '514', 'AW00013145', 'NULL', 'Gilbert', 'NULL', 'Xu', '0', '1981-07-21', 'M', 'NULL', 'M', 'gilbert9@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7779 Merry Drive', 'NULL', '798-555-0118', '2013-11-04', '5-10 Miles'], ['13146', '536', 'AW00013146', 'NULL', 'Gabriella', 'M', 'Ramirez', '0', '1981-11-12', 'S', 'NULL', 'F', 'gabriella4@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1192 Tosca Way', 'NULL', '612-555-0170', '2013-05-18', '0-1 Miles'], ['13147', '301', 'AW00013147', 'NULL', 'Cedric', 'C', 'Lin', '0', '1986-02-20', 'M', 'NULL', 'M', 'cedric8@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3337 Northpoint Ct', 'NULL', '750-555-0147', '2013-06-06', '0-1 Miles'], ['13148', '71', 'AW00013148', 'NULL', 'Tyler', 'E', 'Anderson', '0', '1985-09-29', 'M', 'NULL', 'M', 'tyler18@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4824 Kirkwood Ct.', 'NULL', '399-555-0164', '2013-03-18', '5-10 Miles'], ['13149', '23', 'AW00013149', 'NULL', 'Linda', 'D', 'Ferrier', '0', '1957-02-14', 'M', 'NULL', 'F', 'linda23@adventure-works.com', '10000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9381 Alpine Rd.', 'NULL', '1 (11) 500 555-0153', '2013-04-07', '5-10 Miles'], ['13150', '11', 'AW00013150', 'NULL', 'Lacey', 'NULL', 'Yang', '0', '1942-12-08', 'S', 'NULL', 'F', 'lacey17@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2751 Fabian Way', 'NULL', '1 (11) 500 555-0110', '2013-07-02', '5-10 Miles'], ['13151', '337', 'AW00013151', 'NULL', 'Ethan', 'M', 'Moore', '0', '1984-06-04', 'S', 'NULL', 'M', 'ethan41@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9556 Baltic Sea Ct.', 'NULL', '548-555-0113', '2013-12-04', '5-10 Miles'], ['13152', '348', 'AW00013152', 'NULL', 'Gabrielle', 'NULL', 'Butler', '0', '1983-08-16', 'M', 'NULL', 'F', 'gabrielle36@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6787 Pheasant Circle', 'NULL', '746-555-0115', '2012-01-14', '5-10 Miles'], ['13153', '612', 'AW00013153', 'NULL', 'Jack', 'N', 'Hill', '0', '1985-04-16', 'S', 'NULL', 'M', 'jack49@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3280 Harmony Way', 'NULL', '705-555-0139', '2013-02-12', '5-10 Miles'], ['13154', '614', 'AW00013154', 'NULL', 'Aaron', 'NULL', 'Lal', '0', '1985-01-18', 'M', 'NULL', 'M', 'aaron29@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7196 Glen Wood Drive', 'NULL', '605-555-0159', '2013-11-05', '0-1 Miles'], ['13155', '38', 'AW00013155', 'NULL', 'Jay', 'C', 'Gutierrez', '0', '1950-04-07', 'M', 'NULL', 'M', 'jay40@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '2402 Sutherland Dr.', 'NULL', '1 (11) 500 555-0162', '2013-03-13', '0-1 Miles'], ['13156', '21', 'AW00013156', 'NULL', 'Bradley', 'NULL', 'Lal', '0', '1951-07-03', 'M', 'NULL', 'M', 'bradley11@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6683 Brookside Drive', 'NULL', '1 (11) 500 555-0124', '2012-06-18', '0-1 Miles'], ['13157', '29', 'AW00013157', 'NULL', 'Heidi', 'Z', 'Gonzalez', '0', '1945-08-22', 'M', 'NULL', 'F', 'heidi21@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5534 Fremont St.', 'NULL', '1 (11) 500 555-0144', '2013-08-30', '5-10 Miles'], ['13158', '16', 'AW00013158', 'NULL', 'Casey', 'J', 'Xu', '0', '1946-09-11', 'M', 'NULL', 'F', 'casey5@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9488 St. Francis Dr.', 'NULL', '1 (11) 500 555-0119', '2013-02-05', '0-1 Miles'], ['13159', '39', 'AW00013159', 'NULL', 'Roberto', 'M', 'Ramos', '0', '1947-04-13', 'M', 'NULL', 'M', 'roberto16@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6210 Mt. Tamlapais Place', 'NULL', '1 (11) 500 555-0121', '2013-07-27', '5-10 Miles'], ['13160', '40', 'AW00013160', 'NULL', 'Willie', 'C', 'Xu', '0', '1948-08-06', 'M', 'NULL', 'M', 'willie24@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '8153 Shoenic', 'NULL', '1 (11) 500 555-0110', '2012-06-24', '5-10 Miles'], ['13161', '539', 'AW00013161', 'NULL', 'Jose', 'M', 'Moore', '0', '1981-10-22', 'M', 'NULL', 'M', 'jose68@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8568 Wellington Ct.', 'NULL', '149-555-0167', '2012-01-09', '5-10 Miles'], ['13162', '311', 'AW00013162', 'NULL', 'Nina', 'NULL', 'Nath', '0', '1981-10-20', 'S', 'NULL', 'F', 'nina18@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4101 Buckthorn Court', 'NULL', '537-555-0125', '2013-07-16', '5-10 Miles'], ['13163', '314', 'AW00013163', 'NULL', 'Noah', 'M', 'Lopez', '0', '1981-09-06', 'M', 'NULL', 'M', 'noah53@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2847 Center Ave', 'NULL', '707-555-0189', '2013-05-30', '5-10 Miles'], ['13164', '315', 'AW00013164', 'NULL', 'Olivia', 'A', 'Ward', '0', '1981-11-01', 'S', 'NULL', 'F', 'olivia38@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4259 Fenway', 'NULL', '966-555-0173', '2013-06-30', '5-10 Miles'], ['13165', '334', 'AW00013165', 'NULL', 'Wyatt', 'V', 'Walker', '0', '1982-03-21', 'S', 'NULL', 'M', 'wyatt24@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1884 Scramble Road', 'NULL', '188-555-0134', '2012-01-14', '1-2 Miles'], ['13166', '343', 'AW00013166', 'NULL', 'Kyle', 'NULL', 'Chen', '0', '1981-09-10', 'M', 'NULL', 'M', 'kyle21@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '8354 Sugar Valley Blv.', 'NULL', '751-555-0117', '2013-03-22', '1-2 Miles'], ['13167', '311', 'AW00013167', 'NULL', 'Mario', 'T', 'Tang', '0', '1980-01-01', 'S', 'NULL', 'M', 'mario3@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4108 Yukon Street', 'NULL', '539-555-0165', '2013-11-06', '1-2 Miles'], ['13168', '369', 'AW00013168', 'NULL', 'Hannah', 'A', 'Price', '0', '1979-09-16', 'S', 'NULL', 'F', 'hannah23@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8586 D Kiska Ct.', 'NULL', '657-555-0114', '2013-09-26', '5-10 Miles'], ['13169', '545', 'AW00013169', 'NULL', 'Caleb', 'NULL', 'Griffin', '0', '1977-08-31', 'S', 'NULL', 'M', 'caleb17@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '2288 Gingham Way', 'NULL', '843-555-0112', '2013-06-05', '1-2 Miles'], ['13170', '300', 'AW00013170', 'NULL', 'Sebastian', 'E', 'Reed', '0', '1977-07-07', 'S', 'NULL', 'M', 'sebastian19@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '6912 Old Oak Drive', 'NULL', '989-555-0140', '2013-03-28', '1-2 Miles'], ['13171', '343', 'AW00013171', 'NULL', 'Catherine', 'C', 'Torres', '0', '1973-12-06', 'S', 'NULL', 'F', 'catherine12@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '2573 Ashford Court', 'NULL', '293-555-0184', '2013-01-30', '1-2 Miles'], ['13172', '626', 'AW00013172', 'NULL', 'Isabella', 'D', 'Cook', '0', '1974-03-18', 'S', 'NULL', 'F', 'isabella86@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '5998 Hilltop Road', 'NULL', '248-555-0151', '2013-10-06', '1-2 Miles'], ['13173', '539', 'AW00013173', 'NULL', 'Dalton', 'C', 'Brooks', '0', '1974-03-14', 'M', 'NULL', 'M', 'dalton71@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '5686 N Sweetbriar Court', 'NULL', '430-555-0166', '2012-01-09', '0-1 Miles'], ['13174', '542', 'AW00013174', 'NULL', 'Gabriella', 'F', 'Morris', '0', '1973-11-01', 'S', 'NULL', 'F', 'gabriella17@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '1415 Nottingham Place', 'NULL', '117-555-0126', '2012-01-17', '1-2 Miles'], ['13175', '54', 'AW00013175', 'NULL', 'Noah', 'NULL', 'Smith', '0', '1973-08-09', 'M', 'NULL', 'M', 'noah56@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '491 Terrapin Court', 'NULL', '656-555-0130', '2013-06-25', '0-1 Miles'], ['13176', '299', 'AW00013176', 'NULL', 'Kurt', 'F', 'Chander', '0', '1973-02-28', 'S', 'NULL', 'M', 'kurt16@adventure-works.com', '130000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '5636 Mt. Whitney Dr.', 'NULL', '699-555-0147', '2012-01-28', '0-1 Miles'], ['13177', '545', 'AW00013177', 'NULL', 'Taylor', 'NULL', 'Rogers', '0', '1968-08-26', 'S', 'NULL', 'F', 'taylor3@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6836 Alum Rock Drive', 'NULL', '205-555-0115', '2012-01-27', '5-10 Miles'], ['13178', '553', 'AW00013178', 'NULL', 'Megan', 'W', 'Gray', '0', '1968-10-15', 'S', 'NULL', 'F', 'megan43@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '7048 Laurel', 'NULL', '300-555-0144', '2012-01-10', '1-2 Miles'], ['13179', '66', 'AW00013179', 'NULL', 'Adrian', 'L', 'Sanchez', '0', '1947-12-17', 'M', 'NULL', 'M', 'adrian18@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7879 Oxford Pl.', 'NULL', '487-555-0144', '2013-04-15', '1-2 Miles'], ['13180', '612', 'AW00013180', 'NULL', 'Leslie', 'N', 'Sanz', '0', '1947-08-22', 'M', 'NULL', 'F', 'leslie20@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1104 Colton Ln', 'NULL', '583-555-0119', '2013-05-14', '5-10 Miles'], ['13181', '329', 'AW00013181', 'NULL', 'Brian', 'T', 'Morgan', '0', '1948-06-21', 'M', 'NULL', 'M', 'brian24@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1469 Babbe St.', 'NULL', '116-555-0143', '2013-03-17', '1-2 Miles'], ['13182', '631', 'AW00013182', 'NULL', 'Jeremy', 'L', 'Bennett', '0', '1953-11-14', 'M', 'NULL', 'M', 'jeremy22@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '1757 Hames Court', 'NULL', '453-555-0126', '2013-09-22', '1-2 Miles'], ['13183', '641', 'AW00013183', 'NULL', 'Christian', 'M', 'Jenkins', '0', '1948-01-18', 'M', 'NULL', 'M', 'christian21@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9474 Old Mt. View Drive', 'NULL', '787-555-0188', '2013-03-12', '5-10 Miles'], ['13184', '543', 'AW00013184', 'NULL', 'Miguel', 'NULL', 'Perez', '0', '1953-08-23', 'M', 'NULL', 'M', 'miguel38@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2430 Santa Lucia', 'NULL', '984-555-0118', '2013-10-17', '5-10 Miles'], ['13185', '52', 'AW00013185', 'NULL', 'William', 'NULL', 'Lee', '0', '1948-06-26', 'M', 'NULL', 'M', 'william28@adventure-works.com', '100000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '3545 Chickpea Ct.', 'NULL', '738-555-0119', '2013-03-17', '5-10 Miles'], ['13186', '307', 'AW00013186', 'NULL', 'Marcus', 'J', 'Sanders', '0', '1948-05-23', 'M', 'NULL', 'M', 'marcus77@adventure-works.com', '110000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '3371 Thors Bay Road', 'NULL', '849-555-0177', '2013-05-09', '5-10 Miles'], ['13187', '322', 'AW00013187', 'NULL', 'Evan', 'NULL', 'Wright', '0', '1948-02-14', 'M', 'NULL', 'M', 'evan46@adventure-works.com', '110000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8142 Ruth Drive', 'NULL', '485-555-0179', '2013-04-30', '5-10 Miles'], ['13188', '633', 'AW00013188', 'NULL', 'Anthony', 'S', 'Davis', '0', '1947-07-20', 'M', 'NULL', 'M', 'anthony14@adventure-works.com', '120000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '420 Royal Links Circle', 'NULL', '980-555-0121', '2013-10-12', '5-10 Miles'], ['13189', '311', 'AW00013189', 'NULL', 'Gloria', 'R', 'Romero', '0', '1953-03-31', 'S', 'NULL', 'F', 'gloria9@adventure-works.com', '120000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '598 La Canada', 'NULL', '830-555-0173', '2012-01-20', '5-10 Miles'], ['13190', '301', 'AW00013190', 'NULL', 'Jonathan', 'K', 'Diaz', '0', '1947-08-09', 'S', 'NULL', 'M', 'jonathan21@adventure-works.com', '120000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '1054 Vine Circle', 'NULL', '114-555-0149', '2012-01-10', '5-10 Miles'], ['13191', '355', 'AW00013191', 'NULL', 'Emma', 'H', 'Rodriguez', '0', '1954-07-14', 'M', 'NULL', 'F', 'emma19@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6659 Rheem Dr.', 'NULL', '190-555-0145', '2013-08-30', '1-2 Miles'], ['13192', '358', 'AW00013192', 'NULL', 'Hunter', 'K', 'Martinez', '0', '1948-09-12', 'M', 'NULL', 'M', 'hunter49@adventure-works.com', '110000.00', '2', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6300 Woodbridge Way', 'NULL', '225-555-0175', '2013-11-09', '5-10 Miles'], ['13193', '339', 'AW00013193', 'NULL', 'Kevin', 'K', 'Evans', '0', '1948-11-05', 'M', 'NULL', 'M', 'kevin37@adventure-works.com', '110000.00', '2', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5191 Gilly Lane', 'NULL', '168-555-0116', '2013-07-06', '5-10 Miles'], ['13194', '302', 'AW00013194', 'NULL', 'Kevin', 'E', 'Carter', '0', '1949-02-23', 'M', 'NULL', 'M', 'kevin48@adventure-works.com', '110000.00', '2', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2325 Richard Pl.', 'NULL', '583-555-0149', '2013-09-19', '5-10 Miles'], ['13195', '360', 'AW00013195', 'NULL', 'Aaron', 'NULL', 'Perry', '0', '1960-05-23', 'M', 'NULL', 'M', 'aaron7@adventure-works.com', '110000.00', '2', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7838 Euclid Ave.', 'NULL', '150-555-0143', '2013-04-09', '5-10 Miles'], ['13196', '618', 'AW00013196', 'NULL', 'Kimberly', 'M', 'Sanders', '0', '1954-10-29', 'M', 'NULL', 'F', 'kimberly6@adventure-works.com', '110000.00', '2', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '8142 Longbrood Way', 'NULL', '690-555-0191', '2013-10-08', '5-10 Miles'], ['13197', '54', 'AW00013197', 'NULL', 'Katherine', 'J', 'Smith', '0', '1949-06-25', 'M', 'NULL', 'F', 'katherine71@adventure-works.com', '120000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '6226 Monterey Ave', 'NULL', '855-555-0169', '2013-04-07', '5-10 Miles'], ['13198', '53', 'AW00013198', 'NULL', 'Cindy', 'A', 'Gray', '0', '1949-04-14', 'M', 'NULL', 'F', 'cindy25@adventure-works.com', '120000.00', '2', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '8983 Haynes Court', 'NULL', '772-555-0150', '2013-02-23', '5-10 Miles'], ['13199', '68', 'AW00013199', 'NULL', 'Timothy', 'F', 'Stewart', '0', '1948-12-22', 'S', 'NULL', 'M', 'timothy28@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '1385 Panoramic Ave.', 'NULL', '774-555-0159', '2013-01-28', '0-1 Miles'], ['13200', '359', 'AW00013200', 'NULL', 'Jessica', 'NULL', 'Miller', '0', '1949-01-06', 'M', 'NULL', 'F', 'jessica53@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '6992 Tara St.', 'NULL', '995-555-0180', '2013-11-10', '5-10 Miles'], ['13201', '66', 'AW00013201', 'NULL', 'Nicholas', 'NULL', 'Davis', '0', '1950-02-20', 'S', 'NULL', 'M', 'nicholas7@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9181 La Vista Circle', 'NULL', '448-555-0130', '2013-07-16', '10+ Miles'], ['13202', '310', 'AW00013202', 'NULL', 'Natasha', 'M', 'Romero', '0', '1949-10-17', 'S', 'NULL', 'F', 'natasha8@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '5812 Cincerto Circle', 'NULL', '674-555-0129', '2012-01-08', '1-2 Miles'], ['13203', '631', 'AW00013203', 'NULL', 'Bailey', 'E', 'Bell', '0', '1949-10-10', 'S', 'NULL', 'F', 'bailey11@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9449 Filling Ave.', 'NULL', '176-555-0176', '2012-01-28', '1-2 Miles'], ['13204', '329', 'AW00013204', 'NULL', 'Savannah', 'H', 'Parker', '0', '1955-08-04', 'S', 'NULL', 'F', 'savannah30@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8098 Virginia Circle', 'NULL', '550-555-0198', '2013-11-04', '10+ Miles'], ['13205', '304', 'AW00013205', 'NULL', 'Jerome', 'N', 'Torres', '0', '1950-02-06', 'M', 'NULL', 'M', 'jerome10@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7290 Mt. Hood Circle', '#176', '166-555-0145', '2012-01-19', '1-2 Miles'], ['13206', '68', 'AW00013206', 'NULL', 'Emily', 'NULL', 'Flores', '0', '1956-06-18', 'S', 'NULL', 'F', 'emily37@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3830 Sandy Cove Lane', 'NULL', '702-555-0144', '2013-02-17', '2-5 Miles'], ['13207', '307', 'AW00013207', 'NULL', 'Kenneth', 'S', 'Rai', '0', '1956-10-07', 'M', 'NULL', 'M', 'kenneth14@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2804 Alderwood Lane', 'NULL', '744-555-0141', '2013-10-06', '10+ Miles'], ['13208', '311', 'AW00013208', 'NULL', 'Cassidy', 'NULL', 'Bryant', '0', '1951-04-01', 'S', 'NULL', 'F', 'cassidy19@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '4906 Vine Hill Way', 'NULL', '938-555-0187', '2011-12-31', '10+ Miles'], ['13209', '51', 'AW00013209', 'NULL', 'Alexandria', 'V', 'Bailey', '0', '1951-01-14', 'M', 'NULL', 'F', 'alexandria38@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6970 Frame Ln', 'NULL', '172-555-0175', '2013-08-31', '10+ Miles'], ['13210', '355', 'AW00013210', 'NULL', 'Ethan', 'NULL', 'Simmons', '0', '1950-11-24', 'M', 'NULL', 'M', 'ethan11@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8310 Atchinson Stage Ct', 'NULL', '384-555-0142', '2011-12-31', '10+ Miles'], ['13211', '536', 'AW00013211', 'NULL', 'James', 'J', 'Jai', '0', '1951-06-11', 'M', 'NULL', 'M', 'james48@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8629 Partridge Dr', 'NULL', '192-555-0122', '2014-01-19', '2-5 Miles'], ['13212', '337', 'AW00013212', 'NULL', 'Logan', 'A', 'Phillips', '0', '1951-02-07', 'M', 'NULL', 'M', 'logan32@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9759 La Salle Ave.', 'NULL', '827-555-0119', '2012-01-27', '10+ Miles'], ['13213', '644', 'AW00013213', 'NULL', 'Courtney', 'L', 'King', '0', '1951-08-30', 'M', 'NULL', 'F', 'courtney15@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '487 Ash Lane', 'NULL', '894-555-0168', '2013-03-08', '2-5 Miles'], ['13214', '637', 'AW00013214', 'NULL', 'Elijah', 'L', 'Adams', '0', '1952-06-19', 'M', 'NULL', 'M', 'elijah43@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '6385 Mark Twain', 'NULL', '112-555-0174', '2012-01-11', '2-5 Miles'], ['13215', '574', 'AW00013215', 'NULL', 'Colleen', 'NULL', 'Sharma', '0', '1951-10-29', 'M', 'NULL', 'F', 'colleen33@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '496 Ashwood Dr', 'NULL', '761-555-0111', '2013-08-12', '10+ Miles'], ['13216', '322', 'AW00013216', 'NULL', 'Mary', 'NULL', 'Mitchell', '0', '1952-03-14', 'M', 'NULL', 'F', 'mary24@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '2333 Chestnut Avenue', 'NULL', '515-555-0115', '2013-05-08', '10+ Miles'], ['13217', '51', 'AW00013217', 'NULL', 'Julian', 'NULL', 'Alexander', '0', '1957-04-22', 'S', 'NULL', 'M', 'julian18@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '9534 Ridgewood Ct.', 'NULL', '735-555-0162', '2013-09-17', '10+ Miles'], ['13218', '307', 'AW00013218', 'NULL', 'Melissa', 'NULL', 'Bryant', '0', '1951-07-28', 'M', 'NULL', 'F', 'melissa13@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '9605 Reading Drive', 'NULL', '829-555-0116', '2013-11-02', '10+ Miles'], ['13219', '311', 'AW00013219', 'NULL', 'Rafael', 'A', 'Shan', '0', '1951-08-22', 'M', 'NULL', 'M', 'rafael34@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '8719 Wilbur Drive', 'NULL', '152-555-0174', '2013-10-05', '10+ Miles'], ['13220', '345', 'AW00013220', 'NULL', 'Isabella', 'NULL', 'Hernandez', '0', '1952-01-25', 'M', 'NULL', 'F', 'isabella49@adventure-works.com', '70000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '5516 Santa Teresa Dr.', 'NULL', '616-555-0183', '2011-12-31', '10+ Miles'], ['13221', '336', 'AW00013221', 'NULL', 'Madeline', 'NULL', 'Hall', '0', '1952-06-04', 'M', 'NULL', 'F', 'madeline20@adventure-works.com', '70000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '250 Piper Ridge Court', 'NULL', '195-555-0147', '2012-01-18', '10+ Miles'], ['13222', '49', 'AW00013222', 'NULL', 'Arturo', 'NULL', 'Liu', '0', '1951-08-30', 'M', 'NULL', 'M', 'arturo4@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '1599 Green Hill Rd', 'NULL', '287-555-0135', '2013-03-22', '1-2 Miles'], ['13223', '329', 'AW00013223', 'NULL', 'Noah', 'NULL', 'Lee', '0', '1952-01-06', 'S', 'NULL', 'M', 'noah69@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '3712 Kirker Pass Road', 'NULL', '610-555-0123', '2013-10-25', '10+ Miles'], ['13224', '623', 'AW00013224', 'NULL', 'Amanda', 'F', 'Brooks', '0', '1951-08-11', 'M', 'NULL', 'F', 'amanda19@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '3593 Buckthorn Court', '# 1', '287-555-0113', '2012-01-22', '10+ Miles'], ['13225', '299', 'AW00013225', 'NULL', 'Jésus', 'NULL', 'Suarez', '0', '1952-12-19', 'M', 'NULL', 'M', 'jésus18@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '7289 Ulfinian Way', 'NULL', '630-555-0121', '2012-01-09', '2-5 Miles'], ['13226', '644', 'AW00013226', 'NULL', 'Jenna', 'NULL', 'Mitchell', '0', '1952-09-09', 'M', 'NULL', 'F', 'jenna10@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '491 Heights Avenue', 'NULL', '554-555-0179', '2012-01-04', '10+ Miles'], ['13227', '307', 'AW00013227', 'NULL', 'Alexander', 'NULL', 'Wilson', '0', '1952-11-21', 'M', 'NULL', 'M', 'alexander12@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '215 Baxter Court', 'NULL', '780-555-0177', '2013-04-14', '2-5 Miles'], ['13228', '310', 'AW00013228', 'Mr.', 'Thomas', 'T.', 'Sanchez', '0', '1952-10-28', 'M', 'Jr.', 'M', 'thomas4@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '8645 Michigan Blvd', 'NULL', '127-555-0100', '2013-07-26', '10+ Miles'], ['13229', '553', 'AW00013229', 'NULL', 'Dylan', 'NULL', 'Wang', '0', '1953-02-02', 'M', 'NULL', 'M', 'dylan24@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '3658 Belmont', 'NULL', '181-555-0113', '2013-07-03', '1-2 Miles'], ['13230', '631', 'AW00013230', 'NULL', 'Chloe', 'J', 'Bryant', '0', '1952-09-07', 'M', 'NULL', 'F', 'chloe83@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '4630 Concord Blvd.', 'NULL', '851-555-0169', '2012-01-14', '10+ Miles'], ['13231', '52', 'AW00013231', 'NULL', 'Alexia', 'S', 'Ross', '0', '1954-04-10', 'M', 'NULL', 'F', 'alexia4@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1479 Megan Dr', 'NULL', '631-555-0118', '2013-04-24', '2-5 Miles'], ['13232', '543', 'AW00013232', 'NULL', 'Kaitlyn', 'L', 'Baker', '0', '1954-04-19', 'S', 'NULL', 'F', 'kaitlyn14@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '1003 Matterhorn Ct', 'NULL', '401-555-0126', '2013-09-07', '10+ Miles'], ['13233', '627', 'AW00013233', 'NULL', 'Richard', 'NULL', 'Coleman', '0', '1954-06-04', 'M', 'NULL', 'M', 'richard61@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '2237 Buena Vista Ave.', 'NULL', '144-555-0173', '2012-02-19', '10+ Miles'], ['13234', '633', 'AW00013234', 'NULL', 'Robert', 'P', 'Lewis', '0', '1959-08-19', 'S', 'NULL', 'M', 'robert81@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6178 E. 87th Street', 'NULL', '711-555-0115', '2013-01-31', '10+ Miles'], ['13235', '553', 'AW00013235', 'NULL', 'Jonathan', 'NULL', 'Robinson', '0', '1954-03-22', 'M', 'NULL', 'M', 'jonathan72@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '382 Jimno Ave', 'NULL', '909-555-0125', '2013-02-18', '10+ Miles'], ['13236', '300', 'AW00013236', 'NULL', 'Robert', 'B', 'Wang', '0', '1953-11-22', 'M', 'NULL', 'M', 'robert36@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '394 West Hook Road', 'NULL', '641-555-0146', '2013-10-20', '10+ Miles'], ['13237', '374', 'AW00013237', 'NULL', 'Devin', 'E', 'Stewart', '0', '1953-10-20', 'M', 'NULL', 'M', 'devin86@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '5540 Joseph Ave.', 'NULL', '847-555-0130', '2012-02-16', '1-2 Miles'], ['13238', '374', 'AW00013238', 'NULL', 'John', 'C', 'Williams', '0', '1954-04-25', 'M', 'NULL', 'M', 'john39@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5977 C Wharton Way', 'NULL', '228-555-0143', '2012-02-06', '10+ Miles'], ['13239', '54', 'AW00013239', 'NULL', 'Matthew', 'K', 'Thomas', '0', '1960-04-11', 'M', 'NULL', 'M', 'matthew16@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6740 Jalisco', 'NULL', '427-555-0141', '2013-05-24', '2-5 Miles'], ['13240', '307', 'AW00013240', 'NULL', 'Blake', 'K', 'Foster', '0', '1960-11-05', 'M', 'NULL', 'M', 'blake64@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '1466 Cherry St.', 'NULL', '773-555-0184', '2013-08-31', '10+ Miles'], ['13241', '69', 'AW00013241', 'NULL', 'Natalie', 'J', 'Ward', '0', '1961-01-01', 'M', 'NULL', 'F', 'natalie15@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3800 Breck Court', '# 60', '392-555-0168', '2013-09-04', '10+ Miles'], ['13242', '338', 'AW00013242', 'NULL', 'Kyle', 'C', 'Yang', '0', '1961-05-05', 'S', 'NULL', 'M', 'kyle23@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '144 Cast Street', 'NULL', '116-555-0177', '2013-10-09', '10+ Miles'], ['13243', '542', 'AW00013243', 'NULL', 'Alyssa', 'C', 'Davis', '0', '1957-05-12', 'S', 'NULL', 'F', 'alyssa4@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '711 Sweetwater Drive', 'NULL', '178-555-0113', '2012-02-05', '10+ Miles'], ['13244', '633', 'AW00013244', 'NULL', 'Jose', 'R', 'Sharma', '0', '1957-04-20', 'M', 'NULL', 'M', 'jose24@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8268 Donald Dr', 'NULL', '295-555-0132', '2013-10-10', '2-5 Miles'], ['13245', '548', 'AW00013245', 'NULL', 'Angel', 'E', 'Scott', '0', '1956-12-21', 'M', 'NULL', 'M', 'angel38@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '4377 Westminster Pl.', 'NULL', '287-555-0168', '2013-07-07', '2-5 Miles'], ['13246', '337', 'AW00013246', 'NULL', 'Hailey', 'M', 'Perez', '0', '1957-07-25', 'M', 'NULL', 'F', 'hailey53@adventure-works.com', '60000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4966 Santa Barbara Rd.', 'NULL', '635-555-0167', '2012-01-29', '10+ Miles'], ['13247', '301', 'AW00013247', 'NULL', 'Zachary', 'NULL', 'Chen', '0', '1963-05-11', 'M', 'NULL', 'M', 'zachary24@adventure-works.com', '60000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4003 Sugarland Circle', 'NULL', '849-555-0134', '2012-02-13', '10+ Miles'], ['13248', '614', 'AW00013248', 'NULL', 'Isabella', 'J', 'Martinez', '0', '1957-09-03', 'M', 'NULL', 'F', 'isabella73@adventure-works.com', '60000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2545 Boxer Blvd', 'NULL', '901-555-0148', '2012-01-30', '10+ Miles'], ['13249', '64', 'AW00013249', 'NULL', 'Ryan', 'NULL', 'Perry', '0', '1958-01-18', 'M', 'NULL', 'M', 'ryan10@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3651 Willow Lake Rd', 'NULL', '787-555-0136', '2013-04-10', '10+ Miles'], ['13250', '368', 'AW00013250', 'NULL', 'Jordan', 'J', 'King', '0', '1963-02-19', 'M', 'NULL', 'F', 'jordan48@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8211 Fremont Street', 'NULL', '228-555-0137', '2012-02-20', '10+ Miles'], ['13251', '237', 'AW00013251', 'NULL', 'Raymond', 'T', 'Malhotra', '0', '1974-08-12', 'M', 'NULL', 'M', 'raymond6@adventure-works.com', '130000.00', '2', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '1208 Dos Encinas', 'NULL', '1 (11) 500 555-0116', '2012-11-01', '5-10 Miles'], ['13252', '246', 'AW00013252', 'NULL', 'Bianca', 'NULL', 'Lu', '0', '1963-12-31', 'M', 'NULL', 'F', 'bianca9@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '407 Redbird Lane', 'NULL', '1 (11) 500 555-0138', '2012-11-10', '0-1 Miles'], ['13253', '248', 'AW00013253', 'NULL', 'Carly', 'R', 'Xie', '0', '1974-11-13', 'M', 'NULL', 'F', 'carly2@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6327 Mi Casa Court', 'NULL', '1 (11) 500 555-0168', '2012-11-02', '0-1 Miles'], ['13254', '260', 'AW00013254', 'NULL', 'Beth', 'C', 'Gomez', '0', '1963-07-23', 'M', 'NULL', 'F', 'beth3@adventure-works.com', '150000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '4590 Mori Court', 'NULL', '1 (11) 500 555-0171', '2012-12-11', '0-1 Miles'], ['13255', '174', 'AW00013255', 'NULL', 'Lance', 'M', 'Blanco', '0', '1962-09-23', 'M', 'NULL', 'M', 'lance15@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Hansaallee 4626', 'NULL', '1 (11) 500 555-0187', '2012-12-02', '0-1 Miles'], ['13256', '144', 'AW00013256', 'NULL', 'Abby', 'NULL', 'Subram', '0', '1963-05-13', 'S', 'NULL', 'F', 'abby10@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Am Grossen Dern 345', 'NULL', '1 (11) 500 555-0187', '2012-12-13', '0-1 Miles'], ['13257', '120', 'AW00013257', 'NULL', 'Jon', 'L', 'Chander', '0', '1963-01-03', 'M', 'NULL', 'M', 'jon12@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Auf Der Steige 123', 'NULL', '1 (11) 500 555-0170', '2011-01-13', '0-1 Miles'], ['13258', '133', 'AW00013258', 'NULL', 'Anne', 'NULL', 'Dominguez', '0', '1962-08-31', 'M', 'NULL', 'F', 'anne14@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Bundesallee 4', 'NULL', '1 (11) 500 555-0139', '2011-01-05', '5-10 Miles'], ['13259', '170', 'AW00013259', 'NULL', 'Allen', 'F', 'Garcia', '0', '1963-05-07', 'M', 'NULL', 'M', 'allen13@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Celler Weg 5040', 'Verkaufsabteilung', '1 (11) 500 555-0142', '2011-01-23', '5-10 Miles'], ['13260', '171', 'AW00013260', 'NULL', 'James', 'V', 'Flores', '0', '1963-04-08', 'M', 'NULL', 'M', 'james28@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Helsenbergbogen 6', 'NULL', '1 (11) 500 555-0147', '2011-01-17', '0-1 Miles'], ['13261', '160', 'AW00013261', 'NULL', 'Lindsey', 'S', 'Andersen', '0', '1962-10-03', 'M', 'NULL', 'F', 'lindsey14@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Auf dem Ufer 764', 'NULL', '1 (11) 500 555-0178', '2011-01-08', '5-10 Miles'], ['13262', '240', 'AW00013262', 'NULL', 'Jaime', 'D', 'Nara', '0', '1963-04-20', 'M', 'NULL', 'M', 'jaime39@adventure-works.com', '150000.00', '2', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '3048 Bayshore Rd.', 'NULL', '1 (11) 500 555-0141', '2013-03-22', '0-1 Miles'], ['13263', '188', 'AW00013263', 'NULL', 'Kate', 'K', 'Anand', '0', '1961-10-22', 'S', 'NULL', 'F', 'kate19@adventure-works.com', '110000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '4855 James Court', 'NULL', '1 (11) 500 555-0179', '2011-11-13', '5-10 Miles'], ['13264', '121', 'AW00013264', 'NULL', 'Melanie', 'NULL', 'Sanchez', '0', '1961-11-20', 'M', 'NULL', 'F', 'melanie47@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Heiderplatz 948', 'NULL', '1 (11) 500 555-0118', '2011-01-03', '5-10 Miles'], ['13265', '160', 'AW00013265', 'NULL', 'Luke', 'C', 'Adams', '0', '1961-07-21', 'S', 'NULL', 'M', 'luke46@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Hellweg 4754', 'NULL', '1 (11) 500 555-0111', '2011-01-11', '5-10 Miles'], ['13266', '337', 'AW00013266', 'NULL', 'Samuel', 'J', 'Wang', '0', '1962-01-11', 'M', 'NULL', 'M', 'samuel23@adventure-works.com', '70000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '6637 Park Glenn', 'NULL', '506-555-0135', '2013-03-20', '0-1 Miles'], ['13267', '50', 'AW00013267', 'NULL', 'Matthew', 'W', 'Moore', '0', '1937-09-02', 'M', 'NULL', 'M', 'matthew13@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '2854 Magda Way', 'NULL', '338-555-0146', '2013-04-11', '1-2 Miles'], ['13268', '69', 'AW00013268', 'NULL', 'Katherine', 'NULL', 'Parker', '0', '1938-01-21', 'M', 'NULL', 'F', 'katherine56@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '7695 Pastel Drive', 'NULL', '441-555-0190', '2013-02-13', '1-2 Miles'], ['13269', '626', 'AW00013269', 'NULL', 'Rachel', 'S', 'Martin', '0', '1937-09-05', 'S', 'NULL', 'F', 'rachel17@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '3704 Greendell Rd.', 'NULL', '832-555-0115', '2012-02-12', '1-2 Miles'], ['13270', '49', 'AW00013270', 'NULL', 'Mason', 'A', 'Baker', '0', '1939-04-26', 'S', 'NULL', 'M', 'mason28@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6519 Alier Drive', 'NULL', '680-555-0199', '2013-09-27', '5-10 Miles'], ['13271', '60', 'AW00013271', 'NULL', 'Ryan', 'W', 'Anderson', '0', '1939-06-19', 'M', 'NULL', 'M', 'ryan49@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9093 Gilardy Dr.', 'NULL', '630-555-0121', '2013-09-15', '5-10 Miles'], ['13272', '546', 'AW00013272', 'NULL', 'Jordan', 'NULL', 'Gonzalez', '0', '1938-10-12', 'S', 'NULL', 'F', 'jordan37@adventure-works.com', '90000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '3773 Hill Dr.', 'NULL', '316-555-0111', '2013-10-29', '5-10 Miles'], ['13273', '312', 'AW00013273', 'NULL', 'Elizabeth', 'NULL', 'Lee', '0', '1938-08-01', 'S', 'NULL', 'F', 'elizabeth26@adventure-works.com', '110000.00', '1', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1398 Dimaggio Way', 'NULL', '591-555-0186', '2012-02-25', '2-5 Miles'], ['13274', '607', 'AW00013274', 'NULL', 'Joshua', 'L', 'Lee', '0', '1970-10-01', 'S', 'NULL', 'M', 'joshua24@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '3281 Hillview Dr.', 'NULL', '476-555-0153', '2012-01-31', '2-5 Miles'], ['13275', '616', 'AW00013275', 'NULL', 'Carlos', 'A', 'Murphy', '0', '1971-02-24', 'M', 'NULL', 'M', 'carlos17@adventure-works.com', '100000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '4845 Lighthouse Way', 'NULL', '394-555-0149', '2013-02-10', '0-1 Miles'], ['13276', '616', 'AW00013276', 'NULL', 'Sarah', 'E', 'Johnson', '0', '1976-03-16', 'M', 'NULL', 'F', 'sarah3@adventure-works.com', '100000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '5325 Pinecreek Way', 'NULL', '784-555-0131', '2013-12-04', '0-1 Miles'], ['13277', '548', 'AW00013277', 'NULL', 'Nathan', 'D', 'Brown', '0', '1971-02-22', 'S', 'NULL', 'M', 'nathan62@adventure-works.com', '100000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '4690 Goen Road', 'NULL', '992-555-0153', '2012-02-16', '2-5 Miles'], ['13278', '307', 'AW00013278', 'NULL', 'Jorge', 'NULL', 'Hu', '0', '1971-05-09', 'S', 'NULL', 'M', 'jorge23@adventure-works.com', '110000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '6121 Chilpancingo Pk', 'NULL', '285-555-0110', '2012-02-26', '2-5 Miles'], ['13279', '352', 'AW00013279', 'NULL', 'Rachel', 'L', 'Howard', '0', '1971-05-02', 'M', 'NULL', 'F', 'rachel40@adventure-works.com', '130000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '1326 Greenwood Place', 'NULL', '691-555-0126', '2012-02-02', '1-2 Miles'], ['13280', '623', 'AW00013280', 'NULL', 'Bailey', 'NULL', 'Adams', '0', '1981-02-12', 'M', 'NULL', 'F', 'bailey35@adventure-works.com', '90000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '1817 Adobe Drive', 'NULL', '437-555-0199', '2012-02-22', '2-5 Miles'], ['13281', '301', 'AW00013281', 'NULL', 'Brent', 'P', 'Li', '0', '1975-05-14', 'M', 'NULL', 'M', 'brent3@adventure-works.com', '110000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '5972 Boxwood Dr.', 'NULL', '851-555-0116', '2014-01-10', '2-5 Miles'], ['13282', '302', 'AW00013282', 'NULL', 'Madison', 'NULL', 'Price', '0', '1980-12-08', 'M', 'NULL', 'F', 'madison35@adventure-works.com', '120000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '8881 Laguna St.', 'NULL', '356-555-0135', '2013-11-27', '2-5 Miles'], ['13283', '543', 'AW00013283', 'NULL', 'Dakota', 'NULL', 'Griffin', '0', '1962-06-19', 'M', 'NULL', 'M', 'dakota17@adventure-works.com', '80000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '921 Broadway', 'NULL', '136-555-0141', '2012-02-05', '0-1 Miles'], ['13284', '51', 'AW00013284', 'NULL', 'Victoria', 'NULL', 'Butler', '0', '1962-02-07', 'M', 'NULL', 'F', 'victoria61@adventure-works.com', '80000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '5423 Morengo Ct.', 'NULL', '108-555-0122', '2013-04-03', '2-5 Miles'], ['13285', '49', 'AW00013285', 'NULL', 'Kara', 'P', 'Chavez', '0', '1968-12-07', 'M', 'NULL', 'F', 'kara13@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3400 Folson Drive', 'NULL', '676-555-0114', '2013-02-06', '0-1 Miles'], ['13286', '545', 'AW00013286', 'NULL', 'Hannah', 'NULL', 'Rodriguez', '0', '1974-10-06', 'S', 'NULL', 'F', 'hannah18@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '1309 C St.', 'NULL', '152-555-0118', '2012-02-10', '10+ Miles'], ['13287', '301', 'AW00013287', 'NULL', 'Brandon', 'K', 'Rodriguez', '0', '1969-03-02', 'S', 'NULL', 'M', 'brandon50@adventure-works.com', '110000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '8625 Woodcrest Drive', 'NULL', '440-555-0117', '2012-02-11', '5-10 Miles'], ['13288', '326', 'AW00013288', 'NULL', 'Jackson', 'NULL', 'Lopez', '0', '1980-03-15', 'M', 'NULL', 'M', 'jackson42@adventure-works.com', '120000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '2081 Elkwood Drive', 'NULL', '644-555-0155', '2012-02-26', '5-10 Miles'], ['13289', '49', 'AW00013289', 'NULL', 'Alexandria', 'C', 'Coleman', '0', '1978-08-22', 'M', 'NULL', 'F', 'alexandria6@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '6652 Birch Park Rd', 'NULL', '245-555-0181', '2013-07-09', '5-10 Miles'], ['13290', '66', 'AW00013290', 'NULL', 'Jordan', 'NULL', 'Campbell', '0', '1967-12-30', 'M', 'NULL', 'M', 'jordan61@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '2709 Yellowood Pl.', 'NULL', '362-555-0198', '2013-04-21', '5-10 Miles'], ['13291', '481', 'AW00013291', 'NULL', 'Nina', 'NULL', 'Xu', '0', '1967-08-25', 'M', 'NULL', 'F', 'nina5@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '8689 St. George Court', 'NULL', '118-555-0189', '2013-05-25', '5-10 Miles'], ['13292', '612', 'AW00013292', 'NULL', 'Paula', 'M', 'Carlson', '0', '1973-08-08', 'S', 'NULL', 'F', 'paula20@adventure-works.com', '90000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '4025 Cherokee Drive', 'NULL', '737-555-0172', '2012-02-18', '5-10 Miles'], ['13293', '307', 'AW00013293', 'NULL', 'Barbara', 'NULL', 'Lu', '0', '1968-01-10', 'M', 'NULL', 'F', 'barbara21@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9450 Almond Street', 'NULL', '173-555-0168', '2013-07-20', '5-10 Miles'], ['13294', '614', 'AW00013294', 'NULL', 'Cassidy', 'NULL', 'Hughes', '0', '1966-12-09', 'M', 'NULL', 'F', 'cassidy12@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '6794 Robinson Ave.', 'NULL', '583-555-0153', '2013-10-06', '1-2 Miles'], ['13295', '547', 'AW00013295', 'NULL', 'Jasmine', 'NULL', 'Jackson', '0', '1972-10-19', 'M', 'NULL', 'F', 'jasmine10@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6434 Galveston Ct.', 'NULL', '384-555-0179', '2014-01-23', '5-10 Miles'], ['13296', '300', 'AW00013296', 'NULL', 'Seth', 'D', 'Anderson', '0', '1966-11-18', 'M', 'NULL', 'M', 'seth10@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '8922 Lindley Ct.', 'NULL', '485-555-0124', '2013-03-27', '5-10 Miles'], ['13297', '307', 'AW00013297', 'NULL', 'Arthur', 'S', 'Rubio', '0', '1966-12-20', 'M', 'NULL', 'M', 'arthur43@adventure-works.com', '110000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '9732 Hamilton Ct.', 'NULL', '758-555-0158', '2013-07-26', '5-10 Miles'], ['13298', '336', 'AW00013298', 'NULL', 'Anna', 'L', 'Harris', '0', '1972-07-23', 'M', 'NULL', 'F', 'anna51@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '5155 Centennial Way', 'NULL', '191-555-0115', '2012-02-19', '2-5 Miles'], ['13299', '352', 'AW00013299', 'NULL', 'Vanessa', 'NULL', 'Ross', '0', '1967-04-14', 'M', 'NULL', 'F', 'vanessa4@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '5661 Elkwood Drive', 'NULL', '292-555-0183', '2012-02-25', '2-5 Miles'], ['13300', '634', 'AW00013300', 'NULL', 'Timothy', 'NULL', 'Hernandez', '0', '1966-09-03', 'M', 'NULL', 'M', 'timothy44@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '2146 Twin View Drive', 'NULL', '824-555-0110', '2013-08-30', '5-10 Miles'], ['13301', '638', 'AW00013301', 'NULL', 'Angela', 'NULL', 'Stewart', '0', '1966-01-30', 'S', 'NULL', 'F', 'angela48@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '7785 Westchester Pl.', 'NULL', '597-555-0145', '2013-09-15', '5-10 Miles'], ['13302', '348', 'AW00013302', 'NULL', 'Cole', 'A', 'Torres', '0', '1961-02-14', 'S', 'NULL', 'M', 'cole6@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6625 First Ave.', 'NULL', '454-555-0186', '2013-03-01', '5-10 Miles'], ['13303', '59', 'AW00013303', 'NULL', 'Jonathan', 'NULL', 'Martinez', '0', '1966-09-30', 'M', 'NULL', 'M', 'jonathan71@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '5896 Mt. Dell', 'NULL', '507-555-0129', '2013-05-03', '1-2 Miles'], ['13304', '642', 'AW00013304', 'NULL', 'Sara', 'NULL', 'Peterson', '0', '1961-06-24', 'S', 'NULL', 'F', 'sara5@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '1870 Holland Circle', 'NULL', '778-555-0143', '2012-02-26', '5-10 Miles'], ['13305', '633', 'AW00013305', 'NULL', 'Oscar', 'M', 'Alexander', '0', '1971-09-18', 'M', 'NULL', 'M', 'oscar5@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '170 Minert Rd.', 'NULL', '118-555-0112', '2013-05-04', '5-10 Miles'], ['13306', '369', 'AW00013306', 'NULL', 'Kaitlyn', 'NULL', 'Cox', '0', '1961-05-27', 'M', 'NULL', 'F', 'kaitlyn57@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '0', '6891 Relis Valley Road', 'NULL', '376-555-0167', '2013-12-16', '1-2 Miles'], ['13307', '315', 'AW00013307', 'NULL', 'Michelle', 'NULL', 'Stone', '0', '1940-11-09', 'M', 'NULL', 'F', 'michelle23@adventure-works.com', '100000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '8425 W. Hook Road', 'NULL', '611-555-0131', '2013-06-04', '5-10 Miles'], ['13308', '644', 'AW00013308', 'NULL', 'Kaitlyn', 'NULL', 'King', '0', '1941-09-15', 'M', 'NULL', 'F', 'kaitlyn17@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8950 Jomar Drive', 'NULL', '889-555-0118', '2013-04-27', '5-10 Miles'], ['13309', '316', 'AW00013309', 'NULL', 'Angela', 'NULL', 'Sanders', '0', '1947-05-18', 'M', 'NULL', 'F', 'angela29@adventure-works.com', '90000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5757 Satin Court', 'NULL', '534-555-0131', '2013-04-19', '5-10 Miles'], ['13310', '633', 'AW00013310', 'NULL', 'Miguel', 'D', 'Barnes', '0', '1966-05-18', 'M', 'NULL', 'M', 'miguel49@adventure-works.com', '100000.00', '0', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '4071 Hames Dr.', 'NULL', '951-555-0191', '2013-03-13', '1-2 Miles'], ['13311', '635', 'AW00013311', 'NULL', 'Isabella', 'NULL', 'Reed', '0', '1965-09-23', 'M', 'NULL', 'F', 'isabella85@adventure-works.com', '100000.00', '0', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6351 22nd Ave.', 'NULL', '754-555-0118', '2013-12-25', '5-10 Miles'], ['13312', '307', 'AW00013312', 'NULL', 'Natalie', 'E', 'Jenkins', '0', '1965-11-17', 'M', 'NULL', 'F', 'natalie29@adventure-works.com', '110000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '214 Via Del Sol', 'NULL', '593-555-0122', '2013-07-22', '2-5 Miles'], ['13313', '325', 'AW00013313', 'NULL', 'Megan', 'L', 'Stone', '0', '1971-09-07', 'M', 'NULL', 'F', 'megan64@adventure-works.com', '120000.00', '1', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '4', '3197 Thornhill Place', 'NULL', '526-555-0123', '2013-03-13', '2-5 Miles'], ['13314', '326', 'AW00013314', 'NULL', 'Jordan', 'A', 'Hernandez', '0', '1966-01-31', 'M', 'NULL', 'M', 'jordan71@adventure-works.com', '120000.00', '1', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '4283 Oak Rd.', 'NULL', '409-555-0144', '2012-02-16', '5-10 Miles'], ['13315', '329', 'AW00013315', 'NULL', 'Lucas', 'E', 'Thomas', '0', '1959-10-01', 'M', 'NULL', 'M', 'lucas24@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '791 Monte Cresta', 'NULL', '651-555-0160', '2012-02-25', '5-10 Miles'], ['13316', '298', 'AW00013316', 'NULL', 'Angel', 'NULL', 'Rivera', '0', '1959-10-15', 'M', 'NULL', 'M', 'angel16@adventure-works.com', '80000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5612 Piedmont Dr.', 'NULL', '114-555-0171', '2012-02-24', '5-10 Miles'], ['13317', '338', 'AW00013317', 'NULL', 'Jeremiah', 'NULL', 'Long', '0', '1960-03-08', 'S', 'NULL', 'M', 'jeremiah30@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3298 Rock Creek Way', 'NULL', '146-555-0121', '2013-11-23', '5-10 Miles'], ['13318', '66', 'AW00013318', 'NULL', 'Amber', 'D', 'Perez', '0', '1959-08-25', 'M', 'NULL', 'F', 'amber12@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '93 N. 39th Street', 'NULL', '672-555-0166', '2013-02-12', '5-10 Miles'], ['13319', '627', 'AW00013319', 'NULL', 'Charles', 'NULL', 'Howard', '0', '1959-08-30', 'S', 'NULL', 'M', 'charles60@adventure-works.com', '70000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '651 Melody Dr.', 'NULL', '959-555-0179', '2012-02-02', '5-10 Miles'], ['13320', '326', 'AW00013320', 'NULL', 'Jasmine', 'J', 'Jones', '0', '1958-11-15', 'S', 'NULL', 'F', 'jasmine3@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '8357 Pheasant Circle', 'NULL', '499-555-0117', '2013-02-26', '1-2 Miles'], ['13321', '547', 'AW00013321', 'NULL', 'Arianna', 'A', 'Barnes', '0', '1959-04-18', 'S', 'NULL', 'F', 'arianna3@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '4001 Fawn Glen Circle', 'NULL', '189-555-0119', '2013-12-30', '1-2 Miles'], ['13322', '631', 'AW00013322', 'NULL', 'Elizabeth', 'E', 'Patterson', '0', '1958-11-19', 'S', 'NULL', 'F', 'elizabeth40@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9641 Matterhorn Ct.', 'NULL', '405-555-0192', '2013-05-09', '5-10 Miles'], ['13323', '345', 'AW00013323', 'NULL', 'Adam', 'NULL', 'Adams', '0', '1958-09-19', 'M', 'NULL', 'M', 'adam46@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '9381 Bayside Way', 'NULL', '129-555-0195', '2013-12-13', '1-2 Miles'], ['13324', '369', 'AW00013324', 'NULL', 'Florian', 'L', 'Stiller', '0', '1943-03-20', 'M', 'NULL', 'F', 'florian1@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '5254 Daylight Place', 'NULL', '798-555-0167', '2012-02-07', '0-1 Miles'], ['13325', '301', 'AW00013325', 'NULL', 'Marcus', 'NULL', 'Wright', '0', '1943-07-04', 'M', 'NULL', 'M', 'marcus30@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '569 Lunar Lane', 'NULL', '118-555-0179', '2012-02-04', '1-2 Miles'], ['13326', '300', 'AW00013326', 'NULL', 'Bob', 'J', 'Fernandez', '0', '1944-02-13', 'M', 'NULL', 'M', 'bob8@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '69 Market Pl.', 'NULL', '850-555-0165', '2012-02-04', '2-5 Miles'], ['13327', '609', 'AW00013327', 'NULL', 'Isabelle', 'S', 'Russell', '0', '1944-01-08', 'M', 'NULL', 'F', 'isabelle18@adventure-works.com', '170000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '6053 Hill Meadow Place', 'NULL', '738-555-0134', '2013-07-20', '0-1 Miles'], ['13328', '49', 'AW00013328', 'NULL', 'Albert', 'E', 'Serrano', '0', '1945-01-13', 'S', 'NULL', 'M', 'albert16@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4655 Shuey Ave', 'NULL', '813-555-0171', '2013-04-13', '5-10 Miles'], ['13329', '307', 'AW00013329', 'NULL', 'Jake', 'J', 'Wang', '0', '1944-09-01', 'M', 'NULL', 'M', 'jake1@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8170 Money Dr.', 'NULL', '274-555-0163', '2012-02-11', '1-2 Miles'], ['13330', '64', 'AW00013330', 'NULL', 'Maria', 'G', 'Patterson', '0', '1945-05-01', 'M', 'NULL', 'F', 'maria33@adventure-works.com', '100000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '512 Salvio St.', 'NULL', '155-555-0116', '2013-04-02', '1-2 Miles'], ['13331', '329', 'AW00013331', 'NULL', 'Lauren', 'A', 'Diaz', '0', '1945-05-21', 'M', 'NULL', 'F', 'lauren68@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '6951 Harmony Way', 'NULL', '184-555-0123', '2013-07-12', '0-1 Miles'], ['13332', '310', 'AW00013332', 'NULL', 'Neil', 'M', 'Alonso', '0', '1946-04-02', 'M', 'NULL', 'M', 'neil7@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '881 Brannan Pl.', 'NULL', '693-555-0144', '2013-10-17', '5-10 Miles'], ['13333', '311', 'AW00013333', 'NULL', 'Tara', 'C', 'Chander', '0', '1945-08-12', 'M', 'NULL', 'F', 'tara16@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '9665 Pamploma Ct.', 'NULL', '927-555-0118', '2013-09-24', '1-2 Miles'], ['13334', '536', 'AW00013334', 'NULL', 'Melanie', 'K', 'Rivera', '0', '1945-10-18', 'M', 'NULL', 'F', 'melanie42@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6081 Jeanne Circle', 'NULL', '256-555-0125', '2013-07-31', '1-2 Miles'], ['13335', '334', 'AW00013335', 'NULL', 'Alyssa', 'S', 'Barnes', '0', '1951-02-17', 'S', 'NULL', 'F', 'alyssa49@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4498 Dennis Circle', 'NULL', '317-555-0120', '2013-11-30', '5-10 Miles'], ['13336', '310', 'AW00013336', 'NULL', 'Deanna', 'NULL', 'Gill', '0', '1946-04-20', 'M', 'NULL', 'F', 'deanna40@adventure-works.com', '100000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '867 Maria Vega Court', 'NULL', '125-555-0154', '2013-04-08', '5-10 Miles'], ['13337', '638', 'AW00013337', 'NULL', 'Lauren', 'D', 'Cox', '0', '1953-05-05', 'M', 'NULL', 'F', 'lauren11@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '136 Balboa Court', 'NULL', '832-555-0117', '2013-06-06', '5-10 Miles'], ['13338', '368', 'AW00013338', 'NULL', 'Jada', 'J', 'Carter', '0', '1953-08-08', 'S', 'NULL', 'F', 'jada22@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8136 Michele Drive', 'NULL', '298-555-0117', '2014-01-26', '5-10 Miles'], ['13339', '368', 'AW00013339', 'NULL', 'Nicole', 'G', 'Clark', '0', '1947-07-19', 'S', 'NULL', 'F', 'nicole19@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2635 Sandy Way', 'NULL', '564-555-0118', '2013-02-09', '5-10 Miles'], ['13340', '299', 'AW00013340', 'NULL', 'Natalie', 'NULL', 'Edwards', '0', '1947-10-31', 'M', 'NULL', 'F', 'natalie45@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4970 B Way', 'NULL', '971-555-0122', '2012-02-18', '1-2 Miles'], ['13341', '337', 'AW00013341', 'NULL', 'Lucas', 'L', 'King', '0', '1948-03-14', 'M', 'NULL', 'M', 'lucas42@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5490 Reality Drive', 'NULL', '681-555-0189', '2013-02-15', '5-10 Miles'], ['13342', '312', 'AW00013342', 'NULL', 'Brandon', 'C', 'Jackson', '0', '1947-12-15', 'S', 'NULL', 'M', 'brandon32@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6583 El Rancho Drive', 'NULL', '505-555-0190', '2013-11-07', '5-10 Miles'], ['13343', '70', 'AW00013343', 'NULL', 'Melanie', 'G', 'Bradley', '0', '1953-09-21', 'M', 'NULL', 'F', 'melanie16@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1732 Pine Creek Way', 'NULL', '907-555-0122', '2013-05-06', '1-2 Miles'], ['13344', '633', 'AW00013344', 'NULL', 'Caitlin', 'A', 'Reed', '0', '1948-03-10', 'M', 'NULL', 'F', 'caitlin18@adventure-works.com', '110000.00', '2', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3906 Castlewood', 'NULL', '610-555-0117', '2013-05-02', '5-10 Miles'], ['13345', '54', 'AW00013345', 'NULL', 'Dalton', 'A', 'Butler', '0', '1947-08-30', 'M', 'NULL', 'M', 'dalton60@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '2906 Hillcrest Ave.', 'NULL', '557-555-0117', '2013-05-22', '0-1 Miles'], ['13346', '536', 'AW00013346', 'NULL', 'Gregory', 'S', 'Chande', '0', '1948-11-22', 'S', 'NULL', 'M', 'gregory18@adventure-works.com', '110000.00', '2', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '9261 S Royal Links Circle', 'NULL', '454-555-0118', '2012-02-18', '5-10 Miles'], ['13347', '347', 'AW00013347', 'NULL', 'Rachel', 'NULL', 'Hall', '0', '1948-07-01', 'M', 'NULL', 'F', 'rachel27@adventure-works.com', '120000.00', '2', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '3531 Brookview Drive', 'NULL', '901-555-0137', '2013-06-05', '5-10 Miles'], ['13348', '336', 'AW00013348', 'NULL', 'Noah', 'NULL', 'Young', '0', '1948-08-18', 'M', 'NULL', 'M', 'noah44@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '3867 Vista Way', 'NULL', '672-555-0123', '2012-02-05', '0-1 Miles'], ['13349', '345', 'AW00013349', 'NULL', 'Kaitlyn', 'A', 'Gonzalez', '0', '1949-04-04', 'M', 'NULL', 'F', 'kaitlyn15@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '2416 Kaski Ln.', 'NULL', '698-555-0190', '2013-02-13', '5-10 Miles'], ['13350', '63', 'AW00013350', 'NULL', 'Isaac', 'NULL', 'Sandberg', '0', '1949-03-02', 'M', 'NULL', 'M', 'isaac3@adventure-works.com', '170000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '7770 Mota Dr.', 'NULL', '324-555-0137', '2013-04-18', '5-10 Miles'], ['13351', '618', 'AW00013351', 'NULL', 'Mariah', 'NULL', 'Cox', '0', '1949-10-25', 'S', 'NULL', 'F', 'mariah35@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7506 Hill Meadow Place', 'NULL', '628-555-0166', '2012-02-19', '1-2 Miles'], ['13352', '331', 'AW00013352', 'NULL', 'Joseph', 'E', 'Davis', '0', '1955-03-03', 'S', 'NULL', 'M', 'joseph11@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '874 Olivera Road', 'NULL', '248-555-0183', '2013-06-21', '10+ Miles'], ['13353', '626', 'AW00013353', 'NULL', 'Jordyn', 'S', 'Coleman', '0', '1955-09-22', 'S', 'NULL', 'F', 'jordyn5@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8924 Amanda Circle', 'NULL', '127-555-0166', '2012-02-22', '10+ Miles'], ['13354', '637', 'AW00013354', 'NULL', 'Eric', 'NULL', 'Campbell', '0', '1955-11-08', 'M', 'NULL', 'M', 'eric49@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5486 Woodruff Ln.', 'NULL', '293-555-0189', '2012-02-25', '10+ Miles'], ['13355', '633', 'AW00013355', 'NULL', 'Jackson', 'NULL', 'Jai', '0', '1950-03-24', 'M', 'NULL', 'M', 'jackson5@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5923 Hazelwood Lane', 'NULL', '767-555-0137', '2012-02-12', '10+ Miles'], ['13356', '609', 'AW00013356', 'NULL', 'Stefanie', 'J', 'Prasad', '0', '1950-11-04', 'M', 'NULL', 'F', 'stefanie6@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2703 Freda Dr.', '# 13', '402-555-0146', '2013-10-16', '2-5 Miles'], ['13357', '316', 'AW00013357', 'NULL', 'Blake', 'C', 'Gonzales', '0', '1951-03-27', 'S', 'NULL', 'M', 'blake65@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6887 Deerberry Ct.', 'NULL', '101-555-0146', '2012-02-05', '10+ Miles'], ['13358', '53', 'AW00013358', 'NULL', 'Alexandra', 'NULL', 'Edwards', '0', '1950-12-13', 'M', 'NULL', 'F', 'alexandra45@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '138 Lancelot Dr.', '# 105', '940-555-0193', '2013-09-20', '10+ Miles'], ['13359', '315', 'AW00013359', 'NULL', 'Ian', 'C', 'Wood', '0', '1951-03-02', 'M', 'NULL', 'M', 'ian42@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3589 Bancroft Rd.', 'NULL', '304-555-0141', '2012-01-30', '10+ Miles'], ['13360', '311', 'AW00013360', 'NULL', 'Jada', 'NULL', 'Cook', '0', '1951-07-03', 'M', 'NULL', 'F', 'jada13@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '55 St. George Dr.', 'NULL', '735-555-0182', '2013-02-04', '10+ Miles'], ['13361', '542', 'AW00013361', 'NULL', 'Cameron', 'F', 'Jai', '0', '1952-02-29', 'M', 'NULL', 'M', 'cameron28@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '8185 Sol Street', 'NULL', '366-555-0160', '2012-02-25', '2-5 Miles'], ['13362', '298', 'AW00013362', 'NULL', 'Destiny', 'NULL', 'Morgan', '0', '1962-08-08', 'S', 'NULL', 'F', 'destiny29@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '7566 Keller Ridge Dr.', 'NULL', '211-555-0112', '2012-02-04', '10+ Miles'], ['13363', '553', 'AW00013363', 'NULL', 'Sydney', 'K', 'Allen', '0', '1951-12-14', 'M', 'NULL', 'F', 'sydney88@adventure-works.com', '70000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '7421 Palisade Court', 'NULL', '573-555-0126', '2013-02-28', '1-2 Miles'], ['13364', '298', 'AW00013364', 'NULL', 'Natalie', 'F', 'Anderson', '0', '1952-04-01', 'S', 'NULL', 'F', 'natalie77@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '7983 Stony Hill Circle', 'NULL', '784-555-0177', '2013-05-15', '10+ Miles'], ['13365', '311', 'AW00013365', 'NULL', 'Luke', 'NULL', 'Shan', '0', '1957-09-21', 'M', 'NULL', 'M', 'luke20@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '2278 Rosa', 'NULL', '290-555-0119', '2013-09-11', '1-2 Miles'], ['13366', '71', 'AW00013366', 'NULL', 'Austin', 'E', 'Davis', '0', '1957-05-06', 'M', 'NULL', 'M', 'austin44@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '8547 Lyon Circle', 'NULL', '923-555-0190', '2013-05-26', '10+ Miles'], ['13367', '626', 'AW00013367', 'NULL', 'Savannah', 'NULL', 'Edwards', '0', '1952-10-11', 'M', 'NULL', 'F', 'savannah22@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '4109 Mi Casa Court', 'NULL', '742-555-0150', '2012-02-27', '10+ Miles'], ['13368', '635', 'AW00013368', 'NULL', 'Kyle', 'C', 'Henderson', '0', '1969-12-18', 'M', 'NULL', 'M', 'kyle1@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '7188 Viewpoint Ct', 'NULL', '112-555-0119', '2013-10-26', '1-2 Miles'], ['13369', '614', 'AW00013369', 'NULL', 'Mariah', 'C', 'Henderson', '0', '1953-02-13', 'M', 'NULL', 'F', 'mariah9@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3447 Mozden Lane', 'NULL', '263-555-0151', '2012-02-02', '5-10 Miles'], ['13370', '546', 'AW00013370', 'NULL', 'Blake', 'M', 'Ross', '0', '1959-03-19', 'M', 'NULL', 'M', 'blake51@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', 'Rt. 6415 Box A', 'NULL', '331-555-0154', '2013-11-18', '10+ Miles'], ['13371', '548', 'AW00013371', 'NULL', 'Sydney', 'B', 'Gonzales', '0', '1959-11-17', 'S', 'NULL', 'F', 'sydney39@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6880 N Lanky Lane', 'NULL', '712-555-0120', '2013-08-06', '10+ Miles'], ['13372', '648', 'AW00013372', 'NULL', 'Isaac', 'R', 'Edwards', '0', '1954-05-28', 'M', 'NULL', 'M', 'isaac24@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9421 South Royal Links', 'NULL', '132-555-0164', '2013-02-04', '10+ Miles'], ['13373', '300', 'AW00013373', 'NULL', 'Michelle', 'L', 'Murphy', '0', '1953-09-01', 'S', 'NULL', 'F', 'michelle15@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2104 Grading Way', 'NULL', '331-555-0144', '2013-03-31', '10+ Miles'], ['13374', '302', 'AW00013374', 'NULL', 'Marco', 'M', 'Martinez', '0', '1959-05-17', 'M', 'NULL', 'M', 'marco18@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '3917 Fern Leaf Lane', 'NULL', '143-555-0120', '2013-10-13', '2-5 Miles'], ['13375', '310', 'AW00013375', 'NULL', 'Jason', 'NULL', 'Kumar', '0', '1953-10-09', 'M', 'NULL', 'M', 'jason26@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1974 Heritage Oaks', 'NULL', '758-555-0180', '2013-12-03', '10+ Miles'], ['13376', '311', 'AW00013376', 'NULL', 'Jerry', 'D', 'Rai', '0', '1959-08-31', 'M', 'NULL', 'M', 'jerry19@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3576 Silver Cypress Ct.', 'NULL', '607-555-0170', '2013-09-26', '2-5 Miles'], ['13377', '368', 'AW00013377', 'NULL', 'Thomas', 'NULL', 'Hernandez', '0', '1953-09-13', 'M', 'NULL', 'M', 'thomas54@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7879 Mt. Etna Drive', 'NULL', '819-555-0122', '2013-05-01', '10+ Miles'], ['13378', '385', 'AW00013378', 'NULL', 'Alexandra', 'J', 'Bailey', '0', '1959-09-14', 'M', 'NULL', 'F', 'alexandra10@adventure-works.com', '70000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8885 Partridge Dr.', 'NULL', '243-555-0161', '2012-01-31', '1-2 Miles'], ['13379', '638', 'AW00013379', 'NULL', 'Bailey', 'NULL', 'Morris', '0', '1954-11-11', 'S', 'NULL', 'F', 'bailey16@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '388 Frame Lane', 'NULL', '808-555-0180', '2013-07-17', '2-5 Miles'], ['13380', '298', 'AW00013380', 'NULL', 'Katherine', 'NULL', 'Scott', '0', '1955-04-24', 'M', 'NULL', 'F', 'katherine61@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '0', '9059 Northgate Road', 'NULL', '429-555-0112', '2012-02-01', '2-5 Miles'], ['13381', '312', 'AW00013381', 'NULL', 'Vanessa', 'NULL', 'Jenkins', '0', '1960-03-18', 'M', 'NULL', 'F', 'vanessa7@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '6221 Steven Way', 'NULL', '915-555-0151', '2013-07-24', '10+ Miles'], ['13382', '369', 'AW00013382', 'NULL', 'Richard', 'V', 'Rogers', '0', '1960-02-01', 'M', 'NULL', 'M', 'richard100@adventure-works.com', '70000.00', '5', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '7629 Alier Dr.', 'NULL', '591-555-0190', '2012-02-12', '1-2 Miles'], ['13383', '536', 'AW00013383', 'NULL', 'Natalie', 'J', 'Wright', '0', '1961-09-29', 'S', 'NULL', 'F', 'natalie63@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6075 Olive Hill', 'NULL', '996-555-0114', '2012-01-31', '10+ Miles'], ['13384', '611', 'AW00013384', 'NULL', 'Mario', 'T', 'Ashe', '0', '1956-04-23', 'S', 'NULL', 'M', 'mario21@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1809 Candellero Dr.', 'NULL', '763-555-0114', '2012-02-04', '10+ Miles'], ['13385', '618', 'AW00013385', 'NULL', 'Danielle', 'M', 'Cook', '0', '1956-05-26', 'S', 'NULL', 'F', 'danielle24@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8305 California St.', 'NULL', '140-555-0112', '2012-02-23', '10+ Miles'], ['13386', '543', 'AW00013386', 'NULL', 'Samuel', 'R', 'Patterson', '0', '1955-07-26', 'M', 'NULL', 'M', 'samuel9@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '3260 Marsh Meadow Way', 'NULL', '668-555-0143', '2013-10-02', '2-5 Miles'], ['13387', '299', 'AW00013387', 'NULL', 'Miranda', 'L', 'Jenkins', '0', '1955-09-18', 'M', 'NULL', 'F', 'miranda7@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '4739 Delta View Ln', 'NULL', '588-555-0148', '2013-11-02', '10+ Miles'], ['13388', '302', 'AW00013388', 'NULL', 'Marshall', 'M', 'Shen', '0', '1955-12-11', 'S', 'NULL', 'M', 'marshall23@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '1530 Dallis Drive', 'NULL', '170-555-0132', '2013-03-05', '10+ Miles'], ['13389', '335', 'AW00013389', 'NULL', 'Madison', 'M', 'Thomas', '0', '1956-05-19', 'M', 'NULL', 'F', 'madison11@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '8744 Black Walnut', 'NULL', '245-555-0112', '2013-11-30', '1-2 Miles'], ['13390', '347', 'AW00013390', 'NULL', 'Julia', 'C', 'Collins', '0', '1955-11-23', 'M', 'NULL', 'F', 'julia4@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '9622 Precipice Court', 'NULL', '697-555-0157', '2013-12-30', '1-2 Miles'], ['13391', '43', 'AW00013391', 'NULL', 'Brenda', 'NULL', 'Malhotra', '0', '1956-08-26', 'M', 'NULL', 'F', 'brenda8@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '5190 Jacqueline Way', 'NULL', '113-555-0198', '2013-10-02', '10+ Miles'], ['13392', '536', 'AW00013392', 'NULL', 'Hunter', 'NULL', 'Parker', '0', '1956-10-30', 'M', 'NULL', 'M', 'hunter28@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '717 Westwood Court', 'NULL', '407-555-0160', '2013-11-09', '10+ Miles'], ['13393', '536', 'AW00013393', 'NULL', 'Willie', 'NULL', 'Kumar', '0', '1956-10-15', 'M', 'NULL', 'M', 'willie27@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '613 Lakehurst Dr.', 'NULL', '168-555-0116', '2013-05-10', '2-5 Miles'], ['13394', '536', 'AW00013394', 'NULL', 'Matthew', 'L', 'Clark', '0', '1956-09-11', 'S', 'NULL', 'M', 'matthew24@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1400 Gibrix Drive', 'NULL', '544-555-0139', '2013-05-12', '10+ Miles'], ['13395', '609', 'AW00013395', 'NULL', 'Gabriel', 'J', 'Li', '0', '1957-01-11', 'M', 'NULL', 'M', 'gabriel23@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6374 Roundtree Drive', 'NULL', '502-555-0188', '2013-07-18', '2-5 Miles'], ['13396', '631', 'AW00013396', 'NULL', 'David', 'NULL', 'Kumar', '0', '1956-12-24', 'M', 'NULL', 'M', 'david60@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3997 Alpine Drive', 'NULL', '617-555-0190', '2013-05-29', '10+ Miles'], ['13397', '634', 'AW00013397', 'NULL', 'Adam', 'NULL', 'Mitchell', '0', '1962-04-04', 'M', 'NULL', 'M', 'adam41@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '3560 Harvard Dr.', 'NULL', '126-555-0119', '2013-11-12', '10+ Miles'], ['13398', '638', 'AW00013398', 'NULL', 'Logan', 'L', 'Ross', '0', '1973-09-12', 'M', 'NULL', 'M', 'logan6@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '2416 Fairlane Place', 'NULL', '315-555-0143', '2013-11-21', '10+ Miles'], ['13399', '326', 'AW00013399', 'NULL', 'Edward', 'A', 'Young', '0', '1956-09-17', 'M', 'NULL', 'M', 'edward47@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '9529 North Park Court', 'NULL', '385-555-0122', '2013-11-08', '2-5 Miles'], ['13400', '326', 'AW00013400', 'NULL', 'Julia', 'B', 'Thomas', '0', '1962-08-08', 'M', 'NULL', 'F', 'julia33@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '9424 Athens Circle', 'NULL', '142-555-0167', '2012-02-26', '2-5 Miles'], ['13401', '385', 'AW00013401', 'NULL', 'Erin', 'S', 'Bradley', '0', '1963-02-18', 'S', 'NULL', 'F', 'erin18@adventure-works.com', '60000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2111 Freedom Court', 'NULL', '978-555-0178', '2012-02-28', '10+ Miles'], ['13402', '316', 'AW00013402', 'NULL', 'Gabriel', 'E', 'Turner', '0', '1957-09-25', 'M', 'NULL', 'M', 'gabriel35@adventure-works.com', '60000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '2376 Holiday Hills Dr.', 'NULL', '127-555-0118', '2012-02-22', '2-5 Miles'], ['13403', '553', 'AW00013403', 'NULL', 'Jennifer', 'NULL', 'Jackson', '0', '1957-10-30', 'S', 'NULL', 'F', 'jennifer40@adventure-works.com', '70000.00', '5', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5710 Ida Drive', 'NULL', '385-555-0139', '2012-02-23', '10+ Miles'], ['13404', '248', 'AW00013404', 'NULL', 'Kelvin', 'NULL', 'Yang', '0', '1975-03-09', 'M', 'NULL', 'M', 'kelvin24@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9252 Lindell Dr.', 'NULL', '1 (11) 500 555-0123', '2012-12-16', '0-1 Miles'], ['13405', '189', 'AW00013405', 'NULL', 'Ethan', 'L', 'Bryant', '0', '1963-04-04', 'M', 'NULL', 'M', 'ethan14@adventure-works.com', '110000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '5, rue de la Comédie', 'NULL', '1 (11) 500 555-0166', '2011-11-01', '5-10 Miles'], ['13406', '170', 'AW00013406', 'NULL', 'Craig', 'NULL', 'Jiménez', '0', '1962-07-05', 'M', 'NULL', 'M', 'craig6@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Auf der Krone 4775', 'NULL', '1 (11) 500 555-0133', '2011-01-28', '5-10 Miles'], ['13407', '253', 'AW00013407', 'NULL', 'Cassandra', 'NULL', 'Rana', '0', '1963-04-06', 'S', 'NULL', 'F', 'cassandra12@adventure-works.com', '150000.00', '2', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '9055 Calafia Ave', 'NULL', '1 (11) 500 555-0175', '2012-12-27', '0-1 Miles'], ['13408', '265', 'AW00013408', 'NULL', 'Katherine', 'R', 'Gonzales', '0', '1962-10-06', 'M', 'NULL', 'F', 'katherine43@adventure-works.com', '170000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '2139 Birdwatch Ave.', 'NULL', '1 (11) 500 555-0189', '2012-12-14', '0-1 Miles'], ['13409', '224', 'AW00013409', 'NULL', 'Cory', 'P', 'Fernandez', '0', '1966-03-22', 'M', 'NULL', 'M', 'cory14@adventure-works.com', '110000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '1509, rue Maillard', 'NULL', '1 (11) 500 555-0113', '2013-10-22', '10+ Miles'], ['13410', '153', 'AW00013410', 'NULL', 'Jillian', 'A', 'Madan', '0', '1961-05-18', 'M', 'NULL', 'F', 'jillian8@adventure-works.com', '110000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Viktoria-Luise-Platz 347', '#59', '1 (11) 500 555-0176', '2013-06-07', '10+ Miles'], ['13411', '229', 'AW00013411', 'NULL', 'Jacquelyn', 'NULL', 'Blanco', '0', '1960-12-30', 'M', 'NULL', 'F', 'jacquelyn16@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '3894 Dennis Circle', 'NULL', '1 (11) 500 555-0116', '2012-12-07', '5-10 Miles'], ['13412', '232', 'AW00013412', 'NULL', 'Rafael', 'NULL', 'Zhao', '0', '1961-04-12', 'M', 'NULL', 'M', 'rafael11@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '828 Pinewood Court', 'NULL', '1 (11) 500 555-0146', '2013-12-09', '0-1 Miles'], ['13413', '547', 'AW00013413', 'NULL', 'Fernando', 'NULL', 'Phillips', '0', '1938-05-18', 'M', 'NULL', 'M', 'fernando39@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1410 N Ranchford Court', 'NULL', '905-555-0115', '2013-10-31', '5-10 Miles'], ['13414', '546', 'AW00013414', 'NULL', 'Miguel', 'NULL', 'Wilson', '0', '1938-12-29', 'M', 'NULL', 'M', 'miguel6@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '7751 Lunar Lane', 'NULL', '510-555-0111', '2013-05-06', '0-1 Miles'], ['13415', '300', 'AW00013415', 'NULL', 'Marcus', 'A', 'Rogers', '0', '1938-10-04', 'S', 'NULL', 'M', 'marcus94@adventure-works.com', '100000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '8408 Hillview Dr.', 'NULL', '796-555-0139', '2013-05-26', '2-5 Miles'], ['13416', '322', 'AW00013416', 'NULL', 'Richard', 'NULL', 'Roberts', '0', '1944-11-16', 'S', 'NULL', 'M', 'richard32@adventure-works.com', '110000.00', '1', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '535 Greendell Pl', 'NULL', '510-555-0180', '2013-03-10', '1-2 Miles'], ['13417', '337', 'AW00013417', 'NULL', 'Ian', 'D', 'Cox', '0', '1938-09-07', 'M', 'NULL', 'M', 'ian77@adventure-works.com', '110000.00', '1', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '5120 La Canada', 'NULL', '955-555-0117', '2013-05-02', '2-5 Miles'], ['13418', '68', 'AW00013418', 'NULL', 'Devin', 'C', 'Cox', '0', '1970-12-01', 'M', 'NULL', 'M', 'devin78@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '2557 Meadowbrook Dr.', 'NULL', '279-555-0143', '2013-05-05', '2-5 Miles'], ['13419', '611', 'AW00013419', 'NULL', 'Lauren', 'NULL', 'Coleman', '0', '1970-12-21', 'M', 'NULL', 'F', 'lauren53@adventure-works.com', '90000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '3747 Likins Avenue', 'NULL', '123-555-0127', '2012-02-10', '0-1 Miles'], ['13420', '326', 'AW00013420', 'NULL', 'Jordan', 'B', 'Turner', '0', '1971-01-30', 'M', 'NULL', 'F', 'jordan33@adventure-works.com', '120000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '6905 Mendouno Dr.', 'NULL', '382-555-0160', '2012-02-21', '2-5 Miles'], ['13421', '368', 'AW00013421', 'NULL', 'Alyssa', 'C', 'Patterson', '0', '1970-12-21', 'M', 'NULL', 'F', 'alyssa56@adventure-works.com', '130000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2904 Bay View Drive', 'NULL', '727-555-0180', '2013-04-27', '1-2 Miles'], ['13422', '372', 'AW00013422', 'NULL', 'Jacqueline', 'C', 'Washington', '0', '1982-03-13', 'S', 'NULL', 'F', 'jacqueline14@adventure-works.com', '160000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '4', '6171 Rosey View Drive', 'NULL', '852-555-0111', '2013-05-16', '0-1 Miles'], ['13423', '66', 'AW00013423', 'NULL', 'Alex', 'M', 'Peterson', '0', '1969-09-03', 'S', 'NULL', 'M', 'alex8@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '2647 Santa Ana Dr.', 'NULL', '670-555-0124', '2013-07-24', '2-5 Miles'], ['13424', '539', 'AW00013424', 'NULL', 'Jasmine', 'M', 'Thomas', '0', '1981-03-16', 'M', 'NULL', 'F', 'jasmine9@adventure-works.com', '90000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '3484 Springer Court', 'NULL', '337-555-0179', '2012-02-02', '2-5 Miles'], ['13425', '614', 'AW00013425', 'NULL', 'Jose', 'L', 'Garcia', '0', '1970-01-03', 'M', 'NULL', 'M', 'jose78@adventure-works.com', '90000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '3498 Olive Ave.', 'NULL', '435-555-0139', '2012-02-23', '2-5 Miles'], ['13426', '298', 'AW00013426', 'NULL', 'Taylor', 'NULL', 'Williams', '0', '1969-12-10', 'S', 'NULL', 'F', 'taylor49@adventure-works.com', '110000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '5272 Mill Rd.', 'NULL', '526-555-0132', '2012-03-05', '2-5 Miles'], ['13427', '336', 'AW00013427', 'NULL', 'Connor', 'A', 'Winston', '0', '1975-03-08', 'S', 'NULL', 'M', 'connor19@adventure-works.com', '130000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '6127 Lilly Lane', 'NULL', '140-555-0183', '2013-05-21', '1-2 Miles'], ['13428', '347', 'AW00013428', 'NULL', 'Marcus', 'A', 'Ramirez', '0', '1970-06-09', 'M', 'NULL', 'M', 'marcus82@adventure-works.com', '130000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '1888 Buena Vista', 'NULL', '127-555-0144', '2013-05-11', '0-1 Miles'], ['13429', '352', 'AW00013429', 'NULL', 'Gabrielle', 'NULL', 'Washington', '0', '1969-08-03', 'M', 'NULL', 'F', 'gabrielle35@adventure-works.com', '150000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '74 Valley Blvd.', 'NULL', '361-555-0188', '2012-03-11', '1-2 Miles'], ['13430', '369', 'AW00013430', 'NULL', 'Edward', 'NULL', 'Griffin', '0', '1980-11-07', 'M', 'NULL', 'M', 'edward69@adventure-works.com', '150000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '4202 Northridge Dr.', 'NULL', '111-555-0181', '2013-03-22', '0-1 Miles'], ['13431', '642', 'AW00013431', 'NULL', 'Bryan', 'E', 'James', '0', '1962-01-31', 'M', 'NULL', 'M', 'bryan4@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '1278 Sunshine Dr.', 'NULL', '580-555-0138', '2012-03-14', '5-10 Miles'], ['13432', '607', 'AW00013432', 'NULL', 'Dalton', 'S', 'Wood', '0', '1978-06-14', 'S', 'NULL', 'M', 'dalton47@adventure-works.com', '80000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7392 Diver Way', 'NULL', '540-555-0150', '2013-03-27', '2-5 Miles'], ['13433', '298', 'AW00013433', 'NULL', 'Jessie', 'E', 'Vazquez', '0', '1961-09-08', 'S', 'NULL', 'F', 'jessie33@adventure-works.com', '90000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6483 Crystal Ave.', 'NULL', '773-555-0121', '2012-03-18', '5-10 Miles'], ['13434', '54', 'AW00013434', 'NULL', 'Kaitlyn', 'G', 'Wright', '0', '1940-06-03', 'S', 'NULL', 'F', 'kaitlyn18@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1589 Santa Teresa Dr.', 'NULL', '706-555-0121', '2013-10-13', '5-10 Miles'], ['13435', '300', 'AW00013435', 'NULL', 'Tracy', 'A', 'Pal', '0', '1940-03-16', 'M', 'NULL', 'F', 'tracy11@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3024 W Lake Drive', 'NULL', '157-555-0153', '2012-03-17', '5-10 Miles'], ['13436', '618', 'AW00013436', 'NULL', 'Gail', 'NULL', 'Griffin', '0', '1968-07-03', 'S', 'NULL', 'F', 'gail7@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '5871 Detroit Ave.', 'NULL', '450-555-0171', '2012-03-12', '5-10 Miles'], ['13437', '632', 'AW00013437', 'NULL', 'Ethan', 'B', 'Flores', '0', '1974-08-22', 'M', 'NULL', 'M', 'ethan9@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '8373 Endriss', 'NULL', '836-555-0132', '2013-03-02', '10+ Miles'], ['13438', '634', 'AW00013438', 'NULL', 'Chloe', 'NULL', 'Griffin', '0', '1969-04-21', 'S', 'NULL', 'F', 'chloe86@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '6275 Bel Air Drive', 'NULL', '160-555-0168', '2012-03-02', '0-1 Miles'], ['13439', '302', 'AW00013439', 'NULL', 'Arturo', 'NULL', 'Lin', '0', '1968-09-12', 'M', 'NULL', 'M', 'arturo8@adventure-works.com', '110000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '3848 Mt. Diablo St.', 'NULL', '784-555-0141', '2013-05-18', '5-10 Miles'], ['13440', '69', 'AW00013440', 'NULL', 'Sydney', 'A', 'Miller', '0', '1973-02-14', 'S', 'NULL', 'F', 'sydney70@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '7474 High St.', 'NULL', '134-555-0132', '2013-05-12', '5-10 Miles'], ['13441', '609', 'AW00013441', 'NULL', 'Omar', 'S', 'Zhang', '0', '1973-05-10', 'M', 'NULL', 'M', 'omar0@adventure-works.com', '90000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '7481 Caravelle Ct.', 'NULL', '820-555-0158', '2013-11-29', '5-10 Miles'], ['13442', '612', 'AW00013442', 'NULL', 'Paula', 'NULL', 'Vazquez', '0', '1968-02-29', 'S', 'NULL', 'F', 'paula17@adventure-works.com', '90000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '7293 Stanford Way', 'NULL', '284-555-0134', '2012-03-18', '1-2 Miles'], ['13443', '543', 'AW00013443', 'NULL', 'Jasmine', 'NULL', 'White', '0', '1968-01-07', 'M', 'NULL', 'F', 'jasmine11@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '5020 Kenneth Ct.', 'NULL', '458-555-0131', '2012-03-10', '1-2 Miles'], ['13444', '300', 'AW00013444', 'NULL', 'Abby', 'M', 'Lopez', '0', '1967-11-02', 'S', 'NULL', 'F', 'abby14@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '6121 Pebble Glen Drive', 'NULL', '941-555-0140', '2013-07-13', '1-2 Miles'], ['13445', '314', 'AW00013445', 'NULL', 'Logan', 'H', 'Davis', '0', '1968-02-01', 'M', 'NULL', 'M', 'logan55@adventure-works.com', '120000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '2986 Cleveland Avenue', 'NULL', '208-555-0135', '2013-11-14', '2-5 Miles'], ['13446', '316', 'AW00013446', 'NULL', 'Katelyn', 'NULL', 'Scott', '0', '1967-10-07', 'S', 'NULL', 'F', 'katelyn37@adventure-works.com', '120000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '7529 Adelaide St.', 'NULL', '196-555-0135', '2012-03-01', '5-10 Miles'], ['13447', '337', 'AW00013447', 'NULL', 'Destiny', 'M', 'Cox', '0', '1967-11-01', 'M', 'NULL', 'F', 'destiny36@adventure-works.com', '130000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '9742 Anderson Way', 'NULL', '131-555-0112', '2012-03-26', '2-5 Miles'], ['13448', '352', 'AW00013448', 'NULL', 'Catherine', 'NULL', 'Ward', '0', '1968-01-10', 'M', 'NULL', 'F', 'catherine11@adventure-works.com', '130000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '9450 Almond Street', 'NULL', '805-555-0126', '2013-06-01', '0-1 Miles'], ['13449', '611', 'AW00013449', 'NULL', 'Jerome', 'H', 'Diaz', '0', '1966-12-16', 'S', 'NULL', 'M', 'jerome3@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '4911 Dance Court', 'NULL', '238-555-0168', '2012-03-12', '5-10 Miles'], ['13450', '546', 'AW00013450', 'NULL', 'Victoria', 'S', 'Jones', '0', '1972-07-14', 'S', 'NULL', 'F', 'victoria4@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '8738 Crawford Street', 'NULL', '328-555-0157', '2012-04-28', '5-10 Miles'], ['13451', '301', 'AW00013451', 'NULL', 'Robin', 'H', 'Browning', '0', '1972-06-23', 'M', 'NULL', 'F', 'robin12@adventure-works.com', '110000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '6934 Santa Cruz Dr.', 'NULL', '802-555-0178', '2013-10-18', '2-5 Miles'], ['13452', '325', 'AW00013452', 'NULL', 'Kaitlyn', 'NULL', 'Evans', '0', '1966-09-10', 'M', 'NULL', 'F', 'kaitlyn0@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '6714 Roundtree Court', 'NULL', '845-555-0187', '2012-03-30', '0-1 Miles'], ['13453', '336', 'AW00013453', 'NULL', 'Amanda', 'NULL', 'Howard', '0', '1966-11-08', 'M', 'NULL', 'F', 'amanda11@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '8465 F Mt Hood Circle', 'NULL', '152-555-0195', '2012-04-08', '0-1 Miles'], ['13454', '337', 'AW00013454', 'NULL', 'Benjamin', 'NULL', 'Griffin', '0', '1966-08-17', 'M', 'NULL', 'M', 'benjamin22@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '2039 Doon Cr', '# 120', '153-555-0127', '2013-06-14', '0-1 Miles'], ['13455', '359', 'AW00013455', 'NULL', 'Kaitlyn', 'L', 'Bryant', '0', '1972-08-06', 'M', 'NULL', 'F', 'kaitlyn85@adventure-works.com', '130000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '8859 Wood Ranch Circle', 'NULL', '903-555-0154', '2013-06-10', '2-5 Miles'], ['13456', '623', 'AW00013456', 'NULL', 'Sydney', 'NULL', 'Hernandez', '0', '1961-01-20', 'S', 'NULL', 'F', 'sydney59@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3167 Pirate Lane', 'NULL', '662-555-0155', '2012-04-14', '5-10 Miles'], ['13457', '552', 'AW00013457', 'NULL', 'Eric', 'NULL', 'Henderson', '0', '1960-08-04', 'M', 'NULL', 'M', 'eric13@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '4723 Zion Avenue', 'NULL', '249-555-0189', '2013-08-05', '5-10 Miles'], ['13458', '609', 'AW00013458', 'NULL', 'Joan', 'NULL', 'James', '0', '1961-03-02', 'M', 'NULL', 'F', 'joan3@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '5003 Pheasant Drive', 'NULL', '784-555-0113', '2013-02-07', '1-2 Miles'], ['13459', '359', 'AW00013459', 'NULL', 'Devin', 'G', 'Foster', '0', '1961-01-13', 'M', 'NULL', 'M', 'devin54@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '4703 Westbury Dr.', 'NULL', '227-555-0182', '2013-11-11', '5-10 Miles'], ['13460', '55', 'AW00013460', 'NULL', 'Jasmine', 'NULL', 'Walker', '0', '1960-03-20', 'S', 'NULL', 'F', 'jasmine20@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7289 Brookview Dr.', 'NULL', '184-555-0189', '2013-05-01', '1-2 Miles'], ['13461', '368', 'AW00013461', 'NULL', 'Anthony', 'L', 'Jones', '0', '1940-08-29', 'S', 'NULL', 'M', 'anthony12@adventure-works.com', '130000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '1020 Carletto Drive', 'NULL', '150-555-0152', '2012-03-30', '0-1 Miles'], ['13462', '609', 'AW00013462', 'NULL', 'Jay', 'M', 'Sara', '0', '1947-11-07', 'S', 'NULL', 'M', 'jay17@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3296 Sinaloa', 'NULL', '459-555-0199', '2012-04-18', '5-10 Miles'], ['13463', '298', 'AW00013463', 'NULL', 'Tammy', 'B', 'Sara', '0', '1942-02-01', 'M', 'NULL', 'F', 'tammy11@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2422 Norse Drive', 'NULL', '620-555-0110', '2013-11-13', '5-10 Miles'], ['13464', '300', 'AW00013464', 'NULL', 'Martha', 'C', 'Hu', '0', '1942-05-08', 'M', 'NULL', 'F', 'martha20@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6272 Maywood Ln', 'NULL', '505-555-0153', '2012-04-19', '1-2 Miles'], ['13465', '337', 'AW00013465', 'NULL', 'Sydney', 'NULL', 'Campbell', '0', '1941-07-04', 'M', 'NULL', 'F', 'sydney49@adventure-works.com', '100000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '1345 Blocking Circle', '#3', '134-555-0160', '2013-11-21', '1-2 Miles'], ['13466', '52', 'AW00013466', 'NULL', 'Bryce', 'NULL', 'James', '0', '1965-12-18', 'M', 'NULL', 'M', 'bryce0@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '1064 Armstrong Rd.', 'NULL', '980-555-0197', '2013-09-16', '1-2 Miles'], ['13467', '609', 'AW00013467', 'NULL', 'Kristopher', 'NULL', 'Martinez', '0', '1966-01-02', 'S', 'NULL', 'M', 'kristopher16@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '4332 Lislin Ct', 'NULL', '131-555-0121', '2013-05-10', '1-2 Miles'], ['13468', '547', 'AW00013468', 'NULL', 'Mariah', 'NULL', 'Sanders', '0', '1966-03-02', 'S', 'NULL', 'F', 'mariah3@adventure-works.com', '100000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '8315 Rolando Avenue', 'NULL', '237-555-0173', '2012-04-24', '5-10 Miles'], ['13469', '642', 'AW00013469', 'NULL', 'Bryce', 'L', 'Bailey', '0', '1966-04-09', 'S', 'NULL', 'M', 'bryce15@adventure-works.com', '100000.00', '0', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '3673 Serrana Court', 'NULL', '345-555-0161', '2014-01-16', '5-10 Miles'], ['13470', '298', 'AW00013470', 'NULL', 'Jaclyn', 'NULL', 'Jai', '0', '1966-06-16', 'S', 'NULL', 'F', 'jaclyn35@adventure-works.com', '100000.00', '0', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9163 Hilltop Road', 'NULL', '566-555-0170', '2013-12-20', '5-10 Miles'], ['13471', '326', 'AW00013471', 'NULL', 'Eric', 'NULL', 'Bryant', '0', '1965-09-30', 'M', 'NULL', 'M', 'eric25@adventure-works.com', '120000.00', '1', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '3187 Hackamore Lane', 'NULL', '946-555-0134', '2013-05-20', '2-5 Miles'], ['13472', '343', 'AW00013472', 'NULL', 'Simon', 'NULL', 'Pearson', '0', '1960-02-08', 'M', 'NULL', 'M', 'simon3@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2450 Bryce Dr.', 'NULL', '440-555-0185', '2013-06-24', '5-10 Miles'], ['13473', '312', 'AW00013473', 'NULL', 'Logan', 'A', 'Hill', '0', '1959-09-02', 'M', 'NULL', 'M', 'logan39@adventure-works.com', '80000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5013 C Mt. Hood Ct.', 'NULL', '228-555-0179', '2013-06-09', '1-2 Miles'], ['13474', '63', 'AW00013474', 'NULL', 'Elizabeth', 'L', 'Hall', '0', '1959-12-22', 'M', 'NULL', 'F', 'elizabeth28@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2934 Sycamore Drive', 'NULL', '366-555-0193', '2013-05-07', '1-2 Miles'], ['13475', '355', 'AW00013475', 'NULL', 'Charles', 'NULL', 'Allen', '0', '1959-11-02', 'M', 'NULL', 'M', 'charles29@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4635 Woodside Court', 'NULL', '578-555-0118', '2013-12-10', '5-10 Miles'], ['13476', '368', 'AW00013476', 'NULL', 'Timothy', 'M', 'Hall', '0', '1960-02-18', 'M', 'NULL', 'M', 'timothy46@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9334 Carpetta Circle', 'NULL', '171-555-0114', '2013-06-17', '1-2 Miles'], ['13477', '329', 'AW00013477', 'NULL', 'Katherine', 'NULL', 'Wood', '0', '1959-12-26', 'M', 'NULL', 'F', 'katherine27@adventure-works.com', '70000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '9228 Via Del Sol', 'NULL', '217-555-0118', '2012-04-28', '1-2 Miles'], ['13478', '633', 'AW00013478', 'NULL', 'Alexia', 'E', 'Coleman', '0', '1959-11-04', 'S', 'NULL', 'F', 'alexia6@adventure-works.com', '70000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '9596 Pass', 'NULL', '678-555-0139', '2012-04-13', '5-10 Miles'], ['13479', '335', 'AW00013479', 'NULL', 'Katelyn', 'NULL', 'Rogers', '0', '1964-04-19', 'S', 'NULL', 'F', 'katelyn19@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9924 Muir Rd.', 'NULL', '201-555-0164', '2013-08-23', '5-10 Miles'], ['13480', '299', 'AW00013480', 'NULL', 'Anna', 'P', 'Rodriguez', '0', '1958-08-10', 'S', 'NULL', 'F', 'anna58@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8532 Monterey Ave', 'NULL', '137-555-0127', '2013-05-20', '1-2 Miles'], ['13481', '307', 'AW00013481', 'NULL', 'Hunter', 'NULL', 'Hernandez', '0', '1959-01-03', 'M', 'NULL', 'M', 'hunter44@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3861 Las Lomas Way', 'NULL', '115-555-0196', '2014-01-10', '5-10 Miles'], ['13482', '299', 'AW00013482', 'NULL', 'Haley', 'NULL', 'Bryant', '0', '1963-09-16', 'M', 'NULL', 'F', 'haley37@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '9990 Sunny Ave', 'NULL', '344-555-0198', '2012-04-02', '5-10 Miles'], ['13483', '626', 'AW00013483', 'NULL', 'Christian', 'M', 'Lal', '0', '1958-03-08', 'M', 'NULL', 'M', 'christian15@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '6807 Rambling Rose Drive', 'NULL', '423-555-0171', '2013-07-21', '1-2 Miles'], ['13484', '298', 'AW00013484', 'NULL', 'Marcus', 'L', 'Martinez', '0', '1942-12-06', 'S', 'NULL', 'M', 'marcus18@adventure-works.com', '110000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '7959 Driving Drive', 'NULL', '423-555-0177', '2012-05-12', '5-10 Miles'], ['13485', '307', 'AW00013485', 'NULL', 'Thomas', 'J', 'Allen', '0', '1943-04-24', 'M', 'NULL', 'M', 'thomas83@adventure-works.com', '130000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '288 Almaden Dr.', 'NULL', '599-555-0119', '2013-02-15', '0-1 Miles'], ['13486', '49', 'AW00013486', 'NULL', 'Rebekah', 'NULL', 'Gomez', '0', '1943-01-09', 'S', 'NULL', 'F', 'rebekah21@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '2656 Brook Way', 'NULL', '125-555-0128', '2013-04-22', '0-1 Miles'], ['13487', '372', 'AW00013487', 'NULL', 'Emily', 'T', 'Martin', '0', '1943-02-06', 'M', 'NULL', 'F', 'emily15@adventure-works.com', '150000.00', '1', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6899 Mendocino Drive', 'NULL', '568-555-0112', '2012-05-29', '2-5 Miles'], ['13488', '609', 'AW00013488', 'NULL', 'Laura', 'S', 'Guo', '0', '1943-12-13', 'M', 'NULL', 'F', 'laura23@adventure-works.com', '120000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '4787 R St.', 'NULL', '239-555-0137', '2013-06-12', '2-5 Miles'], ['13489', '547', 'AW00013489', 'NULL', 'Jennifer', 'NULL', 'Walker', '0', '1945-02-10', 'M', 'NULL', 'F', 'jennifer50@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '237 Monte Vista Road', 'NULL', '753-555-0111', '2012-05-03', '5-10 Miles'], ['13490', '368', 'AW00013490', 'NULL', 'Edward', 'NULL', 'Rodriguez', '0', '1944-10-15', 'M', 'NULL', 'M', 'edward42@adventure-works.com', '120000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '8848 Auburn', 'NULL', '656-555-0187', '2013-03-11', '5-10 Miles'], ['13491', '50', 'AW00013491', 'NULL', 'Natalie', 'NULL', 'Howard', '0', '1944-12-02', 'M', 'NULL', 'F', 'natalie14@adventure-works.com', '120000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '7177 Santa Rosa', 'NULL', '110-555-0176', '2013-01-30', '2-5 Miles'], ['13492', '301', 'AW00013492', 'NULL', 'Christian', 'C', 'Foster', '0', '1945-09-01', 'M', 'NULL', 'M', 'christian3@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '6843 Mountain View Blvd', 'NULL', '650-555-0164', '2012-05-29', '0-1 Miles'], ['13493', '230', 'AW00013493', 'NULL', 'Valerie', 'R', 'Zhao', '0', '1970-05-07', 'M', 'NULL', 'F', 'valerie12@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '6283 San Marino Ct.', 'NULL', '1 (11) 500 555-0186', '2013-03-26', '0-1 Miles'], ['13494', '156', 'AW00013494', 'NULL', 'Byron', 'K', 'Gutierrez', '0', '1967-09-02', 'S', 'NULL', 'M', 'byron7@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Karl Liebknecht str 399', 'NULL', '1 (11) 500 555-0126', '2013-05-18', '0-1 Miles'], ['13495', '266', 'AW00013495', 'NULL', 'Micheal', 'W', 'Alvarez', '0', '1968-04-02', 'M', 'NULL', 'M', 'micheal1@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6261 Chestnut Avenue', 'NULL', '1 (11) 500 555-0146', '2013-03-23', '0-1 Miles'], ['13496', '221', 'AW00013496', 'NULL', 'Lucas', 'G', 'Morris', '0', '1967-11-20', 'M', 'NULL', 'M', 'lucas89@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '42, impasse Ste-Madeleine', 'NULL', '1 (11) 500 555-0188', '2013-04-17', '0-1 Miles'], ['13497', '132', 'AW00013497', 'NULL', 'Deborah', 'R', 'Sharma', '0', '1966-09-23', 'M', 'NULL', 'F', 'deborah14@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Auf Der Steige 2234', 'NULL', '1 (11) 500 555-0140', '2013-02-24', '0-1 Miles'], ['13498', '186', 'AW00013498', 'NULL', 'Joel', 'NULL', 'Mehta', '0', '1967-10-07', 'S', 'NULL', 'M', 'joel13@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '75, rue de Cambrai', 'NULL', '1 (11) 500 555-0173', '2013-08-19', '0-1 Miles'], ['13499', '187', 'AW00013499', 'NULL', 'Olivia', 'K', 'Cox', '0', '1967-09-02', 'S', 'NULL', 'F', 'olivia36@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '90, rue Lauriston', 'NULL', '1 (11) 500 555-0147', '2013-02-13', '0-1 Miles'], ['13500', '142', 'AW00013500', 'NULL', 'Molly', 'C', 'Vance', '0', '1964-01-24', 'M', 'NULL', 'F', 'molly4@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Brunnenstr 5511', 'NULL', '1 (11) 500 555-0153', '2013-11-20', '0-1 Miles'], ['13501', '177', 'AW00013501', 'NULL', 'Clayton', 'M', 'Zhu', '0', '1963-10-03', 'M', 'NULL', 'M', 'clayton13@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Hansaallee 4282', 'NULL', '1 (11) 500 555-0140', '2013-05-17', '0-1 Miles'], ['13502', '164', 'AW00013502', 'NULL', 'Deborah', 'E', 'Nara', '0', '1963-08-17', 'S', 'NULL', 'F', 'deborah20@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Platz des Landtags 33', 'NULL', '1 (11) 500 555-0159', '2013-08-18', '0-1 Miles'], ['13503', '268', 'AW00013503', 'NULL', 'Theodore', 'NULL', 'Gomez', '0', '1968-10-14', 'M', 'NULL', 'M', 'theodore1@adventure-works.com', '10000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '2103 Baldwin Dr', 'NULL', '1 (11) 500 555-0167', '2013-04-19', '0-1 Miles'], ['13504', '207', 'AW00013504', 'NULL', 'Beth', 'R', 'Alonso', '0', '1961-09-14', 'M', 'NULL', 'F', 'beth10@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '68, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0126', '2011-11-15', '0-1 Miles'], ['13505', '236', 'AW00013505', 'NULL', 'Jamie', 'S', 'Cai', '0', '1961-07-15', 'M', 'NULL', 'F', 'jamie25@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '2256 Regency Dr.', 'NULL', '1 (11) 500 555-0169', '2013-06-07', '0-1 Miles'], ['13506', '226', 'AW00013506', 'NULL', 'Willie', 'NULL', 'Guo', '0', '1972-02-05', 'S', 'NULL', 'M', 'willie16@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '8919, rue Basse-du-Rocher', 'NULL', '1 (11) 500 555-0160', '2013-10-03', '0-1 Miles'], ['13507', '231', 'AW00013507', 'NULL', 'Margaret', 'J', 'Patterson', '0', '1961-04-13', 'M', 'NULL', 'F', 'margaret4@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '9089 Bonsai Court', 'NULL', '1 (11) 500 555-0110', '2013-04-19', '1-2 Miles'], ['13508', '205', 'AW00013508', 'NULL', 'Cassandra', 'T', 'Sanchez', '0', '1943-02-06', 'M', 'NULL', 'F', 'cassandra21@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '11, avenue de la Gare', 'NULL', '1 (11) 500 555-0146', '2013-02-04', '0-1 Miles'], ['13509', '279', 'AW00013509', 'NULL', 'Lucas', 'NULL', 'Johnson', '0', '1943-03-04', 'M', 'NULL', 'M', 'lucas14@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '873 Wellington Avenue', 'NULL', '1 (11) 500 555-0110', '2013-05-17', '0-1 Miles'], ['13510', '211', 'AW00013510', 'NULL', 'Jon', 'R', 'Shen', '0', '1951-05-12', 'M', 'NULL', 'M', 'jon43@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '62, cours Mirabeau', 'NULL', '1 (11) 500 555-0119', '2013-02-02', '2-5 Miles'], ['13511', '216', 'AW00013511', 'NULL', 'Ernest', 'NULL', 'Liu', '0', '1946-11-01', 'S', 'NULL', 'M', 'ernest4@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '862, rue Mazagran', 'NULL', '1 (11) 500 555-0185', '2011-12-03', '1-2 Miles'], ['13512', '211', 'AW00013512', 'Mr.', 'Ken', 'NULL', 'Sánchez', '0', '1947-03-28', 'M', 'NULL', 'F', 'ken3@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '2, rue Malar', 'NULL', '967-555-0100', '2013-08-06', '2-5 Miles'], ['13513', '162', 'AW00013513', 'NULL', 'Abigail', 'R', 'Henderson', '0', '1947-03-08', 'M', 'NULL', 'F', 'abigail73@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Am Grossen Dern 4284', 'NULL', '1 (11) 500 555-0133', '2011-01-01', '0-1 Miles'], ['13514', '115', 'AW00013514', 'NULL', 'Lindsay', 'NULL', 'Luo', '0', '1947-08-11', 'S', 'NULL', 'F', 'lindsay6@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Kappellweg 613', 'NULL', '1 (11) 500 555-0189', '2011-02-17', '1-2 Miles'], ['13515', '135', 'AW00013515', 'NULL', 'Cara', 'M', 'Liang', '0', '1948-01-01', 'M', 'NULL', 'F', 'cara12@adventure-works.com', '20000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Heideweg 6446', 'NULL', '1 (11) 500 555-0145', '2011-02-11', '0-1 Miles'], ['13516', '246', 'AW00013516', 'NULL', 'Harold', 'A', 'Ray', '0', '1947-08-16', 'M', 'NULL', 'M', 'harold8@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4082 Virginia Hills', 'NULL', '1 (11) 500 555-0124', '2013-07-22', '0-1 Miles'], ['13517', '256', 'AW00013517', 'NULL', 'Nicolas', 'D', 'Sharma', '0', '1947-11-07', 'S', 'NULL', 'M', 'nicolas7@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3521 Fourth St.', '#607', '1 (11) 500 555-0132', '2012-12-22', '0-1 Miles'], ['13518', '28', 'AW00013518', 'NULL', 'Brendan', 'NULL', 'Goldstein', '0', '1985-01-11', 'S', 'NULL', 'M', 'brendan17@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '9294 Virgina Hills Drive', 'NULL', '1 (11) 500 555-0144', '2012-06-17', '0-1 Miles'], ['13519', '35', 'AW00013519', 'NULL', 'Lucas', 'NULL', 'Foster', '0', '1984-04-01', 'S', 'NULL', 'M', 'lucas64@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '8831 Versailles Pl.', 'NULL', '1 (11) 500 555-0176', '2012-06-26', '2-5 Miles'], ['13520', '32', 'AW00013520', 'NULL', 'Carol', 'NULL', 'Nelson', '0', '1983-08-08', 'S', 'NULL', 'F', 'carol13@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '2023 Wood Ranch Circle', 'NULL', '1 (11) 500 555-0176', '2012-06-17', '2-5 Miles'], ['13521', '28', 'AW00013521', 'NULL', 'Sandra', 'N', 'Lu', '0', '1983-07-25', 'S', 'NULL', 'F', 'sandra18@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '4946 Abbey Court', 'NULL', '1 (11) 500 555-0150', '2012-06-22', '2-5 Miles'], ['13522', '34', 'AW00013522', 'NULL', 'Logan', 'NULL', 'Taylor', '0', '1983-05-23', 'S', 'NULL', 'M', 'logan60@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '988 Mt. Everest Court', 'NULL', '1 (11) 500 555-0120', '2013-04-24', '0-1 Miles'], ['13523', '29', 'AW00013523', 'NULL', 'Adrienne', 'NULL', 'Ruiz', '0', '1982-05-03', 'S', 'NULL', 'F', 'adrienne2@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '934 St. Paul Way', 'NULL', '1 (11) 500 555-0127', '2013-05-23', '0-1 Miles'], ['13524', '18', 'AW00013524', 'NULL', 'Cheryl', 'NULL', 'Blanco', '0', '1984-02-08', 'M', 'NULL', 'F', 'cheryl18@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '7546 Gonzalez Ct.', 'NULL', '1 (11) 500 555-0118', '2012-06-20', '0-1 Miles'], ['13525', '6', 'AW00013525', 'NULL', 'Cassandra', 'NULL', 'Van', '0', '1983-08-09', 'M', 'NULL', 'F', 'cassandra4@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2559 Altura Drive', 'NULL', '1 (11) 500 555-0110', '2012-06-06', '0-1 Miles'], ['13526', '30', 'AW00013526', 'NULL', 'Krystal', 'D', 'Liu', '0', '1984-01-21', 'M', 'NULL', 'F', 'krystal4@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7468 Franklin Canyon Road', 'NULL', '1 (11) 500 555-0163', '2012-07-15', '0-1 Miles'], ['13527', '23', 'AW00013527', 'NULL', 'Tonya', 'N', 'Andersen', '0', '1983-01-15', 'M', 'NULL', 'F', 'tonya12@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '8467 Clifford Court', 'NULL', '1 (11) 500 555-0148', '2012-07-08', '0-1 Miles'], ['13528', '5', 'AW00013528', 'NULL', 'Carmen', 'S', 'Lopez', '0', '1983-03-10', 'M', 'NULL', 'F', 'carmen1@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '4912 La Vuelta', 'NULL', '1 (11) 500 555-0143', '2012-07-10', '0-1 Miles'], ['13529', '38', 'AW00013529', 'NULL', 'Pamela', 'A', 'Martinez', '0', '1982-11-30', 'S', 'NULL', 'F', 'pamela21@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '9901 Sequoia Woods Pl', 'NULL', '1 (11) 500 555-0113', '2012-07-16', '0-1 Miles'], ['13530', '266', 'AW00013530', 'NULL', 'Krystal', 'D', 'Chen', '0', '1949-03-24', 'M', 'NULL', 'F', 'krystal2@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4605 Merced Circle', 'NULL', '1 (11) 500 555-0126', '2013-09-14', '0-1 Miles'], ['13531', '218', 'AW00013531', 'NULL', 'Tyrone', 'NULL', 'Gutierrez', '0', '1966-09-10', 'M', 'NULL', 'M', 'tyrone10@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1, rue de la Cavalerie', 'NULL', '1 (11) 500 555-0180', '2013-09-05', '0-1 Miles'], ['13532', '173', 'AW00013532', 'NULL', 'Melody', 'V', 'Gill', '0', '1972-04-12', 'M', 'NULL', 'F', 'melody14@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Am Kreuz 475', 'NULL', '1 (11) 500 555-0112', '2013-09-25', '0-1 Miles'], ['13533', '231', 'AW00013533', 'NULL', 'Eduardo', 'G', 'Butler', '0', '1972-11-18', 'S', 'NULL', 'M', 'eduardo58@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9327 Roland Drive', 'NULL', '1 (11) 500 555-0196', '2013-04-09', '0-1 Miles'], ['13534', '253', 'AW00013534', 'NULL', 'Beth', 'NULL', 'Navarro', '0', '1967-01-14', 'M', 'NULL', 'F', 'beth12@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3287 Trees Dr.', 'NULL', '1 (11) 500 555-0133', '2013-08-07', '0-1 Miles'], ['13535', '238', 'AW00013535', 'NULL', 'Omar', 'J', 'Nara', '0', '1965-12-09', 'S', 'NULL', 'M', 'omar37@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '5823 Hooftrail Way', 'NULL', '1 (11) 500 555-0180', '2013-07-21', '0-1 Miles'], ['13536', '208', 'AW00013536', 'NULL', 'Arianna', 'NULL', 'Ward', '0', '1975-11-10', 'S', 'NULL', 'F', 'arianna34@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '15, avenue de la Gare', 'NULL', '1 (11) 500 555-0188', '2011-12-24', '1-2 Miles'], ['13537', '210', 'AW00013537', 'NULL', 'Jill', 'E', 'Moreno', '0', '1965-04-08', 'S', 'NULL', 'F', 'jill14@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1359, avenue de l´Europe', 'NULL', '1 (11) 500 555-0139', '2011-11-29', '1-2 Miles'], ['13538', '133', 'AW00013538', 'NULL', 'Vanessa', 'NULL', 'Henderson', '0', '1976-02-20', 'S', 'NULL', 'F', 'vanessa5@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Marienplatz 22225', 'NULL', '1 (11) 500 555-0185', '2011-02-24', '1-2 Miles'], ['13539', '255', 'AW00013539', 'NULL', 'Roger', 'NULL', 'Guo', '0', '1964-10-11', 'S', 'NULL', 'M', 'roger22@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2759 San Gabriel Dr.', 'NULL', '1 (11) 500 555-0111', '2013-08-05', '0-1 Miles'], ['13540', '117', 'AW00013540', 'NULL', 'Paula', 'NULL', 'Ortega', '0', '1976-08-30', 'M', 'NULL', 'F', 'paula23@adventure-works.com', '40000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Marketplatz 5103', 'NULL', '1 (11) 500 555-0113', '2011-02-09', '0-1 Miles'], ['13541', '157', 'AW00013541', 'NULL', 'Ashlee', 'NULL', 'Xu', '0', '1966-02-09', 'M', 'NULL', 'F', 'ashlee12@adventure-works.com', '40000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Holzstr 4222', 'NULL', '1 (11) 500 555-0114', '2011-02-28', '0-1 Miles'], ['13542', '131', 'AW00013542', 'NULL', 'Sharon', 'C', 'Kumar', '0', '1969-05-23', 'M', 'NULL', 'F', 'sharon14@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Buergermeister-ulrich-str 4499', 'NULL', '1 (11) 500 555-0173', '2011-02-26', '0-1 Miles'], ['13543', '158', 'AW00013543', 'NULL', 'Phillip', 'NULL', 'Rana', '0', '1964-01-30', 'S', 'NULL', 'M', 'phillip12@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Reiherweg 5944', 'NULL', '1 (11) 500 555-0152', '2011-02-26', '0-1 Miles'], ['13544', '247', 'AW00013544', 'NULL', 'Joy', 'L', 'Martin', '0', '1981-12-03', 'S', 'NULL', 'F', 'joy1@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '9401 Columbia River Ct', 'NULL', '1 (11) 500 555-0174', '2013-04-19', '2-5 Miles'], ['13545', '119', 'AW00013545', 'NULL', 'Brad', 'J', 'Sharma', '0', '1975-12-14', 'M', 'NULL', 'M', 'brad9@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Pappelallee 400', 'NULL', '1 (11) 500 555-0192', '2011-02-11', '0-1 Miles'], ['13546', '170', 'AW00013546', 'NULL', 'Mitchell', 'D', 'Jai', '0', '1976-01-19', 'M', 'NULL', 'M', 'mitchell10@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Curieweg 5777', 'NULL', '1 (11) 500 555-0113', '2011-01-29', '0-1 Miles'], ['13547', '269', 'AW00013547', 'NULL', 'Michele', 'NULL', 'Jimenez', '0', '1980-02-07', 'S', 'NULL', 'F', 'michele40@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '491 Terrapin Court', 'NULL', '1 (11) 500 555-0185', '2013-08-16', '0-1 Miles'], ['13548', '118', 'AW00013548', 'NULL', 'Bridget', 'M', 'Jai', '0', '1976-03-25', 'M', 'NULL', 'F', 'bridget13@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Helsenbergbogen 2', 'NULL', '1 (11) 500 555-0117', '2011-02-01', '0-1 Miles'], ['13549', '196', 'AW00013549', 'NULL', 'Richard', 'NULL', 'King', '0', '1974-10-15', 'S', 'NULL', 'M', 'richard21@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '3, rue de Maubeuge', 'NULL', '1 (11) 500 555-0180', '2013-05-01', '0-1 Miles'], ['13550', '208', 'AW00013550', 'NULL', 'Joe', 'NULL', 'Malhotra', '0', '1974-11-29', 'S', 'NULL', 'M', 'joe9@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '88, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0169', '2013-03-21', '2-5 Miles'], ['13551', '236', 'AW00013551', 'NULL', 'Jacob', 'NULL', 'Lee', '0', '1975-06-03', 'M', 'NULL', 'M', 'jacob18@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6318 Marclair Dr.', 'NULL', '1 (11) 500 555-0134', '2012-12-04', '0-1 Miles'], ['13552', '208', 'AW00013552', 'NULL', 'Trevor', 'L', 'Hughes', '0', '1974-08-30', 'S', 'NULL', 'M', 'trevor11@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '959, rue Jean Mermoz', 'NULL', '1 (11) 500 555-0138', '2011-12-24', '0-1 Miles'], ['13553', '262', 'AW00013553', 'NULL', 'Jessica', 'NULL', 'Coleman', '0', '1980-10-14', 'M', 'NULL', 'F', 'jessica30@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '331 Muy Verde', 'NULL', '1 (11) 500 555-0127', '2012-11-30', '1-2 Miles'], ['13554', '245', 'AW00013554', 'NULL', 'Paula', 'W', 'Moreno', '0', '1975-05-14', 'M', 'NULL', 'F', 'paula9@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1299 Carpetta Circle', 'NULL', '1 (11) 500 555-0182', '2012-12-11', '0-1 Miles'], ['13555', '183', 'AW00013555', 'NULL', 'Tammy', 'L', 'Smith', '0', '1980-09-09', 'M', 'NULL', 'F', 'tammy9@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7, rue de la Centenaire', 'NULL', '1 (11) 500 555-0113', '2011-12-24', '0-1 Miles'], ['13556', '205', 'AW00013556', 'NULL', 'Alisha', 'NULL', 'Nath', '0', '1975-05-13', 'S', 'NULL', 'F', 'alisha43@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7837, boulevard Beau Marchais', 'NULL', '1 (11) 500 555-0173', '2011-12-19', '0-1 Miles'], ['13557', '246', 'AW00013557', 'NULL', 'Stacey', 'A', 'Liu', '0', '1975-01-22', 'M', 'NULL', 'F', 'stacey4@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4046 Maywood Lane', 'NULL', '1 (11) 500 555-0163', '2012-12-15', '0-1 Miles'], ['13558', '190', 'AW00013558', 'NULL', 'Karen', 'K', 'Lu', '0', '1980-06-18', 'M', 'NULL', 'F', 'karen21@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', "22, rue de l'Espace De Schengen", 'NULL', '1 (11) 500 555-0161', '2011-12-16', '0-1 Miles'], ['13559', '123', 'AW00013559', 'NULL', 'Lori', 'M', 'Ramos', '0', '1974-12-15', 'S', 'NULL', 'F', 'lori18@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Herzogstr 3899', 'NULL', '1 (11) 500 555-0156', '2011-02-26', '0-1 Miles'], ['13560', '167', 'AW00013560', 'NULL', 'Andres', 'T', 'Shan', '0', '1980-08-12', 'M', 'NULL', 'M', 'andres7@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Im Himmelsweg 89', 'NULL', '1 (11) 500 555-0135', '2011-03-19', '0-1 Miles'], ['13561', '253', 'AW00013561', 'NULL', 'Gary', 'E', 'Navarro', '0', '1975-02-04', 'M', 'NULL', 'M', 'gary21@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1433 C Mt. Hood Crest', 'NULL', '1 (11) 500 555-0110', '2012-11-29', '0-1 Miles'], ['13562', '261', 'AW00013562', 'NULL', 'Bryant', 'NULL', 'Van', '0', '1975-01-12', 'S', 'NULL', 'M', 'bryant4@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3968 Beauty', 'NULL', '1 (11) 500 555-0171', '2012-12-23', '0-1 Miles'], ['13563', '269', 'AW00013563', 'NULL', 'Phillip', 'M', 'Sai', '0', '1975-01-29', 'M', 'NULL', 'M', 'phillip6@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '3141 Jalalon Place', 'NULL', '1 (11) 500 555-0146', '2011-01-08', '0-1 Miles'], ['13564', '193', 'AW00013564', 'NULL', 'Sabrina', 'NULL', 'Blanco', '0', '1957-09-22', 'M', 'NULL', 'F', 'sabrina9@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '3, rue de la Cavalerie', 'NULL', '1 (11) 500 555-0149', '2011-12-05', '0-1 Miles'], ['13565', '216', 'AW00013565', 'NULL', 'Tiffany', 'K', 'Zhao', '0', '1973-09-12', 'M', 'NULL', 'F', 'tiffany10@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '8811, rue de Longchamp', 'NULL', '1 (11) 500 555-0111', '2012-01-23', '0-1 Miles'], ['13566', '161', 'AW00013566', 'Mr.', 'Mikael', 'NULL', 'Sandberg', '0', '1956-12-23', 'S', 'NULL', 'F', 'mikael1@adventure-works.com', '10000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Roßstr 6642', 'NULL', '854-555-0100', '2013-06-23', '0-1 Miles'], ['13567', '176', 'AW00013567', 'NULL', 'Anne', 'T', 'Rubio', '0', '1957-03-24', 'M', 'NULL', 'F', 'anne21@adventure-works.com', '10000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Am Kreuz 416', 'NULL', '1 (11) 500 555-0188', '2011-03-05', '0-1 Miles'], ['13568', '199', 'AW00013568', 'NULL', 'Max', 'C', 'Jimenez', '0', '1956-11-01', 'M', 'NULL', 'M', 'max6@adventure-works.com', '10000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '386, avenue de Malakoff', 'NULL', '1 (11) 500 555-0121', '2013-02-18', '0-1 Miles'], ['13569', '127', 'AW00013569', 'NULL', 'Marcus', 'NULL', 'Hall', '0', '1979-08-10', 'S', 'NULL', 'M', 'marcus25@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Auf dem Ufer 164', 'NULL', '1 (11) 500 555-0145', '2013-05-31', '0-1 Miles'], ['13570', '121', 'AW00013570', 'NULL', 'Benjamin', 'J', 'Jackson', '0', '1973-12-23', 'S', 'NULL', 'M', 'benjamin48@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Zimmerstr 24266', 'NULL', '1 (11) 500 555-0132', '2011-03-14', '0-1 Miles'], ['13571', '214', 'AW00013571', 'NULL', 'Allen', 'I', 'Mehta', '0', '1979-09-04', 'M', 'NULL', 'M', 'allen12@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '2, rue Henri Gagnon', 'NULL', '1 (11) 500 555-0151', '2013-01-28', '0-1 Miles'], ['13572', '176', 'AW00013572', 'NULL', 'Shaun', 'NULL', 'Deng', '0', '1974-03-11', 'S', 'NULL', 'M', 'shaun3@adventure-works.com', '10000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Haberstr 41', 'NULL', '1 (11) 500 555-0172', '2011-03-02', '0-1 Miles'], ['13573', '183', 'AW00013573', 'NULL', 'Edwin', 'M', 'Pal', '0', '1974-06-03', 'M', 'NULL', 'M', 'edwin35@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '99, rue Royale', 'NULL', '1 (11) 500 555-0154', '2013-05-13', '2-5 Miles'], ['13574', '128', 'AW00013574', 'NULL', 'Brenda', 'NULL', 'Garcia', '0', '1973-08-31', 'S', 'NULL', 'F', 'brenda18@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Nonnendamm 63', 'NULL', '1 (11) 500 555-0187', '2013-01-30', '2-5 Miles'], ['13575', '211', 'AW00013575', 'NULL', 'Alicia', 'D', 'Shen', '0', '1950-02-22', 'M', 'NULL', 'F', 'alicia1@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '80, rue de Fontfroide', 'NULL', '1 (11) 500 555-0143', '2012-01-18', '2-5 Miles'], ['13576', '256', 'AW00013576', 'NULL', 'Tamara', 'NULL', 'Lal', '0', '1961-06-17', 'S', 'NULL', 'F', 'tamara20@adventure-works.com', '160000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '2697 Mt. Everest Ct.', 'NULL', '1 (11) 500 555-0171', '2011-01-09', '0-1 Miles'], ['13577', '204', 'AW00013577', 'NULL', 'Theodore', 'NULL', 'Torres', '0', '1951-02-11', 'M', 'NULL', 'M', 'theodore12@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1004, rue des Bouchers', 'NULL', '1 (11) 500 555-0115', '2012-01-21', '2-5 Miles'], ['13578', '188', 'AW00013578', 'NULL', 'Karl', 'G', 'Nath', '0', '1950-10-22', 'M', 'NULL', 'M', 'karl19@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '4138 Shore Rd.', 'NULL', '1 (11) 500 555-0188', '2014-01-15', '10+ Miles'], ['13579', '121', 'AW00013579', 'NULL', 'Alan', 'NULL', 'Chen', '0', '1957-02-22', 'M', 'NULL', 'M', 'alan6@adventure-works.com', '110000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', 'Rotthäuser Weg 202', 'NULL', '1 (11) 500 555-0143', '2011-03-27', '5-10 Miles'], ['13580', '172', 'AW00013580', 'NULL', 'Carol', 'P', 'Xu', '0', '1952-01-15', 'M', 'NULL', 'F', 'carol24@adventure-works.com', '110000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', 'Alderstr 27', 'NULL', '1 (11) 500 555-0150', '2011-03-23', '5-10 Miles'], ['13581', '237', 'AW00013581', 'NULL', 'Albert', 'W', 'Blanco', '0', '1952-04-17', 'M', 'NULL', 'M', 'albert15@adventure-works.com', '130000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '3316 Balhan Dr', 'NULL', '1 (11) 500 555-0130', '2011-01-04', '5-10 Miles'], ['13582', '256', 'AW00013582', 'NULL', 'Martha', 'NULL', 'Gao', '0', '1952-03-21', 'M', 'NULL', 'F', 'martha14@adventure-works.com', '130000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '4060 Roundtree Court', 'NULL', '1 (11) 500 555-0194', '2013-01-29', '0-1 Miles'], ['13583', '238', 'AW00013583', 'NULL', 'Blake', 'NULL', 'Butler', '0', '1960-05-11', 'S', 'NULL', 'M', 'blake62@adventure-works.com', '90000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3857 Mt. Etna', 'NULL', '1 (11) 500 555-0129', '2011-01-21', '10+ Miles'], ['13584', '267', 'AW00013584', 'NULL', 'Isaiah', 'E', 'Cox', '0', '1964-08-13', 'S', 'NULL', 'M', 'isaiah9@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '2181 Brownstone Rd.', 'NULL', '1 (11) 500 555-0144', '2011-01-26', '10+ Miles'], ['13585', '243', 'AW00013585', 'NULL', 'Savannah', 'NULL', 'Morris', '0', '1964-05-13', 'M', 'NULL', 'F', 'savannah17@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '7650 Central Blvd', 'NULL', '1 (11) 500 555-0193', '2011-01-22', '2-5 Miles'], ['13586', '238', 'AW00013586', 'NULL', 'Larry', 'B', 'Alonso', '0', '1964-05-17', 'M', 'NULL', 'M', 'larry10@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8260 Klamath Woods Pl.', 'NULL', '1 (11) 500 555-0178', '2013-04-27', '10+ Miles'], ['13587', '154', 'AW00013587', 'NULL', 'Kristina', 'NULL', 'Subram', '0', '1960-05-23', 'S', 'NULL', 'F', 'kristina13@adventure-works.com', '100000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', 'Erlenweg 7949', 'NULL', '1 (11) 500 555-0125', '2013-10-28', '10+ Miles'], ['13588', '158', 'AW00013588', 'NULL', 'Deb', 'A', 'Dominguez', '0', '1959-08-31', 'M', 'NULL', 'F', 'deb5@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Im Himmelsweg 89', 'NULL', '1 (11) 500 555-0148', '2013-11-16', '0-1 Miles'], ['13589', '221', 'AW00013589', 'NULL', 'Cameron', 'M', 'Smith', '0', '1964-10-13', 'S', 'NULL', 'M', 'cameron42@adventure-works.com', '90000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '873487, rue de Berri', 'NULL', '1 (11) 500 555-0129', '2013-08-20', '10+ Miles'], ['13590', '277', 'AW00013590', 'NULL', 'Louis', 'B', 'Xie', '0', '1958-11-15', 'M', 'NULL', 'M', 'louis20@adventure-works.com', '170000.00', '0', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '6553 San Miguel Rd.', 'NULL', '1 (11) 500 555-0115', '2011-01-03', '10+ Miles'], ['13591', '278', 'AW00013591', 'NULL', 'Latasha', 'A', 'Alonso', '0', '1964-05-21', 'M', 'NULL', 'F', 'latasha8@adventure-works.com', '170000.00', '0', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '2168 Reading Drive', 'NULL', '1 (11) 500 555-0110', '2011-01-02', '0-1 Miles'], ['13592', '207', 'AW00013592', 'NULL', 'Gabriella', 'J', 'Collins', '0', '1963-06-04', 'M', 'NULL', 'F', 'gabriella23@adventure-works.com', '70000.00', '5', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5bis, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0183', '2012-01-02', '2-5 Miles'], ['13593', '167', 'AW00013593', 'NULL', 'Deanna', 'A', 'Navarro', '0', '1958-02-15', 'S', 'NULL', 'F', 'deanna36@adventure-works.com', '100000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Zimmerstr 222', 'NULL', '1 (11) 500 555-0199', '2013-12-15', '10+ Miles'], ['13594', '147', 'AW00013594', 'NULL', 'Jessica', 'A', 'Williams', '0', '1957-07-17', 'M', 'NULL', 'F', 'jessica49@adventure-works.com', '100000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Unter Linden 987', 'NULL', '1 (11) 500 555-0116', '2013-07-28', '10+ Miles'], ['13595', '220', 'AW00013595', 'NULL', 'Cole', 'L', 'Stewart', '0', '1956-11-29', 'S', 'NULL', 'M', 'cole23@adventure-works.com', '70000.00', '5', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '20, rue des Rosiers', 'NULL', '1 (11) 500 555-0188', '2012-01-13', '10+ Miles'], ['13596', '225', 'AW00013596', 'NULL', 'Billy', 'R', 'Gomez', '0', '1956-12-13', 'M', 'NULL', 'M', 'billy2@adventure-works.com', '80000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '86, rue Mazagran', 'NULL', '1 (11) 500 555-0141', '2013-02-10', '2-5 Miles'], ['13597', '120', 'AW00013597', 'NULL', 'Lance', 'D', 'Gutierrez', '0', '1957-02-01', 'M', 'NULL', 'M', 'lance11@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', 'Lieblingsweg 45', 'NULL', '1 (11) 500 555-0188', '2013-08-19', '10+ Miles'], ['13598', '162', 'AW00013598', 'NULL', 'Keith', 'R', 'Luo', '0', '1962-08-12', 'M', 'NULL', 'M', 'keith8@adventure-works.com', '120000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', 'Am Gallberg 656', 'NULL', '1 (11) 500 555-0149', '2013-10-07', '10+ Miles'], ['13599', '229', 'AW00013599', 'NULL', 'Valerie', 'M', 'Zhu', '0', '1962-01-11', 'M', 'NULL', 'F', 'valerie16@adventure-works.com', '120000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '7314 El Capitan Lane', 'NULL', '1 (11) 500 555-0110', '2013-05-01', '10+ Miles'], ['13600', '273', 'AW00013600', 'NULL', 'Marie', 'NULL', 'Sanz', '0', '1956-08-18', 'M', 'NULL', 'F', 'marie44@adventure-works.com', '170000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '1156 Dublin Court', 'NULL', '1 (11) 500 555-0155', '2011-02-03', '10+ Miles'], ['13601', '164', 'AW00013601', 'NULL', 'Tanya', 'N', 'Dominguez', '0', '1955-11-03', 'M', 'NULL', 'F', 'tanya9@adventure-works.com', '100000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '4', 'Berliner Platz 499', 'NULL', '1 (11) 500 555-0168', '2014-01-03', '5-10 Miles'], ['13602', '231', 'AW00013602', 'NULL', 'Virginia', 'NULL', 'Mehta', '0', '1955-11-14', 'M', 'NULL', 'F', 'virginia16@adventure-works.com', '110000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '2', '3168 1 Drive', '#118', '1 (11) 500 555-0111', '2011-02-05', '10+ Miles'], ['13603', '243', 'AW00013603', 'NULL', 'Molly', 'S', 'Martinez', '0', '1955-11-29', 'M', 'NULL', 'F', 'molly16@adventure-works.com', '120000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', '9698 N Lucile Lane', 'NULL', '1 (11) 500 555-0155', '2013-03-22', '10+ Miles'], ['13604', '249', 'AW00013604', 'NULL', 'Nuan', 'NULL', 'Zheng', '0', '1961-09-07', 'M', 'NULL', 'M', 'nuan3@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '3', '3964 Stony Hill Circle', 'NULL', '1 (11) 500 555-0172', '2013-10-10', '10+ Miles'], ['13605', '184', 'AW00013605', 'NULL', 'Gerrit', 'Jan', 'Straatsma', '0', '1955-05-18', 'M', 'NULL', 'M', 'gerrit0@adventure-works.com', '80000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '3', '26, avenue de Malakoff', 'NULL', '1 (11) 500 555-0179', '2012-01-21', '5-10 Miles'], ['13606', '118', 'AW00013606', 'NULL', 'Drew', 'NULL', 'Sharma', '0', '1954-12-29', 'M', 'NULL', 'M', 'drew10@adventure-works.com', '100000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '4', 'Wolfgangstraße 18', 'NULL', '1 (11) 500 555-0149', '2011-04-17', '10+ Miles'], ['13607', '145', 'AW00013607', 'NULL', 'Levi', 'J', 'Rana', '0', '1960-04-01', 'S', 'NULL', 'M', 'levi10@adventure-works.com', '110000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', 'Essener Straße 82', 'NULL', '1 (11) 500 555-0199', '2011-04-18', '10+ Miles'], ['13608', '151', 'AW00013608', 'NULL', 'Karla', 'H', 'Kumar', '0', '1954-10-19', 'M', 'NULL', 'F', 'karla8@adventure-works.com', '120000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', 'Berliner Platz 77', 'NULL', '1 (11) 500 555-0189', '2013-10-12', '10+ Miles'], ['13609', '252', 'AW00013609', 'NULL', 'Ramon', 'K', 'Yang', '0', '1960-04-11', 'M', 'NULL', 'M', 'ramon4@adventure-works.com', '150000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '6740 11th St. NE', 'NULL', '1 (11) 500 555-0150', '2013-08-07', '10+ Miles'], ['13610', '204', 'AW00013610', 'NULL', 'Omar', 'R', 'Sharma', '0', '1954-05-28', 'M', 'NULL', 'M', 'omar29@adventure-works.com', '80000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '5711, rue des Ecoles', 'NULL', '1 (11) 500 555-0145', '2013-03-21', '10+ Miles'], ['13611', '218', 'AW00013611', 'NULL', 'Marshall', 'L', 'Huang', '0', '1953-09-20', 'M', 'NULL', 'M', 'marshall5@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '33, quai de l´ Iton', 'NULL', '1 (11) 500 555-0189', '2014-01-05', '10+ Miles'], ['13612', '271', 'AW00013612', 'NULL', 'Hailey', 'C', 'Ross', '0', '1952-08-20', 'M', 'NULL', 'F', 'hailey25@adventure-works.com', '130000.00', '5', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '4', '8457 Teak Court', 'NULL', '1 (11) 500 555-0114', '2013-06-10', '10+ Miles'], ['13613', '16', 'AW00013613', 'NULL', 'Derek', 'E', 'Jai', '0', '1981-06-22', 'M', 'NULL', 'M', 'derek10@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '460 Carzino Ct', 'NULL', '1 (11) 500 555-0129', '2013-02-13', '10+ Miles'], ['13614', '11', 'AW00013614', 'NULL', 'Julie', 'NULL', 'Becker', '0', '1986-04-21', 'S', 'NULL', 'F', 'julie22@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '2826 C Del Rio Ln.', 'NULL', '1 (11) 500 555-0142', '2013-04-26', '10+ Miles'], ['13615', '18', 'AW00013615', 'NULL', 'Jacquelyn', 'I', 'Rowe', '0', '1980-09-23', 'S', 'NULL', 'F', 'jacquelyn22@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '565 Park Highlands', 'NULL', '1 (11) 500 555-0197', '2013-01-29', '2-5 Miles'], ['13616', '39', 'AW00013616', 'NULL', 'Cole', 'E', 'Ramirez', '0', '1981-09-24', 'M', 'NULL', 'M', 'cole9@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '9318 Larch Ct.', 'NULL', '1 (11) 500 555-0166', '2012-07-14', '10+ Miles'], ['13617', '33', 'AW00013617', 'NULL', 'Gerald', 'NULL', 'Suri', '0', '1981-09-14', 'M', 'NULL', 'M', 'gerald29@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '3143 N. Main', 'NULL', '1 (11) 500 555-0119', '2013-04-18', '10+ Miles'], ['13618', '34', 'AW00013618', 'NULL', 'Jay', 'M', 'Raman', '0', '1982-05-14', 'S', 'NULL', 'M', 'jay19@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '5508 Trembath Court', 'NULL', '1 (11) 500 555-0181', '2012-07-11', '10+ Miles'], ['13619', '14', 'AW00013619', 'NULL', 'Arturo', 'NULL', 'Xu', '0', '1981-11-08', 'M', 'NULL', 'M', 'arturo13@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '6111 Guadalajara', 'NULL', '1 (11) 500 555-0173', '2012-07-20', '10+ Miles'], ['13620', '2', 'AW00013620', 'NULL', 'Damien', 'M', 'Ye', '0', '1981-07-31', 'S', 'NULL', 'M', 'damien7@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '9167 Jam Way', 'NULL', '1 (11) 500 555-0178', '2012-07-06', '10+ Miles'], ['13621', '39', 'AW00013621', 'NULL', 'Melody', 'NULL', 'Ruiz', '0', '1979-08-01', 'M', 'NULL', 'F', 'melody2@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '7786 Olive St', 'NULL', '1 (11) 500 555-0113', '2013-07-23', '10+ Miles'], ['13622', '10', 'AW00013622', 'NULL', 'Alan', 'NULL', 'Wang', '0', '1979-11-04', 'M', 'NULL', 'M', 'alan29@adventure-works.com', '70000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '9686 Willbrook Court', 'NULL', '1 (11) 500 555-0173', '2012-07-02', '10+ Miles'], ['13623', '35', 'AW00013623', 'NULL', 'Mitchell', 'NULL', 'Carson', '0', '1978-09-12', 'M', 'NULL', 'M', 'mitchell13@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '9715 San Francisco', 'NULL', '1 (11) 500 555-0163', '2013-06-27', '10+ Miles'], ['13624', '39', 'AW00013624', 'NULL', 'Nicole', 'C', 'Long', '0', '1979-09-06', 'S', 'NULL', 'F', 'nicole58@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '1355 Sequoia Drive', 'NULL', '1 (11) 500 555-0139', '2013-02-22', '10+ Miles'], ['13625', '13', 'AW00013625', 'NULL', 'Jason', 'J', 'Campbell', '0', '1984-10-29', 'M', 'NULL', 'M', 'jason36@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '9371 Jacqueline Way', 'NULL', '1 (11) 500 555-0124', '2012-07-21', '10+ Miles'], ['13626', '20', 'AW00013626', 'NULL', 'Johnathan', 'D', 'Madan', '0', '1984-09-16', 'M', 'NULL', 'M', 'johnathan9@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '6660 Acardia Pl.', 'NULL', '1 (11) 500 555-0110', '2012-07-13', '10+ Miles'], ['13627', '3', 'AW00013627', 'NULL', 'Natasha', 'K', 'Rubio', '0', '1978-01-04', 'M', 'NULL', 'F', 'natasha21@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '7889 Mitchelleanjen Ln.', 'NULL', '1 (11) 500 555-0115', '2013-03-17', '10+ Miles'], ['13628', '33', 'AW00013628', 'NULL', 'Kaitlin', 'NULL', 'Schmidt', '0', '1979-06-20', 'M', 'NULL', 'F', 'kaitlin10@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', '7886 Burwood Way', 'NULL', '1 (11) 500 555-0168', '2013-04-01', '10+ Miles'], ['13629', '26', 'AW00013629', 'NULL', 'Karla', 'W', 'Yuan', '0', '1978-01-18', 'M', 'NULL', 'F', 'karla7@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '9595 Zion Avenue', 'NULL', '1 (11) 500 555-0123', '2012-07-21', '10+ Miles'], ['13630', '19', 'AW00013630', 'NULL', 'Brenda', 'NULL', 'Arun', '0', '1977-09-13', 'S', 'NULL', 'F', 'brenda10@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '1048 Las Quebradas Lane', 'NULL', '1 (11) 500 555-0185', '2012-07-01', '10+ Miles'], ['13631', '8', 'AW00013631', 'NULL', 'Joe', 'NULL', 'Subram', '0', '1978-05-03', 'M', 'NULL', 'M', 'joe16@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '8620 Moss Hollow Court', 'NULL', '1 (11) 500 555-0136', '2012-07-01', '10+ Miles'], ['13632', '28', 'AW00013632', 'NULL', 'Cheryl', 'C', 'Munoz', '0', '1977-08-06', 'S', 'NULL', 'F', 'cheryl9@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '9348 Notre Dame Ave', 'NULL', '1 (11) 500 555-0121', '2012-07-22', '10+ Miles'], ['13633', '11', 'AW00013633', 'NULL', 'Juan', 'NULL', 'Ramos', '0', '1977-09-09', 'S', 'NULL', 'M', 'juan5@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '5751 Concord Place', 'NULL', '1 (11) 500 555-0180', '2012-07-25', '10+ Miles'], ['13634', '20', 'AW00013634', 'NULL', 'Alexis', 'L', 'Russell', '0', '1977-08-16', 'M', 'NULL', 'F', 'alexis43@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '7260 Turner Dr.', 'NULL', '1 (11) 500 555-0110', '2013-09-03', '10+ Miles'], ['13635', '8', 'AW00013635', 'NULL', 'Kurt', 'D', 'Deng', '0', '1976-08-22', 'M', 'NULL', 'M', 'kurt1@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '8065 Sand Point Road', 'NULL', '1 (11) 500 555-0139', '2013-02-01', '10+ Miles'], ['13636', '39', 'AW00013636', 'NULL', 'Jarrod', 'NULL', 'Rodriguez', '0', '1976-07-01', 'M', 'NULL', 'M', 'jarrod18@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '1289 Quiz St.', 'NULL', '1 (11) 500 555-0125', '2012-07-14', '10+ Miles'], ['13637', '19', 'AW00013637', 'NULL', 'Victoria', 'S', 'Cooper', '0', '1978-03-08', 'M', 'NULL', 'F', 'victoria35@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', '7462 Linden Land', 'NULL', '1 (11) 500 555-0192', '2012-07-25', '10+ Miles'], ['13638', '18', 'AW00013638', 'NULL', 'Diana', 'NULL', 'Alvarez', '0', '1978-01-09', 'S', 'NULL', 'F', 'diana3@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '7539 Hazelwood Lane', 'NULL', '1 (11) 500 555-0197', '2012-07-14', '10+ Miles'], ['13639', '34', 'AW00013639', 'NULL', 'Colin', 'NULL', 'Liang', '0', '1977-02-03', 'M', 'NULL', 'M', 'colin18@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '4571 Guadalupe', 'NULL', '1 (11) 500 555-0134', '2013-02-14', '10+ Miles'], ['13640', '22', 'AW00013640', 'NULL', 'Rachael', 'G', 'Patel', '0', '1976-10-14', 'M', 'NULL', 'F', 'rachael3@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '9815 Marlboro Court', 'NULL', '1 (11) 500 555-0167', '2013-03-15', '10+ Miles'], ['13641', '25', 'AW00013641', 'NULL', 'Adrian', 'K', 'Watson', '0', '1975-11-15', 'S', 'NULL', 'M', 'adrian2@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '3205 Sierra Drive', 'NULL', '1 (11) 500 555-0143', '2013-03-17', '10+ Miles'], ['13642', '3', 'AW00013642', 'NULL', 'Cassie', 'NULL', 'Nara', '0', '1976-04-08', 'M', 'NULL', 'F', 'cassie15@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '6264 Center Ave', 'NULL', '1 (11) 500 555-0180', '2013-05-09', '10+ Miles'], ['13643', '5', 'AW00013643', 'NULL', 'Ronald', 'B', 'Sai', '0', '1976-04-04', 'S', 'NULL', 'M', 'ronald7@adventure-works.com', '100000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '6738 Wallace Dr.', 'NULL', '1 (11) 500 555-0174', '2012-07-07', '10+ Miles'], ['13644', '32', 'AW00013644', 'NULL', 'Kristi', 'M', 'Dominguez', '0', '1975-09-30', 'M', 'NULL', 'F', 'kristi8@adventure-works.com', '100000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '4655 Dance Court', 'NULL', '1 (11) 500 555-0154', '2012-07-16', '10+ Miles'], ['13645', '24', 'AW00013645', 'NULL', 'Eugene', 'L', 'He', '0', '1976-03-15', 'S', 'NULL', 'M', 'eugene23@adventure-works.com', '100000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '4195 May Way', 'NULL', '1 (11) 500 555-0123', '2012-07-19', '10+ Miles'], ['13646', '40', 'AW00013646', 'NULL', 'Terry', 'R', 'Yuan', '0', '1981-10-05', 'M', 'NULL', 'M', 'terry10@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '8358 Lightwood Drive', 'NULL', '1 (11) 500 555-0117', '2012-07-22', '10+ Miles'], ['13647', '22', 'AW00013647', 'NULL', 'Armando', 'M', 'Alonso', '0', '1975-12-11', 'S', 'NULL', 'M', 'armando8@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '9806 North Star Dr.', 'NULL', '1 (11) 500 555-0174', '2012-07-01', '10+ Miles'], ['13648', '26', 'AW00013648', 'NULL', 'Arturo', 'NULL', 'Sharma', '0', '1981-10-05', 'S', 'NULL', 'M', 'arturo34@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '2921 Glen Wood Drive', 'NULL', '1 (11) 500 555-0149', '2012-07-29', '10+ Miles'], ['13649', '27', 'AW00013649', 'NULL', 'Rebekah', 'NULL', 'Suarez', '0', '1976-11-04', 'M', 'NULL', 'F', 'rebekah39@adventure-works.com', '110000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Pascalstr 646', 'NULL', '1 (11) 500 555-0138', '2012-07-20', '10+ Miles'], ['13650', '12', 'AW00013650', 'NULL', 'Jessie', 'A', 'She', '0', '1976-07-07', 'M', 'NULL', 'M', 'jessie29@adventure-works.com', '110000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Management', 'Gestión', 'Direction', '1', '4', '5866 Military E', 'NULL', '1 (11) 500 555-0154', '2012-07-11', '10+ Miles'], ['13651', '30', 'AW00013651', 'NULL', 'Jerry', 'C', 'Sharma', '0', '1977-03-05', 'M', 'NULL', 'M', 'jerry10@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Management', 'Gestión', 'Direction', '1', '4', '9177 Concord Royale', 'NULL', '1 (11) 500 555-0138', '2012-07-06', '10+ Miles'], ['13652', '536', 'AW00013652', 'NULL', 'Tamara', 'A', 'Zeng', '0', '1947-02-22', 'M', 'NULL', 'F', 'tamara11@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5243 Miguel Drive', 'NULL', '818-555-0163', '2013-05-08', '5-10 Miles'], ['13653', '612', 'AW00013653', 'NULL', 'Tony', 'NULL', 'Chander', '0', '1946-09-22', 'M', 'NULL', 'M', 'tony18@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6007 Concord Pl.', 'NULL', '253-555-0173', '2012-05-13', '1-2 Miles'], ['13654', '609', 'AW00013654', 'NULL', 'Shawn', 'R', 'Andersen', '0', '1946-08-05', 'M', 'NULL', 'M', 'shawn15@adventure-works.com', '100000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '233 Waterview Terr.', 'NULL', '116-555-0136', '2013-07-08', '1-2 Miles'], ['13655', '609', 'AW00013655', 'NULL', 'Christopher', 'L', 'Walker', '0', '1951-12-31', 'M', 'NULL', 'M', 'christopher23@adventure-works.com', '100000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '7646 H Stagecoach Rd', 'NULL', '102-555-0150', '2013-11-06', '5-10 Miles'], ['13656', '298', 'AW00013656', 'NULL', 'Faith', 'NULL', 'Howard', '0', '1952-04-21', 'M', 'NULL', 'F', 'faith30@adventure-works.com', '110000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8071 Daylight Place', 'NULL', '116-555-0173', '2013-07-14', '5-10 Miles'], ['13657', '543', 'AW00013657', 'NULL', 'Kaylee', 'M', 'Collins', '0', '1946-09-12', 'S', 'NULL', 'F', 'kaylee22@adventure-works.com', '110000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4755 Easley Drive', 'NULL', '169-555-0199', '2012-04-30', '5-10 Miles'], ['13658', '634', 'AW00013658', 'NULL', 'Wyatt', 'J', 'Bennett', '0', '1946-09-10', 'M', 'NULL', 'M', 'wyatt53@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '9928 Stinson', 'NULL', '198-555-0197', '2012-05-13', '0-1 Miles'], ['13659', '607', 'AW00013659', 'NULL', 'Clayton', 'NULL', 'Shan', '0', '1947-04-17', 'M', 'NULL', 'M', 'clayton28@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '6709 Prestwick Ave', 'NULL', '396-555-0111', '2013-06-05', '5-10 Miles'], ['13660', '53', 'AW00013660', 'NULL', 'Ethan', 'NULL', 'Davis', '0', '1947-09-06', 'M', 'NULL', 'M', 'ethan37@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4054 Breck Court', 'NULL', '225-555-0119', '2013-05-20', '10+ Miles'], ['13661', '271', 'AW00013661', 'NULL', 'Andre', 'M', 'Sara', '0', '1981-05-06', 'M', 'NULL', 'M', 'andre10@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3186 Concord Ct.', 'NULL', '1 (11) 500 555-0195', '2011-02-05', '1-2 Miles'], ['13662', '190', 'AW00013662', 'NULL', 'Miguel', 'C', 'Roberts', '0', '1985-11-20', 'S', 'NULL', 'M', 'miguel39@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '80, avenue des Champs-Elysées', 'NULL', '1 (11) 500 555-0193', '2012-01-12', '1-2 Miles'], ['13663', '177', 'AW00013663', 'NULL', 'Melvin', 'R', 'Tang', '0', '1984-08-02', 'S', 'NULL', 'M', 'melvin4@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Rehstr 6446', 'NULL', '1 (11) 500 555-0195', '2013-02-02', '1-2 Miles'], ['13664', '264', 'AW00013664', 'NULL', 'Larry', 'T', 'Diaz', '0', '1978-08-10', 'S', 'NULL', 'M', 'larry4@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '8036 Weaver Lane', 'NULL', '1 (11) 500 555-0145', '2013-07-27', '0-1 Miles'], ['13665', '276', 'AW00013665', 'NULL', 'Kristi', 'NULL', 'Randall', '0', '1984-02-15', 'M', 'NULL', 'F', 'kristi28@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '7320 Bloching Circle', 'NULL', '1 (11) 500 555-0118', '2013-08-02', '0-1 Miles'], ['13666', '119', 'AW00013666', 'NULL', 'Teresa', 'NULL', 'Ruiz', '0', '1979-01-14', 'S', 'NULL', 'F', 'teresa3@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Nollendorfplatz 58888', 'NULL', '1 (11) 500 555-0166', '2011-04-14', '1-2 Miles'], ['13667', '211', 'AW00013667', 'NULL', 'Andres', 'NULL', 'Deng', '0', '1978-11-08', 'S', 'NULL', 'M', 'andres0@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '37, place de Fontenoy', 'NULL', '1 (11) 500 555-0152', '2012-01-03', '1-2 Miles'], ['13668', '2', 'AW00013668', 'NULL', 'Stanley', 'Z', 'Martinez', '0', '1974-10-03', 'M', 'NULL', 'M', 'stanley19@adventure-works.com', '60000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '1288 Vista Del Rio', 'NULL', '1 (11) 500 555-0191', '2013-02-06', '5-10 Miles'], ['13669', '23', 'AW00013669', 'NULL', 'Kristy', 'NULL', 'Gill', '0', '1968-08-30', 'M', 'NULL', 'F', 'kristy12@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '3675 Q St.', 'NULL', '1 (11) 500 555-0129', '2013-04-20', '0-1 Miles'], ['13670', '13', 'AW00013670', 'NULL', 'Brittney', 'K', 'Zeng', '0', '1969-03-26', 'S', 'NULL', 'F', 'brittney21@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '9389 Fern Leaf Lane', 'NULL', '1 (11) 500 555-0144', '2013-02-22', '0-1 Miles'], ['13671', '173', 'AW00013671', 'NULL', 'Frank', 'NULL', 'Ramos', '0', '1979-08-07', 'S', 'NULL', 'M', 'frank25@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Carlsplatz 43', 'NULL', '1 (11) 500 555-0146', '2014-01-28', '1-2 Miles'], ['13672', '187', 'AW00013672', 'NULL', 'Benjamin', 'C', 'Davis', '0', '1985-12-05', 'S', 'NULL', 'M', 'benjamin39@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '11, quai de l´ Iton', 'NULL', '1 (11) 500 555-0110', '2013-06-27', '0-1 Miles'], ['13673', '213', 'AW00013673', 'NULL', 'Sandra', 'NULL', 'He', '0', '1986-05-13', 'S', 'NULL', 'F', 'sandra26@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '9, avenue Reille', 'NULL', '1 (11) 500 555-0142', '2013-11-17', '0-1 Miles'], ['13674', '200', 'AW00013674', 'NULL', 'Drew', 'L', 'Shen', '0', '1985-07-12', 'S', 'NULL', 'M', 'drew2@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '401, rue de Cambrai', 'NULL', '1 (11) 500 555-0169', '2013-05-05', '1-2 Miles'], ['13675', '256', 'AW00013675', 'NULL', 'Stanley', 'NULL', 'Sai', '0', '1985-10-07', 'S', 'NULL', 'M', 'stanley6@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '3704 Panoramic Drive', 'NULL', '1 (11) 500 555-0118', '2013-06-16', '0-1 Miles'], ['13676', '270', 'AW00013676', 'NULL', 'George', 'L', 'Kapoor', '0', '1986-01-14', 'M', 'NULL', 'M', 'george7@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '4613 Benedict Court', 'NULL', '1 (11) 500 555-0189', '2013-03-27', '0-1 Miles'], ['13677', '174', 'AW00013677', 'NULL', 'Brian', 'T', 'Albrecht', '0', '1983-09-25', 'S', 'NULL', 'F', 'brian35@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Heiderweg 4624', 'NULL', '1 (11) 500 555-0119', '2014-01-04', '1-2 Miles'], ['13678', '240', 'AW00013678', 'NULL', 'Warren', 'A', 'Goel', '0', '1979-12-23', 'M', 'NULL', 'M', 'warren9@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9236 Woodland Drive', 'Unit B', '1 (11) 500 555-0186', '2011-02-23', '0-1 Miles'], ['13679', '242', 'AW00013679', 'NULL', 'Sandra', 'NULL', 'Li', '0', '1979-08-03', 'M', 'NULL', 'F', 'sandra9@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1102 Geary Ct', 'NULL', '1 (11) 500 555-0163', '2011-02-23', '0-1 Miles'], ['13680', '271', 'AW00013680', 'NULL', 'Jan', 'K', 'Watson', '0', '1980-05-16', 'M', 'NULL', 'F', 'jan4@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '37 Amaranth Way', 'NULL', '1 (11) 500 555-0155', '2011-02-17', '1-2 Miles'], ['13681', '196', 'AW00013681', 'NULL', 'Adam', 'A', 'Hall', '0', '1979-05-18', 'S', 'NULL', 'M', 'adam51@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '91, rue de la Cavalerie', 'NULL', '1 (11) 500 555-0110', '2013-10-01', '2-5 Miles'], ['13682', '160', 'AW00013682', 'NULL', 'Fernando', 'M', 'Lopez', '0', '1978-10-23', 'S', 'NULL', 'M', 'fernando27@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Königstr 27', 'NULL', '1 (11) 500 555-0110', '2013-06-13', '1-2 Miles'], ['13683', '168', 'AW00013683', 'NULL', 'Sheila', 'C', 'Torres', '0', '1979-06-02', 'S', 'NULL', 'F', 'sheila12@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Postfach 55 99 99', 'NULL', '1 (11) 500 555-0169', '2013-10-13', '2-5 Miles'], ['13684', '133', 'AW00013684', 'NULL', 'Francis', 'NULL', 'Dominguez', '0', '1983-05-11', 'S', 'NULL', 'M', 'francis10@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Am Karlshof 8', 'NULL', '1 (11) 500 555-0126', '2013-11-29', '1-2 Miles'], ['13685', '123', 'AW00013685', 'NULL', 'Briana', 'NULL', 'Torres', '0', '1984-02-13', 'M', 'NULL', 'F', 'briana11@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Königstr 873', 'NULL', '1 (11) 500 555-0188', '2011-04-29', '0-1 Miles'], ['13686', '128', 'AW00013686', 'NULL', 'Peter', 'NULL', 'Jai', '0', '1979-04-13', 'M', 'NULL', 'M', 'peter17@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Hunzinger Allee 153', 'NULL', '1 (11) 500 555-0113', '2011-04-08', '0-1 Miles'], ['13687', '234', 'AW00013687', 'NULL', 'Mario', 'NULL', 'Xie', '0', '1979-02-15', 'M', 'NULL', 'M', 'mario2@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1339 W. Hookston Road', 'NULL', '1 (11) 500 555-0174', '2011-02-09', '0-1 Miles'], ['13688', '264', 'AW00013688', 'NULL', 'Ruben', 'S', 'Sanchez', '0', '1978-12-17', 'S', 'NULL', 'M', 'ruben21@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '5828 Clark Creek Lane', 'NULL', '1 (11) 500 555-0160', '2013-06-29', '1-2 Miles'], ['13689', '277', 'AW00013689', 'NULL', 'Teresa', 'NULL', 'Ramos', '0', '1978-10-19', 'S', 'NULL', 'F', 'teresa18@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '3883 Kirkwood Dr', 'NULL', '1 (11) 500 555-0113', '2011-02-21', '0-1 Miles'], ['13690', '270', 'AW00013690', 'NULL', 'Claudia', 'NULL', 'Gao', '0', '1977-08-16', 'S', 'NULL', 'F', 'claudia13@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '4179 Green St.', 'NULL', '1 (11) 500 555-0179', '2011-02-23', '1-2 Miles'], ['13691', '231', 'AW00013691', 'NULL', 'Ariana', 'J', 'Bailey', '0', '1983-10-19', 'S', 'NULL', 'F', 'ariana14@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1936 Balance Ct', 'NULL', '1 (11) 500 555-0138', '2011-02-25', '1-2 Miles'], ['13692', '235', 'AW00013692', 'NULL', 'Curtis', 'E', 'Li', '0', '1983-10-18', 'M', 'NULL', 'M', 'curtis3@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '0', '9879 Hedaro Court', 'NULL', '1 (11) 500 555-0136', '2013-10-23', '0-1 Miles'], ['13693', '245', 'AW00013693', 'NULL', 'Dominic', 'L', 'Gonzalez', '0', '1976-08-05', 'S', 'NULL', 'M', 'dominic19@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '3817 Green Hill Rd.', 'NULL', '1 (11) 500 555-0110', '2011-02-18', '1-2 Miles'], ['13694', '238', 'AW00013694', 'NULL', 'Savannah', 'E', 'Gray', '0', '1982-12-10', 'S', 'NULL', 'F', 'savannah4@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '9617 Pheasant Ct', 'NULL', '1 (11) 500 555-0190', '2013-04-05', '2-5 Miles'], ['13695', '189', 'AW00013695', 'NULL', 'Christian', 'H', 'Clark', '0', '1976-10-20', 'S', 'NULL', 'M', 'christian38@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '762, place du Tertre', 'NULL', '1 (11) 500 555-0150', '2013-06-18', '2-5 Miles'], ['13696', '171', 'AW00013696', 'NULL', 'Katherine', 'NULL', 'Edwards', '0', '1977-05-14', 'S', 'NULL', 'F', 'katherine50@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Zollstr 62', 'NULL', '1 (11) 500 555-0172', '2013-02-21', '1-2 Miles'], ['13697', '172', 'AW00013697', 'NULL', 'Jésus', 'K', 'Munoz', '0', '1976-12-21', 'S', 'NULL', 'M', 'jésus6@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Am Gallberg 222', 'NULL', '1 (11) 500 555-0197', '2011-04-24', '0-1 Miles'], ['13698', '133', 'AW00013698', 'NULL', 'Catherine', 'NULL', 'Sanchez', '0', '1976-03-31', 'S', 'NULL', 'F', 'catherine21@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Viktoria-Luise-Platz 45', 'NULL', '1 (11) 500 555-0180', '2013-02-20', '1-2 Miles'], ['13699', '545', 'AW00013699', 'NULL', 'Rachel', 'NULL', 'Alexander', '0', '1980-07-21', 'S', 'NULL', 'F', 'rachel67@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7429 La Cadena', 'NULL', '114-555-0156', '2013-10-15', '0-1 Miles'], ['13700', '314', 'AW00013700', 'NULL', 'Evan', 'S', 'Howard', '0', '1980-08-30', 'S', 'NULL', 'M', 'evan12@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1506 Newton Way', 'NULL', '852-555-0157', '2012-05-24', '1-2 Miles'], ['13701', '56', 'AW00013701', 'NULL', 'Haley', 'NULL', 'Scott', '0', '1980-05-22', 'S', 'NULL', 'F', 'haley51@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2905 Limeridge Drive', 'NULL', '384-555-0163', '2013-04-30', '0-1 Miles'], ['13702', '307', 'AW00013702', 'NULL', 'Jessie', 'D', 'Suarez', '0', '1979-12-14', 'S', 'NULL', 'F', 'jessie38@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '431 Riverside Drive', 'NULL', '226-555-0116', '2012-05-17', '1-2 Miles'], ['13703', '623', 'AW00013703', 'NULL', 'Mackenzie', 'J', 'Sanders', '0', '1979-12-02', 'S', 'NULL', 'F', 'mackenzie2@adventure-works.com', '30000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6606 Thistle Circle', 'NULL', '257-555-0122', '2013-05-06', '0-1 Miles'], ['13704', '644', 'AW00013704', 'NULL', 'Victoria', 'J', 'Davis', '0', '1980-03-09', 'S', 'NULL', 'F', 'victoria6@adventure-works.com', '30000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9512 Sun View Court', 'NULL', '355-555-0177', '2012-05-13', '1-2 Miles'], ['13705', '547', 'AW00013705', 'NULL', 'Blake', 'NULL', 'Mitchell', '0', '1980-02-09', 'S', 'NULL', 'M', 'blake38@adventure-works.com', '30000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6441 Kathleen Drive', 'NULL', '126-555-0148', '2012-05-15', '1-2 Miles'], ['13706', '49', 'AW00013706', 'NULL', 'Kaitlyn', 'S', 'Peterson', '0', '1980-12-13', 'S', 'NULL', 'F', 'kaitlyn61@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7537 Kaski Lane', 'NULL', '942-555-0153', '2013-11-28', '1-2 Miles'], ['13707', '62', 'AW00013707', 'NULL', 'Austin', 'NULL', 'Smith', '0', '1981-05-18', 'M', 'NULL', 'M', 'austin39@adventure-works.com', '40000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '5287 Geary Road', 'NULL', '802-555-0119', '2013-08-29', '0-1 Miles'], ['13708', '49', 'AW00013708', 'NULL', 'Jennifer', 'G', 'Bennett', '0', '1971-10-01', 'S', 'NULL', 'F', 'jennifer76@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '7769 Holton Court', 'NULL', '101-555-0128', '2013-02-25', '0-1 Miles'], ['13709', '51', 'AW00013709', 'NULL', 'Zachary', 'L', 'Robinson', '0', '1983-02-07', 'S', 'NULL', 'M', 'zachary49@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '8964 Mills Dr.', 'NULL', '489-555-0170', '2013-11-11', '1-2 Miles'], ['13710', '59', 'AW00013710', 'NULL', 'Destiny', 'M', 'Harris', '0', '1972-01-11', 'S', 'NULL', 'F', 'destiny13@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3142 Broadway St.', 'NULL', '923-555-0137', '2013-10-30', '1-2 Miles'], ['13711', '62', 'AW00013711', 'NULL', 'Thomas', 'J', 'Mitchell', '0', '1972-01-29', 'S', 'NULL', 'M', 'thomas48@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '378 Canyon Road', 'NULL', '948-555-0140', '2013-11-16', '1-2 Miles'], ['13712', '536', 'AW00013712', 'NULL', 'Nancy', 'E', 'Martinez', '0', '1971-12-30', 'S', 'NULL', 'F', 'nancy21@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5477 Limewood Place', 'NULL', '162-555-0168', '2012-05-04', '1-2 Miles'], ['13713', '638', 'AW00013713', 'NULL', 'Alexander', 'M', 'Walker', '0', '1971-08-06', 'S', 'NULL', 'M', 'alexander10@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '8587 Glenside Ct.', 'NULL', '640-555-0117', '2012-05-27', '1-2 Miles'], ['13714', '545', 'AW00013714', 'NULL', 'Amanda', 'NULL', 'Ward', '0', '1959-01-15', 'M', 'NULL', 'F', 'amanda12@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '8251 N. 447th St.', 'NULL', '736-555-0119', '2012-05-11', '1-2 Miles'], ['13715', '307', 'AW00013715', 'NULL', 'Eduardo', 'NULL', 'Sanchez', '0', '1964-06-21', 'M', 'NULL', 'M', 'eduardo84@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '952 Norman Ave.', 'NULL', '482-555-0136', '2012-06-23', '1-2 Miles'], ['13716', '315', 'AW00013716', 'NULL', 'Brandon', 'NULL', 'Jai', '0', '1958-12-11', 'M', 'NULL', 'M', 'brandon28@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1736 Canyon Rd', 'NULL', '444-555-0138', '2012-06-12', '1-2 Miles'], ['13717', '536', 'AW00013717', 'NULL', 'Audrey', 'H', 'Gill', '0', '1959-01-10', 'M', 'NULL', 'F', 'audrey15@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5989 Concord Ave', 'NULL', '208-555-0186', '2013-05-17', '1-2 Miles'], ['13718', '634', 'AW00013718', 'NULL', 'Marcus', 'NULL', 'Barnes', '0', '1959-02-21', 'M', 'NULL', 'M', 'marcus52@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7861 Silverado Dr.', 'NULL', '890-555-0111', '2012-05-31', '1-2 Miles'], ['13719', '51', 'AW00013719', 'NULL', 'Isaac', 'NULL', 'Carter', '0', '1960-05-26', 'M', 'NULL', 'M', 'isaac32@adventure-works.com', '20000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '4864 A St.', 'NULL', '804-555-0164', '2013-05-26', '1-2 Miles'], ['13720', '66', 'AW00013720', 'NULL', 'Cameron', 'R', 'Johnson', '0', '1960-03-18', 'M', 'NULL', 'M', 'cameron43@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '2733 Del Mar Ave.', 'NULL', '393-555-0165', '2013-09-13', '1-2 Miles'], ['13721', '631', 'AW00013721', 'NULL', 'Lucas', 'A', 'Howard', '0', '1965-04-08', 'S', 'NULL', 'M', 'lucas83@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4750 Bay View Dr.', 'NULL', '102-555-0126', '2012-06-18', '1-2 Miles'], ['13722', '633', 'AW00013722', 'NULL', 'Luke', 'NULL', 'Campbell', '0', '1960-06-22', 'M', 'NULL', 'M', 'luke38@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '6594 Jefferson St.', 'NULL', '908-555-0194', '2012-06-21', '1-2 Miles'], ['13723', '301', 'AW00013723', 'NULL', 'Leonard', 'D', 'Raje', '0', '1965-08-02', 'M', 'NULL', 'M', 'leonard15@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3675 Palms Dr', 'NULL', '346-555-0178', '2013-11-01', '5-10 Miles'], ['13724', '339', 'AW00013724', 'NULL', 'Charles', 'J', 'Thompson', '0', '1959-08-11', 'M', 'NULL', 'M', 'charles19@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5455 Via Romero', 'NULL', '647-555-0123', '2012-06-10', '0-1 Miles'], ['13725', '361', 'AW00013725', 'NULL', 'Nathan', 'NULL', 'Henderson', '0', '1965-10-04', 'M', 'NULL', 'M', 'nathan1@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4721 Cashew Lane', 'NULL', '460-555-0156', '2012-06-18', '0-1 Miles'], ['13726', '374', 'AW00013726', 'NULL', 'Austin', 'C', 'Lewis', '0', '1960-01-01', 'M', 'NULL', 'M', 'austin36@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5840 Falcon Dr.', 'NULL', '764-555-0170', '2012-06-14', '0-1 Miles'], ['13727', '299', 'AW00013727', 'NULL', 'Paula', 'A', 'Rubio', '0', '1971-10-02', 'M', 'NULL', 'F', 'paula22@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1011 Yolanda Circle', 'NULL', '200-555-0116', '2013-12-10', '1-2 Miles'], ['13728', '298', 'AW00013728', 'NULL', 'Taylor', 'NULL', 'Stewart', '0', '1961-02-22', 'M', 'NULL', 'F', 'taylor1@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8678 Sierra Drive', 'NULL', '158-555-0169', '2012-06-25', '0-1 Miles'], ['13729', '638', 'AW00013729', 'NULL', 'Jason', 'NULL', 'Li', '0', '1961-04-08', 'M', 'NULL', 'M', 'jason24@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7527 Brook Way', 'NULL', '952-555-0172', '2012-06-24', '0-1 Miles'], ['13730', '609', 'AW00013730', 'NULL', 'Walter', 'E', 'Suarez', '0', '1961-06-23', 'M', 'NULL', 'M', 'walter12@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6155 Buckthorn Court', 'NULL', '187-555-0115', '2012-05-30', '0-1 Miles'], ['13731', '312', 'AW00013731', 'NULL', 'Jan', 'R', 'James', '0', '1960-10-15', 'S', 'NULL', 'F', 'jan6@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7168 Belmont', 'NULL', '606-555-0142', '2014-01-23', '0-1 Miles'], ['13732', '54', 'AW00013732', 'NULL', 'Julian', 'A', 'Isla', '0', '1971-10-02', 'S', 'NULL', 'F', 'julian0@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1011 Yolanda Circle', 'NULL', '658-555-0153', '2013-02-03', '1-2 Miles'], ['13733', '612', 'AW00013733', 'NULL', 'Sydney', 'V', 'Collins', '0', '1962-03-21', 'M', 'NULL', 'F', 'sydney46@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8127 Vista Del Rio', 'NULL', '119-555-0140', '2012-06-01', '0-1 Miles'], ['13734', '299', 'AW00013734', 'NULL', 'Kristi', 'A', 'Gonzalez', '0', '1973-01-02', 'M', 'NULL', 'F', 'kristi36@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2627 Holiday Hills Drive', 'NULL', '350-555-0125', '2012-06-05', '0-1 Miles'], ['13735', '611', 'AW00013735', 'NULL', 'Dennis', 'NULL', 'Guo', '0', '1961-11-04', 'M', 'NULL', 'M', 'dennis19@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7433 San Simeon Ct.', 'NULL', '666-555-0181', '2012-06-03', '0-1 Miles'], ['13736', '372', 'AW00013736', 'NULL', 'Cole', 'R', 'Rivera', '0', '1978-01-16', 'M', 'NULL', 'M', 'cole17@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9145 Paso Del Rio Way', 'NULL', '846-555-0175', '2012-06-09', '1-2 Miles'], ['13737', '298', 'AW00013737', 'NULL', 'Garrett', 'NULL', 'Sanders', '0', '1962-05-24', 'M', 'NULL', 'M', 'garrett7@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8243 Atrice Lane', 'NULL', '170-555-0119', '2013-07-01', '1-2 Miles'], ['13738', '338', 'AW00013738', 'NULL', 'Jose', 'NULL', 'Young', '0', '1961-09-22', 'M', 'NULL', 'M', 'jose53@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1893 Cranbrook Way', 'NULL', '430-555-0186', '2014-01-16', '1-2 Miles'], ['13739', '635', 'AW00013739', 'NULL', 'Jason', 'H', 'Coleman', '0', '1962-02-12', 'M', 'NULL', 'M', 'jason3@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6985 Countrywood Ct', 'NULL', '850-555-0191', '2013-08-24', '1-2 Miles'], ['13740', '644', 'AW00013740', 'NULL', 'Jada', 'NULL', 'Ramirez', '0', '1963-04-06', 'M', 'NULL', 'F', 'jada3@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9055 Calafia Ave', 'NULL', '518-555-0124', '2013-08-29', '1-2 Miles'], ['13741', '329', 'AW00013741', 'NULL', 'Haley', 'A', 'Morgan', '0', '1963-04-18', 'M', 'NULL', 'F', 'haley4@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '306 Winter Drive', '# 4d', '116-555-0121', '2012-06-15', '0-1 Miles'], ['13742', '611', 'AW00013742', 'NULL', 'Benjamin', 'NULL', 'Ross', '0', '1963-04-19', 'M', 'NULL', 'M', 'benjamin5@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9256 Santa Fe Street', 'NULL', '112-555-0135', '2012-07-21', '1-2 Miles'], ['13743', '59', 'AW00013743', 'NULL', 'Isabella', 'NULL', 'Anderson', '0', '1963-04-21', 'M', 'NULL', 'F', 'isabella65@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3746 Via Romero', 'NULL', '139-555-0156', '2013-11-07', '1-2 Miles'], ['13744', '611', 'AW00013744', 'NULL', 'Alvin', 'C', 'Andersen', '0', '1968-10-08', 'M', 'NULL', 'M', 'alvin35@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2583 Cypress Ave.', 'NULL', '983-555-0121', '2012-07-28', '1-2 Miles'], ['13745', '545', 'AW00013745', 'NULL', 'Andrew', 'J', 'Robinson', '0', '1962-07-28', 'M', 'NULL', 'M', 'andrew25@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6387 Scenic Avenue', 'NULL', '731-555-0172', '2012-07-27', '1-2 Miles'], ['13746', '299', 'AW00013746', 'NULL', 'Janelle', 'E', 'Madan', '0', '1962-08-24', 'M', 'NULL', 'F', 'janelle7@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5165 Halfmoon Court', 'NULL', '304-555-0181', '2012-07-10', '1-2 Miles'], ['13747', '623', 'AW00013747', 'NULL', 'Brian', 'J', 'Torres', '0', '1974-04-06', 'M', 'NULL', 'M', 'brian16@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9870 Santa Maria Ct.', 'NULL', '327-555-0133', '2012-07-30', '1-2 Miles'], ['13748', '635', 'AW00013748', 'NULL', 'José', 'A', 'Martinez', '0', '1969-04-06', 'M', 'NULL', 'M', 'josé79@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3539 Corte Poquito', 'NULL', '351-555-0188', '2013-04-20', '1-2 Miles'], ['13749', '302', 'AW00013749', 'NULL', 'Julio', 'C', 'Alonso', '0', '1969-09-18', 'M', 'NULL', 'M', 'julio8@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8945 Euclid Ave.', 'NULL', '175-555-0196', '2013-06-24', '1-2 Miles'], ['13750', '611', 'AW00013750', 'NULL', 'Raymond', 'A', 'Sai', '0', '1963-12-01', 'M', 'NULL', 'M', 'raymond7@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '8569 W St.', 'NULL', '340-555-0120', '2013-06-08', '0-1 Miles'], ['13751', '68', 'AW00013751', 'NULL', 'Allison', 'M', 'Rivera', '0', '1964-03-18', 'S', 'NULL', 'F', 'allison16@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7224 Wren Avenue', 'NULL', '187-555-0150', '2013-06-20', '0-1 Miles'], ['13752', '331', 'AW00013752', 'NULL', 'Isabella', 'L', 'Parker', '0', '1963-09-09', 'S', 'NULL', 'F', 'isabella38@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5131 Rosemarie Place', 'NULL', '257-555-0115', '2013-08-14', '0-1 Miles'], ['13753', '355', 'AW00013753', 'NULL', 'Rebecca', 'NULL', 'Nicholls', '0', '1963-08-30', 'S', 'NULL', 'F', 'rebecca12@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9505 Hargate Court', 'NULL', '805-555-0178', '2014-01-28', '0-1 Miles'], ['13754', '607', 'AW00013754', 'NULL', 'Paige', 'NULL', 'Peterson', '0', '1964-01-24', 'S', 'NULL', 'F', 'paige28@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3208 Two Bay Road', 'NULL', '248-555-0136', '2013-12-18', '1-2 Miles'], ['13755', '536', 'AW00013755', 'NULL', 'Luke', 'J', 'Roberts', '0', '1970-01-15', 'S', 'NULL', 'M', 'luke35@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3693 Concord Ct.', 'NULL', '533-555-0118', '2013-12-03', '1-2 Miles'], ['13756', '66', 'AW00013756', 'NULL', 'Kaylee', 'S', 'Young', '0', '1964-11-28', 'S', 'NULL', 'F', 'kaylee40@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8356 Royal Ann Lane', 'NULL', '631-555-0170', '2013-03-01', '1-2 Miles'], ['13757', '618', 'AW00013757', 'NULL', 'Jordyn', 'N', 'Griffin', '0', '1965-01-02', 'S', 'NULL', 'F', 'jordyn19@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', 'P.O. Box 9178', 'NULL', '168-555-0121', '2013-08-06', '0-1 Miles'], ['13758', '51', 'AW00013758', 'NULL', 'Alexandria', 'A', 'Bell', '0', '1964-11-18', 'S', 'NULL', 'F', 'alexandria36@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8346 Niagara Court', 'NULL', '982-555-0174', '2013-02-04', '1-2 Miles'], ['13759', '316', 'AW00013759', 'NULL', 'Jackson', 'NULL', 'Scott', '0', '1965-01-13', 'M', 'NULL', 'M', 'jackson44@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9941 Stonehedge Dr.', 'NULL', '685-555-0117', '2013-04-03', '1-2 Miles'], ['13760', '52', 'AW00013760', 'NULL', 'Brian', 'L', 'Cooper', '0', '1964-12-21', 'M', 'NULL', 'M', 'brian20@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '4867 Rosebuck Way', 'NULL', '346-555-0118', '2013-06-13', '0-1 Miles'], ['13761', '546', 'AW00013761', 'NULL', 'Logan', 'H', 'Powell', '0', '1965-03-01', 'M', 'NULL', 'M', 'logan11@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1094 Loveridge Circle', 'NULL', '499-555-0163', '2013-06-24', '1-2 Miles'], ['13762', '62', 'AW00013762', 'NULL', 'Gavin', 'NULL', 'Long', '0', '1964-08-20', 'M', 'NULL', 'M', 'gavin9@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7150 San Miguel Circle', 'NULL', '259-555-0181', '2013-03-27', '1-2 Miles'], ['13763', '648', 'AW00013763', 'NULL', 'Stephanie', 'D', 'Richardson', '0', '1965-04-09', 'S', 'NULL', 'F', 'stephanie15@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1242 Frame Lane', 'NULL', '578-555-0111', '2013-09-10', '1-2 Miles'], ['13764', '186', 'AW00013764', 'NULL', 'Stephanie', 'J', 'Parker', '0', '1973-12-15', 'M', 'NULL', 'F', 'stephanie55@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '42, impasse Ste-Madeleine', 'NULL', '1 (11) 500 555-0124', '2013-03-17', '2-5 Miles'], ['13765', '254', 'AW00013765', 'NULL', 'Jaime', 'NULL', 'Shen', '0', '1974-02-08', 'M', 'NULL', 'M', 'jaime26@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5170 Isabel Dr', 'NULL', '1 (11) 500 555-0113', '2011-03-02', '1-2 Miles'], ['13766', '194', 'AW00013766', 'NULL', 'Joe', 'NULL', 'Gill', '0', '1973-08-03', 'M', 'NULL', 'M', 'joe37@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '14, rue Lauriston', 'NULL', '1 (11) 500 555-0120', '2012-01-14', '2-5 Miles'], ['13767', '150', 'AW00013767', 'NULL', 'Linda', 'NULL', 'Jimenez', '0', '1974-05-16', 'S', 'NULL', 'F', 'linda20@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Potsdamer Straße 757', 'NULL', '1 (11) 500 555-0174', '2011-04-10', '1-2 Miles'], ['13768', '216', 'AW00013768', 'NULL', 'Ross', 'B', 'Munoz', '0', '1979-04-17', 'M', 'NULL', 'M', 'ross27@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '10, rue Royale', 'NULL', '1 (11) 500 555-0181', '2012-01-17', '0-1 Miles'], ['13769', '205', 'AW00013769', 'NULL', 'Brendan', 'NULL', 'Kumar', '0', '1974-03-02', 'M', 'NULL', 'M', 'brendan6@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '401, avenue Reille', 'NULL', '1 (11) 500 555-0119', '2012-01-17', '0-1 Miles'], ['13770', '131', 'AW00013770', 'NULL', 'Gerald', 'A', 'Moreno', '0', '1974-01-23', 'M', 'NULL', 'M', 'gerald14@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Zollhof 1866', 'NULL', '1 (11) 500 555-0189', '2011-04-19', '0-1 Miles'], ['13771', '147', 'AW00013771', 'NULL', 'Victor', 'L', 'Moreno', '0', '1979-12-21', 'S', 'NULL', 'M', 'victor8@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Parkstr 42', 'NULL', '1 (11) 500 555-0134', '2011-05-09', '0-1 Miles'], ['13772', '265', 'AW00013772', 'NULL', 'Michele', 'K', 'Perez', '0', '1974-04-23', 'M', 'NULL', 'F', 'michele34@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6939 Hilltop Dr.', 'NULL', '1 (11) 500 555-0137', '2011-03-06', '0-1 Miles'], ['13773', '186', 'AW00013773', 'NULL', 'Dana', 'L', 'Blanco', '0', '1972-10-19', 'M', 'NULL', 'F', 'dana8@adventure-works.com', '10000.00', '3', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1, place de Brazaville', 'NULL', '1 (11) 500 555-0119', '2013-07-10', '0-1 Miles'], ['13774', '132', 'AW00013774', 'NULL', 'Steve', 'L', 'Guo', '0', '1973-01-07', 'S', 'NULL', 'M', 'steve20@adventure-works.com', '10000.00', '3', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Rykestr 8295', 'NULL', '1 (11) 500 555-0114', '2011-05-28', '0-1 Miles'], ['13775', '157', 'AW00013775', 'NULL', 'Patricia', 'NULL', 'Subram', '0', '1978-03-12', 'S', 'NULL', 'F', 'patricia16@adventure-works.com', '10000.00', '4', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Postfach 8 44 99', 'NULL', '1 (11) 500 555-0112', '2013-12-19', '0-1 Miles'], ['13776', '231', 'AW00013776', 'NULL', 'Miguel', 'NULL', 'Carter', '0', '1931-08-13', 'M', 'NULL', 'M', 'miguel36@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4312 Cambridge Drive', 'NULL', '1 (11) 500 555-0113', '2013-03-08', '2-5 Miles'], ['13777', '254', 'AW00013777', 'NULL', 'Manuel', 'C', 'Perez', '0', '1973-05-12', 'M', 'NULL', 'M', 'manuel19@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8887 Entrada Circle', 'NULL', '1 (11) 500 555-0149', '2011-03-26', '2-5 Miles'], ['13778', '156', 'AW00013778', 'NULL', 'Roger', 'L', 'Huang', '0', '1973-05-11', 'M', 'NULL', 'M', 'roger10@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Kurfürstenstr 50', 'Einkaufsabteilung', '1 (11) 500 555-0157', '2011-05-08', '2-5 Miles'], ['13779', '202', 'AW00013779', 'NULL', 'Manuel', 'NULL', 'Garcia', '0', '1972-05-09', 'S', 'NULL', 'M', 'manuel13@adventure-works.com', '10000.00', '4', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '33, avenue du Président-Kennedy', 'NULL', '1 (11) 500 555-0163', '2012-01-02', '0-1 Miles'], ['13780', '215', 'AW00013780', 'NULL', 'Monica', 'NULL', 'Perez', '0', '1972-01-17', 'M', 'NULL', 'F', 'monica20@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '6, impasse Notre-Dame', 'NULL', '1 (11) 500 555-0191', '2013-11-24', '2-5 Miles'], ['13781', '194', 'AW00013781', 'NULL', 'Dominique', 'NULL', 'Patel', '0', '1972-09-21', 'M', 'NULL', 'F', 'dominique3@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '11, quai de l´ Iton', 'NULL', '1 (11) 500 555-0189', '2013-06-03', '0-1 Miles'], ['13782', '144', 'AW00013782', 'NULL', 'Kelli', 'L', 'Lu', '0', '1978-07-17', 'M', 'NULL', 'F', 'kelli12@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Curieweg 99', 'NULL', '1 (11) 500 555-0129', '2011-05-03', '0-1 Miles'], ['13783', '265', 'AW00013783', 'NULL', 'Logan', 'M', 'Wright', '0', '1972-11-29', 'M', 'NULL', 'M', 'logan47@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2670 Trailview Circle', 'NULL', '1 (11) 500 555-0157', '2011-03-18', '0-1 Miles'], ['13784', '271', 'AW00013784', 'NULL', 'Spencer', 'NULL', 'Griffin', '0', '1971-07-02', 'S', 'NULL', 'M', 'spencer23@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '3637 Pheasant Circle', 'NULL', '1 (11) 500 555-0115', '2011-03-08', '0-1 Miles'], ['13785', '254', 'AW00013785', 'NULL', 'Clayton', 'NULL', 'She', '0', '1971-08-25', 'S', 'NULL', 'M', 'clayton20@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '1', '8606 Mendocino Dr.', 'NULL', '1 (11) 500 555-0171', '2013-04-29', '1-2 Miles'], ['13786', '133', 'AW00013786', 'NULL', 'Jon', 'NULL', 'Chavez', '0', '1972-04-03', 'S', 'NULL', 'M', 'jon11@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Am Gallberg 82', 'NULL', '1 (11) 500 555-0143', '2013-08-04', '1-2 Miles'], ['13787', '119', 'AW00013787', 'NULL', 'Glenn', 'NULL', 'Cai', '0', '1972-01-11', 'M', 'NULL', 'M', 'glenn22@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Herzogstr 2998', 'NULL', '1 (11) 500 555-0192', '2013-05-16', '2-5 Miles'], ['13788', '232', 'AW00013788', 'NULL', 'Kari', 'NULL', 'Fernandez', '0', '1977-05-11', 'M', 'NULL', 'F', 'kari16@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5082 Longview Road', 'NULL', '1 (11) 500 555-0113', '2013-03-30', '2-5 Miles'], ['13789', '174', 'AW00013789', 'NULL', 'Julie', 'M', 'Shan', '0', '1970-11-17', 'S', 'NULL', 'F', 'julie15@adventure-works.com', '10000.00', '4', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Kapellstr 4767', 'NULL', '1 (11) 500 555-0172', '2011-05-09', '0-1 Miles'], ['13790', '170', 'AW00013790', 'NULL', 'Nina', 'O', 'Deng', '0', '1970-12-17', 'S', 'NULL', 'F', 'nina1@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Nollendorfplatz 5662', 'NULL', '1 (11) 500 555-0175', '2011-05-17', '0-1 Miles'], ['13791', '259', 'AW00013791', 'NULL', 'Audrey', 'NULL', 'Martin', '0', '1971-04-25', 'S', 'NULL', 'F', 'audrey1@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '4610 Pinto Road', 'NULL', '1 (11) 500 555-0150', '2013-06-05', '0-1 Miles'], ['13792', '279', 'AW00013792', 'NULL', 'Charles', 'NULL', 'Taylor', '0', '1970-10-12', 'S', 'NULL', 'M', 'charles12@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '5241 St. Andrews Way', 'NULL', '1 (11) 500 555-0175', '2011-03-02', '0-1 Miles'], ['13793', '189', 'AW00013793', 'NULL', 'Jason', 'NULL', 'Gonzales', '0', '1971-04-18', 'M', 'NULL', 'M', 'jason14@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', 'Attaché de Presse', 'NULL', '1 (11) 500 555-0184', '2012-01-18', '0-1 Miles'], ['13794', '276', 'AW00013794', 'NULL', 'Mallory', 'J', 'Martin', '0', '1970-02-23', 'S', 'NULL', 'F', 'mallory8@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '8028 3910th Avenue', 'NULL', '1 (11) 500 555-0145', '2011-03-30', '0-1 Miles'], ['13795', '146', 'AW00013795', 'NULL', 'Carl', 'J', 'Raje', '0', '1969-08-01', 'S', 'NULL', 'M', 'carl13@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Heideweg 2459', 'NULL', '1 (11) 500 555-0191', '2011-05-05', '0-1 Miles'], ['13796', '130', 'AW00013796', 'NULL', 'Martha', 'L', 'Zheng', '0', '1969-03-03', 'M', 'NULL', 'F', 'martha19@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Höhenstr 9419', 'NULL', '1 (11) 500 555-0116', '2013-11-01', '0-1 Miles'], ['13797', '168', 'AW00013797', 'NULL', 'Franklin', 'R', 'Gao', '0', '1974-06-03', 'M', 'NULL', 'M', 'franklin14@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Auf der Krone 123', 'NULL', '1 (11) 500 555-0143', '2013-12-30', '0-1 Miles'], ['13798', '274', 'AW00013798', 'NULL', 'Tammy', 'C', 'Randall', '0', '1968-09-15', 'S', 'NULL', 'F', 'tammy12@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '2382 Wicker Ave.', 'NULL', '1 (11) 500 555-0135', '2013-12-05', '0-1 Miles'], ['13799', '207', 'AW00013799', 'NULL', 'Bryan', 'E', 'Bailey', '0', '1977-08-16', 'S', 'NULL', 'M', 'bryan16@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '7, place de Brazaville', 'NULL', '1 (11) 500 555-0153', '2012-01-16', '0-1 Miles'], ['13800', '187', 'AW00013800', 'NULL', 'Logan', 'NULL', 'Li', '0', '1969-01-29', 'M', 'NULL', 'M', 'logan26@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', "22, rue de l'Espace De Schengen", 'NULL', '1 (11) 500 555-0166', '2012-01-21', '0-1 Miles'], ['13801', '207', 'AW00013801', 'NULL', 'Colleen', 'L', 'Andersen', '0', '1969-05-09', 'S', 'NULL', 'F', 'colleen36@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '660, avenue de Malakoff', 'NULL', '1 (11) 500 555-0158', '2012-02-09', '0-1 Miles'], ['13802', '186', 'AW00013802', 'NULL', 'Tina', 'NULL', 'Subram', '0', '1939-10-25', 'M', 'NULL', 'F', 'tina14@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '26, rue des Grands Champs', 'NULL', '1 (11) 500 555-0139', '2013-02-22', '1-2 Miles'], ['13803', '175', 'AW00013803', 'NULL', 'Krystal', 'NULL', 'Zheng', '0', '1940-01-31', 'M', 'NULL', 'F', 'krystal19@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Residenz Straße 45', 'NULL', '1 (11) 500 555-0188', '2013-08-12', '0-1 Miles'], ['13804', '232', 'AW00013804', 'NULL', 'Dawn', 'A', 'Luo', '0', '1976-01-10', 'M', 'NULL', 'F', 'dawn29@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4785 Stillman Court', 'NULL', '1 (11) 500 555-0138', '2013-12-31', '0-1 Miles'], ['13805', '267', 'AW00013805', 'NULL', 'Gabriel', 'J', 'Hernandez', '0', '1970-12-02', 'M', 'NULL', 'M', 'gabriel49@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3007 Hooftrail Way', 'NULL', '1 (11) 500 555-0188', '2013-05-29', '0-1 Miles'], ['13806', '225', 'AW00013806', 'NULL', 'Bryant', 'C', 'Mehta', '0', '1969-12-03', 'M', 'NULL', 'M', 'bryant13@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '46, rue Surcouf', 'NULL', '1 (11) 500 555-0154', '2012-02-12', '0-1 Miles'], ['13807', '130', 'AW00013807', 'NULL', 'Frederick', 'J', 'Rana', '0', '1970-04-11', 'S', 'NULL', 'M', 'frederick10@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Galeriestr 6819', 'NULL', '1 (11) 500 555-0182', '2011-06-28', '0-1 Miles'], ['13808', '117', 'AW00013808', 'NULL', 'Richard', 'L', 'Perez', '0', '1975-10-31', 'S', 'NULL', 'M', 'richard31@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Zollhof 1866', 'NULL', '1 (11) 500 555-0114', '2011-06-05', '0-1 Miles'], ['13809', '259', 'AW00013809', 'NULL', 'Lisa', 'L', 'Zhou', '0', '1969-07-04', 'M', 'NULL', 'F', 'lisa12@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9739 Benedict Court', 'NULL', '1 (11) 500 555-0153', '2013-04-18', '0-1 Miles'], ['13810', '273', 'AW00013810', 'NULL', 'Vanessa', 'NULL', 'Barnes', '0', '1969-10-06', 'M', 'NULL', 'F', 'vanessa3@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '494 North Spoonwood Court', 'Unit 1e', '1 (11) 500 555-0187', '2013-12-19', '0-1 Miles'], ['13811', '220', 'AW00013811', 'NULL', 'Sandra', 'NULL', 'Chen', '0', '1968-10-15', 'S', 'NULL', 'F', 'sandra8@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '810, rue des Rosiers', 'NULL', '1 (11) 500 555-0123', '2012-02-23', '0-1 Miles'], ['13812', '183', 'AW00013812', 'NULL', 'Joanna', 'NULL', 'Munoz', '0', '1968-11-22', 'S', 'NULL', 'F', 'joanna6@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '10, rue de Maubeuge', 'NULL', '1 (11) 500 555-0162', '2012-02-10', '0-1 Miles'], ['13813', '224', 'AW00013813', 'NULL', 'Kristen', 'NULL', 'Sun', '0', '1969-05-22', 'M', 'NULL', 'F', 'kristen12@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '0', '280, rue Lamarck', 'NULL', '1 (11) 500 555-0144', '2013-03-03', '0-1 Miles'], ['13814', '234', 'AW00013814', 'NULL', 'Sarah', 'R', 'Walker', '0', '1984-09-04', 'S', 'NULL', 'F', 'sarah0@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6832 Cunha Ct.', 'NULL', '1 (11) 500 555-0193', '2013-03-22', '0-1 Miles'], ['13815', '245', 'AW00013815', 'NULL', 'Lacey', 'NULL', 'Lin', '0', '1985-05-01', 'S', 'NULL', 'F', 'lacey20@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6199 Mcelroy', 'NULL', '1 (11) 500 555-0124', '2013-02-09', '0-1 Miles'], ['13816', '265', 'AW00013816', 'NULL', 'Marissa', 'NULL', 'Henderson', '0', '1985-03-15', 'S', 'NULL', 'F', 'marissa3@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5244 Davis Drive', 'NULL', '1 (11) 500 555-0186', '2013-04-23', '0-1 Miles'], ['13817', '215', 'AW00013817', 'NULL', 'Jenny', 'NULL', 'Huang', '0', '1984-04-04', 'S', 'NULL', 'F', 'jenny8@adventure-works.com', '20000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '4', '14, avenue de la Gare', 'NULL', '1 (11) 500 555-0153', '2013-06-13', '0-1 Miles'], ['13818', '221', 'AW00013818', 'NULL', 'Dawn', 'NULL', 'Chander', '0', '1984-02-17', 'S', 'NULL', 'F', 'dawn40@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '154, boulevard Tremblay', 'NULL', '1 (11) 500 555-0160', '2013-01-31', '2-5 Miles'], ['13819', '211', 'AW00013819', 'NULL', 'Max', 'K', 'Gill', '0', '1983-09-29', 'S', 'NULL', 'M', 'max13@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '21, rue des Ecoles', 'NULL', '1 (11) 500 555-0196', '2013-06-22', '2-5 Miles'], ['13820', '257', 'AW00013820', 'NULL', 'Danny', 'NULL', 'Alvarez', '0', '1969-04-06', 'M', 'NULL', 'M', 'danny5@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4770 Blue Jay Drive', 'NULL', '1 (11) 500 555-0131', '2011-03-28', '0-1 Miles'], ['13821', '276', 'AW00013821', 'NULL', 'Allen', 'O', 'Lopez', '0', '1968-11-11', 'M', 'NULL', 'M', 'allen15@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '619 Natalie Drive', 'NULL', '1 (11) 500 555-0195', '2011-03-01', '0-1 Miles'], ['13822', '117', 'AW00013822', 'NULL', 'Jay', 'NULL', 'Moyer', '0', '1967-12-06', 'M', 'NULL', 'M', 'jay36@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Nonnendamm 6', 'Verkaufsabteilung', '1 (11) 500 555-0111', '2011-06-14', '0-1 Miles'], ['13823', '213', 'AW00013823', 'NULL', 'Margaret', 'D', 'Zheng', '0', '1973-05-02', 'M', 'NULL', 'F', 'margaret26@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '48bis, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0117', '2012-02-16', '0-1 Miles'], ['13824', '162', 'AW00013824', 'NULL', 'Destiny', 'C', 'Wood', '0', '1984-02-03', 'S', 'NULL', 'F', 'destiny50@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Altendorfer Straße 421', 'NULL', '1 (11) 500 555-0116', '2013-10-20', '0-1 Miles'], ['13825', '187', 'AW00013825', 'NULL', 'Kelvin', 'E', 'Ma', '0', '1983-05-13', 'S', 'NULL', 'M', 'kelvin34@adventure-works.com', '30000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '50, rue Royale', 'NULL', '1 (11) 500 555-0194', '2013-08-25', '0-1 Miles'], ['13826', '127', 'AW00013826', 'NULL', 'Candice', 'NULL', 'He', '0', '1983-05-25', 'S', 'NULL', 'F', 'candice2@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Rotthäuser Weg 100', 'NULL', '1 (11) 500 555-0114', '2013-11-06', '0-1 Miles'], ['13827', '131', 'AW00013827', 'NULL', 'Nathan', 'L', 'Harris', '0', '1983-03-31', 'M', 'NULL', 'M', 'nathan71@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Am Karlshof 8228', 'NULL', '1 (11) 500 555-0115', '2013-07-17', '0-1 Miles'], ['13828', '167', 'AW00013828', 'NULL', 'Jessie', 'R', 'Travers', '0', '1983-01-02', 'S', 'NULL', 'F', 'jessie31@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Lieblingsweg 245', 'NULL', '1 (11) 500 555-0179', '2013-10-31', '2-5 Miles'], ['13829', '119', 'AW00013829', 'NULL', 'Randall', 'T', 'Carlson', '0', '1982-09-08', 'S', 'NULL', 'M', 'randall20@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Lützowplatz 5928', 'NULL', '1 (11) 500 555-0113', '2011-06-13', '0-1 Miles'], ['13830', '237', 'AW00013830', 'NULL', 'Andrea', 'NULL', 'Cox', '0', '1983-01-31', 'S', 'NULL', 'F', 'andrea11@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '1318 Pinehurst Court', 'NULL', '1 (11) 500 555-0136', '2013-12-11', '2-5 Miles'], ['13831', '212', 'AW00013831', 'NULL', 'Eddie', 'A', 'Alvarez', '0', '1981-05-19', 'S', 'NULL', 'M', 'eddie5@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '67bis, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0111', '2013-03-06', '2-5 Miles'], ['13832', '216', 'AW00013832', 'NULL', 'Priscilla', 'R', 'Raji', '0', '1981-10-25', 'S', 'NULL', 'F', 'priscilla20@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '51, rue Henri Gagnon', 'NULL', '1 (11) 500 555-0125', '2013-03-20', '5-10 Miles'], ['13833', '221', 'AW00013833', 'NULL', 'Noah', 'C', 'Lewis', '0', '1981-10-05', 'S', 'NULL', 'M', 'noah68@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '95, impasse Notre-Dame', 'NULL', '1 (11) 500 555-0118', '2013-11-18', '1-2 Miles'], ['13834', '212', 'AW00013834', 'NULL', 'Naomi', 'NULL', 'Suarez', '0', '1981-12-25', 'S', 'NULL', 'F', 'naomi19@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '7126, avenue de l´Europe', 'NULL', '1 (11) 500 555-0135', '2013-11-09', '5-10 Miles'], ['13835', '196', 'AW00013835', 'NULL', 'Hailey', 'NULL', 'Brooks', '0', '1981-09-01', 'S', 'NULL', 'F', 'hailey19@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '90, route de Marseille', 'NULL', '1 (11) 500 555-0173', '2013-08-28', '1-2 Miles'], ['13836', '120', 'AW00013836', 'NULL', 'Dominic', 'C', 'Sara', '0', '1981-10-05', 'S', 'NULL', 'M', 'dominic10@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Altendorfer Straße 70', 'NULL', '1 (11) 500 555-0113', '2011-06-01', '0-1 Miles'], ['13837', '120', 'AW00013837', 'NULL', 'Alyssa', 'NULL', 'Lee', '0', '1982-02-10', 'S', 'NULL', 'F', 'alyssa22@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Buergermeister-ulrich-str 123', 'NULL', '1 (11) 500 555-0113', '2013-11-12', '2-5 Miles'], ['13838', '263', 'AW00013838', 'NULL', 'Jill', 'NULL', 'Rubio', '0', '1981-12-25', 'S', 'NULL', 'F', 'jill29@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '1153 Loma Linda', 'NULL', '1 (11) 500 555-0160', '2013-09-11', '2-5 Miles'], ['13839', '206', 'AW00013839', 'NULL', 'Manuel', 'NULL', 'Madan', '0', '1979-09-05', 'S', 'NULL', 'M', 'manuel6@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '59bis, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0125', '2012-02-03', '0-1 Miles'], ['13840', '191', 'AW00013840', 'NULL', 'Tommy', 'NULL', 'Pal', '0', '1979-10-01', 'M', 'NULL', 'M', 'tommy9@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '70, allée des Princes', 'NULL', '1 (11) 500 555-0145', '2012-02-25', '0-1 Miles'], ['13841', '278', 'AW00013841', 'NULL', 'Clayton', 'NULL', 'Kumar', '0', '1979-07-04', 'S', 'NULL', 'M', 'clayton26@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '7753 Liana Lane', 'NULL', '1 (11) 500 555-0116', '2011-03-22', '1-2 Miles'], ['13842', '156', 'AW00013842', 'NULL', 'Kenneth', 'J', 'Xie', '0', '1985-07-12', 'S', 'NULL', 'M', 'kenneth3@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Hochstr 8111', 'NULL', '1 (11) 500 555-0124', '2011-06-15', '0-1 Miles'], ['13843', '208', 'AW00013843', 'NULL', 'Warren', 'E', 'Xie', '0', '1980-12-19', 'S', 'NULL', 'M', 'warren38@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '855, rue Basse-du-Rocher', 'NULL', '1 (11) 500 555-0181', '2013-03-11', '0-1 Miles'], ['13844', '151', 'AW00013844', 'NULL', 'Phillip', 'H', 'Mehta', '0', '1981-02-06', 'S', 'NULL', 'M', 'phillip15@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Postfach 77 06 06', 'NULL', '1 (11) 500 555-0132', '2011-06-26', '2-5 Miles'], ['13845', '241', 'AW00013845', 'NULL', 'Shawn', 'C', 'Nara', '0', '1981-04-24', 'M', 'NULL', 'M', 'shawn18@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5497 Brandywine Way', 'NULL', '1 (11) 500 555-0170', '2011-03-25', '1-2 Miles'], ['13846', '261', 'AW00013846', 'NULL', 'Lisa', 'R', 'Zheng', '0', '1980-12-08', 'M', 'NULL', 'F', 'lisa22@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8360 Frisbie Court', 'NULL', '1 (11) 500 555-0198', '2011-03-30', '0-1 Miles'], ['13847', '263', 'AW00013847', 'NULL', 'Kurt', 'G', 'Tang', '0', '1981-01-21', 'M', 'NULL', 'M', 'kurt3@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4500 Willow Dr.', 'NULL', '1 (11) 500 555-0172', '2011-03-20', '1-2 Miles'], ['13848', '552', 'AW00013848', 'NULL', 'Melissa', 'W', 'Blue', '0', '1983-03-23', 'S', 'NULL', 'F', 'melissa36@adventure-works.com', '40000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4708 Biscayne Court', 'NULL', '474-555-0160', '2013-02-09', '0-1 Miles'], ['13849', '536', 'AW00013849', 'NULL', 'Preston', 'NULL', 'Rodriguez', '0', '1977-08-31', 'S', 'NULL', 'M', 'preston17@adventure-works.com', '40000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2288 Gingham Way', 'NULL', '845-555-0111', '2012-07-08', '1-2 Miles'], ['13850', '300', 'AW00013850', 'NULL', 'Anthony', 'NULL', 'Thompson', '0', '1978-02-13', 'S', 'NULL', 'M', 'anthony1@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '6837 Weber Bryan St.', 'NULL', '884-555-0179', '2013-06-03', '1-2 Miles'], ['13851', '60', 'AW00013851', 'NULL', 'Seth', 'NULL', 'Moore', '0', '1978-01-05', 'S', 'NULL', 'M', 'seth8@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '1059 Delta Fair Blvd.', 'NULL', '481-555-0125', '2013-11-11', '1-2 Miles'], ['13852', '54', 'AW00013852', 'NULL', 'Ian', 'D', 'Robinson', '0', '1978-08-01', 'S', 'NULL', 'M', 'ian16@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6463 Landover Ln', 'NULL', '813-555-0130', '2013-11-28', '1-2 Miles'], ['13853', '56', 'AW00013853', 'NULL', 'Connor', 'R', 'Zhang', '0', '1979-04-17', 'S', 'NULL', 'M', 'connor18@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '2923 Napa St', 'NULL', '861-555-0111', '2013-12-13', '1-2 Miles'], ['13854', '307', 'AW00013854', 'NULL', 'Kyle', 'NULL', 'Parker', '0', '1979-05-09', 'M', 'NULL', 'M', 'kyle29@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8447 East Lake Court', 'NULL', '132-555-0146', '2012-07-24', '0-1 Miles'], ['13855', '310', 'AW00013855', 'NULL', 'Sarah', 'C', 'Washington', '0', '1984-08-02', 'S', 'NULL', 'F', 'sarah38@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2887 Pinecrest Court', 'NULL', '368-555-0136', '2012-07-22', '0-1 Miles'], ['13856', '336', 'AW00013856', 'NULL', 'Ian', 'NULL', 'Scott', '0', '1976-09-20', 'S', 'NULL', 'M', 'ian28@adventure-works.com', '40000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '9845 Oxford Place', 'NULL', '729-555-0153', '2012-07-12', '10+ Miles'], ['13857', '553', 'AW00013857', 'NULL', 'Victoria', 'A', 'Thompson', '0', '1976-12-02', 'M', 'NULL', 'F', 'victoria16@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '835 Heights Ave.', 'NULL', '150-555-0158', '2013-12-10', '0-1 Miles'], ['13858', '359', 'AW00013858', 'NULL', 'Melanie', 'M', 'Richardson', '0', '1982-03-14', 'M', 'NULL', 'F', 'melanie35@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3200 Sandalwood Dr', 'NULL', '154-555-0137', '2013-08-10', '1-2 Miles'], ['13859', '302', 'AW00013859', 'NULL', 'Kristin', 'NULL', 'Deng', '0', '1976-08-30', 'M', 'NULL', 'F', 'kristin3@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4490 Chablis Court', 'NULL', '575-555-0134', '2013-12-24', '0-1 Miles'], ['13860', '50', 'AW00013860', 'NULL', 'Olivia', 'S', 'Watson', '0', '1978-05-09', 'M', 'NULL', 'F', 'olivia44@adventure-works.com', '40000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2515 Live Oak', 'NULL', '454-555-0183', '2013-02-01', '1-2 Miles'], ['13861', '635', 'AW00013861', 'NULL', 'Hailey', 'L', 'Rogers', '0', '1983-09-08', 'M', 'NULL', 'F', 'hailey2@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7106 Cynthia Drive', 'NULL', '509-555-0143', '2013-07-30', '0-1 Miles'], ['13862', '298', 'AW00013862', 'NULL', 'Andrew', 'M', 'Walker', '0', '1978-06-03', 'M', 'NULL', 'M', 'andrew30@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6774 Bonanza', 'NULL', '851-555-0118', '2012-07-23', '2-5 Miles'], ['13863', '299', 'AW00013863', 'NULL', 'Kevin', 'L', 'Long', '0', '1977-07-18', 'M', 'NULL', 'M', 'kevin12@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3378 Coldwater Drive', 'NULL', '637-555-0121', '2013-09-08', '2-5 Miles'], ['13864', '299', 'AW00013864', 'NULL', 'Robin', 'H', 'Torres', '0', '1983-10-19', 'M', 'NULL', 'F', 'robin8@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5022 Euclid Ave.', 'NULL', '981-555-0119', '2013-07-06', '0-1 Miles'], ['13865', '347', 'AW00013865', 'NULL', 'Mariah', 'NULL', 'Foster', '0', '1977-12-21', 'M', 'NULL', 'F', 'mariah21@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3794 Francine Court', 'NULL', '381-555-0157', '2012-07-31', '2-5 Miles'], ['13866', '359', 'AW00013866', 'NULL', 'Mya', 'NULL', 'Butler', '0', '1978-02-13', 'M', 'NULL', 'F', 'mya14@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6049 Flora Ave', 'NULL', '957-555-0128', '2012-08-13', '0-1 Miles'], ['13867', '626', 'AW00013867', 'NULL', 'Luke', 'NULL', 'Griffin', '0', '1976-03-25', 'M', 'NULL', 'M', 'luke10@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9754 Hilltop Dr', 'NULL', '132-555-0110', '2013-06-01', '0-1 Miles'], ['13868', '548', 'AW00013868', 'NULL', 'Shelby', 'NULL', 'Morris', '0', '1976-01-10', 'S', 'NULL', 'F', 'shelby18@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '312 Via Del Verdes', 'NULL', '638-555-0148', '2013-03-24', '2-5 Miles'], ['13869', '302', 'AW00013869', 'NULL', 'Anna', 'E', 'Morgan', '0', '1974-08-09', 'M', 'NULL', 'F', 'anna8@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9491 Fountain Road', 'NULL', '903-555-0175', '2013-11-02', '2-5 Miles'], ['13870', '543', 'AW00013870', 'NULL', 'Jonathan', 'P', 'Clark', '0', '1975-01-18', 'M', 'NULL', 'M', 'jonathan73@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8459 Live Oak Avenue', 'NULL', '465-555-0143', '2012-08-25', '0-1 Miles'], ['13871', '352', 'AW00013871', 'NULL', 'Sarah', 'NULL', 'Gonzales', '0', '1980-09-28', 'S', 'NULL', 'F', 'sarah41@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2286 Sunset Way', 'NULL', '258-555-0127', '2012-08-07', '2-5 Miles'], ['13872', '627', 'AW00013872', 'NULL', 'Alyssa', 'H', 'Henderson', '0', '1974-12-23', 'M', 'NULL', 'F', 'alyssa51@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6034 Sunset Circle', 'NULL', '331-555-0117', '2013-02-01', '0-1 Miles'], ['13873', '311', 'AW00013873', 'NULL', 'Russell', 'L', 'Jai', '0', '1977-02-07', 'M', 'NULL', 'M', 'russell14@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2728 River Ash Court', 'NULL', '797-555-0152', '2012-08-05', '0-1 Miles'], ['13874', '326', 'AW00013874', 'NULL', 'Alyssa', 'NULL', 'Bryant', '0', '1986-05-22', 'M', 'NULL', 'F', 'alyssa63@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8031 Danesta Dr.', 'NULL', '159-555-0117', '2013-07-24', '0-1 Miles'], ['13875', '316', 'AW00013875', 'NULL', 'Samantha', 'C', 'Williams', '0', '1975-05-20', 'M', 'NULL', 'F', 'samantha3@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1232 Nephi Court', 'NULL', '785-555-0195', '2014-01-24', '2-5 Miles'], ['13876', '307', 'AW00013876', 'NULL', 'Sebastian', 'R', 'Murphy', '0', '1975-02-08', 'M', 'NULL', 'M', 'sebastian15@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7754 Camino Peral', 'NULL', '161-555-0143', '2013-07-11', '2-5 Miles'], ['13877', '334', 'AW00013877', 'NULL', 'Adam', 'NULL', 'Lal', '0', '1974-02-16', 'M', 'NULL', 'M', 'adam25@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5053 Sea Point Way', 'NULL', '513-555-0110', '2012-08-21', '0-1 Miles'], ['13878', '59', 'AW00013878', 'NULL', 'Sebastian', 'B', 'Gray', '0', '1974-01-01', 'M', 'NULL', 'M', 'sebastian7@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4493 N. Broadway', 'NULL', '822-555-0190', '2013-12-15', '2-5 Miles'], ['13879', '298', 'AW00013879', 'NULL', 'Derrick', 'NULL', 'Hernandez', '0', '1974-03-08', 'S', 'NULL', 'M', 'derrick4@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6228 La Cadena', 'NULL', '844-555-0113', '2013-09-08', '0-1 Miles'], ['13880', '612', 'AW00013880', 'NULL', 'Marshall', 'NULL', 'Kumar', '0', '1973-09-12', 'S', 'NULL', 'M', 'marshall29@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6215 Louisiana Dr', 'NULL', '431-555-0130', '2013-07-07', '2-5 Miles'], ['13881', '648', 'AW00013881', 'NULL', 'Jasmine', 'T', 'Wood', '0', '1979-05-04', 'S', 'NULL', 'F', 'jasmine42@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5725 Glazier Drive', 'NULL', '306-555-0119', '2013-08-27', '2-5 Miles'], ['13882', '329', 'AW00013882', 'NULL', 'Mariah', 'NULL', 'Russell', '0', '1973-04-14', 'S', 'NULL', 'F', 'mariah24@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2292 Springlake Drive', 'NULL', '403-555-0138', '2012-08-12', '2-5 Miles'], ['13883', '337', 'AW00013883', 'NULL', 'Brandon', 'NULL', 'Lal', '0', '1972-10-14', 'S', 'NULL', 'M', 'brandon26@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3577 Pembroke Court', 'NULL', '445-555-0135', '2012-08-18', '2-5 Miles'], ['13884', '609', 'AW00013884', 'NULL', 'Jada', 'NULL', 'Rogers', '0', '1972-11-28', 'S', 'NULL', 'F', 'jada11@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '8175 Tri-state Ave.', 'NULL', '918-555-0112', '2012-08-09', '2-5 Miles'], ['13885', '642', 'AW00013885', 'NULL', 'Brian', 'S', 'Howard', '0', '1981-05-04', 'S', 'NULL', 'M', 'brian23@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5137 Heritage Oaks', 'NULL', '603-555-0194', '2012-07-31', '2-5 Miles'], ['13886', '310', 'AW00013886', 'NULL', 'Rachel', 'M', 'Taylor', '0', '1976-03-25', 'M', 'NULL', 'F', 'rachel11@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3277 Lakespring Pl.', 'NULL', '919-555-0194', '2012-08-13', '2-5 Miles'], ['13887', '372', 'AW00013887', 'NULL', 'Nathan', 'K', 'Scott', '0', '1981-10-08', 'M', 'NULL', 'M', 'nathan43@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4775 Imperial Dr.', 'NULL', '932-555-0110', '2012-09-10', '0-1 Miles'], ['13888', '616', 'AW00013888', 'NULL', 'Ian', 'NULL', 'Brown', '0', '1984-05-01', 'S', 'NULL', 'M', 'ian5@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4540 Wood Ranch Circle', 'Space 51', '846-555-0173', '2013-10-29', '2-5 Miles'], ['13889', '543', 'AW00013889', 'NULL', 'Robert', 'C', 'Martin', '0', '1972-02-07', 'S', 'NULL', 'M', 'robert73@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9215 Hamilton Ave.', 'NULL', '428-555-0156', '2012-09-14', '2-5 Miles'], ['13890', '536', 'AW00013890', 'NULL', 'Jennifer', 'W', 'Carter', '0', '1977-09-12', 'S', 'NULL', 'F', 'jennifer12@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8437 Loveridge Circle', 'NULL', '229-555-0180', '2012-09-11', '2-5 Miles'], ['13891', '334', 'AW00013891', 'NULL', 'Aaron', 'NULL', 'Simmons', '0', '1972-06-05', 'M', 'NULL', 'M', 'aaron14@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9293 Liszt Way', 'NULL', '143-555-0139', '2013-05-07', '0-1 Miles'], ['13892', '545', 'AW00013892', 'NULL', 'Spencer', 'J', 'Diaz', '0', '1977-11-21', 'S', 'NULL', 'M', 'spencer24@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6841 Monti Dr.', 'NULL', '979-555-0174', '2012-08-29', '2-5 Miles'], ['13893', '536', 'AW00013893', 'NULL', 'Dalton', 'I', 'Carter', '0', '1983-02-07', 'M', 'NULL', 'M', 'dalton35@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4802 Haynes Court', 'NULL', '358-555-0140', '2013-06-19', '2-5 Miles'], ['13894', '611', 'AW00013894', 'NULL', 'Robyn', 'I', 'Ruiz', '0', '1974-08-25', 'M', 'NULL', 'F', 'robyn1@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4612 Merriewood Drive', 'NULL', '391-555-0185', '2012-09-01', '0-1 Miles'], ['13895', '611', 'AW00013895', 'NULL', 'Isabella', 'NULL', 'Brooks', '0', '1975-06-24', 'S', 'NULL', 'F', 'isabella8@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9471 Shell Dr.', 'NULL', '421-555-0139', '2012-09-17', '2-5 Miles'], ['13896', '612', 'AW00013896', 'NULL', 'Hailey', 'NULL', 'Mitchell', '0', '1980-10-06', 'S', 'NULL', 'F', 'hailey52@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4082 Nightingale Drive', 'NULL', '502-555-0123', '2012-10-11', '2-5 Miles'], ['13897', '612', 'AW00013897', 'NULL', 'Carol', 'K', 'Washington', '0', '1975-05-24', 'M', 'NULL', 'M', 'carol19@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '89 River Ash Court', 'NULL', '116-555-0141', '2012-10-23', '2-5 Miles'], ['13898', '539', 'AW00013898', 'NULL', 'Richard', 'NULL', 'Baker', '0', '1986-04-06', 'S', 'NULL', 'M', 'richard27@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '108 Lakeside Court', 'NULL', '273-555-0115', '2012-10-19', '2-5 Miles'], ['13899', '631', 'AW00013899', 'NULL', 'Cameron', 'M', 'Jones', '0', '1986-02-10', 'M', 'NULL', 'M', 'cameron44@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '1105 Meadowbrook Drive', 'NULL', '506-555-0164', '2013-04-13', '2-5 Miles'], ['13900', '631', 'AW00013900', 'NULL', 'Isaac', 'NULL', 'Campbell', '0', '1985-10-07', 'M', 'NULL', 'M', 'isaac29@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '2', '614 Shepberry Court', 'NULL', '496-555-0172', '2013-04-19', '0-1 Miles'], ['13901', '552', 'AW00013901', 'NULL', 'Oscar', 'L', 'Foster', '0', '1975-04-20', 'M', 'NULL', 'M', 'oscar2@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '2', '5938 Greenwood Circle', 'NULL', '296-555-0171', '2013-06-11', '0-1 Miles'], ['13902', '311', 'AW00013902', 'NULL', 'Jeremiah', 'NULL', 'Simmons', '0', '1974-09-15', 'M', 'NULL', 'M', 'jeremiah33@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '3', '3725 Odin Dr.', 'NULL', '113-555-0178', '2013-07-12', '10+ Miles'], ['13903', '316', 'AW00013903', 'NULL', 'Elijah', 'NULL', 'Hernandez', '0', '1975-05-27', 'S', 'NULL', 'M', 'elijah45@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7198 Alvecedo', 'NULL', '160-555-0144', '2012-09-29', '0-1 Miles'], ['13904', '329', 'AW00013904', 'NULL', 'Natalie', 'J', 'Thompson', '0', '1980-03-05', 'M', 'NULL', 'F', 'natalie83@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5500 Grammercy Lane', 'NULL', '196-555-0112', '2012-10-24', '0-1 Miles'], ['13905', '331', 'AW00013905', 'NULL', 'Christian', 'NULL', 'Henderson', '0', '1980-03-03', 'M', 'NULL', 'M', 'christian19@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8192 Pine Creek Way', 'NULL', '819-555-0144', '2012-10-25', '0-1 Miles'], ['13906', '631', 'AW00013906', 'NULL', 'Courtney', 'L', 'Evans', '0', '1976-06-21', 'S', 'NULL', 'F', 'courtney0@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5086 Filling Ave.', 'NULL', '295-555-0110', '2012-10-06', '0-1 Miles'], ['13907', '611', 'AW00013907', 'NULL', 'Misty', 'L', 'Xie', '0', '1976-02-19', 'S', 'NULL', 'F', 'misty4@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9286 Military East', 'NULL', '146-555-0168', '2012-10-21', '0-1 Miles'], ['13908', '49', 'AW00013908', 'NULL', 'Alyssa', 'NULL', 'Diaz', '0', '1971-01-17', 'S', 'NULL', 'F', 'alyssa66@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6922 Estudello', 'NULL', '506-555-0145', '2013-05-07', '0-1 Miles'], ['13909', '50', 'AW00013909', 'NULL', 'Riley', 'R', 'Price', '0', '1970-07-21', 'S', 'NULL', 'F', 'riley0@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9778 Concord Royale', 'NULL', '246-555-0191', '2013-05-05', '0-1 Miles'], ['13910', '638', 'AW00013910', 'NULL', 'Isabelle', 'NULL', 'Butler', '0', '1976-03-05', 'S', 'NULL', 'F', 'isabelle13@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2462 Clearbrook Drive', 'NULL', '187-555-0132', '2012-10-06', '2-5 Miles'], ['13911', '637', 'AW00013911', 'NULL', 'Andrea', 'NULL', 'Kelly', '0', '1970-11-23', 'S', 'NULL', 'F', 'andrea3@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5976 Gumwood', 'NULL', '656-555-0167', '2012-09-30', '2-5 Miles'], ['13912', '312', 'AW00013912', 'NULL', 'Caroline', 'NULL', 'Simmons', '0', '1976-03-16', 'S', 'NULL', 'F', 'caroline16@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '4698 Endriss', 'NULL', '355-555-0110', '2012-11-06', '10+ Miles'], ['13913', '299', 'AW00013913', 'NULL', 'Angela', 'NULL', 'Rogers', '0', '1971-03-18', 'S', 'NULL', 'F', 'angela45@adventure-works.com', '80000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7065 Rock Creek Way', 'NULL', '997-555-0117', '2013-07-08', '2-5 Miles'], ['13914', '307', 'AW00013914', 'NULL', 'Abigail', 'NULL', 'Bell', '0', '1970-04-22', 'M', 'NULL', 'F', 'abigail9@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7985 Center Street', 'NULL', '599-555-0155', '2013-04-26', '0-1 Miles'], ['13915', '325', 'AW00013915', 'NULL', 'Allison', 'M', 'King', '0', '1975-10-18', 'S', 'NULL', 'F', 'allison42@adventure-works.com', '50000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4620 Kane Circle', 'NULL', '199-555-0195', '2012-11-17', '2-5 Miles'], ['13916', '71', 'AW00013916', 'NULL', 'Eduardo', 'I', 'Ward', '0', '1981-05-24', 'S', 'NULL', 'M', 'eduardo71@adventure-works.com', '50000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9478 Rheem Dr.', 'NULL', '969-555-0186', '2013-12-14', '0-1 Miles'], ['13917', '347', 'AW00013917', 'NULL', 'Samuel', 'W', 'Allen', '0', '1969-08-16', 'S', 'NULL', 'M', 'samuel52@adventure-works.com', '50000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3221 Mt. Washington Way', 'NULL', '636-555-0112', '2012-11-27', '0-1 Miles'], ['13918', '43', 'AW00013918', 'NULL', 'Armando', 'F', 'Blanco', '0', '1970-01-02', 'S', 'NULL', 'M', 'armando16@adventure-works.com', '50000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '4064 Regina Lane', 'NULL', '783-555-0163', '2013-12-16', '10+ Miles'], ['13919', '325', 'AW00013919', 'NULL', 'Grace', 'NULL', 'Smith', '0', '1929-10-21', 'M', 'NULL', 'F', 'grace24@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '464 Ahneita Dr.', 'NULL', '175-555-0135', '2014-01-04', '0-1 Miles'], ['13920', '66', 'AW00013920', 'NULL', 'Amanda', 'A', 'Rogers', '0', '1969-09-18', 'S', 'NULL', 'F', 'amanda2@adventure-works.com', '50000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '217 Ram Circle', 'NULL', '965-555-0154', '2013-04-07', '0-1 Miles'], ['13921', '311', 'AW00013921', 'NULL', 'Joseph', 'NULL', 'Jones', '0', '1974-05-07', 'M', 'NULL', 'M', 'joseph9@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '5666 Hazelnut Lane', 'NULL', '754-555-0194', '2013-10-04', '2-5 Miles'], ['13922', '548', 'AW00013922', 'NULL', 'Jackson', 'A', 'Foster', '0', '1974-05-03', 'M', 'NULL', 'M', 'jackson18@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '4405 Grant Street', 'NULL', '735-555-0115', '2013-11-14', '2-5 Miles'], ['13923', '326', 'AW00013923', 'NULL', 'Steven', 'H', 'Howard', '0', '1973-09-22', 'S', 'NULL', 'M', 'steven21@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1546 Cinnabar St.', 'NULL', '544-555-0167', '2013-04-10', '0-1 Miles'], ['13924', '359', 'AW00013924', 'NULL', 'Hannah', 'NULL', 'Hall', '0', '1979-03-10', 'S', 'NULL', 'F', 'hannah22@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1562 Petarct', 'NULL', '762-555-0116', '2013-06-28', '2-5 Miles'], ['13925', '355', 'AW00013925', 'NULL', 'Wyatt', 'A', 'Barnes', '0', '1974-10-08', 'S', 'NULL', 'M', 'wyatt54@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1211 Sherry Circle', 'NULL', '358-555-0164', '2012-10-31', '2-5 Miles'], ['13926', '607', 'AW00013926', 'NULL', 'Dalton', 'E', 'Hill', '0', '1969-01-20', 'S', 'NULL', 'M', 'dalton28@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1679 V. Street', 'NULL', '626-555-0195', '2013-05-05', '2-5 Miles'], ['13927', '298', 'AW00013927', 'NULL', 'Gabriel', 'M', 'Gonzales', '0', '1969-06-06', 'S', 'NULL', 'M', 'gabriel14@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '220 N Ridgewood Drive', 'NULL', '622-555-0136', '2012-11-19', '0-1 Miles'], ['13928', '642', 'AW00013928', 'NULL', 'Nathaniel', 'K', 'Morris', '0', '1969-01-18', 'M', 'NULL', 'M', 'nathaniel20@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2117 Mt Whitney', 'NULL', '134-555-0146', '2013-12-11', '0-1 Miles'], ['13929', '542', 'AW00013929', 'NULL', 'Robert', 'M', 'Hayes', '0', '1967-09-03', 'S', 'NULL', 'M', 'robert34@adventure-works.com', '40000.00', '3', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9620 Fallbrook Road', 'NULL', '117-555-0135', '2014-01-27', '2-5 Miles'], ['13930', '552', 'AW00013930', 'NULL', 'Samantha', 'C', 'Coleman', '0', '1973-02-14', 'M', 'NULL', 'F', 'samantha31@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5878 Scenic Avenue', 'NULL', '699-555-0186', '2013-10-28', '0-1 Miles'], ['13931', '634', 'AW00013931', 'NULL', 'Luke', 'NULL', 'Hernandez', '0', '1973-07-01', 'M', 'NULL', 'M', 'luke47@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5749 Elkwood Dr.', 'NULL', '367-555-0120', '2013-07-29', '2-5 Miles'], ['13932', '316', 'AW00013932', 'NULL', 'Timothy', 'NULL', 'Sanchez', '0', '1972-12-09', 'M', 'NULL', 'M', 'timothy19@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '3591 Pepperidge Way', 'NULL', '480-555-0112', '2013-11-06', '10+ Miles'], ['13933', '374', 'AW00013933', 'NULL', 'Isabella', 'F', 'Richardson', '0', '1966-12-10', 'M', 'NULL', 'F', 'isabella91@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7413 Alpine Drive', 'NULL', '910-555-0166', '2013-02-26', '2-5 Miles'], ['13934', '618', 'AW00013934', 'NULL', 'Luis', 'NULL', 'Young', '0', '1976-10-13', 'M', 'NULL', 'M', 'luis49@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7245 Freya Way', 'NULL', '831-555-0128', '2013-12-06', '2-5 Miles'], ['13935', '348', 'AW00013935', 'NULL', 'Kimberly', 'L', 'Sanchez', '0', '1971-12-21', 'M', 'NULL', 'F', 'kimberly25@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4678 Cardinal Dr.', 'NULL', '111-555-0123', '2013-03-02', '2-5 Miles'], ['13936', '52', 'AW00013936', 'NULL', 'Nathan', 'L', 'Wilson', '0', '1973-01-08', 'M', 'NULL', 'M', 'nathan65@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1099 C Street', 'NULL', '604-555-0191', '2013-05-23', '0-1 Miles'], ['13937', '545', 'AW00013937', 'NULL', 'Victoria', 'NULL', 'Ware', '0', '1984-03-19', 'S', 'NULL', 'F', 'victoria39@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6353 Dan Ysidro Court', 'NULL', '630-555-0131', '2013-08-05', '2-5 Miles'], ['13938', '298', 'AW00013938', 'NULL', 'Alejandro', 'J', 'Cai', '0', '1973-02-03', 'M', 'NULL', 'M', 'alejandro24@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '6905 Camino Ricardo', 'NULL', '991-555-0152', '2012-11-27', '0-1 Miles'], ['13939', '301', 'AW00013939', 'NULL', 'Eduardo', 'NULL', 'Ramirez', '0', '1972-09-16', 'S', 'NULL', 'M', 'eduardo75@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '352 Margo Dr.', 'NULL', '552-555-0158', '2012-11-20', '0-1 Miles'], ['13940', '337', 'AW00013940', 'NULL', 'Emma', 'L', 'Simmons', '0', '1973-02-13', 'S', 'NULL', 'F', 'emma61@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '5386 Salvio St.', 'NULL', '129-555-0131', '2013-08-08', '2-5 Miles'], ['13941', '60', 'AW00013941', 'NULL', 'Brittany', 'NULL', 'Hayes', '0', '1977-05-24', 'M', 'NULL', 'F', 'brittany21@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8833 San Gabriel Dr', 'NULL', '651-555-0169', '2013-05-03', '0-1 Miles'], ['13942', '315', 'AW00013942', 'NULL', 'Seth', 'V', 'Long', '0', '1965-10-06', 'M', 'NULL', 'M', 'seth57@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3761 N. 14th St', 'NULL', '752-555-0163', '2013-03-07', '0-1 Miles'], ['13943', '338', 'AW00013943', 'NULL', 'Kelly', 'NULL', 'Bryant', '0', '1971-09-30', 'M', 'NULL', 'F', 'kelly22@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9037 Saddlehill Lane', 'NULL', '863-555-0114', '2013-09-04', '2-5 Miles'], ['13944', '58', 'AW00013944', 'NULL', 'Andrew', 'A', 'Moore', '0', '1966-01-29', 'M', 'NULL', 'M', 'andrew17@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3241 Brock Lane', 'NULL', '199-555-0147', '2013-02-06', '0-1 Miles'], ['13945', '609', 'AW00013945', 'NULL', 'Yolanda', 'NULL', 'Luo', '0', '1966-02-11', 'M', 'NULL', 'F', 'yolanda5@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '105 Woodruff Ln.', 'NULL', '943-555-0155', '2013-03-15', '0-1 Miles'], ['13946', '547', 'AW00013946', 'NULL', 'Jason', 'L', 'Powell', '0', '1965-01-22', 'M', 'NULL', 'M', 'jason6@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '6344 Dartmouth Way', 'NULL', '881-555-0188', '2014-01-14', '0-1 Miles'], ['13947', '546', 'AW00013947', 'NULL', 'Megan', 'W', 'Hughes', '0', '1965-05-14', 'M', 'NULL', 'F', 'megan60@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '7469 Paraiso Ct.', 'NULL', '148-555-0186', '2012-12-05', '0-1 Miles'], ['13948', '299', 'AW00013948', 'NULL', 'Susan', 'A', 'Ma', '0', '1964-08-28', 'S', 'NULL', 'F', 'susan26@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4401 Keller Ridge Dr.', 'NULL', '423-555-0117', '2012-12-10', '0-1 Miles'], ['13949', '299', 'AW00013949', 'NULL', 'Dwayne', 'R', 'Ramos', '0', '1965-03-12', 'M', 'NULL', 'M', 'dwayne16@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9836 Hanson Lane', 'NULL', '851-555-0139', '2012-12-25', '0-1 Miles'], ['13950', '609', 'AW00013950', 'NULL', 'Meredith', 'B', 'Hernandez', '0', '1963-09-16', 'M', 'NULL', 'F', 'meredith26@adventure-works.com', '70000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '6477 Willow Pass Rd.', 'NULL', '293-555-0141', '2013-09-27', '2-5 Miles'], ['13951', '641', 'AW00013951', 'NULL', 'Dylan', 'C', 'Hughes', '0', '1935-04-05', 'S', 'NULL', 'M', 'dylan10@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '1268 Holiday Hills Drive', 'NULL', '798-555-0137', '2013-09-26', '2-5 Miles'], ['13952', '36', 'AW00013952', 'NULL', 'Franklin', 'L', 'Ye', '0', '1980-07-05', 'M', 'NULL', 'M', 'franklin9@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '1796 Westbury Dr.', 'NULL', '1 (11) 500 555-0139', '2013-09-05', '0-1 Miles'], ['13953', '10', 'AW00013953', 'NULL', 'Theresa', 'M', 'Munoz', '0', '1980-03-17', 'M', 'NULL', 'F', 'theresa4@adventure-works.com', '100000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '5339 Longview Road', 'NULL', '1 (11) 500 555-0124', '2012-07-13', '0-1 Miles'], ['13954', '24', 'AW00013954', 'NULL', 'Eddie', 'T', 'Ramos', '0', '1984-09-16', 'M', 'NULL', 'M', 'eddie17@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6093 Midway Ct.', 'NULL', '1 (11) 500 555-0156', '2013-07-09', '2-5 Miles'], ['13955', '19', 'AW00013955', 'NULL', 'Andres', 'E', 'Raji', '0', '1975-08-08', 'M', 'NULL', 'M', 'andres17@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '8595 Central Avenue', '# 228', '1 (11) 500 555-0160', '2012-07-07', '0-1 Miles'], ['13956', '15', 'AW00013956', 'NULL', 'Dawn', 'A', 'Ma', '0', '1974-04-11', 'S', 'NULL', 'F', 'dawn18@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '1211 Sherry Circle', 'NULL', '1 (11) 500 555-0142', '2013-08-11', '10+ Miles'], ['13957', '21', 'AW00013957', 'NULL', 'Meredith', 'NULL', 'Munoz', '0', '1978-11-24', 'S', 'NULL', 'F', 'meredith30@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5592 Eagle Peak Ave.', 'NULL', '1 (11) 500 555-0122', '2012-07-18', '2-5 Miles'], ['13958', '40', 'AW00013958', 'NULL', 'Diane', 'NULL', 'Martin', '0', '1973-04-13', 'M', 'NULL', 'F', 'diane6@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '3534 Marvelle Ln.', 'NULL', '1 (11) 500 555-0157', '2012-07-02', '10+ Miles'], ['13959', '36', 'AW00013959', 'NULL', 'Ebony', 'NULL', 'Carlson', '0', '1974-11-20', 'M', 'NULL', 'F', 'ebony39@adventure-works.com', '120000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '1387 Dias Circle', 'NULL', '1 (11) 500 555-0113', '2012-07-04', '0-1 Miles'], ['13960', '15', 'AW00013960', 'NULL', 'Lacey', 'NULL', 'Kumar', '0', '1973-01-01', 'S', 'NULL', 'F', 'lacey42@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '5749 Elkwood Dr.', 'NULL', '1 (11) 500 555-0112', '2012-07-12', '10+ Miles'], ['13961', '39', 'AW00013961', 'NULL', 'Shawna', 'P', 'Raji', '0', '1971-11-05', 'M', 'NULL', 'F', 'shawna20@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '2850 D Bel Air Dr', 'NULL', '1 (11) 500 555-0184', '2013-10-01', '0-1 Miles'], ['13962', '16', 'AW00013962', 'NULL', 'Dawn', 'B', 'Li', '0', '1971-11-06', 'M', 'NULL', 'F', 'dawn4@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '1931 Eagle Way', 'NULL', '1 (11) 500 555-0115', '2013-02-20', '0-1 Miles'], ['13963', '31', 'AW00013963', 'NULL', 'Veronica', 'NULL', 'Patel', '0', '1972-05-27', 'M', 'NULL', 'F', 'veronica3@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '3909 Lavetta Way', 'NULL', '1 (11) 500 555-0111', '2013-05-01', '0-1 Miles'], ['13964', '18', 'AW00013964', 'NULL', 'Jasmine', 'NULL', 'Lewis', '0', '1971-08-18', 'S', 'NULL', 'F', 'jasmine18@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '9679 Shakespeare Dr.', 'NULL', '1 (11) 500 555-0185', '2012-07-08', '2-5 Miles'], ['13965', '25', 'AW00013965', 'NULL', 'Barry', 'R', 'Sara', '0', '1977-02-22', 'M', 'NULL', 'M', 'barry11@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '8826 D Anchor', 'NULL', '1 (11) 500 555-0114', '2012-07-27', '2-5 Miles'], ['13966', '3', 'AW00013966', 'NULL', 'Darren', 'M', 'Dominguez', '0', '1971-10-02', 'M', 'NULL', 'M', 'darren35@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '1487 Santa Fe', 'NULL', '1 (11) 500 555-0167', '2012-07-12', '0-1 Miles'], ['13967', '40', 'AW00013967', 'NULL', 'Glenn', 'A', 'Zhang', '0', '1970-07-23', 'S', 'NULL', 'M', 'glenn1@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3877 Edward Ave.', 'NULL', '1 (11) 500 555-0152', '2012-07-07', '5-10 Miles'], ['13968', '17', 'AW00013968', 'NULL', 'Lydia', 'L', 'Sai', '0', '1970-10-23', 'S', 'NULL', 'F', 'lydia5@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5033 Kentucky Dr.', 'NULL', '1 (11) 500 555-0176', '2012-07-19', '0-1 Miles'], ['13969', '23', 'AW00013969', 'NULL', 'Roy', 'J', 'Martinez', '0', '1979-02-07', 'S', 'NULL', 'M', 'roy18@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4645 Mehaffey Way', 'NULL', '1 (11) 500 555-0169', '2013-09-20', '5-10 Miles'], ['13970', '24', 'AW00013970', 'NULL', 'Pedro', 'F', 'Rana', '0', '1973-10-15', 'S', 'NULL', 'M', 'pedro11@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3824 Birch Bark Rd', 'NULL', '1 (11) 500 555-0115', '2012-07-09', '0-1 Miles'], ['13971', '25', 'AW00013971', 'NULL', 'Bianca', 'NULL', 'Zhao', '0', '1973-12-05', 'S', 'NULL', 'F', 'bianca8@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4348 Lilac Circle', '#6', '1 (11) 500 555-0184', '2012-07-27', '5-10 Miles'], ['13972', '30', 'AW00013972', 'NULL', 'Eugene', 'NULL', 'Liang', '0', '1970-09-30', 'S', 'NULL', 'M', 'eugene21@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '2067 Black Point Pl', 'NULL', '1 (11) 500 555-0194', '2013-10-11', '5-10 Miles'], ['13973', '28', 'AW00013973', 'NULL', 'Bethany', 'L', 'Shan', '0', '1969-11-30', 'S', 'NULL', 'F', 'bethany13@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '8751 Upland Dr.', 'NULL', '1 (11) 500 555-0162', '2012-07-17', '5-10 Miles'], ['13974', '9', 'AW00013974', 'NULL', 'Tina', 'S', 'Chandra', '0', '1970-03-25', 'M', 'NULL', 'F', 'tina4@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '3783 Dartmouth Way', 'NULL', '1 (11) 500 555-0115', '2012-07-18', '5-10 Miles'], ['13975', '31', 'AW00013975', 'NULL', 'Johnny', 'NULL', 'Raje', '0', '1975-03-24', 'S', 'NULL', 'M', 'johnny15@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '3224 Pome Court', 'NULL', '1 (11) 500 555-0169', '2012-08-23', '5-10 Miles'], ['13976', '611', 'AW00013976', 'NULL', 'Emmanuel', 'NULL', 'Smith', '0', '1973-11-13', 'M', 'NULL', 'M', 'emmanuel8@adventure-works.com', '100000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7224 Grant St.', 'NULL', '876-555-0114', '2012-12-24', '1-2 Miles'], ['13977', '618', 'AW00013977', 'NULL', 'Alexandra', 'R', 'Brown', '0', '1973-07-18', 'M', 'NULL', 'F', 'alexandra67@adventure-works.com', '100000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '5627 Tanager Road', 'NULL', '678-555-0195', '2012-11-28', '0-1 Miles'], ['13978', '635', 'AW00013978', 'NULL', 'Zoe', 'NULL', 'Peterson', '0', '1973-11-08', 'M', 'NULL', 'F', 'zoe4@adventure-works.com', '100000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '5328 Reading Dr', 'NULL', '212-555-0147', '2012-12-20', '0-1 Miles'], ['13979', '633', 'AW00013979', 'NULL', 'Chloe', 'W', 'Jenkins', '0', '1984-09-30', 'S', 'NULL', 'F', 'chloe73@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3775 Hilltop Dr.', 'NULL', '419-555-0111', '2012-12-05', '1-2 Miles'], ['13980', '300', 'AW00013980', 'NULL', 'Margaret', 'R', 'Liu', '0', '1985-03-17', 'S', 'NULL', 'F', 'margaret11@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5927 Diokmo Ct.', 'NULL', '154-555-0120', '2013-04-21', '5-10 Miles'], ['13981', '31', 'AW00013981', 'NULL', 'Joy', 'NULL', 'Carlson', '0', '1949-12-10', 'M', 'NULL', 'F', 'joy17@adventure-works.com', '10000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '6791 Creekside Drive', 'NULL', '1 (11) 500 555-0149', '2013-05-05', '1-2 Miles'], ['13982', '12', 'AW00013982', 'NULL', 'Clarence', 'E', 'Chander', '0', '1949-09-18', 'M', 'NULL', 'M', 'clarence30@adventure-works.com', '20000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6647 Revision Dr', 'NULL', '1 (11) 500 555-0165', '2013-03-14', '5-10 Miles'], ['13983', '13', 'AW00013983', 'NULL', 'Logan', 'H', 'Collins', '0', '1949-12-03', 'M', 'NULL', 'M', 'logan29@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6431 Adobe Dr.', 'NULL', '1 (11) 500 555-0191', '2013-03-08', '5-10 Miles'], ['13984', '359', 'AW00013984', 'NULL', 'Adrian', 'C', 'Richardson', '0', '1984-09-04', 'S', 'NULL', 'M', 'adrian11@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3930 Sony Hill Circle', 'NULL', '408-555-0120', '2012-12-09', '1-2 Miles'], ['13985', '372', 'AW00013985', 'NULL', 'Alexis', 'A', 'Wood', '0', '1984-10-21', 'M', 'NULL', 'F', 'alexis24@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '8248 N. Ranchford Court', 'NULL', '889-555-0140', '2013-04-22', '1-2 Miles'], ['13986', '372', 'AW00013986', 'NULL', 'Chloe', 'R', 'Anderson', '0', '1985-04-23', 'M', 'NULL', 'F', 'chloe43@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3118 Creekside Drive', 'NULL', '913-555-0176', '2012-01-08', '5-10 Miles'], ['13987', '52', 'AW00013987', 'NULL', 'Eduardo', 'NULL', 'Collins', '0', '1984-05-04', 'S', 'NULL', 'M', 'eduardo43@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2100 Linton Terr', 'NULL', '100-555-0124', '2013-12-24', '1-2 Miles'], ['13988', '57', 'AW00013988', 'NULL', 'Miguel', 'S', 'White', '0', '1984-05-09', 'S', 'NULL', 'M', 'miguel12@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1597 Vista Del Sol', 'NULL', '621-555-0134', '2013-07-28', '5-10 Miles'], ['13989', '612', 'AW00013989', 'NULL', 'Chloe', 'A', 'Bradley', '0', '1983-07-17', 'S', 'NULL', 'F', 'chloe69@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1720 Medburn St', 'NULL', '651-555-0113', '2013-03-19', '5-10 Miles'], ['13990', '548', 'AW00013990', 'NULL', 'Stephanie', 'A', 'Wood', '0', '1983-09-23', 'S', 'NULL', 'F', 'stephanie29@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4619 Ricardo Drive', '# 233', '560-555-0193', '2012-01-16', '1-2 Miles'], ['13991', '638', 'AW00013991', 'NULL', 'Jack', 'L', 'Hayes', '0', '1983-09-05', 'M', 'NULL', 'M', 'jack23@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4510 Ten Penny Lane', 'NULL', '534-555-0131', '2013-11-02', '5-10 Miles'], ['13992', '302', 'AW00013992', 'NULL', 'Gregory', 'NULL', 'Xie', '0', '1983-12-04', 'S', 'NULL', 'M', 'gregory7@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5055 Quiz St.', 'NULL', '560-555-0183', '2012-01-04', '1-2 Miles'], ['13993', '302', 'AW00013993', 'NULL', 'Zachary', 'R', 'Patterson', '0', '1984-02-21', 'M', 'NULL', 'M', 'zachary9@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7814 New Court', 'NULL', '149-555-0161', '2012-01-07', '5-10 Miles'], ['13994', '18', 'AW00013994', 'NULL', 'Isaac', 'M', 'Cook', '0', '1952-01-14', 'M', 'NULL', 'M', 'isaac21@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7760 Woodbury Pl.', 'NULL', '1 (11) 500 555-0155', '2012-08-11', '5-10 Miles'], ['13995', '35', 'AW00013995', 'NULL', 'Michele', 'NULL', 'Black', '0', '1952-12-07', 'M', 'NULL', 'F', 'michele21@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8202 Lion Circle', 'NULL', '1 (11) 500 555-0190', '2013-05-15', '1-2 Miles'], ['13996', '11', 'AW00013996', 'NULL', 'Marie', 'NULL', 'Perez', '0', '1958-09-04', 'M', 'NULL', 'F', 'marie23@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2441 Heavenly Drive', 'NULL', '1 (11) 500 555-0159', '2013-05-15', '5-10 Miles'], ['13997', '30', 'AW00013997', 'NULL', 'Raquel', 'W', 'Hernandez', '0', '1952-11-20', 'M', 'NULL', 'F', 'raquel2@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9768 Brandywine Way', 'NULL', '1 (11) 500 555-0173', '2012-08-07', '1-2 Miles'], ['13998', '33', 'AW00013998', 'NULL', 'Ethan', 'M', 'Martin', '0', '1954-04-22', 'M', 'NULL', 'M', 'ethan48@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1479 Pine Creek Way', 'NULL', '1 (11) 500 555-0136', '2013-02-04', '5-10 Miles'], ['13999', '348', 'AW00013999', 'NULL', 'Elijah', 'A', 'Gonzales', '0', '1984-02-14', 'M', 'NULL', 'M', 'elijah19@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8815 Wildberry Court', 'NULL', '447-555-0164', '2012-01-25', '5-10 Miles'], ['14000', '536', 'AW00014000', 'NULL', 'Terry', 'NULL', 'Sharma', '0', '1982-10-24', 'S', 'NULL', 'M', 'terry13@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6209 Willow Drive', 'NULL', '148-555-0148', '2013-07-27', '5-10 Miles'], ['14001', '536', 'AW00014001', 'NULL', 'Hunter', 'NULL', 'Hill', '0', '1983-01-23', 'S', 'NULL', 'M', 'hunter39@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3132 Liana Lane', 'NULL', '889-555-0142', '2013-08-08', '1-2 Miles'], ['14002', '612', 'AW00014002', 'NULL', 'Jacqueline', 'NULL', 'Reed', '0', '1983-04-26', 'S', 'NULL', 'F', 'jacqueline45@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8051 Reality Dr.', 'NULL', '406-555-0129', '2013-03-15', '5-10 Miles'], ['14003', '547', 'AW00014003', 'NULL', 'Angel', 'NULL', 'Ramirez', '0', '1983-04-04', 'S', 'NULL', 'M', 'angel6@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9064 Silverado Dr.', 'NULL', '488-555-0166', '2012-01-17', '1-2 Miles'], ['14004', '314', 'AW00014004', 'NULL', 'Caitlin', 'NULL', 'Kelly', '0', '1982-10-11', 'M', 'NULL', 'F', 'caitlin2@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5936 Second Ave', 'NULL', '904-555-0116', '2013-08-26', '5-10 Miles'], ['14005', '355', 'AW00014005', 'NULL', 'Noah', 'J', 'Hughes', '0', '1982-11-10', 'M', 'NULL', 'M', 'noah8@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5990 Curletto Drive', 'NULL', '811-555-0150', '2012-02-23', '0-1 Miles'], ['14006', '358', 'AW00014006', 'NULL', 'Brianna', 'M', 'Walker', '0', '1983-03-27', 'M', 'NULL', 'F', 'brianna22@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6701 Eagle Peak Ave.', 'NULL', '413-555-0174', '2012-02-04', '5-10 Miles'], ['14007', '2', 'AW00014007', 'NULL', 'Rebekah', 'M', 'Garcia', '0', '1960-08-22', 'M', 'NULL', 'F', 'rebekah14@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1019 Candy Rd.', 'NULL', '1 (11) 500 555-0177', '2012-08-11', '1-2 Miles'], ['14008', '34', 'AW00014008', 'NULL', 'Karen', 'F', 'Liu', '0', '1955-01-11', 'M', 'NULL', 'F', 'karen13@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3283 Terra Granda', 'NULL', '1 (11) 500 555-0146', '2013-02-12', '5-10 Miles'], ['14009', '37', 'AW00014009', 'NULL', 'Brandy', 'P', 'Prasad', '0', '1960-09-01', 'M', 'NULL', 'F', 'brandy5@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '8176 Pena', 'NULL', '1 (11) 500 555-0129', '2013-10-14', '1-2 Miles'], ['14010', '36', 'AW00014010', 'NULL', 'Thomas', 'NULL', 'Moore', '0', '1956-02-02', 'M', 'NULL', 'M', 'thomas69@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '658 Pecan Street', 'NULL', '1 (11) 500 555-0152', '2012-08-12', '1-2 Miles'], ['14011', '17', 'AW00014011', 'NULL', 'Roger', 'G', 'Shen', '0', '1956-05-07', 'S', 'NULL', 'M', 'roger29@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9873 Willow Avenue', 'NULL', '1 (11) 500 555-0186', '2012-08-06', '5-10 Miles'], ['14012', '27', 'AW00014012', 'NULL', 'Eddie', 'T', 'Vazquez', '0', '1972-02-05', 'M', 'NULL', 'M', 'eddie15@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6142 Kentucky Drive', 'NULL', '1 (11) 500 555-0137', '2012-08-25', '5-10 Miles'], ['14013', '31', 'AW00014013', 'NULL', 'Jimmy', 'V', 'Blanco', '0', '1962-08-07', 'M', 'NULL', 'M', 'jimmy19@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8519 Crivello Ave.', 'NULL', '1 (11) 500 555-0173', '2013-05-06', '5-10 Miles'], ['14014', '5', 'AW00014014', 'NULL', 'Leslie', 'T', 'Serrano', '0', '1962-09-23', 'M', 'NULL', 'F', 'leslie17@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5252 Santa Fe', 'NULL', '1 (11) 500 555-0160', '2013-05-20', '1-2 Miles'], ['14015', '39', 'AW00014015', 'NULL', 'Kurt', 'R', 'Lal', '0', '1956-10-16', 'M', 'NULL', 'M', 'kurt8@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2538 Stafford Ave', 'NULL', '1 (11) 500 555-0171', '2013-06-04', '5-10 Miles'], ['14016', '9', 'AW00014016', 'Ms.', 'Mary', 'R.', 'Sandidge', '0', '1956-07-13', 'M', 'NULL', 'M', 'mary9@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9390 Janin Pl.', 'NULL', '113-555-0100', '2013-07-23', '1-2 Miles'], ['14017', '359', 'AW00014017', 'NULL', 'Chloe', 'C', 'Rodriguez', '0', '1986-05-22', 'S', 'NULL', 'F', 'chloe30@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7806 Reliez Valley Ct.', 'NULL', '325-555-0134', '2012-01-29', '1-2 Miles'], ['14018', '32', 'AW00014018', 'NULL', 'Nina', 'NULL', 'Rai', '0', '1957-07-01', 'M', 'NULL', 'F', 'nina17@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6453 Coldwater Drive', 'NULL', '1 (11) 500 555-0163', '2013-10-05', '5-10 Miles'], ['14019', '33', 'AW00014019', 'NULL', 'Kathleen', 'NULL', 'Romero', '0', '1958-01-18', 'M', 'NULL', 'F', 'kathleen11@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3651 Willow Lake Rd', 'NULL', '1 (11) 500 555-0113', '2013-07-29', '5-10 Miles'], ['14020', '38', 'AW00014020', 'NULL', 'Kristine', 'A', 'Dominguez', '0', '1959-12-18', 'S', 'NULL', 'F', 'kristine13@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8761 Dancing Court', 'NULL', '1 (11) 500 555-0184', '2012-08-27', '1-2 Miles'], ['14021', '623', 'AW00014021', 'NULL', 'Michelle', 'NULL', 'Richardson', '0', '1981-05-01', 'S', 'NULL', 'F', 'michelle10@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2676 Santa Fe Street', 'NULL', '590-555-0195', '2013-05-10', '5-10 Miles'], ['14022', '627', 'AW00014022', 'NULL', 'Taylor', 'NULL', 'Lee', '0', '1980-12-02', 'S', 'NULL', 'F', 'taylor68@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7413 Flora Ave.', 'NULL', '626-555-0118', '2012-02-11', '5-10 Miles'], ['14023', '311', 'AW00014023', 'NULL', 'Beth', 'J', 'Carlson', '0', '1981-04-13', 'S', 'NULL', 'F', 'beth20@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2444 Piedmont', 'NULL', '237-555-0170', '2012-02-17', '5-10 Miles'], ['14024', '348', 'AW00014024', 'NULL', 'Hannah', 'NULL', 'Moore', '0', '1981-06-21', 'S', 'NULL', 'F', 'hannah8@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '923 Hill Drive', 'NULL', '141-555-0124', '2012-02-23', '1-2 Miles'], ['14025', '637', 'AW00014025', 'NULL', 'Robert', 'NULL', 'Alexander', '0', '1985-03-14', 'M', 'NULL', 'M', 'robert30@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4286 NE 3rd Court', 'NULL', '318-555-0116', '2012-01-29', '5-10 Miles'], ['14026', '635', 'AW00014026', 'NULL', 'Chloe', 'E', 'Butler', '0', '1979-10-29', 'S', 'NULL', 'F', 'chloe81@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2574 Napa', 'NULL', '685-555-0116', '2012-02-11', '5-10 Miles'], ['14027', '642', 'AW00014027', 'NULL', 'Carlos', 'M', 'Perez', '0', '1978-11-10', 'M', 'NULL', 'M', 'carlos30@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '281 Wesley Court', 'NULL', '547-555-0191', '2013-08-07', '0-1 Miles'], ['14028', '609', 'AW00014028', 'NULL', 'Patricia', 'NULL', 'Srini', '0', '1979-01-09', 'S', 'NULL', 'F', 'patricia12@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '3035 Blackfield Dr.', 'NULL', '894-555-0142', '2013-07-19', '0-1 Miles'], ['14029', '542', 'AW00014029', 'NULL', 'Christina', 'NULL', 'Morris', '0', '1982-02-19', 'M', 'NULL', 'F', 'christina17@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6680 Brookdale Dr.', 'NULL', '193-555-0194', '2014-01-28', '5-10 Miles'], ['14030', '40', 'AW00014030', 'NULL', 'Lawrence', 'M', 'Sanz', '0', '1961-04-19', 'S', 'NULL', 'M', 'lawrence19@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3841 Turner Dr.', 'NULL', '1 (11) 500 555-0161', '2012-08-24', '1-2 Miles'], ['14031', '10', 'AW00014031', 'NULL', 'Ruben', 'NULL', 'Suarez', '0', '1966-02-13', 'M', 'NULL', 'M', 'ruben42@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2837 Hacienda Drive', 'NULL', '1 (11) 500 555-0115', '2012-08-18', '5-10 Miles'], ['14032', '15', 'AW00014032', 'NULL', 'Arthur', 'L', 'Chandra', '0', '1961-07-06', 'M', 'NULL', 'M', 'arthur4@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1874 Orchid Ct', 'NULL', '1 (11) 500 555-0196', '2012-08-04', '1-2 Miles'], ['14033', '29', 'AW00014033', 'NULL', 'Melinda', 'J', 'Torres', '0', '1968-02-16', 'S', 'NULL', 'F', 'melinda7@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '2895 Churchill Dr', 'NULL', '1 (11) 500 555-0126', '2012-08-17', '5-10 Miles'], ['14034', '12', 'AW00014034', 'NULL', 'Dennis', 'NULL', 'Liang', '0', '1969-04-04', 'S', 'NULL', 'M', 'dennis18@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '3155 Meadowbrook Court', 'NULL', '1 (11) 500 555-0172', '2013-07-23', '0-1 Miles'], ['14035', '329', 'AW00014035', 'NULL', 'Hunter', 'NULL', 'Hughes', '0', '1979-01-30', 'S', 'NULL', 'M', 'hunter8@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '7669 Willow Lake Rd', 'NULL', '693-555-0168', '2013-07-27', '2-5 Miles'], ['14036', '546', 'AW00014036', 'NULL', 'Amanda', 'T', 'Torres', '0', '1979-12-25', 'M', 'NULL', 'F', 'amanda13@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6329 El Rancho Drive', 'NULL', '159-555-0111', '2012-03-19', '5-10 Miles'], ['14037', '299', 'AW00014037', 'NULL', 'Lydia', 'NULL', 'Sara', '0', '1979-10-20', 'M', 'NULL', 'F', 'lydia9@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5613 East Narrows Drive', 'NULL', '183-555-0132', '2012-03-23', '5-10 Miles'], ['14038', '18', 'AW00014038', 'NULL', 'Madison', 'NULL', 'Foster', '0', '1965-05-21', 'M', 'NULL', 'F', 'madison28@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '5890 Yosemite Circle', 'NULL', '1 (11) 500 555-0146', '2012-08-10', '0-1 Miles'], ['14039', '39', 'AW00014039', 'NULL', 'Nathan', 'NULL', 'Wang', '0', '1970-09-15', 'S', 'NULL', 'M', 'nathan21@adventure-works.com', '160000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '7070 East Avenue', 'NULL', '1 (11) 500 555-0166', '2012-08-14', '0-1 Miles'], ['14040', '316', 'AW00014040', 'NULL', 'Stephanie', 'S', 'Morris', '0', '1968-05-08', 'S', 'NULL', 'F', 'stephanie5@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2062 Dos Encinas', 'NULL', '979-555-0161', '2013-06-12', '1-2 Miles'], ['14041', '70', 'AW00014041', 'NULL', 'Danielle', 'NULL', 'Bell', '0', '1968-03-30', 'S', 'NULL', 'F', 'danielle16@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8092 West Las Vegas', 'NULL', '390-555-0199', '2013-05-04', '5-10 Miles'], ['14042', '648', 'AW00014042', 'NULL', 'Stephanie', 'R', 'Adams', '0', '1962-07-01', 'M', 'NULL', 'F', 'stephanie60@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '6516 Pine Tree Drive', 'NULL', '492-555-0112', '2013-12-12', '1-2 Miles'], ['14043', '547', 'AW00014043', 'NULL', 'Mary', 'NULL', 'Gonzalez', '0', '1962-08-28', 'S', 'NULL', 'F', 'mary21@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4373 Sherry Circle', 'NULL', '385-555-0161', '2013-03-05', '5-10 Miles'], ['14044', '348', 'AW00014044', 'NULL', 'Thomas', 'M', 'Wright', '0', '1963-01-11', 'M', 'NULL', 'M', 'thomas56@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '2924 Michigan Blvd.', 'NULL', '545-555-0114', '2012-03-24', '0-1 Miles'], ['14045', '20', 'AW00014045', 'NULL', 'Tanya', 'R', 'Ramos', '0', '1972-10-02', 'M', 'NULL', 'F', 'tanya14@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '6088 Clark Creek Rd', 'NULL', '1 (11) 500 555-0186', '2012-08-10', '0-1 Miles'], ['14046', '36', 'AW00014046', 'NULL', 'Cheryl', 'G', 'Sanz', '0', '1972-12-01', 'M', 'NULL', 'F', 'cheryl23@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '9030 Louisiana Dr.', 'NULL', '1 (11) 500 555-0113', '2012-08-08', '1-2 Miles'], ['14047', '19', 'AW00014047', 'NULL', 'Linda', 'NULL', 'Alvarez', '0', '1968-04-13', 'S', 'NULL', 'F', 'linda19@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4288 Hacienda', 'NULL', '1 (11) 500 555-0112', '2012-07-31', '0-1 Miles'], ['14048', '32', 'AW00014048', 'NULL', 'Wyatt', 'A', 'Mitchell', '0', '1967-10-01', 'M', 'NULL', 'M', 'wyatt40@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4794 Kim Court', 'NULL', '1 (11) 500 555-0167', '2012-08-17', '0-1 Miles'], ['14049', '23', 'AW00014049', 'NULL', 'Gina', 'NULL', 'Hernandez', '0', '1968-03-06', 'M', 'NULL', 'F', 'gina4@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2146 Twin View Drive', 'NULL', '1 (11) 500 555-0161', '2012-07-31', '5-10 Miles'], ['14050', '28', 'AW00014050', 'NULL', 'Manuel', 'M', 'Lopez', '0', '1971-11-13', 'S', 'NULL', 'M', 'manuel15@adventure-works.com', '100000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '2396 Ancona Ct.', 'NULL', '1 (11) 500 555-0146', '2012-08-08', '0-1 Miles'], ['14051', '31', 'AW00014051', 'NULL', 'Nathaniel', 'M', 'Rivera', '0', '1982-10-08', 'S', 'NULL', 'M', 'nathaniel18@adventure-works.com', '100000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2910 Boyd', 'NULL', '1 (11) 500 555-0190', '2012-08-08', '2-5 Miles'], ['14052', '26', 'AW00014052', 'NULL', 'Jorge', 'O', 'Ma', '0', '1977-06-22', 'S', 'NULL', 'M', 'jorge18@adventure-works.com', '110000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8702 Orchard View Ave', 'NULL', '1 (11) 500 555-0183', '2013-01-30', '1-2 Miles'], ['14053', '17', 'AW00014053', 'NULL', 'Tamara', 'E', 'Huang', '0', '1977-09-13', 'S', 'NULL', 'F', 'tamara36@adventure-works.com', '110000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '7535 Roanoke Drive', 'NULL', '1 (11) 500 555-0193', '2013-02-06', '0-1 Miles'], ['14054', '40', 'AW00014054', 'NULL', 'Reginald', 'NULL', 'Martin', '0', '1965-10-08', 'M', 'NULL', 'M', 'reginald8@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4091 Silver Oaks Place', 'NULL', '1 (11) 500 555-0113', '2013-11-29', '5-10 Miles'], ['14055', '14', 'AW00014055', 'NULL', 'Alejandro', 'NULL', 'Kumar', '0', '1965-12-31', 'M', 'NULL', 'M', 'alejandro34@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1689 Boxwood Ln.', 'NULL', '1 (11) 500 555-0133', '2012-08-09', '0-1 Miles'], ['14056', '32', 'AW00014056', 'NULL', 'Nelson', 'M', 'Sanz', '0', '1965-10-25', 'M', 'NULL', 'M', 'nelson19@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7219 Canyon Way', 'NULL', '1 (11) 500 555-0161', '2013-05-09', '5-10 Miles'], ['14057', '11', 'AW00014057', 'NULL', 'Lance', 'I', 'Alonso', '0', '1965-05-23', 'M', 'NULL', 'M', 'lance8@adventure-works.com', '90000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9602 C St.', 'NULL', '1 (11) 500 555-0115', '2013-09-04', '5-10 Miles'], ['14058', '20', 'AW00014058', 'NULL', 'Johnny', 'NULL', 'Anand', '0', '1976-06-10', 'S', 'NULL', 'M', 'johnny23@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9318 Hawkridge Terrace', 'NULL', '1 (11) 500 555-0132', '2012-08-06', '5-10 Miles'], ['14059', '35', 'AW00014059', 'NULL', 'Rodney', 'C', 'Ramos', '0', '1976-12-18', 'M', 'NULL', 'M', 'rodney13@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '5566 Brook Way', 'NULL', '1 (11) 500 555-0186', '2013-03-17', '1-2 Miles'], ['14060', '35', 'AW00014060', 'NULL', 'Cedric', 'A', 'Sharma', '0', '1971-05-27', 'M', 'NULL', 'M', 'cedric30@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '9704 Pineknoll', 'NULL', '1 (11) 500 555-0111', '2013-03-13', '1-2 Miles'], ['14061', '17', 'AW00014061', 'NULL', 'Naomi', 'J', 'Torres', '0', '1970-12-30', 'M', 'NULL', 'F', 'naomi12@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '6374 Las Palmas', 'NULL', '1 (11) 500 555-0115', '2013-02-27', '1-2 Miles'], ['14062', '25', 'AW00014062', 'NULL', 'Madison', 'A', 'Clark', '0', '1970-01-15', 'S', 'NULL', 'F', 'madison20@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2203 Palm Ave.', 'NULL', '1 (11) 500 555-0114', '2012-08-19', '5-10 Miles'], ['14063', '8', 'AW00014063', 'Mr.', 'Patrick', 'NULL', 'Sands', '0', '1975-08-05', 'S', 'NULL', 'F', 'patrick4@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9788 Thors Bay Road', 'NULL', '153-555-0100', '2012-08-16', '0-1 Miles'], ['14064', '27', 'AW00014064', 'NULL', 'Stacey', 'NULL', 'Li', '0', '1969-12-07', 'S', 'NULL', 'F', 'stacey3@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '666 Lafayette Street', 'NULL', '1 (11) 500 555-0124', '2012-08-27', '0-1 Miles'], ['14065', '23', 'AW00014065', 'NULL', 'Samuel', 'NULL', 'Diaz', '0', '1969-01-23', 'S', 'NULL', 'M', 'samuel21@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '442 West Cliff Place', 'NULL', '1 (11) 500 555-0127', '2012-08-06', '5-10 Miles'], ['14066', '34', 'AW00014066', 'NULL', 'Melody', 'S', 'Jimenez', '0', '1968-05-22', 'S', 'NULL', 'F', 'melody6@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3888 Arnold Drive', 'NULL', '1 (11) 500 555-0145', '2012-08-21', '5-10 Miles'], ['14067', '35', 'AW00014067', 'NULL', 'Larry', 'NULL', 'Sanz', '0', '1967-10-18', 'S', 'NULL', 'M', 'larry22@adventure-works.com', '70000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '8790 Lay Brooke Way', 'NULL', '1 (11) 500 555-0172', '2013-04-11', '5-10 Miles'], ['14068', '12', 'AW00014068', 'NULL', 'Brent', 'NULL', 'McDonald', '0', '1967-12-02', 'M', 'NULL', 'M', 'brent16@adventure-works.com', '70000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '4566 Magnolia Ave.', 'NULL', '1 (11) 500 555-0155', '2013-05-02', '0-1 Miles'], ['14069', '12', 'AW00014069', 'NULL', 'Joy', 'L', 'Serrano', '0', '1973-02-17', 'M', 'NULL', 'F', 'joy15@adventure-works.com', '70000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '2333 Fillet Ave', 'NULL', '1 (11) 500 555-0157', '2013-08-27', '0-1 Miles'], ['14070', '38', 'AW00014070', 'NULL', 'Ricky', 'S', 'Alonso', '0', '1964-05-09', 'S', 'NULL', 'M', 'ricky8@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '946 Santa Barbara Rd.', 'NULL', '1 (11) 500 555-0178', '2012-08-17', '2-5 Miles'], ['14071', '26', 'AW00014071', 'NULL', 'Jack', 'J', 'Li', '0', '1964-05-26', 'S', 'NULL', 'M', 'jack27@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '746 Cast Street', 'NULL', '1 (11) 500 555-0150', '2012-08-13', '5-10 Miles'], ['14072', '21', 'AW00014072', 'NULL', 'Allen', 'NULL', 'Smith', '0', '1962-09-21', 'M', 'NULL', 'M', 'allen7@adventure-works.com', '80000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4458 Pine St.', 'NULL', '1 (11) 500 555-0113', '2013-07-23', '5-10 Miles'], ['14073', '34', 'AW00014073', 'NULL', 'Gabriel', 'C', 'Alexander', '0', '1940-10-24', 'M', 'NULL', 'M', 'gabriel16@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '1247 Violet Ct', 'NULL', '1 (11) 500 555-0112', '2013-02-13', '0-1 Miles'], ['14074', '23', 'AW00014074', 'NULL', 'Barbara', 'NULL', 'Xu', '0', '1954-12-05', 'M', 'NULL', 'F', 'barbara36@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', 'P.O. Box 2851', 'NULL', '1 (11) 500 555-0125', '2013-05-12', '0-1 Miles'], ['14075', '331', 'AW00014075', 'NULL', 'Robert', 'A', 'Harris', '0', '1982-05-20', 'S', 'NULL', 'M', 'robert72@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1393 Winterberry Ct.', 'NULL', '311-555-0184', '2013-04-23', '5-10 Miles'], ['14076', '536', 'AW00014076', 'NULL', 'Justin', 'J', 'Ross', '0', '1981-08-26', 'M', 'NULL', 'M', 'justin0@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6912 Hamilton Avenue', 'NULL', '605-555-0145', '2013-05-03', '5-10 Miles'], ['14077', '62', 'AW00014077', 'NULL', 'Bryan', 'NULL', 'Townsend', '0', '1981-10-11', 'S', 'NULL', 'M', 'bryan7@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4997 North Civic Dr.', 'NULL', '478-555-0190', '2013-08-01', '5-10 Miles'], ['14078', '50', 'AW00014078', 'NULL', 'Ryan', 'J', 'Alexander', '0', '1981-05-22', 'M', 'NULL', 'M', 'ryan22@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5244 Black Walnut Ct.', 'NULL', '120-555-0115', '2013-01-18', '5-10 Miles'], ['14079', '53', 'AW00014079', 'NULL', 'Lauren', 'J', 'Price', '0', '1981-09-11', 'S', 'NULL', 'F', 'lauren47@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2812 East Lake Court', 'NULL', '269-555-0123', '2013-01-28', '0-1 Miles'], ['14080', '536', 'AW00014080', 'NULL', 'Cynthia', 'NULL', 'Srini', '0', '1981-11-16', 'S', 'NULL', 'F', 'cynthia13@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '274 Diane Ct', 'NULL', '774-555-0185', '2012-03-18', '5-10 Miles'], ['14081', '348', 'AW00014081', 'NULL', 'Nicole', 'J', 'Butler', '0', '1985-10-04', 'M', 'NULL', 'F', 'nicole63@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1996 Sand Pointe Lane', 'NULL', '946-555-0142', '2012-03-22', '5-10 Miles'], ['14082', '536', 'AW00014082', 'NULL', 'Johnny', 'L', 'Jai', '0', '1985-11-03', 'S', 'NULL', 'M', 'johnny12@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1289 Mt. Dias Blv.', 'NULL', '861-555-0113', '2013-12-14', '0-1 Miles'], ['14083', '623', 'AW00014083', 'NULL', 'Nathan', 'NULL', 'Lopez', '0', '1986-05-03', 'M', 'NULL', 'M', 'nathan49@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '748 Whitehall Drive', 'NULL', '239-555-0122', '2012-03-12', '5-10 Miles'], ['14084', '50', 'AW00014084', 'NULL', 'Robert', 'L', 'Lal', '0', '1985-11-03', 'S', 'NULL', 'M', 'robert41@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1289 Mt. Dias Blv.', 'NULL', '130-555-0176', '2013-05-04', '0-1 Miles'], ['14085', '618', 'AW00014085', 'NULL', 'Nathan', 'W', 'Garcia', '0', '1985-08-30', 'M', 'NULL', 'M', 'nathan74@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2813 A St.', 'NULL', '952-555-0168', '2013-04-24', '0-1 Miles'], ['14086', '20', 'AW00014086', 'NULL', 'Maurice', 'L', 'Chander', '0', '1951-08-20', 'M', 'NULL', 'M', 'maurice16@adventure-works.com', '10000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '849 Donegal Road', 'NULL', '1 (11) 500 555-0115', '2013-10-22', '0-1 Miles'], ['14087', '27', 'AW00014087', 'NULL', 'Harold', 'K', 'Garcia', '0', '1942-11-02', 'S', 'NULL', 'M', 'harold12@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5980 Icicle Circle', 'Unit H', '1 (11) 500 555-0118', '2013-02-08', '5-10 Miles'], ['14088', '553', 'AW00014088', 'NULL', 'Alexandra', 'NULL', 'Lopez', '0', '1983-11-22', 'S', 'NULL', 'F', 'alexandra62@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2541 Waterview Place', 'NULL', '142-555-0119', '2012-03-12', '5-10 Miles'], ['14089', '316', 'AW00014089', 'NULL', 'Kaitlyn', 'L', 'Gray', '0', '1984-04-07', 'S', 'NULL', 'F', 'kaitlyn62@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8778 So. Silver Spring', 'NULL', '543-555-0126', '2012-03-10', '0-1 Miles'], ['14090', '314', 'AW00014090', 'NULL', 'Jennifer', 'NULL', 'Lewis', '0', '1983-04-15', 'M', 'NULL', 'F', 'jennifer48@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2119 Virginia Hills', 'NULL', '387-555-0170', '2013-04-30', '0-1 Miles'], ['14091', '54', 'AW00014091', 'NULL', 'Logan', 'A', 'Thomas', '0', '1983-02-10', 'S', 'NULL', 'M', 'logan62@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2524 Coggins Drive', 'NULL', '990-555-0184', '2013-01-31', '0-1 Miles'], ['14092', '609', 'AW00014092', 'NULL', 'Maurice', 'NULL', 'Nath', '0', '1983-05-24', 'S', 'NULL', 'M', 'maurice19@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9918 Scramble Rd.', 'NULL', '145-555-0174', '2013-09-08', '5-10 Miles'], ['14093', '300', 'AW00014093', 'NULL', 'Jillian', 'J', 'Arthur', '0', '1982-10-17', 'S', 'NULL', 'F', 'jillian7@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2860 Brentwood Circle', 'NULL', '586-555-0114', '2013-08-23', '5-10 Miles'], ['14094', '383', 'AW00014094', 'NULL', 'Amanda', 'NULL', 'Russell', '0', '1982-11-07', 'S', 'NULL', 'F', 'amanda41@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '220 Rambling Rose Ave.', '# 103', '486-555-0161', '2013-04-26', '0-1 Miles'], ['14095', '343', 'AW00014095', 'NULL', 'Paige', 'NULL', 'Griffin', '0', '1982-03-10', 'M', 'NULL', 'F', 'paige20@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5749 Esperanza', 'NULL', '885-555-0148', '2012-04-29', '5-10 Miles'], ['14096', '62', 'AW00014096', 'NULL', 'Samuel', 'D', 'Green', '0', '1985-02-16', 'S', 'NULL', 'M', 'samuel45@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7709 Redhead Way', 'NULL', '652-555-0148', '2013-06-11', '0-1 Miles'], ['14097', '607', 'AW00014097', 'NULL', 'Johnathan', 'NULL', 'Srini', '0', '1985-03-25', 'M', 'NULL', 'M', 'johnathan10@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8315 Near Ct.', 'NULL', '767-555-0193', '2013-07-25', '5-10 Miles'], ['14098', '618', 'AW00014098', 'NULL', 'Allison', 'D', 'Lopez', '0', '1984-10-21', 'M', 'NULL', 'F', 'allison44@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9941 Clyde Street', 'NULL', '972-555-0156', '2012-04-11', '5-10 Miles'], ['14099', '13', 'AW00014099', 'NULL', 'Rafael', 'NULL', 'Lin', '0', '1945-05-23', 'M', 'NULL', 'M', 'rafael8@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5265 Lorraine Ave.', 'NULL', '1 (11) 500 555-0159', '2013-03-17', '0-1 Miles'], ['14100', '39', 'AW00014100', 'NULL', 'Alisha', 'NULL', 'Xu', '0', '1952-05-15', 'M', 'NULL', 'F', 'alisha29@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '551 Almond Ave', 'NULL', '1 (11) 500 555-0178', '2013-06-12', '5-10 Miles'], ['14101', '10', 'AW00014101', 'NULL', 'Franklin', 'A', 'Lal', '0', '1948-03-10', 'M', 'NULL', 'M', 'franklin26@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9, rue Saint-Lazare', 'NULL', '1 (11) 500 555-0146', '2012-08-27', '0-1 Miles'], ['14102', '11', 'AW00014102', 'NULL', 'Lisa', 'L', 'Huang', '0', '1947-08-27', 'S', 'NULL', 'F', 'lisa9@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '9762 Alvecedo', 'NULL', '1 (11) 500 555-0168', '2012-08-16', '5-10 Miles'], ['14103', '13', 'AW00014103', 'NULL', 'Monique', 'W', 'Blanco', '0', '1949-04-04', 'S', 'NULL', 'F', 'monique12@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6658 Rheem Blvd', 'NULL', '1 (11) 500 555-0125', '2012-08-03', '5-10 Miles'], ['14104', '315', 'AW00014104', 'NULL', 'Sydney', 'M', 'James', '0', '1982-02-14', 'S', 'NULL', 'F', 'sydney18@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '2257 Gate Drive', 'NULL', '928-555-0156', '2012-04-02', '1-2 Miles'], ['14105', '336', 'AW00014105', 'NULL', 'Jackson', 'NULL', 'Zhang', '0', '1982-06-03', 'S', 'NULL', 'M', 'jackson25@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9532 Clay Rd', 'NULL', '739-555-0115', '2012-04-06', '1-2 Miles'], ['14106', '348', 'AW00014106', 'NULL', 'Melissa', 'NULL', 'Hughes', '0', '1981-07-12', 'S', 'NULL', 'F', 'melissa6@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9391 80th St', 'NULL', '976-555-0182', '2012-04-26', '1-2 Miles'], ['14107', '50', 'AW00014107', 'NULL', 'Alexandra', 'J', 'Garcia', '0', '1981-01-20', 'S', 'NULL', 'F', 'alexandra80@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6014 La Vista Circle', 'NULL', '502-555-0184', '2013-03-19', '5-10 Miles'], ['14108', '54', 'AW00014108', 'NULL', 'Thomas', 'A', 'Yang', '0', '1980-10-04', 'S', 'NULL', 'M', 'thomas30@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9884 S. Villa Way', 'NULL', '507-555-0173', '2013-04-08', '5-10 Miles'], ['14109', '359', 'AW00014109', 'NULL', 'Aidan', 'G', 'Gonzales', '0', '1980-02-20', 'M', 'NULL', 'M', 'aidan18@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4829 D St.', 'NULL', '603-555-0189', '2012-04-28', '1-2 Miles'], ['14110', '52', 'AW00014110', 'NULL', 'Dakota', 'T', 'Simmons', '0', '1978-12-09', 'S', 'NULL', 'M', 'dakota12@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '8206 Green Valley Road', 'NULL', '209-555-0174', '2013-04-23', '1-2 Miles'], ['14111', '546', 'AW00014111', 'NULL', 'Michael', 'K', 'Anderson', '0', '1978-05-22', 'S', 'NULL', 'M', 'michael42@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7403 N. Broadway', 'NULL', '306-555-0141', '2013-07-31', '0-1 Miles'], ['14112', '310', 'AW00014112', 'NULL', 'Charles', 'W', 'Sanchez', '0', '1978-05-06', 'S', 'NULL', 'M', 'charles65@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9161 Napa St.', 'NULL', '612-555-0177', '2012-05-04', '5-10 Miles'], ['14113', '644', 'AW00014113', 'NULL', 'Natalie', 'L', 'Lopez', '0', '1977-10-20', 'S', 'NULL', 'F', 'natalie64@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9590 Rahn Court', 'NULL', '421-555-0147', '2013-05-07', '0-1 Miles'], ['14114', '312', 'AW00014114', 'NULL', 'Chloe', 'C', 'Martin', '0', '1977-07-06', 'M', 'NULL', 'F', 'chloe25@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4215 Arleda Lane', 'NULL', '989-555-0160', '2014-01-28', '0-1 Miles'], ['14115', '539', 'AW00014115', 'NULL', 'Samantha', 'NULL', 'Gonzales', '0', '1983-06-01', 'S', 'NULL', 'F', 'samantha39@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '406 Countrywood Ct.', 'NULL', '701-555-0179', '2012-05-06', '1-2 Miles'], ['14116', '638', 'AW00014116', 'NULL', 'Brianna', 'M', 'Torres', '0', '1973-08-17', 'S', 'NULL', 'F', 'brianna40@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '6152 Buckingham Dr.', 'NULL', '617-555-0112', '2012-05-22', '0-1 Miles'], ['14117', '648', 'AW00014117', 'NULL', 'Emma', 'G', 'Cook', '0', '1974-04-22', 'S', 'NULL', 'F', 'emma29@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '8067 Olympic Drive', 'NULL', '746-555-0112', '2012-05-26', '1-2 Miles'], ['14118', '62', 'AW00014118', 'NULL', 'Elizabeth', 'E', 'Ross', '0', '1978-07-10', 'S', 'NULL', 'F', 'elizabeth33@adventure-works.com', '100000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9682 Bon Homme Way', 'NULL', '436-555-0128', '2013-04-30', '1-2 Miles'], ['14119', '52', 'AW00014119', 'NULL', 'Paige', 'NULL', 'Cooper', '0', '1972-12-08', 'S', 'NULL', 'F', 'paige32@adventure-works.com', '110000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '3998 Bouncing Road', 'NULL', '336-555-0181', '2013-04-24', '10+ Miles'], ['14120', '299', 'AW00014120', 'NULL', 'Gabrielle', 'S', 'Cooper', '0', '1972-12-14', 'M', 'NULL', 'F', 'gabrielle9@adventure-works.com', '120000.00', '0', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3467 Monetary Way', 'NULL', '357-555-0151', '2012-05-22', '1-2 Miles'], ['14121', '611', 'AW00014121', 'NULL', 'Devon', 'NULL', 'Goel', '0', '1973-01-09', 'S', 'NULL', 'M', 'devon16@adventure-works.com', '130000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '1318 Lasalle Street', 'NULL', '302-555-0194', '2012-05-29', '0-1 Miles'], ['14122', '337', 'AW00014122', 'NULL', 'Kaitlyn', 'NULL', 'Miller', '0', '1953-02-09', 'M', 'NULL', 'F', 'kaitlyn28@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1692 Alpine Rd.', 'NULL', '828-555-0161', '2013-04-16', '5-10 Miles'], ['14123', '22', 'AW00014123', 'NULL', 'Erick', 'E', 'Mehta', '0', '1985-06-09', 'M', 'NULL', 'M', 'erick13@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '2338 Mozden Lane', 'Unit B', '1 (11) 500 555-0198', '2013-03-21', '2-5 Miles'], ['14124', '4', 'AW00014124', 'NULL', 'Justin', 'NULL', 'Li', '0', '1986-03-11', 'M', 'NULL', 'M', 'justin23@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1901 Missing Canyon Court', 'NULL', '1 (11) 500 555-0113', '2013-04-28', '0-1 Miles'], ['14125', '29', 'AW00014125', 'NULL', 'Shane', 'Y', 'Gonzalez', '0', '1983-11-16', 'S', 'NULL', 'M', 'shane21@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '9293 Mt. Washington Way', 'NULL', '1 (11) 500 555-0117', '2012-08-20', '2-5 Miles'], ['14126', '39', 'AW00014126', 'NULL', 'Andy', 'L', 'Dominguez', '0', '1984-04-11', 'M', 'NULL', 'M', 'andy17@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '369 Roslyn Drive', 'NULL', '1 (11) 500 555-0170', '2013-02-27', '1-2 Miles'], ['14127', '21', 'AW00014127', 'NULL', 'Lacey', 'L', 'Zhang', '0', '1981-08-07', 'M', 'NULL', 'F', 'lacey12@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '6085 B Wildbrook Ct.', 'NULL', '1 (11) 500 555-0189', '2012-08-12', '0-1 Miles'], ['14128', '26', 'AW00014128', 'NULL', 'Ian', 'W', 'Harris', '0', '1984-07-19', 'S', 'NULL', 'M', 'ian13@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '3859 Anyway Street', 'NULL', '1 (11) 500 555-0194', '2012-08-13', '1-2 Miles'], ['14129', '15', 'AW00014129', 'NULL', 'Monica', 'A', 'Martinez', '0', '1985-04-16', 'M', 'NULL', 'F', 'monica17@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9018 Vallet Crest Drive', 'NULL', '1 (11) 500 555-0162', '2012-08-01', '0-1 Miles'], ['14130', '7', 'AW00014130', 'NULL', 'Rebekah', 'NULL', 'Serrano', '0', '1984-09-10', 'M', 'NULL', 'F', 'rebekah36@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '9037 Valley High Dr.', 'NULL', '1 (11) 500 555-0118', '2012-08-03', '0-1 Miles'], ['14131', '2', 'AW00014131', 'NULL', 'Javier', 'NULL', 'Navarro', '0', '1984-02-13', 'M', 'NULL', 'M', 'javier4@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5671 Dimaggio Way', 'NULL', '1 (11) 500 555-0169', '2012-08-08', '0-1 Miles'], ['14132', '39', 'AW00014132', 'NULL', 'Brandon', 'NULL', 'Ross', '0', '1982-07-20', 'S', 'NULL', 'M', 'brandon1@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '4657 Price Lane', 'NULL', '1 (11) 500 555-0187', '2012-08-16', '1-2 Miles'], ['14133', '25', 'AW00014133', 'NULL', 'Ricardo', 'K', 'Kumar', '0', '1983-05-16', 'S', 'NULL', 'M', 'ricardo7@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4496 Hurlstone Ct.', 'NULL', '1 (11) 500 555-0119', '2012-08-11', '0-1 Miles'], ['14134', '28', 'AW00014134', 'NULL', 'Cassandra', 'C', 'Fernandez', '0', '1982-12-11', 'S', 'NULL', 'F', 'cassandra17@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '8598 Sharon Dr.', 'NULL', '1 (11) 500 555-0138', '2012-08-01', '0-1 Miles'], ['14135', '188', 'AW00014135', 'NULL', 'Clayton', 'NULL', 'Xie', '0', '1949-02-06', 'M', 'NULL', 'M', 'clayton23@adventure-works.com', '20000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '1, rue de la Cavalerie', 'NULL', '1 (11) 500 555-0145', '2013-04-18', '1-2 Miles'], ['14136', '223', 'AW00014136', 'NULL', 'Louis', 'NULL', 'She', '0', '1948-10-02', 'M', 'NULL', 'M', 'louis17@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '112, boulevard Tremblay', 'NULL', '1 (11) 500 555-0125', '2013-05-23', '0-1 Miles'], ['14137', '155', 'AW00014137', 'NULL', 'Joy', 'A', 'Ruiz', '0', '1949-04-04', 'M', 'NULL', 'F', 'joy3@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Erftplatz 9', 'NULL', '1 (11) 500 555-0144', '2011-06-27', '0-1 Miles'], ['14138', '133', 'AW00014138', 'NULL', 'Vincent', 'M', 'He', '0', '1949-04-14', 'S', 'NULL', 'M', 'vincent18@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Wolfgangstraße 48', 'NULL', '1 (11) 500 555-0124', '2011-06-05', '1-2 Miles'], ['14139', '168', 'AW00014139', 'NULL', 'Meredith', 'NULL', 'Sai', '0', '1966-09-22', 'M', 'NULL', 'F', 'meredith4@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Parkstr 4852', 'NULL', '1 (11) 500 555-0158', '2011-06-30', '0-1 Miles'], ['14140', '160', 'AW00014140', 'NULL', 'Meagan', 'NULL', 'Sai', '0', '1967-01-05', 'M', 'NULL', 'F', 'meagan6@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Helsenbergbogen 6', 'NULL', '1 (11) 500 555-0142', '2011-06-06', '0-1 Miles'], ['14141', '190', 'AW00014141', 'NULL', 'Ana', 'NULL', 'Bryant', '0', '1965-12-09', 'S', 'NULL', 'F', 'ana16@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '4212, rue Saint-Lazare', 'NULL', '1 (11) 500 555-0113', '2012-02-19', '1-2 Miles'], ['14142', '154', 'AW00014142', 'NULL', 'Damien', 'A', 'Zheng', '0', '1966-03-13', 'M', 'NULL', 'M', 'damien15@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '3951 Panoramic Avenue', 'NULL', '1 (11) 500 555-0123', '2013-10-29', '2-5 Miles'], ['14143', '246', 'AW00014143', 'NULL', 'Jill', 'NULL', 'Sandoval', '0', '1971-03-10', 'S', 'NULL', 'F', 'jill28@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '5901 F Mt Hood Circle', 'NULL', '1 (11) 500 555-0197', '2013-04-12', '0-1 Miles'], ['14144', '226', 'AW00014144', 'NULL', 'Lee', 'A', 'Gutierrez', '0', '1965-04-09', 'M', 'NULL', 'M', 'lee9@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '1, rue de la Centenaire', 'NULL', '1 (11) 500 555-0177', '2013-10-25', '2-5 Miles'], ['14145', '197', 'AW00014145', 'NULL', 'Jessie', 'J', 'Ye', '0', '1964-08-14', 'S', 'NULL', 'M', 'jessie14@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '3669, rue des Pyrenees', 'NULL', '1 (11) 500 555-0178', '2013-02-06', '1-2 Miles'], ['14146', '238', 'AW00014146', 'NULL', 'Toni', 'E', 'Sara', '0', '1965-01-18', 'M', 'NULL', 'F', 'toni10@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '3768 Door Way', 'NULL', '1 (11) 500 555-0160', '2011-04-19', '2-5 Miles'], ['14147', '155', 'AW00014147', 'NULL', 'Marcus', 'M', 'Rivera', '0', '1963-09-14', 'M', 'NULL', 'M', 'marcus83@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Zimmerstr 311', 'NULL', '1 (11) 500 555-0129', '2011-07-30', '0-1 Miles'], ['14148', '133', 'AW00014148', 'NULL', 'Shaun', 'L', 'Sharma', '0', '1963-09-09', 'M', 'NULL', 'M', 'shaun10@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Unter Linden 924', 'NULL', '1 (11) 500 555-0121', '2011-08-27', '0-1 Miles'], ['14149', '121', 'AW00014149', 'NULL', 'Donald', 'NULL', 'Srini', '0', '1977-04-22', 'M', 'NULL', 'M', 'donald10@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Zur Lindung 4', 'NULL', '1 (11) 500 555-0118', '2011-08-11', '0-1 Miles'], ['14150', '243', 'AW00014150', 'NULL', 'Billy', 'J', 'Munoz', '0', '1964-08-20', 'M', 'NULL', 'M', 'billy9@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4650 Franklin Canyon Road', 'NULL', '1 (11) 500 555-0127', '2011-04-09', '0-1 Miles'], ['14151', '188', 'AW00014151', 'NULL', 'Marie', 'E', 'Martin', '0', '1981-10-22', 'S', 'NULL', 'F', 'marie24@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '35, route de Marseille', 'NULL', '1 (11) 500 555-0164', '2013-09-16', '0-1 Miles'], ['14152', '190', 'AW00014152', 'NULL', 'Luke', 'NULL', 'Turner', '0', '1975-09-07', 'S', 'NULL', 'M', 'luke36@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1, rue de Maubeuge', 'NULL', '1 (11) 500 555-0117', '2013-07-25', '2-5 Miles'], ['14153', '120', 'AW00014153', 'NULL', 'Dylan', 'NULL', 'Lewis', '0', '1976-05-13', 'S', 'NULL', 'M', 'dylan51@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Zeiter Weg 9922', 'NULL', '1 (11) 500 555-0177', '2013-05-11', '2-5 Miles'], ['14154', '213', 'AW00014154', 'NULL', 'Willie', 'R', 'Gao', '0', '1981-10-05', 'M', 'NULL', 'M', 'willie13@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9, avenue des Laurentides', 'NULL', '1 (11) 500 555-0164', '2012-02-25', '0-1 Miles'], ['14155', '261', 'AW00014155', 'NULL', 'Olivia', 'L', 'Morris', '0', '1981-09-06', 'M', 'NULL', 'F', 'olivia26@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '708 Bonifacio', 'NULL', '1 (11) 500 555-0162', '2011-04-28', '0-1 Miles'], ['14156', '253', 'AW00014156', 'NULL', 'Preston', 'L', 'Gonzalez', '0', '1974-11-15', 'S', 'NULL', 'M', 'preston16@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '8874 Dallas Drive', 'NULL', '1 (11) 500 555-0121', '2013-02-10', '0-1 Miles'], ['14157', '255', 'AW00014157', 'NULL', 'Willie', 'J', 'Xu', '0', '1980-04-10', 'S', 'NULL', 'M', 'willie10@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6703 Corte Poquito', 'NULL', '1 (11) 500 555-0139', '2011-04-10', '0-1 Miles'], ['14158', '277', 'AW00014158', 'NULL', 'Craig', 'N', 'Moreno', '0', '1974-08-04', 'S', 'NULL', 'M', 'craig7@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8033 Brook Street', 'NULL', '1 (11) 500 555-0119', '2011-04-08', '0-1 Miles'], ['14159', '233', 'AW00014159', 'NULL', 'Jay', 'NULL', 'Malhotra', '0', '1980-11-08', 'S', 'NULL', 'M', 'jay11@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3230 Buchanan Rd.', 'NULL', '1 (11) 500 555-0136', '2011-04-07', '0-1 Miles'], ['14160', '117', 'AW00014160', 'NULL', 'Brittney', 'NULL', 'Hu', '0', '1975-01-02', 'M', 'NULL', 'F', 'brittney19@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Galeriestr 619', 'NULL', '1 (11) 500 555-0155', '2011-08-23', '0-1 Miles'], ['14161', '115', 'AW00014161', 'NULL', 'Claudia', 'J', 'Li', '0', '1974-08-02', 'S', 'NULL', 'F', 'claudia2@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Waldstr 9', 'NULL', '1 (11) 500 555-0187', '2011-08-04', '0-1 Miles'], ['14162', '131', 'AW00014162', 'NULL', 'Brett', 'NULL', 'Garcia', '0', '1975-05-18', 'M', 'NULL', 'M', 'brett14@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Charlottenstr 29828', 'NULL', '1 (11) 500 555-0175', '2011-08-10', '0-1 Miles'], ['14163', '153', 'AW00014163', 'NULL', 'Ebony', 'S', 'Garcia', '0', '1975-04-22', 'M', 'NULL', 'F', 'ebony15@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Rehstr 7346', 'NULL', '1 (11) 500 555-0165', '2011-08-19', '0-1 Miles'], ['14164', '130', 'AW00014164', 'NULL', 'Kari', 'A', 'Smith', '0', '1980-11-08', 'S', 'NULL', 'F', 'kari9@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Alderstr 3981', 'NULL', '1 (11) 500 555-0151', '2011-08-13', '0-1 Miles'], ['14165', '261', 'AW00014165', 'NULL', 'Natalie', 'L', 'Gray', '0', '1974-10-26', 'S', 'NULL', 'F', 'natalie18@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3413 Sequoia Woods Pl.', 'NULL', '1 (11) 500 555-0114', '2011-04-20', '0-1 Miles'], ['14166', '208', 'AW00014166', 'NULL', 'Elizabeth', 'I', 'Jenkins', '0', '1928-04-09', 'M', 'NULL', 'F', 'elizabeth36@adventure-works.com', '10000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '2', '785, rue de Varenne', 'NULL', '1 (11) 500 555-0178', '2013-02-14', '0-1 Miles'], ['14167', '118', 'AW00014167', 'NULL', 'Pamela', 'M', 'Subram', '0', '1956-09-29', 'S', 'NULL', 'F', 'pamela16@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Pappelallee 229', 'NULL', '1 (11) 500 555-0199', '2011-08-14', '0-1 Miles'], ['14168', '207', 'AW00014168', 'NULL', 'Edwin', 'M', 'Guo', '0', '1957-03-24', 'M', 'NULL', 'M', 'edwin18@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '191, avenue Reille', 'NULL', '1 (11) 500 555-0131', '2014-01-25', '0-1 Miles'], ['14169', '208', 'AW00014169', 'NULL', 'Carmen', 'E', 'Martinez', '0', '1979-04-13', 'S', 'NULL', 'F', 'carmen2@adventure-works.com', '10000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '965, rue Philibert-Delorme', 'NULL', '1 (11) 500 555-0126', '2012-02-13', '0-1 Miles'], ['14170', '210', 'AW00014170', 'NULL', 'Rebekah', 'J', 'Moreno', '0', '1974-05-02', 'S', 'NULL', 'F', 'rebekah26@adventure-works.com', '10000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '3697 W St.', 'NULL', '1 (11) 500 555-0129', '2012-03-07', '0-1 Miles'], ['14171', '118', 'AW00014171', 'NULL', 'Michele', 'A', 'Lal', '0', '1950-03-05', 'S', 'NULL', 'F', 'michele9@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Königsteiner Straße 449', 'NULL', '1 (11) 500 555-0152', '2011-08-08', '2-5 Miles'], ['14172', '247', 'AW00014172', 'NULL', 'Carla', 'NULL', 'Garcia', '0', '1949-10-19', 'S', 'NULL', 'F', 'carla17@adventure-works.com', '130000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '1760 Double Court', 'NULL', '1 (11) 500 555-0139', '2013-04-09', '0-1 Miles'], ['14173', '213', 'AW00014173', 'NULL', 'Tonya', 'NULL', 'Shan', '0', '1950-10-19', 'M', 'NULL', 'F', 'tonya10@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '88, rue Georges-Clémenceau', 'NULL', '1 (11) 500 555-0114', '2013-05-25', '10+ Miles'], ['14174', '126', 'AW00014174', 'NULL', 'Alberto', 'A', 'Diaz', '0', '1956-09-04', 'M', 'NULL', 'M', 'alberto4@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', 'Celler Weg 3040', 'Verkaufsabteilung', '1 (11) 500 555-0161', '2013-02-22', '10+ Miles'], ['14175', '234', 'AW00014175', 'NULL', 'Cynthia', 'NULL', 'Mehta', '0', '1950-11-17', 'M', 'NULL', 'F', 'cynthia19@adventure-works.com', '110000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '4513 Terry Lynn Lane', 'NULL', '1 (11) 500 555-0162', '2013-08-17', '5-10 Miles'], ['14176', '220', 'AW00014176', 'NULL', 'Mindy', 'NULL', 'Rai', '0', '1951-09-05', 'M', 'NULL', 'F', 'mindy22@adventure-works.com', '80000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '99, avenue du Président-Kennedy', 'NULL', '1 (11) 500 555-0123', '2013-06-10', '2-5 Miles'], ['14177', '186', 'AW00014177', 'NULL', 'Kenneth', 'K', 'Nara', '0', '1951-11-19', 'M', 'NULL', 'M', 'kenneth13@adventure-works.com', '80000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '34, route de Marseille', 'NULL', '1 (11) 500 555-0110', '2013-12-08', '2-5 Miles'], ['14178', '192', 'AW00014178', 'NULL', 'Katie', 'NULL', 'Raje', '0', '1952-03-14', 'S', 'NULL', 'F', 'katie16@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '8, avenue de Norvege', 'NULL', '1 (11) 500 555-0136', '2013-11-24', '10+ Miles'], ['14179', '156', 'AW00014179', 'NULL', 'Claudia', 'J', 'Xu', '0', '1957-04-22', 'S', 'NULL', 'F', 'claudia11@adventure-works.com', '100000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', 'Lützowplatz 5538', 'NULL', '1 (11) 500 555-0140', '2014-01-14', '10+ Miles'], ['14180', '117', 'AW00014180', 'NULL', 'Henry', 'NULL', 'Patel', '0', '1951-11-02', 'M', 'NULL', 'M', 'henry5@adventure-works.com', '100000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', 'Kulmer Straße 4600', 'NULL', '1 (11) 500 555-0199', '2013-05-09', '10+ Miles'], ['14181', '131', 'AW00014181', 'NULL', 'Adriana', 'NULL', 'Chandra', '0', '1952-05-31', 'M', 'NULL', 'F', 'adriana2@adventure-works.com', '100000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', 'Hüttenstr 9005', 'NULL', '1 (11) 500 555-0119', '2011-08-24', '10+ Miles'], ['14182', '145', 'AW00014182', 'NULL', 'Steve', 'A', 'Lin', '0', '1965-09-16', 'M', 'NULL', 'M', 'steve11@adventure-works.com', '110000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Zollstr 28', 'NULL', '1 (11) 500 555-0182', '2013-09-02', '10+ Miles'], ['14183', '260', 'AW00014183', 'NULL', 'Robyn', 'M', 'Carlson', '0', '1964-10-13', 'S', 'NULL', 'F', 'robyn14@adventure-works.com', '130000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '2128 Birchbark Place', 'NULL', '1 (11) 500 555-0172', '2011-04-10', '0-1 Miles'], ['14184', '267', 'AW00014184', 'NULL', 'Caleb', 'NULL', 'Jenkins', '0', '1970-04-22', 'M', 'NULL', 'M', 'caleb3@adventure-works.com', '170000.00', '0', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1082 Selena Court', 'NULL', '1 (11) 500 555-0170', '2013-04-04', '0-1 Miles'], ['14185', '211', 'AW00014185', 'NULL', 'Frank', 'NULL', 'Vazquez', '0', '1958-05-19', 'S', 'NULL', 'M', 'frank22@adventure-works.com', '80000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5, avenue de la Gare', 'NULL', '1 (11) 500 555-0124', '2012-03-17', '10+ Miles'], ['14186', '192', 'AW00014186', 'NULL', 'Katrina', 'K', 'Tang', '0', '1957-12-24', 'M', 'NULL', 'F', 'katrina3@adventure-works.com', '80000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '25, avenue Reille', 'NULL', '1 (11) 500 555-0133', '2012-03-20', '10+ Miles'], ['14187', '132', 'AW00014187', 'NULL', 'Eugene', 'N', 'Lu', '0', '1958-03-24', 'M', 'NULL', 'M', 'eugene15@adventure-works.com', '100000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Galeriestr 28', 'NULL', '1 (11) 500 555-0120', '2013-12-07', '2-5 Miles'], ['14188', '203', 'AW00014188', 'NULL', 'Meagan', 'I', 'Sanchez', '0', '1957-05-06', 'M', 'NULL', 'F', 'meagan18@adventure-works.com', '80000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '123, rue Mazagran', 'NULL', '1 (11) 500 555-0167', '2013-07-20', '10+ Miles'], ['14189', '128', 'AW00014189', 'NULL', 'Krista', 'E', 'Martin', '0', '1957-02-28', 'M', 'NULL', 'F', 'krista0@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Bundesallee 9511', 'NULL', '1 (11) 500 555-0160', '2011-08-17', '2-5 Miles'], ['14190', '159', 'AW00014190', 'NULL', 'Candace', 'D', 'Patel', '0', '1956-11-19', 'M', 'NULL', 'F', 'candace2@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', 'Kalkweg 4425', 'NULL', '1 (11) 500 555-0152', '2013-07-16', '2-5 Miles'], ['14191', '266', 'AW00014191', 'NULL', 'Derrick', 'NULL', 'Martin', '0', '1962-01-11', 'M', 'NULL', 'M', 'derrick0@adventure-works.com', '160000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '6772 Northstar Drive', 'NULL', '1 (11) 500 555-0134', '2011-04-11', '10+ Miles'], ['14192', '222', 'AW00014192', 'NULL', 'Ronald', 'NULL', 'Kapoor', '0', '1956-02-20', 'M', 'NULL', 'M', 'ronald3@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '14, boulevard Tremblay', 'NULL', '1 (11) 500 555-0125', '2012-03-21', '5-10 Miles'], ['14193', '129', 'AW00014193', 'NULL', 'Pamela', 'NULL', 'Vance', '0', '1956-01-31', 'S', 'NULL', 'F', 'pamela7@adventure-works.com', '100000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '4', 'Am Kreuz 409', 'NULL', '1 (11) 500 555-0151', '2013-05-23', '10+ Miles'], ['14194', '245', 'AW00014194', 'NULL', 'Cassie', 'R', 'Rai', '0', '1955-07-26', 'M', 'NULL', 'F', 'cassie16@adventure-works.com', '120000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '3', '3260 Marsh Meadow Way', 'NULL', '1 (11) 500 555-0114', '2013-03-13', '10+ Miles'], ['14195', '247', 'AW00014195', 'NULL', 'Clinton', 'J', 'Blanco', '0', '1955-11-01', 'S', 'NULL', 'M', 'clinton12@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '3', '4911 Leonard Ct.', 'NULL', '1 (11) 500 555-0116', '2011-04-22', '0-1 Miles'], ['14196', '273', 'AW00014196', 'NULL', 'Felicia', 'R', 'Dominguez', '0', '1956-04-02', 'M', 'NULL', 'F', 'felicia12@adventure-works.com', '160000.00', '3', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '3', '6566 Jamie Way', 'NULL', '1 (11) 500 555-0183', '2013-04-13', '10+ Miles'], ['14197', '156', 'AW00014197', 'NULL', 'Frank', 'C', 'Gill', '0', '1960-01-30', 'M', 'NULL', 'M', 'frank21@adventure-works.com', '100000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '4', 'Hans-Rosenthal-Platz 41', 'NULL', '1 (11) 500 555-0154', '2013-10-08', '5-10 Miles'], ['14198', '132', 'AW00014198', 'NULL', 'Daisy', 'M', 'Romero', '0', '1955-05-12', 'M', 'NULL', 'F', 'daisy5@adventure-works.com', '110000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', 'Alderweg 4948', 'NULL', '1 (11) 500 555-0115', '2011-08-15', '10+ Miles'], ['14199', '234', 'AW00014199', 'NULL', 'Samuel', 'D', 'Anderson', '0', '1954-12-30', 'M', 'NULL', 'M', 'samuel66@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '4303 Amanda Circle', 'NULL', '1 (11) 500 555-0161', '2013-06-03', '0-1 Miles'], ['14200', '215', 'AW00014200', 'NULL', 'Colleen', 'NULL', 'Goel', '0', '1954-04-06', 'M', 'NULL', 'F', 'colleen42@adventure-works.com', '70000.00', '5', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '4', '67, rue Pierre-Demoulin', 'NULL', '1 (11) 500 555-0123', '2012-03-09', '5-10 Miles'], ['14201', '201', 'AW00014201', 'NULL', 'Marie', 'C', 'Serrano', '0', '1953-10-08', 'M', 'NULL', 'F', 'marie40@adventure-works.com', '80000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '2181, rue Malar', 'NULL', '1 (11) 500 555-0144', '2013-11-14', '10+ Miles'], ['14202', '174', 'AW00014202', 'NULL', 'Clayton', 'NULL', 'Zeng', '0', '1954-01-16', 'S', 'NULL', 'M', 'clayton19@adventure-works.com', '90000.00', '4', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '4', 'Heideweg 6446', 'NULL', '1 (11) 500 555-0116', '2013-04-28', '10+ Miles'], ['14203', '220', 'AW00014203', 'NULL', 'Seth', 'NULL', 'Rodriguez', '0', '1952-11-10', 'S', 'NULL', 'M', 'seth19@adventure-works.com', '80000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '2', '7346, avenue de l´Europe', 'NULL', '1 (11) 500 555-0145', '2012-03-01', '10+ Miles'], ['14204', '205', 'AW00014204', 'NULL', 'Chelsea', 'S', 'Sara', '0', '1969-08-01', 'M', 'NULL', 'F', 'chelsea11@adventure-works.com', '80000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8735, rue Malar', 'NULL', '1 (11) 500 555-0115', '2013-01-28', '5-10 Miles'], ['14205', '218', 'AW00014205', 'NULL', 'Wesley', 'R', 'Wu', '0', '1952-10-20', 'S', 'NULL', 'M', 'wesley7@adventure-works.com', '90000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '84, avenue des Ternes', 'NULL', '1 (11) 500 555-0115', '2013-03-19', '10+ Miles'], ['14206', '133', 'AW00014206', 'NULL', 'Edwin', 'NULL', 'West', '0', '1953-01-02', 'M', 'NULL', 'M', 'edwin1@adventure-works.com', '100000.00', '4', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '1', 'Brunnenstr 876', 'NULL', '1 (11) 500 555-0158', '2014-01-09', '5-10 Miles'], ['14207', '134', 'AW00014207', 'Sr.', 'José', 'E', 'Saraiva', '0', '1953-03-20', 'M', 'NULL', 'M', 'josé5@adventure-works.com', '110000.00', '4', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '3', 'Roßstr 7752', 'NULL', '356-555-0100', '2011-09-28', '10+ Miles'], ['14208', '239', 'AW00014208', 'NULL', 'Eugene', 'A', 'Xu', '0', '1953-02-18', 'S', 'NULL', 'M', 'eugene16@adventure-works.com', '120000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '1773 Lafayette Street', 'NULL', '1 (11) 500 555-0154', '2013-02-05', '10+ Miles'], ['14209', '5', 'AW00014209', 'NULL', 'Craig', 'NULL', 'Ramos', '0', '1980-10-06', 'M', 'NULL', 'M', 'craig16@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '8932 Condor Place', 'NULL', '1 (11) 500 555-0196', '2013-02-21', '10+ Miles'], ['14210', '38', 'AW00014210', 'NULL', 'Jenny', 'E', 'Tang', '0', '1982-04-26', 'M', 'NULL', 'F', 'jenny27@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '8442 Euclid Avenue', 'NULL', '1 (11) 500 555-0147', '2012-08-12', '10+ Miles'], ['14211', '23', 'AW00014211', 'NULL', 'Emma', 'NULL', 'Bradley', '0', '1986-03-11', 'S', 'NULL', 'F', 'emma31@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '5677 William Reed Dr.', 'NULL', '1 (11) 500 555-0171', '2012-08-07', '10+ Miles'], ['14212', '3', 'AW00014212', 'NULL', 'Erick', 'W', 'Madan', '0', '1980-10-30', 'S', 'NULL', 'M', 'erick7@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '2938 Woodsworth Lane', 'NULL', '1 (11) 500 555-0145', '2013-05-11', '10+ Miles'], ['14213', '9', 'AW00014213', 'NULL', 'Autumn', 'A', 'Guo', '0', '1981-05-10', 'M', 'NULL', 'F', 'autumn17@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '701 Golf Club Road', 'NULL', '1 (11) 500 555-0169', '2013-05-06', '10+ Miles'], ['14214', '7', 'AW00014214', 'NULL', 'Robyn', 'NULL', 'Munoz', '0', '1980-12-23', 'S', 'NULL', 'F', 'robyn5@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '1640 Walter Way', 'NULL', '1 (11) 500 555-0167', '2012-08-14', '10+ Miles'], ['14215', '28', 'AW00014215', 'NULL', 'Stacey', 'NULL', 'Yang', '0', '1980-12-02', 'S', 'NULL', 'F', 'stacey5@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '8204 Everett Court', 'NULL', '1 (11) 500 555-0116', '2012-08-14', '10+ Miles'], ['14216', '37', 'AW00014216', 'NULL', 'Edwin', 'J', 'Zheng', '0', '1985-11-02', 'S', 'NULL', 'M', 'edwin20@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '1351 Boxer Blvd.', 'NULL', '1 (11) 500 555-0140', '2012-08-07', '10+ Miles'], ['14217', '2', 'AW00014217', 'NULL', 'Terrance', 'T', 'Lopez', '0', '1985-04-21', 'S', 'NULL', 'M', 'terrance14@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '2313 Pastel Drive', 'NULL', '1 (11) 500 555-0152', '2013-03-09', '10+ Miles'], ['14218', '39', 'AW00014218', 'NULL', 'Karl', 'J', 'Kumar', '0', '1985-02-04', 'S', 'NULL', 'M', 'karl8@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '6233 Serpentine', 'NULL', '1 (11) 500 555-0170', '2012-08-17', '10+ Miles'], ['14219', '12', 'AW00014219', 'NULL', 'Christy', 'NULL', 'Ye', '0', '1980-04-30', 'S', 'NULL', 'F', 'christy9@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '4760 Clayton Road', 'NULL', '1 (11) 500 555-0188', '2012-08-15', '10+ Miles'], ['14220', '5', 'AW00014220', 'NULL', 'Latasha', 'NULL', 'Romero', '0', '1985-07-16', 'M', 'NULL', 'F', 'latasha9@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '2', '3421 Gehringer Drive', 'NULL', '1 (11) 500 555-0152', '2012-08-11', '10+ Miles'], ['14221', '17', 'AW00014221', 'NULL', 'Glenn', 'C', 'Zhao', '0', '1977-10-03', 'S', 'NULL', 'M', 'glenn11@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '16 Heron Ct.', 'NULL', '1 (11) 500 555-0188', '2013-03-07', '10+ Miles'], ['14222', '3', 'AW00014222', 'NULL', 'Dawn', 'A', 'Zhang', '0', '1983-07-24', 'S', 'NULL', 'F', 'dawn1@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '9943 Stonehedge Dr.', 'NULL', '1 (11) 500 555-0194', '2013-08-18', '10+ Miles'], ['14223', '31', 'AW00014223', 'NULL', 'Larry', 'NULL', 'Rubio', '0', '1983-05-25', 'M', 'NULL', 'M', 'larry23@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '7268 Norcross Lane', 'NULL', '1 (11) 500 555-0181', '2013-06-04', '10+ Miles'], ['14224', '5', 'AW00014224', 'NULL', 'Tamara', 'M', 'She', '0', '1984-09-17', 'S', 'NULL', 'F', 'tamara12@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', '5002 Starflower Dr.', 'NULL', '1 (11) 500 555-0175', '2012-09-08', '10+ Miles'], ['14225', '24', 'AW00014225', 'NULL', 'Alisha', 'J', 'Chen', '0', '1977-11-24', 'M', 'NULL', 'F', 'alisha2@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '879 Hillview Ct', 'NULL', '1 (11) 500 555-0122', '2012-08-31', '10+ Miles'], ['14226', '6', 'AW00014226', 'NULL', 'Heidi', 'NULL', 'Mehta', '0', '1978-01-23', 'S', 'NULL', 'F', 'heidi16@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '3824 Whitehaven Dr', 'NULL', '1 (11) 500 555-0182', '2012-09-01', '10+ Miles'], ['14227', '9', 'AW00014227', 'NULL', 'Alison', 'NULL', 'Xu', '0', '1983-10-18', 'M', 'NULL', 'F', 'alison4@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '6629 Polson Circle', 'NULL', '1 (11) 500 555-0164', '2013-02-26', '10+ Miles'], ['14228', '35', 'AW00014228', 'NULL', 'Arturo', 'C', 'Raje', '0', '1977-02-17', 'S', 'NULL', 'M', 'arturo39@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '4123 Lakehurst Dr.', 'NULL', '1 (11) 500 555-0148', '2013-04-29', '10+ Miles'], ['14229', '34', 'AW00014229', 'NULL', 'Allen', 'B', 'Perez', '0', '1977-01-02', 'S', 'NULL', 'M', 'allen19@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '2008 Thors Bay Road', 'NULL', '1 (11) 500 555-0178', '2013-05-17', '10+ Miles'], ['14230', '27', 'AW00014230', 'NULL', 'Luis', 'L', 'Coleman', '0', '1977-01-07', 'S', 'NULL', 'M', 'luis4@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '7568 Precipice Court', 'NULL', '1 (11) 500 555-0133', '2012-09-05', '10+ Miles'], ['14231', '29', 'AW00014231', 'NULL', 'Kari', 'E', 'Sai', '0', '1978-02-02', 'M', 'NULL', 'F', 'kari7@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '9647 C Wharton Way', 'NULL', '1 (11) 500 555-0116', '2013-02-08', '10+ Miles'], ['14232', '26', 'AW00014232', 'NULL', 'Omar', 'C', 'Huang', '0', '1982-03-14', 'M', 'NULL', 'M', 'omar6@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '6214 Terranova Drive', 'NULL', '1 (11) 500 555-0198', '2013-03-30', '10+ Miles'], ['14233', '7', 'AW00014233', 'NULL', 'Ricardo', 'A', 'She', '0', '1976-12-24', 'S', 'NULL', 'M', 'ricardo0@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '3844 Lodge Drive', 'NULL', '1 (11) 500 555-0132', '2013-07-03', '10+ Miles'], ['14234', '30', 'AW00014234', 'NULL', 'Gina', 'NULL', 'Romero', '0', '1975-12-15', 'S', 'NULL', 'F', 'gina9@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '6058 Hill Street', 'NULL', '1 (11) 500 555-0151', '2012-08-29', '10+ Miles'], ['14235', '19', 'AW00014235', 'NULL', 'Larry', 'T', 'Alvarez', '0', '1981-05-17', 'M', 'NULL', 'M', 'larry6@adventure-works.com', '100000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '4', '5679 Atrice Lane', 'NULL', '1 (11) 500 555-0157', '2012-09-23', '10+ Miles'], ['14236', '35', 'AW00014236', 'NULL', 'Abigail', 'S', 'Richardson', '0', '1981-11-22', 'M', 'NULL', 'F', 'abigail14@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '5462 Patricia', 'NULL', '1 (11) 500 555-0149', '2012-09-21', '10+ Miles'], ['14237', '28', 'AW00014237', 'NULL', 'Kate', 'NULL', 'Andersen', '0', '1981-04-07', 'M', 'NULL', 'F', 'kate10@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '2190 Waterfall Way', 'NULL', '1 (11) 500 555-0125', '2013-04-07', '10+ Miles'], ['14238', '19', 'AW00014238', 'NULL', 'Jay', 'C', 'Gonzalez', '0', '1975-12-02', 'M', 'NULL', 'M', 'jay25@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '6743 Blue Ridge Dr.', 'NULL', '1 (11) 500 555-0116', '2012-09-13', '10+ Miles'], ['14239', '334', 'AW00014239', 'NULL', 'Maria', 'W', 'Peterson', '0', '1946-12-17', 'M', 'NULL', 'F', 'maria17@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3 Oaxaca', 'NULL', '113-555-0142', '2012-05-06', '10+ Miles'], ['14240', '623', 'AW00014240', 'NULL', 'Caroline', 'NULL', 'Foster', '0', '1946-12-16', 'M', 'NULL', 'F', 'caroline17@adventure-works.com', '80000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '4485 Laurel', 'NULL', '693-555-0161', '2012-05-26', '1-2 Miles'], ['14241', '312', 'AW00014241', 'NULL', 'Grace', 'NULL', 'Wood', '0', '1947-04-26', 'M', 'NULL', 'F', 'grace49@adventure-works.com', '110000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '4352 Acardia Pl.', 'NULL', '502-555-0171', '2013-07-31', '2-5 Miles'], ['14242', '611', 'AW00014242', 'NULL', 'Rafael', 'V', 'Ye', '0', '1947-11-30', 'M', 'NULL', 'M', 'rafael10@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9303 Court Street', 'NULL', '259-555-0150', '2012-06-12', '1-2 Miles'], ['14243', '546', 'AW00014243', 'NULL', 'Gregory', 'R', 'Winston', '0', '1953-03-31', 'S', 'NULL', 'F', 'gregory27@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '598 La Canada', 'NULL', '446-555-0154', '2013-04-06', '5-10 Miles'], ['14244', '53', 'AW00014244', 'NULL', 'Jennifer', 'B', 'Griffin', '0', '1958-09-04', 'M', 'NULL', 'F', 'jennifer94@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2059 Brookdale Dr', 'NULL', '210-555-0123', '2013-04-18', '5-10 Miles'], ['14245', '553', 'AW00014245', 'NULL', 'Ana', 'R', 'Russell', '0', '1948-05-01', 'M', 'NULL', 'F', 'ana18@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '244 Donegal Court', 'NULL', '607-555-0118', '2013-01-30', '5-10 Miles'], ['14246', '325', 'AW00014246', 'NULL', 'Devin', 'A', 'Garcia', '0', '1953-03-03', 'S', 'NULL', 'M', 'devin15@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5785 American Beauty Dr', 'NULL', '283-555-0179', '2013-03-02', '5-10 Miles'], ['14247', '641', 'AW00014247', 'NULL', 'Hunter', 'L', 'Allen', '0', '1947-08-27', 'M', 'NULL', 'M', 'hunter57@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9762 Alvecedo', 'NULL', '241-555-0129', '2014-01-10', '5-10 Miles'], ['14248', '298', 'AW00014248', 'NULL', 'Misty', 'A', 'Tang', '0', '1947-08-30', 'M', 'NULL', 'F', 'misty5@adventure-works.com', '100000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '2906 Hillcrest Ave.', 'NULL', '498-555-0141', '2013-09-24', '5-10 Miles'], ['14249', '343', 'AW00014249', 'NULL', 'Eduardo', 'J', 'Thomas', '0', '1947-07-09', 'M', 'NULL', 'M', 'eduardo9@adventure-works.com', '110000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8901 Fourth Street', 'NULL', '493-555-0188', '2013-05-30', '5-10 Miles'], ['14250', '311', 'AW00014250', 'NULL', 'Adam', 'A', 'Collins', '0', '1948-01-31', 'S', 'NULL', 'M', 'adam32@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '104 Hilltop Dr.', 'NULL', '502-555-0184', '2013-08-30', '0-1 Miles'], ['14251', '368', 'AW00014251', 'NULL', 'Alex', 'NULL', 'Brooks', '0', '1948-02-19', 'M', 'NULL', 'M', 'alex4@adventure-works.com', '170000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2050 B Avenue I', 'NULL', '488-555-0151', '2013-11-06', '5-10 Miles'], ['14252', '547', 'AW00014252', 'NULL', 'Destiny', 'G', 'Cook', '0', '1948-12-01', 'M', 'NULL', 'F', 'destiny28@adventure-works.com', '100000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '4616 Cordova Way', 'NULL', '647-555-0146', '2013-12-20', '1-2 Miles'], ['14253', '301', 'AW00014253', 'NULL', 'Eduardo', 'NULL', 'Scott', '0', '1949-04-18', 'S', 'NULL', 'M', 'eduardo29@adventure-works.com', '110000.00', '2', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5911 Del Vista Court', 'NULL', '523-555-0146', '2012-06-01', '5-10 Miles'], ['14254', '298', 'AW00014254', 'NULL', 'Tabitha', 'L', 'Gill', '0', '1949-02-28', 'M', 'NULL', 'F', 'tabitha34@adventure-works.com', '110000.00', '2', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '1006 Deercreek Ln', 'NULL', '836-555-0136', '2013-07-02', '5-10 Miles'], ['14255', '614', 'AW00014255', 'NULL', 'Jonathan', 'L', 'Jackson', '0', '1948-08-25', 'S', 'NULL', 'M', 'jonathan65@adventure-works.com', '110000.00', '2', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '769 Algiers Drive', 'NULL', '674-555-0110', '2012-06-09', '5-10 Miles'], ['14256', '626', 'AW00014256', 'NULL', 'Elizabeth', 'NULL', 'Robinson', '0', '1948-11-13', 'S', 'NULL', 'F', 'elizabeth22@adventure-works.com', '170000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '2507 Winterglenn Way', 'NULL', '314-555-0155', '2012-06-11', '0-1 Miles'], ['14257', '343', 'AW00014257', 'NULL', 'James', 'NULL', 'Carter', '0', '1948-07-31', 'M', 'NULL', 'M', 'james60@adventure-works.com', '170000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9293 Balhan Dr.', 'NULL', '311-555-0117', '2013-08-19', '0-1 Miles'], ['14258', '358', 'AW00014258', 'NULL', 'Haley', 'NULL', 'Foster', '0', '1950-01-15', 'S', 'NULL', 'F', 'haley35@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '128, avenue des Champs-Elysées', 'NULL', '479-555-0116', '2014-01-24', '10+ Miles'], ['14259', '36', 'AW00014259', 'NULL', 'Antonio', 'D', 'Flores', '0', '1958-08-31', 'S', 'NULL', 'M', 'antonio12@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3891 Garnet Lane', 'NULL', '1 (11) 500 555-0129', '2012-09-16', '5-10 Miles'], ['14260', '40', 'AW00014260', 'NULL', 'Frank', 'M', 'Ruiz', '0', '1959-06-09', 'S', 'NULL', 'M', 'frank32@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '330 Jamie Way', 'NULL', '1 (11) 500 555-0164', '2012-09-05', '5-10 Miles'], ['14261', '14', 'AW00014261', 'NULL', 'Meredith', 'S', 'Subram', '0', '1958-08-13', 'S', 'NULL', 'F', 'meredith12@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8995 Kirker Pass', 'NULL', '1 (11) 500 555-0118', '2012-09-09', '5-10 Miles'], ['14262', '13', 'AW00014262', 'NULL', 'Jon', 'L', 'He', '0', '1964-11-07', 'M', 'NULL', 'M', 'jon39@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3440 Concord Ct.', 'NULL', '1 (11) 500 555-0153', '2012-09-03', '1-2 Miles'], ['14263', '15', 'AW00014263', 'NULL', 'Nina', 'L', 'Lal', '0', '1959-08-24', 'S', 'NULL', 'F', 'nina9@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4753 Montanya Court', 'NULL', '1 (11) 500 555-0145', '2012-09-01', '5-10 Miles'], ['14264', '37', 'AW00014264', 'NULL', 'Karl', 'R', 'Lal', '0', '1959-08-08', 'S', 'NULL', 'M', 'karl9@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '960 Pansy Dr.', 'NULL', '1 (11) 500 555-0112', '2012-09-15', '1-2 Miles'], ['14265', '63', 'AW00014265', 'NULL', 'Garrett', 'J', 'Bell', '0', '1980-09-13', 'S', 'NULL', 'M', 'garrett18@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5602 Claycord Avenue', 'NULL', '394-555-0194', '2013-07-02', '5-10 Miles'], ['14266', '609', 'AW00014266', 'NULL', 'Cory', 'J', 'Patel', '0', '1980-11-23', 'M', 'NULL', 'M', 'cory1@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2075 Alvina Dr.', 'NULL', '498-555-0150', '2013-02-27', '5-10 Miles'], ['14267', '539', 'AW00014267', 'NULL', 'Lauren', 'I', 'Wood', '0', '1981-03-12', 'S', 'NULL', 'F', 'lauren49@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7511 Cooper Dr.', 'NULL', '381-555-0117', '2012-06-02', '1-2 Miles'], ['14268', '300', 'AW00014268', 'NULL', 'Isabella', 'NULL', 'Roberts', '0', '1986-02-13', 'S', 'NULL', 'F', 'isabella43@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6812 Farm Bureau Rd.', 'NULL', '100-555-0115', '2012-06-27', '5-10 Miles'], ['14269', '300', 'AW00014269', 'NULL', 'Tony', 'M', 'She', '0', '1981-05-18', 'M', 'NULL', 'M', 'tony3@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8716 San Remo Ct', 'NULL', '127-555-0152', '2013-09-23', '5-10 Miles'], ['14270', '331', 'AW00014270', 'NULL', 'James', 'F', 'Ross', '0', '1980-07-24', 'S', 'NULL', 'M', 'james19@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3099 Morello Court', 'NULL', '154-555-0163', '2012-06-21', '1-2 Miles'], ['14271', '641', 'AW00014271', 'NULL', 'Lucas', 'NULL', 'Wright', '0', '1979-08-31', 'M', 'NULL', 'M', 'lucas43@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '658 Cardinal Dr', 'NULL', '649-555-0138', '2013-03-08', '5-10 Miles'], ['14272', '633', 'AW00014272', 'NULL', 'Sydney', 'NULL', 'Ward', '0', '1979-08-31', 'S', 'NULL', 'F', 'sydney13@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8197 Haviland Place', 'NULL', '618-555-0128', '2012-06-08', '1-2 Miles'], ['14273', '361', 'AW00014273', 'NULL', 'Angel', 'NULL', 'Parker', '0', '1984-05-01', 'S', 'NULL', 'M', 'angel21@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6045 Holiday Hills Dr.', 'NULL', '815-555-0120', '2013-09-06', '1-2 Miles'], ['14274', '62', 'AW00014274', 'NULL', 'Edward', 'D', 'Williams', '0', '1982-01-06', 'M', 'NULL', 'M', 'edward24@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '460 Skyline Dr', 'NULL', '483-555-0139', '2013-04-28', '5-10 Miles'], ['14275', '29', 'AW00014275', 'NULL', 'Arthur', 'NULL', 'Prasad', '0', '1960-08-01', 'S', 'NULL', 'M', 'arthur11@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8150 Las Trampas', 'NULL', '1 (11) 500 555-0113', '2012-09-19', '5-10 Miles'], ['14276', '27', 'AW00014276', 'NULL', 'Melody', 'H', 'Suarez', '0', '1961-01-06', 'S', 'NULL', 'F', 'melody19@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3556 St. Geemain Lane', 'NULL', '1 (11) 500 555-0152', '2012-09-07', '5-10 Miles'], ['14277', '26', 'AW00014277', 'NULL', 'Jerry', 'C', 'She', '0', '1967-04-24', 'S', 'NULL', 'M', 'jerry0@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4920 Orange St', 'NULL', '1 (11) 500 555-0129', '2012-09-21', '1-2 Miles'], ['14278', '35', 'AW00014278', 'NULL', 'Olivia', 'J', 'Sanchez', '0', '1969-07-17', 'M', 'NULL', 'F', 'olivia25@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '8958 Las Palmas', 'NULL', '1 (11) 500 555-0191', '2013-07-19', '10+ Miles'], ['14279', '40', 'AW00014279', 'NULL', 'Taylor', 'NULL', 'Barnes', '0', '1969-07-31', 'M', 'NULL', 'F', 'taylor28@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9901 East Lake Court', 'NULL', '1 (11) 500 555-0147', '2012-09-06', '0-1 Miles'], ['14280', '611', 'AW00014280', 'NULL', 'Isaac', 'NULL', 'Oliver', '0', '1978-08-15', 'S', 'NULL', 'M', 'isaac31@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '402 Saxon St.', 'NULL', '978-555-0173', '2013-04-20', '2-5 Miles'], ['14281', '68', 'AW00014281', 'NULL', 'Daniel', 'K', 'Wilson', '0', '1979-01-03', 'S', 'NULL', 'M', 'daniel25@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '4609 Parkway Drive', 'NULL', '478-555-0188', '2013-05-08', '0-1 Miles'], ['14282', '55', 'AW00014282', 'NULL', 'Brianna', 'H', 'Lewis', '0', '1979-09-20', 'S', 'NULL', 'F', 'brianna20@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8837 Almond Avenue', 'NULL', '108-555-0114', '2013-03-07', '5-10 Miles'], ['14283', '542', 'AW00014283', 'NULL', 'Seth', 'E', 'Simmons', '0', '1985-10-04', 'S', 'NULL', 'M', 'seth63@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '4442 Carlos Dr.', 'NULL', '274-555-0175', '2012-06-21', '1-2 Miles'], ['14284', '638', 'AW00014284', 'NULL', 'Wyatt', 'M', 'Anderson', '0', '1979-12-15', 'S', 'NULL', 'M', 'wyatt10@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '1411 Ranch Drive', 'NULL', '276-555-0138', '2012-06-10', '1-2 Miles'], ['14285', '302', 'AW00014285', 'NULL', 'Taylor', 'J', 'Hughes', '0', '1985-11-30', 'S', 'NULL', 'F', 'taylor36@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '1398 Yorba Linda', 'NULL', '124-555-0194', '2012-05-30', '1-2 Miles'], ['14286', '10', 'AW00014286', 'NULL', 'Kristine', 'NULL', 'Hernandez', '0', '1964-10-09', 'M', 'NULL', 'F', 'kristine5@adventure-works.com', '120000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '6785 Union St.', 'NULL', '1 (11) 500 555-0140', '2012-09-26', '2-5 Miles'], ['14287', '13', 'AW00014287', 'NULL', 'Derek', 'NULL', 'Xie', '0', '1976-02-20', 'S', 'NULL', 'M', 'derek3@adventure-works.com', '150000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '5448 Contuti Avenue', 'NULL', '1 (11) 500 555-0162', '2012-09-09', '0-1 Miles'], ['14288', '316', 'AW00014288', 'NULL', 'Christina', 'M', 'Ramirez', '0', '1971-09-06', 'S', 'NULL', 'F', 'christina5@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '9112 Park Highlands', 'NULL', '628-555-0176', '2012-05-31', '0-1 Miles'], ['14289', '368', 'AW00014289', 'NULL', 'Jessica', 'NULL', 'Martinez', '0', '1972-02-19', 'S', 'NULL', 'F', 'jessica65@adventure-works.com', '150000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '8863 San Miguel Rd.', 'NULL', '901-555-0112', '2012-06-01', '0-1 Miles'], ['14290', '539', 'AW00014290', 'NULL', 'Jonathan', 'NULL', 'Wilson', '0', '1962-09-07', 'S', 'NULL', 'M', 'jonathan57@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8582 Condor Dr.', 'NULL', '862-555-0140', '2012-07-22', '5-10 Miles'], ['14291', '59', 'AW00014291', 'NULL', 'Tyler', 'NULL', 'White', '0', '1963-02-17', 'S', 'NULL', 'M', 'tyler1@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3626 N Ranchford Court', 'NULL', '276-555-0179', '2013-01-29', '1-2 Miles'], ['14292', '311', 'AW00014292', 'NULL', 'Isabella', 'NULL', 'Ross', '0', '1968-09-24', 'S', 'NULL', 'F', 'isabella15@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5805 Churchill Dr.', 'NULL', '111-555-0122', '2012-07-21', '5-10 Miles'], ['14293', '314', 'AW00014293', 'NULL', 'Kyle', 'S', 'Campbell', '0', '1962-08-15', 'M', 'NULL', 'M', 'kyle37@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '6300 Colfax Street', 'NULL', '372-555-0141', '2013-08-18', '5-10 Miles'], ['14294', '316', 'AW00014294', 'NULL', 'Steven', 'L', 'Gray', '0', '1963-05-22', 'M', 'NULL', 'M', 'steven16@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '4880 Viewpoint Ct.', 'NULL', '368-555-0133', '2013-04-25', '1-2 Miles'], ['14295', '383', 'AW00014295', 'NULL', 'Hannah', 'NULL', 'Thomas', '0', '1963-01-11', 'S', 'NULL', 'F', 'hannah10@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1737 Thomas Ave.', 'NULL', '514-555-0196', '2013-05-28', '5-10 Miles'], ['14296', '536', 'AW00014296', 'NULL', 'Benjamin', 'E', 'Russell', '0', '1962-11-14', 'M', 'NULL', 'M', 'benjamin21@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '9088 Almaden Dr', 'NULL', '810-555-0131', '2013-05-28', '1-2 Miles'], ['14297', '298', 'AW00014297', 'NULL', 'Kristin', 'NULL', 'Raji', '0', '1962-07-12', 'M', 'NULL', 'F', 'kristin18@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '782 Veale Avenue', 'NULL', '892-555-0121', '2012-07-16', '5-10 Miles'], ['14298', '338', 'AW00014298', 'NULL', 'Kaitlyn', 'R', 'Jenkins', '0', '1963-01-11', 'M', 'NULL', 'F', 'kaitlyn74@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '7496 Sunset Meadows', 'NULL', '955-555-0128', '2012-07-15', '5-10 Miles'], ['14299', '4', 'AW00014299', 'NULL', 'Jermaine', 'A', 'Chandra', '0', '1972-12-08', 'M', 'NULL', 'M', 'jermaine1@adventure-works.com', '90000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7741 Thunderbird Dr.', 'NULL', '1 (11) 500 555-0192', '2012-09-07', '0-1 Miles'], ['14300', '37', 'AW00014300', 'NULL', 'Colin', 'B', 'He', '0', '1972-07-31', 'S', 'NULL', 'M', 'colin19@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '3144 Via Rerrari', 'NULL', '1 (11) 500 555-0196', '2012-09-14', '1-2 Miles'], ['14301', '13', 'AW00014301', 'NULL', 'Ruben', 'B', 'Vazquez', '0', '1967-09-14', 'M', 'NULL', 'M', 'ruben38@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5678 Mcelroy Court', 'NULL', '1 (11) 500 555-0162', '2012-09-01', '5-10 Miles'], ['14302', '20', 'AW00014302', 'NULL', 'April', 'NULL', 'Beck', '0', '1968-01-12', 'S', 'NULL', 'F', 'april16@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2354 Caravelle Ct', 'NULL', '1 (11) 500 555-0144', '2012-08-28', '5-10 Miles'], ['14303', '13', 'AW00014303', 'NULL', 'Briana', 'J', 'Ramos', '0', '1967-12-18', 'M', 'NULL', 'F', 'briana14@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2944 Shuey Ave.', 'NULL', '1 (11) 500 555-0174', '2012-09-19', '0-1 Miles'], ['14304', '35', 'AW00014304', 'NULL', 'Jacquelyn', 'NULL', 'Jimenez', '0', '1973-02-11', 'M', 'NULL', 'F', 'jacquelyn5@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '8102 Birch Bark Road', 'NULL', '1 (11) 500 555-0122', '2012-09-26', '0-1 Miles'], ['14305', '4', 'AW00014305', 'NULL', 'Brendan', 'L', 'Shen', '0', '1968-01-08', 'M', 'NULL', 'M', 'brendan2@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '8396 Vista Way', 'NULL', '1 (11) 500 555-0162', '2012-09-19', '0-1 Miles'], ['14306', '31', 'AW00014306', 'NULL', 'Byron', 'NULL', 'Ramos', '0', '1966-11-05', 'M', 'NULL', 'M', 'byron11@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6046 Freya Way', 'NULL', '1 (11) 500 555-0192', '2012-09-04', '0-1 Miles'], ['14307', '3', 'AW00014307', 'NULL', 'Ross', 'E', 'Perez', '0', '1966-12-03', 'M', 'NULL', 'M', 'ross20@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2816 Hemlock Drive', 'NULL', '1 (11) 500 555-0198', '2013-02-19', '5-10 Miles'], ['14308', '5', 'AW00014308', 'NULL', 'Marie', 'A', 'Ramos', '0', '1983-02-20', 'S', 'NULL', 'F', 'marie41@adventure-works.com', '100000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5704 Laverne Avenue', 'NULL', '1 (11) 500 555-0126', '2012-09-14', '2-5 Miles'], ['14309', '30', 'AW00014309', 'NULL', 'Orlando', 'NULL', 'Sanz', '0', '1971-11-06', 'S', 'NULL', 'M', 'orlando20@adventure-works.com', '110000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '1306 Kaski Ln', 'NULL', '1 (11) 500 555-0181', '2013-02-25', '1-2 Miles'], ['14310', '14', 'AW00014310', 'NULL', 'Jon', 'O', 'Zeng', '0', '1977-07-18', 'S', 'NULL', 'M', 'jon42@adventure-works.com', '110000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '6327 Mount Olivet Ct.', 'NULL', '1 (11) 500 555-0166', '2012-09-17', '0-1 Miles'], ['14311', '18', 'AW00014311', 'NULL', 'Erik', 'M', 'Alvarez', '0', '1982-10-08', 'S', 'NULL', 'M', 'erik6@adventure-works.com', '110000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '2348 Polaris Dr.', 'NULL', '1 (11) 500 555-0110', '2013-03-06', '1-2 Miles'], ['14312', '21', 'AW00014312', 'NULL', 'Claudia', 'A', 'Lin', '0', '1966-04-25', 'M', 'NULL', 'F', 'claudia6@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3153 Glaze Ct', 'NULL', '1 (11) 500 555-0157', '2013-02-18', '5-10 Miles'], ['14313', '13', 'AW00014313', 'NULL', 'Christian', 'L', 'Smith', '0', '1966-04-13', 'M', 'NULL', 'M', 'christian30@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5248 Gladstone Drive', 'NULL', '1 (11) 500 555-0117', '2013-08-09', '5-10 Miles'], ['14314', '31', 'AW00014314', 'NULL', 'Katherine', 'R', 'Cooper', '0', '1970-07-16', 'M', 'NULL', 'F', 'katherine12@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '7728 Condor Place', 'NULL', '1 (11) 500 555-0174', '2013-06-20', '0-1 Miles'], ['14315', '27', 'AW00014315', 'NULL', 'Carl', 'NULL', 'Chander', '0', '1970-01-01', 'S', 'NULL', 'M', 'carl15@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4264 C Street', 'NULL', '1 (11) 500 555-0131', '2013-04-22', '5-10 Miles'], ['14316', '2', 'AW00014316', 'NULL', 'Leonard', 'NULL', 'Anand', '0', '1967-07-07', 'M', 'NULL', 'M', 'leonard24@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2786 Class Avenue', 'NULL', '1 (11) 500 555-0161', '2012-08-30', '0-1 Miles'], ['14317', '6', 'AW00014317', 'NULL', 'Steve', 'NULL', 'Liang', '0', '1968-02-19', 'S', 'NULL', 'M', 'steve19@adventure-works.com', '70000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '3787 Browse St', 'NULL', '1 (11) 500 555-0138', '2013-02-05', '5-10 Miles'], ['14318', '26', 'AW00014318', 'NULL', 'Seth', 'R', 'Rogers', '0', '1968-04-16', 'M', 'NULL', 'M', 'seth90@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1440 Azores Circle', 'NULL', '1 (11) 500 555-0139', '2013-03-11', '5-10 Miles'], ['14319', '40', 'AW00014319', 'NULL', 'Renee', 'L', 'Sanz', '0', '1968-06-23', 'M', 'NULL', 'F', 'renee18@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8838 Kirker Pass Road', 'NULL', '1 (11) 500 555-0165', '2013-07-01', '5-10 Miles'], ['14320', '30', 'AW00014320', 'NULL', 'Amy', 'NULL', 'Hu', '0', '1972-02-01', 'M', 'NULL', 'F', 'amy27@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '9362 Akyn Rock Drive', 'NULL', '1 (11) 500 555-0146', '2013-07-18', '5-10 Miles'], ['14321', '39', 'AW00014321', 'NULL', 'Jackson', 'NULL', 'Evans', '0', '1969-10-22', 'M', 'NULL', 'M', 'jackson30@adventure-works.com', '80000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '7078 Kenston Dr.', 'NULL', '1 (11) 500 555-0136', '2013-11-14', '1-2 Miles'], ['14322', '2', 'AW00014322', 'NULL', 'Sydney', 'NULL', 'Thomas', '0', '1964-01-07', 'S', 'NULL', 'F', 'sydney74@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '3242 Coralie Drive', 'NULL', '1 (11) 500 555-0177', '2012-08-31', '2-5 Miles'], ['14323', '14', 'AW00014323', 'NULL', 'Colin', 'NULL', 'Tang', '0', '1963-03-20', 'S', 'NULL', 'M', 'colin27@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '8783 Blocking Ct', 'NULL', '1 (11) 500 555-0138', '2012-09-13', '0-1 Miles'], ['14324', '38', 'AW00014324', 'NULL', 'Jessie', 'NULL', 'Alvarez', '0', '1962-09-07', 'S', 'NULL', 'F', 'jessie2@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9351 W Lake Drive', 'NULL', '1 (11) 500 555-0184', '2012-09-04', '5-10 Miles'], ['14325', '35', 'AW00014325', 'NULL', 'Crystal', 'L', 'Li', '0', '1963-01-02', 'S', 'NULL', 'F', 'crystal5@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9676 Hidden Lakes Court', 'NULL', '1 (11) 500 555-0135', '2012-09-24', '5-10 Miles'], ['14326', '27', 'AW00014326', 'NULL', 'Joe', 'A', 'Perez', '0', '1962-09-30', 'S', 'NULL', 'M', 'joe23@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8703 Carleton Street', 'NULL', '1 (11) 500 555-0189', '2012-09-04', '5-10 Miles'], ['14327', '315', 'AW00014327', 'NULL', 'Kyle', 'B', 'Butler', '0', '1981-08-18', 'S', 'NULL', 'M', 'kyle9@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4844 Spring Water St', 'NULL', '781-555-0134', '2013-11-18', '0-1 Miles'], ['14328', '64', 'AW00014328', 'NULL', 'Andrea', 'L', 'Rogers', '0', '1982-02-05', 'S', 'NULL', 'F', 'andrea19@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9669 Cynthia Dr.', 'NULL', '830-555-0152', '2013-02-22', '0-1 Miles'], ['14329', '301', 'AW00014329', 'NULL', 'Holly', 'NULL', 'Sanchez', '0', '1981-07-19', 'S', 'NULL', 'F', 'holly18@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2157 Clark Creek Lane', 'NULL', '617-555-0150', '2013-01-28', '0-1 Miles'], ['14330', '66', 'AW00014330', 'NULL', 'Matthew', 'NULL', 'Harris', '0', '1982-04-04', 'M', 'NULL', 'M', 'matthew19@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7554 Lakeview Pl.', 'NULL', '192-555-0119', '2013-05-14', '5-10 Miles'], ['14331', '545', 'AW00014331', 'NULL', 'Timothy', 'NULL', 'Murphy', '0', '1985-08-23', 'S', 'NULL', 'M', 'timothy16@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7541 B Wildbrook Ct.', 'NULL', '919-555-0148', '2013-09-23', '5-10 Miles'], ['14332', '54', 'AW00014332', 'NULL', 'Jade', 'I', 'Rogers', '0', '1985-10-19', 'S', 'NULL', 'F', 'jade15@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5010 C Mt. Hood Circle', 'NULL', '974-555-0128', '2013-06-06', '5-10 Miles'], ['14333', '611', 'AW00014333', 'NULL', 'Bobby', 'L', 'Suri', '0', '1985-10-02', 'S', 'NULL', 'M', 'bobby2@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2312 Richard Ave.', 'NULL', '312-555-0136', '2013-11-27', '5-10 Miles'], ['14334', '644', 'AW00014334', 'NULL', 'Patrick', 'M', 'Murphy', '0', '1986-01-22', 'M', 'NULL', 'M', 'patrick20@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '746 Whiteaben Drive', 'NULL', '276-555-0144', '2012-07-24', '0-1 Miles'], ['14335', '644', 'AW00014335', 'NULL', 'Allison', 'L', 'Cox', '0', '1984-03-12', 'M', 'NULL', 'F', 'allison9@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5896 Northpoint Ct', 'NULL', '774-555-0160', '2012-06-30', '5-10 Miles'], ['14336', '536', 'AW00014336', 'NULL', 'Gabriel', 'NULL', 'Baker', '0', '1984-02-04', 'M', 'NULL', 'M', 'gabriel38@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4983 Hilltop Road', 'NULL', '952-555-0197', '2012-07-06', '5-10 Miles'], ['14337', '546', 'AW00014337', 'NULL', 'Olivia', 'NULL', 'Coleman', '0', '1983-08-29', 'S', 'NULL', 'F', 'olivia51@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5759 Benton Street', 'NULL', '113-555-0111', '2012-08-03', '0-1 Miles'], ['14338', '49', 'AW00014338', 'NULL', 'Natalie', 'M', 'Taylor', '0', '1983-11-22', 'M', 'NULL', 'F', 'natalie76@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5033 N. 8th St.', 'NULL', '932-555-0165', '2013-05-17', '0-1 Miles'], ['14339', '298', 'AW00014339', 'NULL', 'Brandy', 'NULL', 'Suri', '0', '1983-06-01', 'S', 'NULL', 'F', 'brandy18@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2082 S. Bascom Ave.', 'NULL', '121-555-0111', '2013-02-12', '0-1 Miles'], ['14340', '548', 'AW00014340', 'NULL', 'Miranda', 'D', 'Butler', '0', '1982-09-29', 'S', 'NULL', 'F', 'miranda14@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4554 Bates Court', 'NULL', '414-555-0179', '2014-01-05', '5-10 Miles'], ['14341', '52', 'AW00014341', 'NULL', 'Sean', 'NULL', 'Sanders', '0', '1985-04-21', 'M', 'NULL', 'M', 'sean10@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9306 Cleveland Road', 'NULL', '514-555-0114', '2013-07-10', '0-1 Miles'], ['14342', '607', 'AW00014342', 'NULL', 'Beth', 'L', 'Ruiz', '0', '1984-09-22', 'S', 'NULL', 'F', 'beth4@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '835 Magic Dr.', 'NULL', '190-555-0177', '2012-07-31', '0-1 Miles'], ['14343', '539', 'AW00014343', 'NULL', 'Xavier', 'NULL', 'Turner', '0', '1985-01-20', 'M', 'NULL', 'M', 'xavier37@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5484 Viking Dr', 'NULL', '155-555-0151', '2012-08-18', '5-10 Miles'], ['14344', '23', 'AW00014344', 'NULL', 'Kurt', 'A', 'Xie', '0', '1945-03-20', 'S', 'NULL', 'M', 'kurt2@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7614 Heron Ct', 'NULL', '1 (11) 500 555-0137', '2013-04-19', '5-10 Miles'], ['14345', '32', 'AW00014345', 'NULL', 'Kristi', 'NULL', 'Rodriguez', '0', '1945-08-08', 'M', 'NULL', 'F', 'kristi37@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '9519 Mountain View Drive', 'NULL', '1 (11) 500 555-0195', '2012-08-30', '0-1 Miles'], ['14346', '4', 'AW00014346', 'NULL', 'Evelyn', 'NULL', 'Perez', '0', '1946-11-29', 'S', 'NULL', 'F', 'evelyn21@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1297 Zulu Court', 'NULL', '1 (11) 500 555-0114', '2012-09-26', '5-10 Miles'], ['14347', '7', 'AW00014347', 'NULL', 'Tara', 'I', 'Goel', '0', '1946-11-14', 'S', 'NULL', 'F', 'tara20@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5634 Blue Ridge Drive', 'NULL', '1 (11) 500 555-0113', '2012-09-22', '5-10 Miles'], ['14348', '13', 'AW00014348', 'NULL', 'Alex', 'T', 'Scott', '0', '1948-05-15', 'M', 'NULL', 'M', 'alex44@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '105 Clark Creek Lane', 'NULL', '1 (11) 500 555-0184', '2012-09-04', '5-10 Miles'], ['14349', '546', 'AW00014349', 'NULL', 'Nicole', 'NULL', 'Griffin', '0', '1981-11-08', 'M', 'NULL', 'F', 'nicole70@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6111 Guadalajara', 'NULL', '381-555-0139', '2013-09-11', '5-10 Miles'], ['14350', '547', 'AW00014350', 'NULL', 'Emily', 'W', 'Moore', '0', '1981-12-06', 'S', 'NULL', 'F', 'emily8@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '104 Kaski Ln.', 'NULL', '355-555-0139', '2013-09-18', '1-2 Miles'], ['14351', '299', 'AW00014351', 'NULL', 'Riley', 'NULL', 'Gray', '0', '1981-08-01', 'S', 'NULL', 'F', 'riley25@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7906 Star Tree Court', 'NULL', '399-555-0190', '2013-03-20', '5-10 Miles'], ['14352', '626', 'AW00014352', 'NULL', 'Melissa', 'NULL', 'Butler', '0', '1986-03-14', 'S', 'NULL', 'F', 'melissa9@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '206 Greenview Court', 'NULL', '990-555-0186', '2013-07-10', '1-2 Miles'], ['14353', '68', 'AW00014353', 'NULL', 'Erin', 'I', 'Reed', '0', '1980-12-12', 'S', 'NULL', 'F', 'erin24@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3866 Mt. Everest Court', 'NULL', '791-555-0118', '2013-03-16', '1-2 Miles'], ['14354', '358', 'AW00014354', 'NULL', 'Seth', 'NULL', 'Green', '0', '1980-01-25', 'S', 'NULL', 'M', 'seth32@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '8206 H Street', 'NULL', '153-555-0188', '2012-08-24', '1-2 Miles'], ['14355', '543', 'AW00014355', 'NULL', 'Ian', 'NULL', 'King', '0', '1979-05-11', 'M', 'NULL', 'M', 'ian25@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9199 Park Glenn', 'NULL', '988-555-0130', '2012-08-14', '5-10 Miles'], ['14356', '361', 'AW00014356', 'NULL', 'Isabella', 'A', 'Baker', '0', '1978-07-15', 'S', 'NULL', 'F', 'isabella47@adventure-works.com', '100000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8473 Larkwood Ct.', 'NULL', '343-555-0155', '2012-08-23', '1-2 Miles'], ['14357', '368', 'AW00014357', 'NULL', 'Dalton', 'M', 'Collins', '0', '1973-01-09', 'M', 'NULL', 'M', 'dalton45@adventure-works.com', '100000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7538 Sherry Circle', 'NULL', '342-555-0162', '2012-08-26', '1-2 Miles'], ['14358', '623', 'AW00014358', 'NULL', 'Amanda', 'A', 'Watson', '0', '1973-06-20', 'M', 'NULL', 'F', 'amanda18@adventure-works.com', '100000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2097 Bluetail', 'NULL', '132-555-0148', '2013-07-29', '0-1 Miles'], ['14359', '53', 'AW00014359', 'NULL', 'Eduardo', 'R', 'Henderson', '0', '1974-05-02', 'M', 'NULL', 'M', 'eduardo49@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '9754 Olivera', 'NULL', '911-555-0117', '2013-02-10', '0-1 Miles'], ['14360', '339', 'AW00014360', 'NULL', 'Samantha', 'NULL', 'Patterson', '0', '1964-10-14', 'S', 'NULL', 'F', 'samantha36@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9937 Las Lomas Way', 'NULL', '722-555-0149', '2013-10-24', '1-2 Miles'], ['14361', '611', 'AW00014361', 'NULL', 'Franklin', 'D', 'Raje', '0', '1964-07-23', 'M', 'NULL', 'M', 'franklin31@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8454 Mount Circle', 'NULL', '136-555-0165', '2014-01-06', '1-2 Miles'], ['14362', '536', 'AW00014362', 'NULL', 'Roberto', 'W', 'Gill', '0', '1977-10-31', 'S', 'NULL', 'M', 'roberto14@adventure-works.com', '40000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6720 Primrose Dr.', 'NULL', '874-555-0130', '2012-08-12', '1-2 Miles'], ['14363', '70', 'AW00014363', 'NULL', 'Natalie', 'NULL', 'Long', '0', '1979-03-04', 'S', 'NULL', 'F', 'natalie32@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7355 San Benito', 'NULL', '467-555-0158', '2013-04-29', '0-1 Miles'], ['14364', '299', 'AW00014364', 'NULL', 'Mario', 'H', 'Rai', '0', '1978-09-06', 'M', 'NULL', 'M', 'mario16@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4420 Tuolumne St.', 'NULL', '404-555-0132', '2012-08-13', '0-1 Miles'], ['14365', '337', 'AW00014365', 'NULL', 'Evan', 'S', 'Ward', '0', '1978-11-16', 'M', 'NULL', 'M', 'evan13@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '7098 Walnut Blvd.', 'NULL', '584-555-0170', '2012-07-31', '0-1 Miles'], ['14366', '627', 'AW00014366', 'NULL', 'Anna', 'S', 'Brooks', '0', '1976-07-21', 'S', 'NULL', 'F', 'anna23@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9745 Bonita Ct.', 'NULL', '316-555-0152', '2012-09-15', '0-1 Miles'], ['14367', '545', 'AW00014367', 'NULL', 'Courtney', 'M', 'Green', '0', '1982-02-25', 'S', 'NULL', 'F', 'courtney11@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7446 The Alameda', 'NULL', '811-555-0123', '2012-09-03', '0-1 Miles'], ['14368', '311', 'AW00014368', 'NULL', 'Richard', 'NULL', 'Thompson', '0', '1976-09-11', 'M', 'NULL', 'M', 'richard9@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9715 San Francisco', 'NULL', '286-555-0164', '2014-01-14', '1-2 Miles'], ['14369', '546', 'AW00014369', 'NULL', 'Devin', 'J', 'Sanchez', '0', '1977-02-16', 'M', 'NULL', 'M', 'devin83@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7747 Relis Valley Road', 'NULL', '650-555-0181', '2013-07-06', '1-2 Miles'], ['14370', '43', 'AW00014370', 'NULL', 'Meghan', 'NULL', 'Dominguez', '0', '1983-09-06', 'M', 'NULL', 'F', 'meghan12@adventure-works.com', '40000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3610 Seal Way', 'NULL', '753-555-0119', '2013-07-13', '1-2 Miles'], ['14371', '66', 'AW00014371', 'NULL', 'Jeremiah', 'NULL', 'Lewis', '0', '1977-12-06', 'M', 'NULL', 'M', 'jeremiah9@adventure-works.com', '40000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2527 Mohawk Drive', 'NULL', '163-555-0125', '2013-03-15', '1-2 Miles'], ['14372', '632', 'AW00014372', 'NULL', 'Kaitlyn', 'L', 'Washington', '0', '1978-01-08', 'M', 'NULL', 'F', 'kaitlyn80@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7964 Gentrytown Drive', 'NULL', '145-555-0131', '2013-06-11', '2-5 Miles'], ['14373', '302', 'AW00014373', 'NULL', 'Ricardo', 'NULL', 'Jai', '0', '1983-06-11', 'M', 'NULL', 'M', 'ricardo11@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9020 Starflower Dr.', 'NULL', '586-555-0115', '2013-06-21', '2-5 Miles'], ['14374', '343', 'AW00014374', 'NULL', 'David', 'NULL', 'Yang', '0', '1983-09-15', 'M', 'NULL', 'M', 'david59@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9083 Eastgate Avenue', 'NULL', '480-555-0131', '2012-09-27', '0-1 Miles'], ['14375', '644', 'AW00014375', 'NULL', 'Alexandra', 'NULL', 'Moore', '0', '1981-05-08', 'M', 'NULL', 'F', 'alexandra71@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8191 Scenic Ct.', 'NULL', '115-555-0117', '2013-07-02', '0-1 Miles'], ['14376', '616', 'AW00014376', 'NULL', 'Faith', 'A', 'Torres', '0', '1949-10-17', 'S', 'NULL', 'F', 'faith25@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1697 Charlotte Court', 'NULL', '540-555-0194', '2013-07-30', '10+ Miles'], ['14377', '609', 'AW00014377', 'NULL', 'Paula', 'D', 'Ruiz', '0', '1949-12-07', 'S', 'NULL', 'F', 'paula4@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3603 Stinson', 'NULL', '638-555-0164', '2012-09-12', '1-2 Miles'], ['14378', '302', 'AW00014378', 'NULL', 'Cory', 'A', 'Mehta', '0', '1955-08-29', 'S', 'NULL', 'M', 'cory12@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7907 Eagle Peak Road', 'NULL', '598-555-0147', '2012-09-17', '10+ Miles'], ['14379', '322', 'AW00014379', 'NULL', 'Richard', 'C', 'Foster', '0', '1949-08-21', 'M', 'NULL', 'M', 'richard71@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5592 Byers Rd.', 'NULL', '932-555-0117', '2012-09-20', '10+ Miles'], ['14380', '543', 'AW00014380', 'NULL', 'Kaylee', 'K', 'Watson', '0', '1950-01-08', 'M', 'NULL', 'F', 'kaylee6@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1752 Amaryllis Drive', 'NULL', '120-555-0165', '2012-09-18', '1-2 Miles'], ['14381', '539', 'AW00014381', 'NULL', 'Alexa', 'NULL', 'Cooper', '0', '1961-06-17', 'S', 'NULL', 'F', 'alexa16@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2697 Mt. Everest Ct.', 'NULL', '493-555-0133', '2012-09-02', '10+ Miles'], ['14382', '299', 'AW00014382', 'NULL', 'Darren', 'NULL', 'Blanco', '0', '1955-11-03', 'S', 'NULL', 'M', 'darren38@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3457 Hitchcock', 'NULL', '126-555-0199', '2012-09-02', '10+ Miles'], ['14383', '311', 'AW00014383', 'NULL', 'Marvin', 'L', 'Ferrier', '0', '1950-11-18', 'M', 'NULL', 'M', 'marvin9@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2942 Berkhire Court', 'NULL', '474-555-0172', '2013-08-11', '2-5 Miles'], ['14384', '638', 'AW00014384', 'NULL', 'Rachel', 'F', 'Miller', '0', '1950-11-19', 'M', 'NULL', 'F', 'rachel8@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7335 Imperial Dr.', 'NULL', '903-555-0193', '2013-10-06', '2-5 Miles'], ['14385', '543', 'AW00014385', 'NULL', 'Maria', 'NULL', 'Hall', '0', '1956-10-16', 'M', 'NULL', 'F', 'maria64@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '851 Solano Drive', 'NULL', '722-555-0190', '2012-10-18', '10+ Miles'], ['14386', '325', 'AW00014386', 'NULL', 'Marissa', 'NULL', 'Wood', '0', '1952-01-17', 'S', 'NULL', 'F', 'marissa0@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '4430 Alexander Pl', 'NULL', '538-555-0190', '2012-10-10', '10+ Miles'], ['14387', '52', 'AW00014387', 'NULL', 'Brittany', 'NULL', 'Hughes', '0', '1952-05-31', 'M', 'NULL', 'F', 'brittany10@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '1651 Geranium Court', 'NULL', '517-555-0198', '2013-05-02', '10+ Miles'], ['14388', '343', 'AW00014388', 'NULL', 'Kaylee', 'NULL', 'Rogers', '0', '1952-01-12', 'M', 'NULL', 'F', 'kaylee16@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '953 Trafalgar Circle', 'NULL', '461-555-0130', '2013-05-28', '1-2 Miles'], ['14389', '315', 'AW00014389', 'NULL', 'Ryan', 'NULL', 'Harris', '0', '1953-01-29', 'M', 'NULL', 'M', 'ryan36@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '4654 Marina View Pkwy.', 'NULL', '871-555-0199', '2013-10-30', '2-5 Miles'], ['14390', '369', 'AW00014390', 'NULL', 'Logan', 'NULL', 'Kumar', '0', '1953-05-21', 'M', 'NULL', 'M', 'logan1@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '0', '6719 Santa Teresa Dr', '# 1117', '673-555-0165', '2013-11-03', '2-5 Miles'], ['14391', '638', 'AW00014391', 'NULL', 'Jason', 'NULL', 'Long', '0', '1952-09-04', 'M', 'NULL', 'M', 'jason7@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '2713 Chinquapin Court', 'NULL', '931-555-0160', '2013-09-24', '1-2 Miles'], ['14392', '648', 'AW00014392', 'NULL', 'Justin', 'T', 'Jackson', '0', '1953-02-20', 'M', 'NULL', 'M', 'justin31@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '1906 Twinview Place', 'NULL', '819-555-0172', '2012-10-08', '10+ Miles'], ['14393', '539', 'AW00014393', 'NULL', 'José', 'J', 'Perez', '0', '1958-10-01', 'S', 'NULL', 'M', 'josé41@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '1950 Crown Court', 'NULL', '346-555-0180', '2013-09-29', '10+ Miles'], ['14394', '609', 'AW00014394', 'NULL', 'Jacob', 'NULL', 'Rodriguez', '0', '1958-10-03', 'M', 'NULL', 'M', 'jacob16@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '1873 Lyon Circle', 'NULL', '815-555-0188', '2012-10-19', '10+ Miles'], ['14395', '326', 'AW00014395', 'NULL', 'Devin', 'J', 'Reed', '0', '1963-09-16', 'S', 'NULL', 'M', 'devin85@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '4851 Flora Ave.', 'NULL', '871-555-0116', '2013-10-17', '10+ Miles'], ['14396', '631', 'AW00014396', 'NULL', 'Zoe', 'S', 'Sanchez', '0', '1953-10-15', 'S', 'NULL', 'F', 'zoe22@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '792 Rahn Court', 'NULL', '137-555-0150', '2013-07-17', '10+ Miles'], ['14397', '632', 'AW00014397', 'NULL', 'Sierra', 'NULL', 'Edwards', '0', '1953-09-21', 'S', 'NULL', 'F', 'sierra1@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '8768 Valley Ave', 'NULL', '267-555-0113', '2014-01-25', '10+ Miles'], ['14398', '641', 'AW00014398', 'NULL', 'James', 'NULL', 'Anderson', '0', '1954-03-10', 'M', 'NULL', 'M', 'james82@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6267 Concord Royale', 'NULL', '149-555-0142', '2012-10-12', '10+ Miles'], ['14399', '359', 'AW00014399', 'NULL', 'Jeremy', 'L', 'Peterson', '0', '1959-05-03', 'S', 'NULL', 'M', 'jeremy35@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '1035 Arguello Blvd.', 'NULL', '270-555-0144', '2013-04-12', '10+ Miles'], ['14400', '360', 'AW00014400', 'NULL', 'Brandon', 'E', 'Brown', '0', '1954-04-21', 'S', 'NULL', 'M', 'brandon42@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6536 Diver Way', 'NULL', '187-555-0120', '2012-10-02', '10+ Miles'], ['14401', '548', 'AW00014401', 'NULL', 'Jose', 'P', 'Kumar', '0', '1954-09-06', 'M', 'NULL', 'M', 'jose22@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '9896 White Dr', 'NULL', '121-555-0117', '2013-05-22', '2-5 Miles'], ['14402', '642', 'AW00014402', 'NULL', 'Hailey', 'J', 'Parker', '0', '1954-11-18', 'S', 'NULL', 'F', 'hailey50@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8739 Twinview Drive', 'NULL', '213-555-0169', '2013-12-31', '10+ Miles'], ['14403', '298', 'AW00014403', 'NULL', 'Angelica', 'NULL', 'Russell', '0', '1954-09-16', 'S', 'NULL', 'F', 'angelica19@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8117 Golden Leaf Way', 'NULL', '785-555-0130', '2013-12-13', '10+ Miles'], ['14404', '607', 'AW00014404', 'NULL', 'Rachel', 'T', 'Davis', '0', '1956-03-26', 'S', 'NULL', 'F', 'rachel7@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4385 Claudia Dr.', 'NULL', '173-555-0185', '2013-02-22', '2-5 Miles'], ['14405', '609', 'AW00014405', 'NULL', 'Dylan', 'S', 'Walker', '0', '1955-11-29', 'M', 'NULL', 'M', 'dylan53@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9698 N Lucile Lane', 'NULL', '771-555-0123', '2013-09-21', '2-5 Miles'], ['14406', '299', 'AW00014406', 'NULL', 'Carrie', 'M', 'Schmidt', '0', '1961-08-11', 'M', 'NULL', 'F', 'carrie17@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '5616 Bayside Way', 'NULL', '244-555-0136', '2012-10-06', '2-5 Miles'], ['14407', '312', 'AW00014407', 'NULL', 'Thomas', 'NULL', 'Bryant', '0', '1955-12-02', 'M', 'NULL', 'M', 'thomas20@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7402 Oakgrove Rd', 'NULL', '603-555-0167', '2014-01-03', '2-5 Miles'], ['14408', '343', 'AW00014408', 'NULL', 'Jasmine', 'C', 'Cook', '0', '1956-02-11', 'S', 'NULL', 'F', 'jasmine25@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '4305 Madrid', 'NULL', '702-555-0161', '2013-12-06', '10+ Miles'], ['14409', '343', 'AW00014409', 'NULL', 'Eric', 'NULL', 'Wang', '0', '1961-04-22', 'M', 'NULL', 'M', 'eric32@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '5363 Willow Pass Dr', 'NULL', '508-555-0172', '2013-07-01', '1-2 Miles'], ['14410', '345', 'AW00014410', 'NULL', 'Arianna', 'NULL', 'Brooks', '0', '1955-12-24', 'M', 'NULL', 'F', 'arianna22@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7934 C Street', 'NULL', '718-555-0172', '2013-11-26', '1-2 Miles'], ['14411', '542', 'AW00014411', 'NULL', 'Ashley', 'S', 'Johnson', '0', '1956-08-03', 'S', 'NULL', 'F', 'ashley1@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3236 Wibur Ave.', 'NULL', '189-555-0116', '2012-10-03', '10+ Miles'], ['14412', '543', 'AW00014412', 'NULL', 'Nicole', 'J', 'Blue', '0', '1956-09-30', 'S', 'NULL', 'F', 'nicole51@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4305 Amanda Circle', 'NULL', '835-555-0114', '2012-10-27', '10+ Miles'], ['14413', '307', 'AW00014413', 'NULL', 'Rachel', 'K', 'Patterson', '0', '1956-08-14', 'M', 'NULL', 'F', 'rachel58@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6187 Barquentine Court', 'NULL', '220-555-0196', '2012-10-22', '2-5 Miles'], ['14414', '312', 'AW00014414', 'NULL', 'Rachel', 'NULL', 'Wilson', '0', '1957-03-13', 'M', 'NULL', 'F', 'rachel9@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '8577 Shakespeare Dr.', 'NULL', '230-555-0193', '2012-10-14', '2-5 Miles'], ['14415', '337', 'AW00014415', 'NULL', 'William', 'C', 'Davis', '0', '1962-11-12', 'M', 'NULL', 'M', 'william21@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2477 Everett Court', 'NULL', '470-555-0162', '2012-10-14', '2-5 Miles'], ['14416', '59', 'AW00014416', 'NULL', 'Madison', 'NULL', 'Flores', '0', '1957-10-26', 'M', 'NULL', 'F', 'madison48@adventure-works.com', '60000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2547 Boxer Blvd.', 'NULL', '848-555-0191', '2013-05-20', '10+ Miles'], ['14417', '609', 'AW00014417', 'NULL', 'Ernest', 'H', 'Lu', '0', '1957-08-04', 'S', 'NULL', 'M', 'ernest11@adventure-works.com', '60000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4211 Las Lomas Way', 'NULL', '153-555-0154', '2012-10-02', '10+ Miles'], ['14418', '542', 'AW00014418', 'NULL', 'Rebecca', 'W', 'Young', '0', '1963-04-23', 'M', 'NULL', 'F', 'rebecca25@adventure-works.com', '60000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '9088 Creed Ave', 'NULL', '220-555-0124', '2012-10-01', '10+ Miles'], ['14419', '546', 'AW00014419', 'NULL', 'Abigail', 'J', 'Ward', '0', '1957-11-10', 'M', 'NULL', 'F', 'abigail17@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9440 Oakshire Place', 'NULL', '546-555-0116', '2012-11-12', '10+ Miles'], ['14420', '626', 'AW00014420', 'NULL', 'Chloe', 'NULL', 'Wright', '0', '1974-08-12', 'S', 'NULL', 'F', 'chloe18@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5394 Baywood Drive', 'NULL', '622-555-0121', '2012-11-26', '10+ Miles'], ['14421', '553', 'AW00014421', 'NULL', 'Hannah', 'W', 'Barnes', '0', '1958-01-25', 'M', 'NULL', 'F', 'hannah26@adventure-works.com', '70000.00', '5', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8200 Valley Manor', 'NULL', '883-555-0157', '2012-11-05', '2-5 Miles'], ['14422', '177', 'AW00014422', 'NULL', 'Cara', 'NULL', 'Lu', '0', '1969-11-02', 'S', 'NULL', 'F', 'cara7@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', 'Räuscherweg 124', 'NULL', '1 (11) 500 555-0154', '2013-04-06', '0-1 Miles'], ['14423', '236', 'AW00014423', 'NULL', 'Jill', 'P', 'Ruiz', '0', '1963-12-18', 'M', 'NULL', 'F', 'jill9@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '8102 Contuti Avenue', 'NULL', '1 (11) 500 555-0168', '2013-04-04', '0-1 Miles'], ['14424', '213', 'AW00014424', 'NULL', 'Stefanie', 'NULL', 'Raman', '0', '1974-01-01', 'S', 'NULL', 'F', 'stefanie9@adventure-works.com', '110000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '21, avenue des Ternes', 'NULL', '1 (11) 500 555-0111', '2012-03-04', '5-10 Miles'], ['14425', '129', 'AW00014425', 'NULL', 'Victor', 'NULL', 'Carlson', '0', '1974-02-11', 'M', 'NULL', 'M', 'victor18@adventure-works.com', '120000.00', '2', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Celler Weg 40', 'NULL', '1 (11) 500 555-0132', '2011-09-15', '5-10 Miles'], ['14426', '117', 'AW00014426', 'NULL', 'Madison', 'J', 'Hughes', '0', '1968-08-19', 'M', 'NULL', 'F', 'madison47@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Herzogstr 3998', 'NULL', '1 (11) 500 555-0160', '2011-09-21', '0-1 Miles'], ['14427', '251', 'AW00014427', 'NULL', 'Emmanuel', 'NULL', 'Patel', '0', '1961-11-05', 'M', 'NULL', 'M', 'emmanuel3@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '3410 Meadowbrook Dr.', 'NULL', '1 (11) 500 555-0134', '2011-04-06', '5-10 Miles'], ['14428', '173', 'AW00014428', 'NULL', 'Cassie', 'NULL', 'Andersen', '0', '1961-04-10', 'S', 'NULL', 'F', 'cassie11@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', 'Nollendorfplatz 2', 'NULL', '1 (11) 500 555-0145', '2011-08-29', '0-1 Miles'], ['14429', '252', 'AW00014429', 'NULL', 'Lacey', 'NULL', 'He', '0', '1961-01-21', 'S', 'NULL', 'F', 'lacey31@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '342 Summerfield Dr.', 'NULL', '1 (11) 500 555-0148', '2011-03-31', '0-1 Miles'], ['14430', '637', 'AW00014430', 'NULL', 'Sydney', 'NULL', 'Jones', '0', '1963-01-03', 'M', 'NULL', 'F', 'sydney67@adventure-works.com', '90000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '1787 Acardia Pl.', 'NULL', '174-555-0143', '2013-10-02', '5-10 Miles'], ['14431', '300', 'AW00014431', 'NULL', 'Kayla', 'A', 'Moore', '0', '1962-05-21', 'M', 'NULL', 'F', 'kayla8@adventure-works.com', '70000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '8956 Birch Bark Road', 'NULL', '942-555-0171', '2014-01-14', '0-1 Miles'], ['14432', '632', 'AW00014432', 'NULL', 'Antonio', 'L', 'Russell', '0', '1939-02-21', 'S', 'NULL', 'M', 'antonio20@adventure-works.com', '90000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '1674 Castle Hill Road', 'NULL', '813-555-0153', '2013-09-12', '5-10 Miles'], ['14433', '311', 'AW00014433', 'NULL', 'Jennifer', 'H', 'Peterson', '0', '1938-12-03', 'M', 'NULL', 'F', 'jennifer68@adventure-works.com', '110000.00', '1', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6020 Regency Dr.', 'NULL', '917-555-0177', '2012-11-05', '2-5 Miles'], ['14434', '314', 'AW00014434', 'NULL', 'Sophia', 'C', 'Hill', '0', '1938-09-25', 'S', 'NULL', 'F', 'sophia12@adventure-works.com', '110000.00', '1', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6345 St Paul Way', 'NULL', '128-555-0119', '2012-11-12', '2-5 Miles'], ['14435', '331', 'AW00014435', 'NULL', 'Jennifer', 'NULL', 'Wilson', '0', '1938-10-14', 'M', 'NULL', 'F', 'jennifer35@adventure-works.com', '110000.00', '1', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '6433 Dellwood Court', 'NULL', '459-555-0149', '2013-08-12', '1-2 Miles'], ['14436', '68', 'AW00014436', 'NULL', 'John', 'A', 'Martin', '0', '1971-03-04', 'M', 'NULL', 'M', 'john52@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '1312 Garaventa Dr.', 'NULL', '718-555-0190', '2013-05-17', '2-5 Miles'], ['14437', '536', 'AW00014437', 'NULL', 'Mitchell', 'B', 'Anand', '0', '1971-01-30', 'M', 'NULL', 'M', 'mitchell18@adventure-works.com', '90000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '6905 Mendouno Dr.', 'NULL', '174-555-0194', '2013-12-18', '2-5 Miles'], ['14438', '618', 'AW00014438', 'NULL', 'Gabrielle', 'NULL', 'Gonzales', '0', '1976-04-12', 'S', 'NULL', 'F', 'gabrielle39@adventure-works.com', '100000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '1274 Marlboro Court', 'NULL', '743-555-0153', '2012-11-07', '2-5 Miles'], ['14439', '633', 'AW00014439', 'NULL', 'Brian', 'E', 'Cox', '0', '1971-01-30', 'M', 'NULL', 'M', 'brian22@adventure-works.com', '100000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '3331 Keywood Ct.', 'NULL', '598-555-0152', '2012-11-02', '2-5 Miles'], ['14440', '298', 'AW00014440', 'NULL', 'Jon', 'K', 'Tang', '0', '1971-05-13', 'M', 'NULL', 'M', 'jon44@adventure-works.com', '100000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '2803 Fawn Glen Circle', 'NULL', '195-555-0180', '2012-10-30', '2-5 Miles'], ['14441', '298', 'AW00014441', 'NULL', 'William', 'N', 'Lewis', '0', '1976-11-03', 'M', 'NULL', 'M', 'william27@adventure-works.com', '110000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '5722 San Simeon Ct.', 'NULL', '171-555-0126', '2013-04-23', '1-2 Miles'], ['14442', '335', 'AW00014442', 'NULL', 'Shelby', 'NULL', 'Peterson', '0', '1970-12-22', 'S', 'NULL', 'F', 'shelby5@adventure-works.com', '120000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '7307 Humphrey Drive', 'NULL', '789-555-0143', '2012-11-18', '2-5 Miles'], ['14443', '339', 'AW00014443', 'NULL', 'Benjamin', 'NULL', 'Wilson', '0', '1971-05-04', 'M', 'NULL', 'M', 'benjamin41@adventure-works.com', '130000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '2979 Schenone Court', 'NULL', '321-555-0158', '2013-03-21', '0-1 Miles'], ['14444', '339', 'AW00014444', 'NULL', 'Patrick', 'L', 'Sanders', '0', '1970-09-08', 'M', 'NULL', 'M', 'patrick9@adventure-works.com', '130000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '4006 Sullivan Ave.', 'NULL', '467-555-0111', '2013-06-24', '0-1 Miles'], ['14445', '352', 'AW00014445', 'NULL', 'Benjamin', 'R', 'Henderson', '0', '1971-04-22', 'M', 'NULL', 'M', 'benjamin6@adventure-works.com', '130000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '7588 Deerfield Dr', '#36', '226-555-0146', '2013-04-06', '0-1 Miles'], ['14446', '62', 'AW00014446', 'NULL', 'Jeremiah', 'A', 'Johnson', '0', '1975-08-06', 'M', 'NULL', 'M', 'jeremiah25@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '9328 Attic Rd', 'NULL', '958-555-0174', '2013-02-01', '2-5 Miles'], ['14447', '609', 'AW00014447', 'NULL', 'Madison', 'NULL', 'Alexander', '0', '1969-07-04', 'S', 'NULL', 'F', 'madison31@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4995 North Civic Drive', 'NULL', '307-555-0199', '2012-11-16', '2-5 Miles'], ['14448', '539', 'AW00014448', 'NULL', 'Lauren', 'NULL', 'Butler', '0', '1975-12-22', 'M', 'NULL', 'F', 'lauren61@adventure-works.com', '90000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '8152 Claudia Dr.', 'NULL', '463-555-0152', '2012-11-11', '2-5 Miles'], ['14449', '627', 'AW00014449', 'NULL', 'Logan', 'S', 'Jenkins', '0', '1969-11-07', 'S', 'NULL', 'M', 'logan9@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '3484 Chocolate Court', 'NULL', '733-555-0189', '2012-11-10', '10+ Miles'], ['14450', '329', 'AW00014450', 'NULL', 'Kevin', 'R', 'Butler', '0', '1975-04-06', 'M', 'NULL', 'M', 'kevin17@adventure-works.com', '130000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '602 Columbia River Ct', 'NULL', '292-555-0173', '2013-05-23', '0-1 Miles'], ['14451', '334', 'AW00014451', 'NULL', 'Tyler', 'NULL', 'Moore', '0', '1969-11-29', 'S', 'NULL', 'M', 'tyler14@adventure-works.com', '130000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '9564 Wiget Lane', 'NULL', '604-555-0191', '2012-11-03', '0-1 Miles'], ['14452', '633', 'AW00014452', 'NULL', 'Alex', 'A', 'Gonzalez', '0', '1967-09-14', 'M', 'NULL', 'M', 'alex37@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '3024 W Lake Drive', 'NULL', '174-555-0195', '2012-11-12', '5-10 Miles'], ['14453', '611', 'AW00014453', 'NULL', 'Jesse', 'NULL', 'Scott', '0', '1962-02-09', 'S', 'NULL', 'M', 'jesse37@adventure-works.com', '90000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '1013 Holiday Hills Dr.', 'NULL', '557-555-0165', '2012-11-04', '5-10 Miles'], ['14454', '331', 'AW00014454', 'NULL', 'Kayla', 'NULL', 'Anderson', '0', '1940-05-17', 'M', 'NULL', 'F', 'kayla10@adventure-works.com', '100000.00', '1', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '6566 Pinole Valley Rd.', 'NULL', '367-555-0178', '2013-04-02', '0-1 Miles'], ['14455', '53', 'AW00014455', 'NULL', 'Alexandra', 'NULL', 'Mitchell', '0', '1968-09-13', 'M', 'NULL', 'F', 'alexandra53@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1987 Jennifer Way', 'NULL', '196-555-0198', '2013-03-02', '2-5 Miles'], ['14456', '638', 'AW00014456', 'NULL', 'Benjamin', 'NULL', 'Walker', '0', '1979-09-04', 'S', 'NULL', 'M', 'benjamin38@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '24 Megan Dr.', 'NULL', '187-555-0148', '2012-10-30', '2-5 Miles'], ['14457', '331', 'AW00014457', 'NULL', 'Thomas', 'S', 'White', '0', '1968-08-06', 'M', 'NULL', 'M', 'thomas74@adventure-works.com', '120000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '5825 Banyan Way', 'NULL', '332-555-0114', '2012-11-30', '5-10 Miles'], ['14458', '62', 'AW00014458', 'NULL', 'Jordan', 'K', 'Yang', '0', '1967-12-02', 'M', 'NULL', 'M', 'jordan23@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1544 Quiz Street', 'NULL', '189-555-0188', '2013-07-17', '0-1 Miles'], ['14459', '68', 'AW00014459', 'NULL', 'Cody', 'C', 'Gray', '0', '1967-12-07', 'S', 'NULL', 'M', 'cody6@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '6415 Mayda Way', 'NULL', '430-555-0114', '2013-06-14', '5-10 Miles'], ['14460', '616', 'AW00014460', 'NULL', 'Jose', 'NULL', 'Long', '0', '1968-04-06', 'M', 'NULL', 'M', 'jose32@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '4279 Patricia Ave', 'NULL', '669-555-0153', '2013-12-04', '1-2 Miles'], ['14461', '641', 'AW00014461', 'NULL', 'Chloe', 'NULL', 'Gonzalez', '0', '1968-05-12', 'M', 'NULL', 'F', 'chloe15@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '1348 Montego', 'NULL', '300-555-0119', '2012-12-20', '5-10 Miles'], ['14462', '300', 'AW00014462', 'NULL', 'Beth', 'NULL', 'Sanz', '0', '1967-12-30', 'M', 'NULL', 'F', 'beth22@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7207 St. Andrews Way', 'NULL', '570-555-0136', '2013-09-17', '1-2 Miles'], ['14463', '312', 'AW00014463', 'NULL', 'Julia', 'V', 'Patterson', '0', '1973-10-06', 'M', 'NULL', 'F', 'julia76@adventure-works.com', '120000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '3769 Loma Linda', 'NULL', '233-555-0146', '2013-03-08', '1-2 Miles'], ['14464', '358', 'AW00014464', 'NULL', 'Elizabeth', 'J', 'Price', '0', '1967-12-25', 'M', 'NULL', 'F', 'elizabeth29@adventure-works.com', '130000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '791 South Villa Way', 'NULL', '160-555-0144', '2012-12-15', '2-5 Miles'], ['14465', '542', 'AW00014465', 'NULL', 'Dakota', 'M', 'Patterson', '0', '1966-08-21', 'M', 'NULL', 'M', 'dakota9@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '9274 Dayton Court', 'NULL', '922-555-0147', '2013-02-08', '5-10 Miles'], ['14466', '546', 'AW00014466', 'NULL', 'Logan', 'NULL', 'Adams', '0', '1966-08-21', 'M', 'NULL', 'M', 'logan42@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '485 Ash Lane', 'NULL', '696-555-0130', '2013-10-13', '5-10 Miles'], ['14467', '634', 'AW00014467', 'NULL', 'Aidan', 'NULL', 'Russell', '0', '1966-11-01', 'M', 'NULL', 'M', 'aidan21@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2225 Rogers Ave.', 'NULL', '716-555-0122', '2013-05-10', '5-10 Miles'], ['14468', '642', 'AW00014468', 'NULL', 'Grace', 'M', 'Rivera', '0', '1966-10-07', 'S', 'NULL', 'F', 'grace33@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6922 Hamlet', 'NULL', '878-555-0186', '2013-02-11', '5-10 Miles'], ['14469', '648', 'AW00014469', 'NULL', 'Angela', 'E', 'Bell', '0', '1966-10-20', 'M', 'NULL', 'F', 'angela40@adventure-works.com', '100000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '4460 Carob Way', 'NULL', '217-555-0158', '2013-03-31', '1-2 Miles'], ['14470', '339', 'AW00014470', 'NULL', 'Jeremy', 'S', 'Robinson', '0', '1972-02-01', 'M', 'NULL', 'M', 'jeremy4@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '5 Curletto Dr.', 'NULL', '348-555-0117', '2012-12-17', '0-1 Miles'], ['14471', '358', 'AW00014471', 'NULL', 'Gabriel', 'R', 'Gonzalez', '0', '1967-01-14', 'S', 'NULL', 'M', 'gabriel39@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '8867 Terranova Drive', 'NULL', '376-555-0168', '2012-12-01', '0-1 Miles'], ['14472', '361', 'AW00014472', 'NULL', 'Natalie', 'L', 'Diaz', '0', '1966-12-01', 'M', 'NULL', 'F', 'natalie44@adventure-works.com', '130000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '3124 Fall Creek', 'NULL', '904-555-0115', '2012-12-25', '0-1 Miles'], ['14473', '368', 'AW00014473', 'NULL', 'Miguel', 'NULL', 'King', '0', '1972-01-31', 'M', 'NULL', 'M', 'miguel27@adventure-works.com', '160000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '7902 Grammercy Lane', 'Unit C', '473-555-0153', '2012-12-07', '2-5 Miles'], ['14474', '348', 'AW00014474', 'NULL', 'Jacqueline', 'A', 'Murphy', '0', '1966-09-17', 'M', 'NULL', 'F', 'jacqueline39@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '9118 McNutt Ave', 'NULL', '461-555-0151', '2014-01-28', '1-2 Miles'], ['14475', '637', 'AW00014475', 'NULL', 'Isabella', 'A', 'Perry', '0', '1966-08-09', 'M', 'NULL', 'F', 'isabella18@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '8368 Birchwood', 'NULL', '521-555-0167', '2013-04-17', '5-10 Miles'], ['14476', '612', 'AW00014476', 'NULL', 'Bryce', 'NULL', 'Reed', '0', '1960-07-17', 'M', 'NULL', 'M', 'bryce19@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '1694 Rheem Blvd.', 'NULL', '289-555-0116', '2013-08-26', '1-2 Miles'], ['14477', '368', 'AW00014477', 'NULL', 'Lauren', 'D', 'Lee', '0', '1961-02-03', 'S', 'NULL', 'F', 'lauren40@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '3543 Hilton Way', 'NULL', '181-555-0113', '2012-12-04', '5-10 Miles'], ['14478', '51', 'AW00014478', 'NULL', 'Abigail', 'H', 'Patterson', '0', '1965-08-05', 'S', 'NULL', 'F', 'abigail35@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7401 Las Palmas', 'NULL', '209-555-0125', '2013-06-09', '5-10 Miles'], ['14479', '385', 'AW00014479', 'NULL', 'Samantha', 'J', 'Smith', '0', '1942-03-20', 'S', 'NULL', 'F', 'samantha2@adventure-works.com', '170000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '4', '205 Choctaw Court', 'NULL', '737-555-0151', '2013-12-12', '0-1 Miles'], ['14480', '68', 'AW00014480', 'NULL', 'Jackson', 'S', 'Gonzalez', '0', '1971-05-02', 'M', 'NULL', 'M', 'jackson38@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '6558 Nulty Drive', 'NULL', '496-555-0156', '2013-08-12', '5-10 Miles'], ['14481', '611', 'AW00014481', 'NULL', 'Mary', 'B', 'Edwards', '0', '1966-01-29', 'S', 'NULL', 'F', 'mary15@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '91 Kalima Place', 'NULL', '617-555-0125', '2012-12-18', '5-10 Miles'], ['14482', '539', 'AW00014482', 'NULL', 'Noah', 'NULL', 'Perez', '0', '1966-01-19', 'M', 'NULL', 'M', 'noah30@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '4340 Ohara Ct', 'NULL', '667-555-0116', '2014-01-05', '5-10 Miles'], ['14483', '542', 'AW00014483', 'NULL', 'Nicole', 'A', 'Henderson', '0', '1966-01-19', 'M', 'NULL', 'F', 'nicole53@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '5333 Garaventa Drive', 'NULL', '878-555-0198', '2013-05-16', '5-10 Miles'], ['14484', '343', 'AW00014484', 'NULL', 'Samantha', 'NULL', 'Hall', '0', '1971-09-03', 'M', 'NULL', 'F', 'samantha25@adventure-works.com', '130000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '1954 Sudan Loop', 'NULL', '246-555-0133', '2012-12-02', '2-5 Miles'], ['14485', '355', 'AW00014485', 'NULL', 'Bailey', 'J', 'Stewart', '0', '1965-12-09', 'M', 'NULL', 'F', 'bailey23@adventure-works.com', '160000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5823 Trail Way', '# 208', '876-555-0178', '2012-12-18', '2-5 Miles'], ['14486', '368', 'AW00014486', 'NULL', 'Jonathan', 'R', 'Coleman', '0', '1965-09-16', 'M', 'NULL', 'M', 'jonathan5@adventure-works.com', '170000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9697 Clear Court', 'NULL', '225-555-0129', '2012-11-28', '0-1 Miles'], ['14487', '358', 'AW00014487', 'NULL', 'Seth', 'NULL', 'Hall', '0', '1960-04-04', 'M', 'NULL', 'M', 'seth23@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1330 Guadalupe Dr.', 'NULL', '886-555-0139', '2013-06-09', '5-10 Miles'], ['14488', '299', 'AW00014488', 'NULL', 'Connor', 'S', 'Hughes', '0', '1959-09-02', 'M', 'NULL', 'M', 'connor6@adventure-works.com', '70000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '4892 St. Andrews Drive', 'NULL', '173-555-0176', '2013-10-09', '1-2 Miles'], ['14489', '325', 'AW00014489', 'NULL', 'Jason', 'R', 'Wang', '0', '1964-06-10', 'M', 'NULL', 'M', 'jason22@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2967 St. George Dr', 'NULL', '300-555-0115', '2013-10-27', '5-10 Miles'], ['14490', '312', 'AW00014490', 'NULL', 'Aidan', 'B', 'Butler', '0', '1964-10-13', 'M', 'NULL', 'M', 'aidan15@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8379 Surf View Drive', 'NULL', '470-555-0185', '2013-12-04', '5-10 Miles'], ['14491', '359', 'AW00014491', 'NULL', 'Isaac', 'NULL', 'Bailey', '0', '1959-05-03', 'S', 'NULL', 'M', 'isaac15@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '82 Mt. Dell Dr.', 'NULL', '356-555-0182', '2013-05-26', '5-10 Miles'], ['14492', '635', 'AW00014492', 'NULL', 'Justin', 'M', 'Patterson', '0', '1958-11-23', 'M', 'NULL', 'M', 'justin7@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5024 Euclid Avenue', 'NULL', '824-555-0133', '2013-04-20', '1-2 Miles'], ['14493', '374', 'AW00014493', 'NULL', 'Sara', 'NULL', 'Parker', '0', '1959-01-22', 'S', 'NULL', 'F', 'sara33@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '8993 Escobar', '#503', '442-555-0156', '2013-12-05', '1-2 Miles'], ['14494', '548', 'AW00014494', 'NULL', 'Cameron', 'NULL', 'Diaz', '0', '1964-05-13', 'M', 'NULL', 'M', 'cameron17@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5408 South St', 'NULL', '517-555-0180', '2012-12-01', '5-10 Miles'], ['14495', '326', 'AW00014495', 'NULL', 'Nathan', 'NULL', 'Diaz', '0', '1957-12-21', 'M', 'NULL', 'M', 'nathan18@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '6002 Hickory Drive', 'Studio # 403', '164-555-0161', '2012-12-18', '5-10 Miles'], ['14496', '51', 'AW00014496', 'NULL', 'Cindy', 'NULL', 'Stewart', '0', '1958-04-17', 'M', 'NULL', 'F', 'cindy23@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '6709 Prestwick Ave', 'NULL', '198-555-0152', '2013-06-04', '1-2 Miles'], ['14497', '52', 'AW00014497', 'NULL', 'Allison', 'NULL', 'Scott', '0', '1963-09-30', 'M', 'NULL', 'F', 'allison36@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '2015 Sunset Circle', 'NULL', '546-555-0111', '2013-06-01', '5-10 Miles'], ['14498', '307', 'AW00014498', 'NULL', 'Katie', 'L', 'Luo', '0', '1943-03-20', 'M', 'NULL', 'F', 'katie8@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5254 Daylight Place', 'NULL', '928-555-0195', '2012-11-29', '10+ Miles'], ['14499', '315', 'AW00014499', 'NULL', 'Samuel', 'G', 'Flores', '0', '1942-10-07', 'M', 'NULL', 'M', 'samuel11@adventure-works.com', '100000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '869 Lori Court', 'NULL', '226-555-0127', '2013-10-30', '5-10 Miles'], ['14500', '374', 'AW00014500', 'NULL', 'Jasmine', 'C', 'Ward', '0', '1943-05-18', 'S', 'NULL', 'F', 'jasmine31@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '1707 Willowwood Ct.', 'NULL', '202-555-0117', '2014-01-15', '0-1 Miles'], ['14501', '300', 'AW00014501', 'NULL', 'Ruben', 'NULL', 'Prasad', '0', '1943-11-10', 'M', 'NULL', 'M', 'ruben10@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '249 Alexander Pl.', 'NULL', '175-555-0159', '2010-12-29', '1-2 Miles'], ['14502', '53', 'AW00014502', 'NULL', 'Katelyn', 'A', 'Wright', '0', '1944-03-10', 'M', 'NULL', 'F', 'katelyn44@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1686 Terranova Drive', 'NULL', '397-555-0125', '2013-03-18', '5-10 Miles'], ['14503', '644', 'AW00014503', 'NULL', 'Brianna', 'NULL', 'Alexander', '0', '1943-09-17', 'M', 'NULL', 'F', 'brianna64@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6608 Calle Verde Dr.', 'NULL', '242-555-0137', '2013-05-18', '5-10 Miles'], ['14504', '69', 'AW00014504', 'NULL', 'Nicole', 'NULL', 'Jones', '0', '1944-02-18', 'M', 'NULL', 'F', 'nicole3@adventure-works.com', '110000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '7929 Blocking Ct.', 'NULL', '808-555-0169', '2013-07-22', '5-10 Miles'], ['14505', '300', 'AW00014505', 'NULL', 'Alex', 'K', 'Edwards', '0', '1943-11-22', 'M', 'NULL', 'M', 'alex28@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '4681 Mt. Whitney', 'NULL', '155-555-0116', '2013-02-14', '0-1 Miles'], ['14506', '536', 'AW00014506', 'NULL', 'Stacy', 'K', 'Suarez', '0', '1945-11-17', 'M', 'NULL', 'F', 'stacy20@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '7341 Mt. Washington Way', 'NULL', '161-555-0119', '2013-11-13', '1-2 Miles'], ['14507', '385', 'AW00014507', 'NULL', 'Eric', 'NULL', 'Wright', '0', '1946-03-01', 'M', 'NULL', 'M', 'eric60@adventure-works.com', '100000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '6046 Flamingo Drive', 'NULL', '260-555-0159', '2013-02-12', '1-2 Miles'], ['14508', '345', 'AW00014508', 'NULL', 'Madison', 'M', 'Hall', '0', '1946-04-02', 'M', 'NULL', 'F', 'madison24@adventure-works.com', '100000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '881 Brannan Pl.', 'NULL', '736-555-0191', '2013-05-28', '5-10 Miles'], ['14509', '536', 'AW00014509', 'NULL', 'Bridget', 'L', 'Deng', '0', '1973-08-30', 'S', 'NULL', 'F', 'bridget2@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '5967 Greystone Dr.', 'NULL', '907-555-0197', '2013-09-29', '1-2 Miles'], ['14510', '616', 'AW00014510', 'NULL', 'Samuel', 'R', 'Hernandez', '0', '1973-08-17', 'S', 'NULL', 'M', 'samuel49@adventure-works.com', '100000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8693 Balhan Dr.', 'NULL', '106-555-0168', '2011-01-22', '1-2 Miles'], ['14511', '618', 'AW00014511', 'NULL', 'Danielle', 'NULL', 'Rogers', '0', '1974-05-23', 'M', 'NULL', 'F', 'danielle22@adventure-works.com', '100000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4369 Change Circle', 'NULL', '147-555-0143', '2013-04-05', '0-1 Miles'], ['14512', '633', 'AW00014512', 'NULL', 'Christopher', 'J', 'Jones', '0', '1979-09-03', 'M', 'NULL', 'M', 'christopher27@adventure-works.com', '100000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '5077 Bannock Ct.', 'NULL', '852-555-0198', '2013-02-06', '1-2 Miles'], ['14513', '302', 'AW00014513', 'NULL', 'Alexandra', 'NULL', 'Turner', '0', '1974-05-20', 'M', 'NULL', 'F', 'alexandra48@adventure-works.com', '130000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '3995 Tiffin Dr.', 'NULL', '205-555-0137', '2013-10-20', '0-1 Miles'], ['14514', '299', 'AW00014514', 'NULL', 'Rachel', 'D', 'Jones', '0', '1985-03-10', 'S', 'NULL', 'F', 'rachel5@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3358 Thornhill Place', 'NULL', '462-555-0163', '2014-01-26', '5-10 Miles'], ['14515', '335', 'AW00014515', 'NULL', 'Anna', 'NULL', 'Cooper', '0', '1985-02-06', 'S', 'NULL', 'F', 'anna13@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6968 Wren Ave.', 'NULL', '115-555-0159', '2013-10-15', '5-10 Miles'], ['14516', '7', 'AW00014516', 'NULL', 'Tommy', 'NULL', 'Lal', '0', '1950-05-25', 'S', 'NULL', 'M', 'tommy5@adventure-works.com', '10000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '2110 Elm St.', 'NULL', '1 (11) 500 555-0125', '2013-02-21', '5-10 Miles'], ['14517', '12', 'AW00014517', 'NULL', 'Ebony', 'NULL', 'Rodriguez', '0', '1961-01-14', 'M', 'NULL', 'F', 'ebony20@adventure-works.com', '20000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '416 Yosemite Circle', 'NULL', '1 (11) 500 555-0117', '2013-07-10', '1-2 Miles'], ['14518', '21', 'AW00014518', 'NULL', 'Ann', 'M', 'Mehta', '0', '1953-05-07', 'M', 'NULL', 'F', 'ann19@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9618 Fall Creek Road', 'NULL', '1 (11) 500 555-0112', '2013-02-17', '5-10 Miles'], ['14519', '536', 'AW00014519', 'NULL', 'Denise', 'S', 'Rana', '0', '1984-05-18', 'S', 'NULL', 'F', 'denise12@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5935 Isabel', 'NULL', '295-555-0142', '2013-03-13', '5-10 Miles'], ['14520', '611', 'AW00014520', 'NULL', 'Bonnie', 'C', 'Xu', '0', '1984-06-16', 'S', 'NULL', 'F', 'bonnie10@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3981 Bell Drive', 'NULL', '564-555-0124', '2011-01-04', '1-2 Miles'], ['14521', '24', 'AW00014521', 'NULL', 'Rodney', 'NULL', 'Romero', '0', '1953-04-09', 'M', 'NULL', 'M', 'rodney5@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8055 Kiska Court', 'NULL', '1 (11) 500 555-0192', '2013-07-18', '1-2 Miles'], ['14522', '36', 'AW00014522', 'NULL', 'Omar', 'C', 'Zheng', '0', '1953-02-16', 'M', 'NULL', 'M', 'omar18@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8527 Rock Oak Road', 'NULL', '1 (11) 500 555-0164', '2013-05-14', '5-10 Miles'], ['14523', '16', 'AW00014523', 'NULL', 'Lydia', 'M', 'Fernandez', '0', '1953-05-25', 'M', 'NULL', 'F', 'lydia14@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '4188 Lodge Dr.', 'NULL', '1 (11) 500 555-0183', '2012-09-16', '5-10 Miles'], ['14524', '212', 'AW00014524', 'NULL', 'Carla', 'NULL', 'Prasad', '0', '1983-11-16', 'M', 'NULL', 'F', 'carla12@adventure-works.com', '10000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '99, avenue du Président-Kennedy', 'NULL', '1 (11) 500 555-0112', '2012-03-04', '0-1 Miles'], ['14525', '238', 'AW00014525', 'NULL', 'Claudia', 'J', 'Sun', '0', '1982-12-05', 'M', 'NULL', 'F', 'claudia12@adventure-works.com', '10000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '110, boulevard Beau Marchais', 'NULL', '1 (11) 500 555-0194', '2011-04-08', '0-1 Miles'], ['14526', '127', 'AW00014526', 'NULL', 'Emily', 'NULL', 'Hall', '0', '1967-07-09', 'M', 'NULL', 'F', 'emily24@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Hellweg 4534', 'NULL', '1 (11) 500 555-0142', '2013-06-15', '0-1 Miles'], ['14527', '133', 'AW00014527', 'NULL', 'Kurt', 'T', 'Raji', '0', '1968-04-06', 'M', 'NULL', 'M', 'kurt20@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Auf den Kuhlen Straße 765', 'NULL', '1 (11) 500 555-0144', '2013-11-10', '0-1 Miles'], ['14528', '149', 'AW00014528', 'NULL', 'Casey', 'C', 'Ramos', '0', '1973-11-29', 'M', 'NULL', 'M', 'casey41@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Kulmer Straße 123', 'NULL', '1 (11) 500 555-0118', '2013-07-27', '0-1 Miles'], ['14529', '270', 'AW00014529', 'NULL', 'Kaitlin', 'J', 'Sai', '0', '1967-09-30', 'S', 'NULL', 'F', 'kaitlin5@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9440 First Ave.', 'NULL', '1 (11) 500 555-0182', '2013-04-13', '0-1 Miles'], ['14530', '271', 'AW00014530', 'NULL', 'Ethan', 'NULL', 'Smith', '0', '1968-02-29', 'M', 'NULL', 'M', 'ethan29@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7293 Stanford Way', 'NULL', '1 (11) 500 555-0116', '2013-03-20', '0-1 Miles'], ['14531', '271', 'AW00014531', 'NULL', 'Abigail', 'NULL', 'Garcia', '0', '1967-07-21', 'M', 'NULL', 'F', 'abigail57@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1398 Morengo Court', 'NULL', '1 (11) 500 555-0118', '2013-02-24', '0-1 Miles'], ['14532', '216', 'AW00014532', 'NULL', 'Barbara', 'M', 'Wu', '0', '1979-05-17', 'M', 'NULL', 'F', 'barbara16@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '818, rue de Berri', 'NULL', '1 (11) 500 555-0150', '2013-03-15', '0-1 Miles'], ['14533', '229', 'AW00014533', 'NULL', 'Roberto', 'M', 'Alonso', '0', '1983-10-05', 'S', 'NULL', 'M', 'roberto8@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '3280 Oliveria Road', 'NULL', '1 (11) 500 555-0192', '2013-09-04', '0-1 Miles'], ['14534', '207', 'AW00014534', 'NULL', 'Abby', 'P', 'Rana', '0', '1966-10-22', 'S', 'NULL', 'F', 'abby8@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '2401, rue des Bouchers', 'NULL', '1 (11) 500 555-0147', '2013-11-04', '0-1 Miles'], ['14535', '240', 'AW00014535', 'NULL', 'Dustin', 'NULL', 'Anand', '0', '1972-05-12', 'S', 'NULL', 'M', 'dustin22@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8827 Ward Court', 'NULL', '1 (11) 500 555-0114', '2013-03-08', '0-1 Miles'], ['14536', '180', 'AW00014536', 'NULL', 'Krystal', 'A', 'Wu', '0', '1966-12-30', 'S', 'NULL', 'F', 'krystal7@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '816, avenue des Champs-Elysées', 'NULL', '1 (11) 500 555-0135', '2013-07-03', '0-1 Miles'], ['14537', '153', 'AW00014537', 'NULL', 'Clayton', 'K', 'Cai', '0', '1941-03-11', 'M', 'NULL', 'M', 'clayton18@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Auf Der Steige 9000', 'NULL', '1 (11) 500 555-0127', '2013-07-07', '0-1 Miles'], ['14538', '187', 'AW00014538', 'NULL', 'Katherine', 'NULL', 'Brown', '0', '1967-10-18', 'S', 'NULL', 'F', 'katherine75@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '22, quai Paul Doumer', 'NULL', '1 (11) 500 555-0146', '2012-03-04', '0-1 Miles'], ['14539', '197', 'AW00014539', 'NULL', 'Carrie', 'NULL', 'Alonso', '0', '1968-06-18', 'S', 'NULL', 'F', 'carrie8@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '34, rue Philibert-Delorme', 'NULL', '1 (11) 500 555-0193', '2012-03-02', '0-1 Miles'], ['14540', '257', 'AW00014540', 'NULL', 'Randy', 'NULL', 'Lin', '0', '1963-10-16', 'M', 'NULL', 'M', 'randy9@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '8848 Auburn', 'NULL', '1 (11) 500 555-0138', '2013-03-09', '0-1 Miles'], ['14541', '171', 'AW00014541', 'NULL', 'Douglas', 'D', 'Kapoor', '0', '1963-11-14', 'S', 'NULL', 'M', 'douglas5@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Hellweg 4754', 'NULL', '1 (11) 500 555-0188', '2011-09-08', '0-1 Miles'], ['14542', '261', 'AW00014542', 'NULL', 'Alex', 'I', 'Ward', '0', '1979-05-04', 'M', 'NULL', 'M', 'alex16@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4402 Grant St.', 'NULL', '1 (11) 500 555-0117', '2013-07-19', '0-1 Miles'], ['14543', '134', 'AW00014543', 'NULL', 'Heather', 'NULL', 'Lu', '0', '1963-02-08', 'M', 'NULL', 'F', 'heather10@adventure-works.com', '10000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Dunckerstr 7255', 'NULL', '1 (11) 500 555-0168', '2013-07-05', '0-1 Miles'], ['14544', '189', 'AW00014544', 'NULL', 'Darryl', 'Y', 'West', '0', '1962-09-11', 'S', 'NULL', 'M', 'darryl1@adventure-works.com', '10000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '652, rue de Berri', 'NULL', '1 (11) 500 555-0157', '2013-05-11', '0-1 Miles'], ['14545', '234', 'AW00014545', 'NULL', 'Faith', 'NULL', 'Henderson', '0', '1973-03-14', 'M', 'NULL', 'F', 'faith4@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '3532 Brookview Drive', 'NULL', '1 (11) 500 555-0156', '2013-04-13', '1-2 Miles'], ['14546', '262', 'AW00014546', 'NULL', 'Christina', 'S', 'Sanchez', '0', '1961-09-07', 'M', 'NULL', 'F', 'christina22@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '5492 Hacienda Drive', 'NULL', '1 (11) 500 555-0124', '2013-03-18', '0-1 Miles'], ['14547', '267', 'AW00014547', 'NULL', 'Noah', 'L', 'Thompson', '0', '1961-01-01', 'M', 'NULL', 'M', 'noah63@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '9676 Hidden Lakes Court', 'NULL', '1 (11) 500 555-0186', '2013-11-23', '1-2 Miles'], ['14548', '186', 'AW00014548', 'NULL', 'Maria', 'E', 'Turner', '0', '1960-12-17', 'M', 'NULL', 'F', 'maria48@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '380, avenue de Malakoff', 'NULL', '1 (11) 500 555-0187', '2013-11-01', '0-1 Miles'], ['14549', '126', 'AW00014549', 'NULL', 'Arturo', 'J', 'Goel', '0', '1961-05-26', 'M', 'NULL', 'M', 'arturo44@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Zur Lindung 7', 'NULL', '1 (11) 500 555-0158', '2013-08-16', '2-5 Miles'], ['14550', '180', 'AW00014550', 'NULL', 'Kristy', 'L', 'Vazquez', '0', '1953-10-05', 'M', 'NULL', 'F', 'kristy13@adventure-works.com', '10000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7111, avenue Foch', 'NULL', '1 (11) 500 555-0192', '2013-09-07', '2-5 Miles'], ['14551', '168', 'AW00014551', 'NULL', 'Michele', 'C', 'Vance', '0', '1943-04-23', 'M', 'NULL', 'F', 'michele59@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Kappellweg 242', 'NULL', '1 (11) 500 555-0192', '2013-12-20', '0-1 Miles'], ['14552', '229', 'AW00014552', 'NULL', 'Daisy', 'NULL', 'Ramos', '0', '1945-04-14', 'M', 'NULL', 'F', 'daisy12@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3162 Glaze Dr.', 'NULL', '1 (11) 500 555-0177', '2013-10-22', '0-1 Miles'], ['14553', '266', 'AW00014553', 'NULL', 'Leah', 'H', 'Ma', '0', '1946-04-02', 'M', 'NULL', 'F', 'leah12@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2233 California St.', 'NULL', '1 (11) 500 555-0161', '2013-03-20', '0-1 Miles'], ['14554', '269', 'AW00014554', 'NULL', 'Isaac', 'NULL', 'Mitchell', '0', '1951-07-03', 'M', 'NULL', 'M', 'isaac33@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6683 Brookside Drive', 'NULL', '1 (11) 500 555-0169', '2013-04-07', '0-1 Miles'], ['14555', '185', 'AW00014555', 'NULL', 'Jodi', 'D', 'Kumar', '0', '1948-05-13', 'S', 'NULL', 'F', 'jodi7@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '66, rue Georges-Clémenceau', 'NULL', '1 (11) 500 555-0135', '2012-03-28', '1-2 Miles'], ['14556', '221', 'AW00014556', 'NULL', 'Rafael', 'NULL', 'He', '0', '1948-09-21', 'M', 'NULL', 'M', 'rafael19@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '8881, rue Villedo', 'NULL', '1 (11) 500 555-0110', '2013-09-26', '2-5 Miles'], ['14557', '31', 'AW00014557', 'NULL', 'Mathew', 'L', 'Sanz', '0', '1986-03-22', 'M', 'NULL', 'M', 'mathew16@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '6350 Lakeview Pl.', 'NULL', '1 (11) 500 555-0116', '2013-01-29', '2-5 Miles'], ['14558', '648', 'AW00014558', 'NULL', 'Marcel', 'NULL', 'Truempy', '0', '1981-11-08', 'M', 'NULL', 'F', 'marcel0@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8844 Bel Aire Drive', 'NULL', '656-555-0121', '2011-01-25', '2-5 Miles'], ['14559', '337', 'AW00014559', 'NULL', 'Ashley', 'NULL', 'Washington', '0', '1976-03-20', 'M', 'NULL', 'F', 'ashley40@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5456 Old Oak Drive', 'NULL', '202-555-0164', '2011-01-16', '2-5 Miles'], ['14560', '298', 'AW00014560', 'NULL', 'Kelvin', 'NULL', 'Huang', '0', '1976-03-31', 'M', 'NULL', 'M', 'kelvin25@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '410 Cardinet Drive', 'NULL', '711-555-0119', '2011-01-05', '2-5 Miles'], ['14561', '64', 'AW00014561', 'NULL', 'Eduardo', 'NULL', 'Miller', '0', '1981-05-24', 'M', 'NULL', 'M', 'eduardo5@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7268 Norcross Lane', 'NULL', '827-555-0174', '2013-02-01', '0-1 Miles'], ['14562', '311', 'AW00014562', 'NULL', 'Bryce', 'B', 'Stewart', '0', '1975-10-07', 'M', 'NULL', 'M', 'bryce21@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '744 Piedra Dr.', 'NULL', '412-555-0145', '2013-05-19', '0-1 Miles'], ['14563', '631', 'AW00014563', 'NULL', 'Fernando', 'NULL', 'Carter', '0', '1975-03-24', 'M', 'NULL', 'M', 'fernando35@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '515 Wiget Lane', 'NULL', '720-555-0149', '2013-07-24', '2-5 Miles'], ['14564', '359', 'AW00014564', 'NULL', 'Chloe', 'L', 'Bailey', '0', '1980-01-31', 'M', 'NULL', 'F', 'chloe53@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9913 Mt. Whitney Way', 'NULL', '612-555-0181', '2013-12-19', '2-5 Miles'], ['14565', '343', 'AW00014565', 'NULL', 'Natalie', 'L', 'Hernandez', '0', '1974-09-29', 'S', 'NULL', 'F', 'natalie61@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1885 Riverside Drive', 'NULL', '921-555-0171', '2011-02-03', '2-5 Miles'], ['14566', '50', 'AW00014566', 'NULL', 'Kaylee', 'R', 'Mitchell', '0', '1977-04-02', 'M', 'NULL', 'F', 'kaylee33@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4752 Willow Creek Ct.', 'NULL', '693-555-0156', '2013-04-17', '0-1 Miles'], ['14567', '64', 'AW00014567', 'NULL', 'Seth', 'NULL', 'Thomas', '0', '1982-05-21', 'M', 'NULL', 'M', 'seth11@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5291 Juliet Court', 'NULL', '981-555-0117', '2013-01-28', '2-5 Miles'], ['14568', '536', 'AW00014568', 'NULL', 'Priscilla', 'C', 'Kumar', '0', '1982-03-09', 'S', 'NULL', 'F', 'priscilla7@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6763 Northridge Drive', 'NULL', '129-555-0167', '2013-04-07', '2-5 Miles'], ['14569', '609', 'AW00014569', 'NULL', 'Kristopher', 'NULL', 'Rodriguez', '0', '1982-06-12', 'M', 'NULL', 'M', 'kristopher18@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2290 Mt. Hood Circle', 'NULL', '796-555-0162', '2013-10-22', '0-1 Miles'], ['14570', '648', 'AW00014570', 'NULL', 'Hannah', 'NULL', 'Henderson', '0', '1976-10-19', 'M', 'NULL', 'F', 'hannah28@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6064 Tosca Way', 'NULL', '671-555-0148', '2013-05-05', '0-1 Miles'], ['14571', '298', 'AW00014571', 'NULL', 'Rachel', 'M', 'Richardson', '0', '1982-04-23', 'M', 'NULL', 'F', 'rachel38@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3462 Briarcliff Ct.', 'NULL', '641-555-0116', '2013-08-21', '2-5 Miles'], ['14572', '336', 'AW00014572', 'NULL', 'Melanie', 'NULL', 'Foster', '0', '1976-10-13', 'M', 'NULL', 'F', 'melanie3@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7933 Ashwood Dr', 'NULL', '266-555-0115', '2011-02-16', '2-5 Miles'], ['14573', '552', 'AW00014573', 'NULL', 'Madison', 'M', 'Wood', '0', '1980-02-02', 'M', 'NULL', 'F', 'madison37@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9515 Henning Dr.', 'NULL', '627-555-0181', '2013-09-26', '2-5 Miles'], ['14574', '66', 'AW00014574', 'NULL', 'Katherine', 'C', 'Powell', '0', '1974-09-15', 'S', 'NULL', 'F', 'katherine34@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6024 Bluetail', 'NULL', '855-555-0146', '2013-06-23', '2-5 Miles'], ['14575', '634', 'AW00014575', 'NULL', 'Rachel', 'C', 'Lee', '0', '1980-05-07', 'M', 'NULL', 'F', 'rachel25@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8831 Cloverleaf Circle', 'NULL', '182-555-0193', '2014-01-23', '2-5 Miles'], ['14576', '635', 'AW00014576', 'NULL', 'Anna', 'NULL', 'Price', '0', '1979-05-19', 'S', 'NULL', 'F', 'anna25@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '3884 Beauty Street', 'NULL', '398-555-0123', '2011-02-10', '0-1 Miles'], ['14577', '539', 'AW00014577', 'NULL', 'Natalie', 'A', 'Rogers', '0', '1973-12-10', 'S', 'NULL', 'F', 'natalie3@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2946 Frame Ct', 'NULL', '350-555-0163', '2011-02-26', '2-5 Miles'], ['14578', '49', 'AW00014578', 'NULL', 'Jonathan', 'NULL', 'Carter', '0', '1979-01-05', 'M', 'NULL', 'M', 'jonathan39@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2752 Northridge Road', 'NULL', '954-555-0115', '2013-06-28', '2-5 Miles'], ['14579', '542', 'AW00014579', 'NULL', 'Luis', 'NULL', 'Henderson', '0', '1974-04-22', 'S', 'NULL', 'M', 'luis3@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8982 Mt. Etna', 'NULL', '624-555-0189', '2013-03-03', '2-5 Miles'], ['14580', '347', 'AW00014580', 'NULL', 'Kyle', 'NULL', 'Diaz', '0', '1978-03-13', 'S', 'NULL', 'M', 'kyle17@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6299 Elmonte Drive', 'NULL', '948-555-0151', '2011-03-16', '2-5 Miles'], ['14581', '547', 'AW00014581', 'NULL', 'Kevin', 'M', 'Adams', '0', '1978-10-17', 'S', 'NULL', 'M', 'kevin54@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7961 Red Maple Ct.', 'NULL', '104-555-0111', '2011-03-06', '0-1 Miles'], ['14582', '69', 'AW00014582', 'NULL', 'Marcus', 'NULL', 'Reed', '0', '1981-01-30', 'M', 'NULL', 'M', 'marcus95@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '538 Rahn Court', 'NULL', '210-555-0130', '2013-02-10', '2-5 Miles'], ['14583', '542', 'AW00014583', 'NULL', 'Sydney', 'NULL', 'Morris', '0', '1975-11-10', 'M', 'NULL', 'F', 'sydney2@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '975 Harris Circle', 'NULL', '507-555-0112', '2014-01-03', '2-5 Miles'], ['14584', '383', 'AW00014584', 'NULL', 'Gabrielle', 'NULL', 'Mitchell', '0', '1976-04-05', 'S', 'NULL', 'F', 'gabrielle54@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1692 Collins Dr.', 'NULL', '575-555-0155', '2011-03-07', '0-1 Miles'], ['14585', '385', 'AW00014585', 'NULL', 'Kimberly', 'NULL', 'Torres', '0', '1981-04-19', 'M', 'NULL', 'F', 'kimberly7@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9809 Baltic Sea Ct', 'NULL', '233-555-0131', '2011-03-26', '0-1 Miles'], ['14586', '58', 'AW00014586', 'NULL', 'Todd', 'NULL', 'Rowe', '0', '1973-05-10', 'S', 'NULL', 'F', 'todd21@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1908 San Jose Ave', 'NULL', '742-555-0195', '2013-11-19', '2-5 Miles'], ['14587', '543', 'AW00014587', 'NULL', 'Jade', 'J', 'Peterson', '0', '1973-03-31', 'S', 'NULL', 'F', 'jade4@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3249 Riverside Drive', 'NULL', '796-555-0139', '2013-05-27', '0-1 Miles'], ['14588', '635', 'AW00014588', 'NULL', 'Alexander', 'E', 'Taylor', '0', '1973-01-18', 'S', 'NULL', 'M', 'alexander13@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4660 Glenside Court', 'NULL', '386-555-0134', '2013-09-20', '2-5 Miles'], ['14589', '355', 'AW00014589', 'NULL', 'Mackenzie', 'R', 'Cook', '0', '1977-01-29', 'S', 'NULL', 'F', 'mackenzie20@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '8986 Wildewood Dr.', 'NULL', '350-555-0175', '2011-03-29', '0-1 Miles'], ['14590', '311', 'AW00014590', 'NULL', 'Marissa', 'E', 'Butler', '0', '1977-04-22', 'S', 'NULL', 'F', 'marissa11@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4817 Gate Drive', 'NULL', '974-555-0179', '2011-03-19', '2-5 Miles'], ['14591', '335', 'AW00014591', 'NULL', 'Charles', 'E', 'Harris', '0', '1971-10-06', 'S', 'NULL', 'M', 'charles17@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4173 Wheel Ave.', 'NULL', '913-555-0120', '2011-04-07', '2-5 Miles'], ['14592', '644', 'AW00014592', 'NULL', 'Jessica', 'NULL', 'Thompson', '0', '1972-01-23', 'M', 'NULL', 'F', 'jessica63@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4418 Lisa Lee Lane', 'NULL', '331-555-0142', '2013-06-02', '0-1 Miles'], ['14593', '383', 'AW00014593', 'NULL', 'Jack', 'M', 'Washington', '0', '1971-07-13', 'M', 'NULL', 'M', 'jack13@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8355 Lighthouse Way', 'NULL', '862-555-0136', '2013-06-17', '2-5 Miles'], ['14594', '383', 'AW00014594', 'NULL', 'Lauren', 'T', 'Taylor', '0', '1972-02-18', 'M', 'NULL', 'F', 'lauren27@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1177 Oily Road', 'NULL', '249-555-0169', '2013-04-28', '2-5 Miles'], ['14595', '325', 'AW00014595', 'Ms.', 'Andrea', 'NULL', 'Ward', '0', '1977-04-06', 'M', 'NULL', 'F', 'andrea13@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3337 Roland Ct', 'NULL', '379-555-0188', '2013-10-30', '0-1 Miles'], ['14596', '326', 'AW00014596', 'NULL', 'Amber', 'W', 'Hill', '0', '1972-05-13', 'M', 'NULL', 'F', 'amber13@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1299 Carpetta Circle', 'NULL', '320-555-0155', '2011-04-12', '0-1 Miles'], ['14597', '51', 'AW00014597', 'NULL', 'Sean', 'L', 'Reed', '0', '1971-10-01', 'M', 'NULL', 'M', 'sean28@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9129 Shenandoah Dr.', 'NULL', '594-555-0175', '2013-06-28', '0-1 Miles'], ['14598', '68', 'AW00014598', 'NULL', 'Miranda', 'NULL', 'Ross', '0', '1975-02-18', 'M', 'NULL', 'F', 'miranda4@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1454 Colton Ln', 'NULL', '128-555-0181', '2013-06-03', '2-5 Miles'], ['14599', '543', 'AW00014599', 'NULL', 'Charles', 'A', 'Wilson', '0', '1974-09-24', 'M', 'NULL', 'M', 'charles10@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1050 Creed Ave', 'NULL', '377-555-0137', '2011-04-22', '0-1 Miles'], ['14600', '632', 'AW00014600', 'NULL', 'Ariana', 'V', 'Ramirez', '0', '1980-10-14', 'M', 'NULL', 'F', 'ariana6@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '2063 Trafalgar Circle', 'NULL', '995-555-0111', '2013-09-10', '2-5 Miles'], ['14601', '311', 'AW00014601', 'NULL', 'Nicolas', 'A', 'Rai', '0', '1980-10-06', 'M', 'NULL', 'M', 'nicolas16@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7554 Grammercy Lane', 'NULL', '691-555-0141', '2011-04-29', '0-1 Miles'], ['14602', '383', 'AW00014602', 'NULL', 'Kaylee', 'W', 'Kelly', '0', '1975-03-08', 'M', 'NULL', 'F', 'kaylee1@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1277 Juniper Drive', 'NULL', '542-555-0129', '2011-04-06', '0-1 Miles'], ['14603', '355', 'AW00014603', 'NULL', 'Sara', 'NULL', 'Ward', '0', '1970-10-06', 'S', 'NULL', 'F', 'sara13@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4827 San Marino Ct', 'Unit H103', '115-555-0163', '2011-04-07', '2-5 Miles'], ['14604', '69', 'AW00014604', 'NULL', 'Nicholas', 'D', 'Rodriguez', '0', '1971-04-01', 'M', 'NULL', 'M', 'nicholas0@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6652 Deerwood Court', 'NULL', '367-555-0116', '2013-02-04', '10+ Miles'], ['14605', '62', 'AW00014605', 'NULL', 'Allison', 'NULL', 'Brooks', '0', '1971-03-25', 'S', 'NULL', 'F', 'allison0@adventure-works.com', '80000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9395 Aspect Dr', 'NULL', '993-555-0174', '2013-06-27', '0-1 Miles'], ['14606', '69', 'AW00014606', 'NULL', 'Amanda', 'P', 'Cooper', '0', '1971-02-11', 'S', 'NULL', 'F', 'amanda8@adventure-works.com', '80000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6196 Nottingham Place', '#313', '424-555-0137', '2013-06-19', '0-1 Miles'], ['14607', '542', 'AW00014607', 'NULL', 'Isaiah', 'NULL', 'Nelson', '0', '1975-05-01', 'M', 'NULL', 'M', 'isaiah33@adventure-works.com', '50000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4166 Deercreek Ln.', 'NULL', '566-555-0155', '2013-11-10', '2-5 Miles'], ['14608', '611', 'AW00014608', 'NULL', 'Warren', 'A', 'Gao', '0', '1969-08-03', 'M', 'NULL', 'M', 'warren29@adventure-works.com', '50000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '8193 North 126th St', 'NULL', '523-555-0163', '2013-04-21', '10+ Miles'], ['14609', '343', 'AW00014609', 'NULL', 'Julia', 'NULL', 'Phillips', '0', '1970-01-03', 'S', 'NULL', 'F', 'julia5@adventure-works.com', '50000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1288 Mt. Dias Blvd.', 'NULL', '102-555-0139', '2013-06-19', '2-5 Miles'], ['14610', '616', 'AW00014610', 'NULL', 'Lauren', 'S', 'Jenkins', '0', '1969-09-21', 'S', 'NULL', 'F', 'lauren54@adventure-works.com', '50000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6697 Ridge Park Drive', 'NULL', '212-555-0186', '2011-04-05', '5-10 Miles'], ['14611', '68', 'AW00014611', 'NULL', 'Zoe', 'R', 'James', '0', '1969-07-18', 'S', 'NULL', 'F', 'zoe7@adventure-works.com', '50000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8623 Merry Circle', 'NULL', '949-555-0130', '2013-09-04', '0-1 Miles'], ['14612', '300', 'AW00014612', 'NULL', 'Ernest', 'M', 'Zhang', '0', '1974-07-16', 'M', 'NULL', 'M', 'ernest0@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '3450 Oakleaf Ct.', 'NULL', '429-555-0131', '2013-12-04', '2-5 Miles'], ['14613', '611', 'AW00014613', 'NULL', 'Glenn', 'NULL', 'Huang', '0', '1980-02-02', 'M', 'NULL', 'M', 'glenn6@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '1465 Dover Drive', 'NULL', '739-555-0114', '2011-04-28', '0-1 Miles'], ['14614', '310', 'AW00014614', 'NULL', 'Dylan', 'J', 'Bryant', '0', '1979-02-07', 'S', 'NULL', 'M', 'dylan17@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4645 Mehaffey Way', 'NULL', '161-555-0181', '2011-05-28', '2-5 Miles'], ['14615', '311', 'AW00014615', 'NULL', 'Audrey', 'E', 'Dominguez', '0', '1985-01-06', 'S', 'NULL', 'F', 'audrey14@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5124 Palmer Rd.', 'NULL', '764-555-0139', '2013-10-30', '0-1 Miles'], ['14616', '311', 'AW00014616', 'NULL', 'Emma', 'J', 'Sandberg', '0', '1973-08-14', 'S', 'NULL', 'F', 'emma47@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1190 Hill Top Rd.', 'NULL', '764-555-0138', '2011-05-26', '2-5 Miles'], ['14617', '614', 'AW00014617', 'NULL', 'Aaron', 'NULL', 'Flores', '0', '1968-08-02', 'S', 'NULL', 'M', 'aaron11@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '8225 Northridge Road', 'NULL', '831-555-0184', '2011-05-12', '0-1 Miles'], ['14618', '618', 'AW00014618', 'NULL', 'Gabrielle', 'D', 'Baker', '0', '1974-09-05', 'M', 'NULL', 'F', 'gabrielle59@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6804 Coggins Drive', 'NULL', '411-555-0111', '2013-09-30', '2-5 Miles'], ['14619', '618', 'AW00014619', 'NULL', 'Nathaniel', 'L', 'Sanders', '0', '1974-02-22', 'M', 'NULL', 'M', 'nathaniel4@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1911 Pinecrest Dr.', 'NULL', '891-555-0140', '2013-10-22', '0-1 Miles'], ['14620', '347', 'AW00014620', 'NULL', 'Kayla', 'B', 'Patterson', '0', '1968-10-19', 'M', 'NULL', 'F', 'kayla34@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4092 Mepham Dr.', 'NULL', '845-555-0196', '2013-08-01', '2-5 Miles'], ['14621', '545', 'AW00014621', 'NULL', 'Chloe', 'D', 'Morris', '0', '1968-02-05', 'S', 'NULL', 'F', 'chloe47@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4827 Gilardy Drive', 'NULL', '679-555-0168', '2013-12-20', '2-5 Miles'], ['14622', '312', 'AW00014622', 'NULL', 'Brandon', 'L', 'Patterson', '0', '1967-08-24', 'M', 'NULL', 'M', 'brandon8@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3415 Oak Grove Road', 'NULL', '398-555-0193', '2013-05-13', '2-5 Miles'], ['14623', '359', 'AW00014623', 'NULL', 'Benjamin', 'H', 'Li', '0', '1973-10-02', 'M', 'NULL', 'M', 'benjamin28@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2212 Sagull Court', 'NULL', '118-555-0127', '2013-03-06', '0-1 Miles'], ['14624', '618', 'AW00014624', 'NULL', 'Anna', 'R', 'Thomas', '0', '1967-11-07', 'M', 'NULL', 'F', 'anna48@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6189 Kirkwood Ct.', 'NULL', '323-555-0116', '2013-10-28', '0-1 Miles'], ['14625', '627', 'AW00014625', 'NULL', 'Benjamin', 'I', 'Simmons', '0', '1967-09-07', 'M', 'NULL', 'M', 'benjamin16@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5030 RaceCt', 'NULL', '394-555-0190', '2013-10-29', '2-5 Miles'], ['14626', '51', 'AW00014626', 'NULL', 'Jesse', 'NULL', 'Gray', '0', '1966-11-21', 'M', 'NULL', 'M', 'jesse6@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6161 Teakwood Dr.', 'NULL', '992-555-0173', '2013-04-05', '10+ Miles'], ['14627', '358', 'AW00014627', 'NULL', 'Isaiah', 'D', 'Hill', '0', '1972-11-12', 'M', 'NULL', 'M', 'isaiah37@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4159 Bayshore Rd.', 'NULL', '401-555-0179', '2013-06-29', '0-1 Miles'], ['14628', '543', 'AW00014628', 'NULL', 'Carlos', 'NULL', 'Brooks', '0', '1966-10-21', 'M', 'NULL', 'M', 'carlos3@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1490 Daylight Pl.', 'NULL', '434-555-0133', '2013-10-09', '0-1 Miles'], ['14629', '612', 'AW00014629', 'NULL', 'Blake', 'NULL', 'Hernandez', '0', '1967-01-21', 'M', 'NULL', 'M', 'blake27@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2423 Garland Drive', 'NULL', '118-555-0124', '2013-03-07', '2-5 Miles'], ['14630', '329', 'AW00014630', 'NULL', 'Isaiah', 'NULL', 'James', '0', '1967-02-04', 'M', 'NULL', 'M', 'isaiah7@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6547 Lexington Road', 'NULL', '168-555-0128', '2013-11-02', '2-5 Miles'], ['14631', '69', 'AW00014631', 'NULL', 'Logan', 'K', 'Flores', '0', '1966-10-15', 'M', 'NULL', 'M', 'logan15@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4396 Greystone Dr', 'NULL', '429-555-0159', '2013-07-16', '0-1 Miles'], ['14632', '70', 'AW00014632', 'NULL', 'Austin', 'A', 'Wang', '0', '1972-03-11', 'M', 'NULL', 'M', 'austin21@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '283 Winterberry Ct', 'NULL', '224-555-0124', '2013-03-01', '2-5 Miles'], ['14633', '52', 'AW00014633', 'NULL', 'Timothy', 'NULL', 'Morgan', '0', '1967-04-06', 'M', 'NULL', 'M', 'timothy14@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3605 Sinclair Ave.', 'NULL', '209-555-0183', '2013-02-16', '2-5 Miles'], ['14634', '552', 'AW00014634', 'NULL', 'Amber', 'NULL', 'Baker', '0', '1967-05-19', 'M', 'NULL', 'F', 'amber17@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3814 Harvard Drive', 'NULL', '100-555-0138', '2011-05-30', '2-5 Miles'], ['14635', '553', 'AW00014635', 'NULL', 'Luke', 'M', 'Carter', '0', '1965-10-10', 'M', 'NULL', 'M', 'luke42@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7681 Fern Leaf Lane', 'NULL', '658-555-0133', '2013-08-08', '0-1 Miles'], ['14636', '542', 'AW00014636', 'NULL', 'Kelly', 'L', 'Powell', '0', '1966-01-01', 'M', 'NULL', 'F', 'kelly13@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9464 Virginia Hills', 'NULL', '847-555-0135', '2011-05-23', '2-5 Miles'], ['14637', '607', 'AW00014637', 'NULL', 'Dustin', 'NULL', 'Nath', '0', '1976-09-01', 'M', 'NULL', 'M', 'dustin19@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '8920 Corte Poquito', 'NULL', '107-555-0110', '2013-09-24', '0-1 Miles'], ['14638', '536', 'AW00014638', 'NULL', 'Blake', 'D', 'Scott', '0', '1971-08-18', 'S', 'NULL', 'M', 'blake31@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4265 Boxwood Dr', 'NULL', '142-555-0139', '2013-12-18', '2-5 Miles'], ['14639', '315', 'AW00014639', 'NULL', 'Jeremiah', 'L', 'Howard', '0', '1966-02-21', 'M', 'NULL', 'M', 'jeremiah43@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1839 Kelly', 'NULL', '805-555-0126', '2011-05-15', '2-5 Miles'], ['14640', '51', 'AW00014640', 'NULL', 'Mackenzie', 'A', 'Adams', '0', '1973-03-03', 'S', 'NULL', 'F', 'mackenzie36@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9639 Ida Drive', 'NULL', '235-555-0126', '2013-07-27', '2-5 Miles'], ['14641', '71', 'AW00014641', 'NULL', 'Timothy', 'C', 'Turner', '0', '1978-07-15', 'M', 'NULL', 'M', 'timothy30@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '655 Bidweld St.', 'NULL', '788-555-0181', '2013-04-08', '0-1 Miles'], ['14642', '536', 'AW00014642', 'NULL', 'Jeffery', 'C', 'Zeng', '0', '1972-11-10', 'S', 'NULL', 'M', 'jeffery22@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1705 9th St.', 'NULL', '153-555-0199', '2013-05-26', '0-1 Miles'], ['14643', '616', 'AW00014643', 'NULL', 'Eric', 'M', 'Simmons', '0', '1972-07-14', 'S', 'NULL', 'M', 'eric22@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9208 St. Germain Lane', 'NULL', '175-555-0147', '2011-06-03', '2-5 Miles'], ['14644', '543', 'AW00014644', 'NULL', 'Jennifer', 'R', 'Lee', '0', '1973-06-12', 'S', 'NULL', 'F', 'jennifer49@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3869 Northwood Drive', 'NULL', '576-555-0167', '2013-02-10', '0-1 Miles'], ['14645', '326', 'AW00014645', 'NULL', 'Isaac', 'P', 'Kelly', '0', '1972-08-20', 'S', 'NULL', 'M', 'isaac2@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '7141 Second Ave.', 'NULL', '789-555-0155', '2011-06-24', '2-5 Miles'], ['14646', '339', 'AW00014646', 'NULL', 'Dylan', 'L', 'Garcia', '0', '1978-01-03', 'S', 'NULL', 'M', 'dylan46@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '3931 Scott Street', 'NULL', '847-555-0125', '2011-06-25', '0-1 Miles'], ['14647', '347', 'AW00014647', 'NULL', 'Sean', 'A', 'Howard', '0', '1972-12-08', 'M', 'NULL', 'M', 'sean19@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '7741 Thunderbird Dr.', 'NULL', '223-555-0187', '2011-06-20', '0-1 Miles'], ['14648', '343', 'AW00014648', 'NULL', 'Eric', 'M', 'Evans', '0', '1933-12-22', 'S', 'NULL', 'M', 'eric42@adventure-works.com', '90000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '456 Stanford Way', 'NULL', '751-555-0120', '2011-06-15', '0-1 Miles'], ['14649', '374', 'AW00014649', 'NULL', 'Grace', 'NULL', 'Cox', '0', '1977-05-20', 'M', 'NULL', 'F', 'grace36@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2863 Polk Street', 'NULL', '326-555-0182', '2011-06-20', '2-5 Miles'], ['14650', '644', 'AW00014650', 'NULL', 'Adam', 'NULL', 'Perry', '0', '1966-03-27', 'M', 'NULL', 'M', 'adam5@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3384 Malibu Place', 'NULL', '274-555-0149', '2011-06-27', '2-5 Miles'], ['14651', '552', 'AW00014651', 'NULL', 'Amber', 'NULL', 'Green', '0', '1965-11-11', 'M', 'NULL', 'F', 'amber15@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5951 Bourton Ct.', 'NULL', '487-555-0151', '2011-06-07', '2-5 Miles'], ['14652', '300', 'AW00014652', 'NULL', 'Russell', 'S', 'Luo', '0', '1966-06-01', 'M', 'NULL', 'M', 'russell10@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2874 Via Del Verdes', 'NULL', '646-555-0172', '2011-06-22', '2-5 Miles'], ['14653', '311', 'AW00014653', 'NULL', 'Troy', 'H', 'Fernandez', '0', '1964-07-06', 'M', 'NULL', 'M', 'troy17@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5087 Bonita Ave.', 'NULL', '499-555-0155', '2011-07-25', '2-5 Miles'], ['14654', '627', 'AW00014654', 'NULL', 'Kyle', 'P', 'Collins', '0', '1965-02-10', 'M', 'NULL', 'M', 'kyle32@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '9249 Norris Court', 'NULL', '485-555-0175', '2013-04-01', '2-5 Miles'], ['14655', '71', 'AW00014655', 'NULL', 'Kayla', 'E', 'Washington', '0', '1970-01-24', 'M', 'NULL', 'F', 'kayla37@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '3', '8324 Rolling Hill Way', 'NULL', '110-555-0112', '2013-02-21', '10+ Miles'], ['14656', '609', 'AW00014656', 'NULL', 'Bryant', 'R', 'Fernandez', '0', '1964-09-04', 'M', 'NULL', 'M', 'bryant15@adventure-works.com', '80000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9610 Moccasin Ct', 'NULL', '657-555-0139', '2011-07-13', '0-1 Miles'], ['14657', '633', 'AW00014657', 'NULL', 'John', 'W', 'Thomas', '0', '1964-05-10', 'M', 'NULL', 'M', 'john48@adventure-works.com', '80000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1872 Carletto Drive', 'NULL', '534-555-0117', '2011-07-01', '0-1 Miles'], ['14658', '69', 'AW00014658', 'NULL', 'Chloe', 'J', 'Green', '0', '1969-05-22', 'M', 'NULL', 'F', 'chloe12@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '133 Lorie Ln.', 'NULL', '178-555-0186', '2013-06-04', '2-5 Miles'], ['14659', '348', 'AW00014659', 'NULL', 'Zachary', 'E', 'Harris', '0', '1963-07-20', 'M', 'NULL', 'M', 'zachary44@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9351 Terra Calitina', 'NULL', '543-555-0165', '2013-05-27', '2-5 Miles'], ['14660', '547', 'AW00014660', 'NULL', 'Gabrielle', 'NULL', 'Howard', '0', '1969-03-02', 'M', 'NULL', 'F', 'gabrielle11@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2572 H Street', 'NULL', '597-555-0121', '2011-07-19', '0-1 Miles'], ['14661', '56', 'AW00014661', 'NULL', 'Jade', 'D', 'Ward', '0', '1963-10-04', 'M', 'NULL', 'F', 'jade9@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4751 Grant Street', 'NULL', '148-555-0164', '2013-05-02', '2-5 Miles'], ['14662', '315', 'AW00014662', 'NULL', 'Jack', 'NULL', 'Ross', '0', '1963-11-06', 'M', 'NULL', 'M', 'jack4@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1463 El Verano', 'NULL', '918-555-0129', '2011-07-25', '0-1 Miles'], ['14663', '310', 'AW00014663', 'NULL', 'Arturo', 'R', 'Hu', '0', '1964-04-02', 'M', 'NULL', 'M', 'arturo22@adventure-works.com', '70000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '8701 Tuolumne Way', 'NULL', '193-555-0116', '2013-11-16', '2-5 Miles'], ['14664', '358', 'AW00014664', 'NULL', 'Kayla', 'L', 'Ross', '0', '1963-11-30', 'S', 'NULL', 'F', 'kayla28@adventure-works.com', '80000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '8751 Upland Dr.', 'NULL', '735-555-0157', '2011-07-30', '0-1 Miles'], ['14665', '40', 'AW00014665', 'NULL', 'Jesse', 'J', 'King', '0', '1975-01-14', 'M', 'NULL', 'M', 'jesse43@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '7832 Military East', 'NULL', '1 (11) 500 555-0193', '2013-06-22', '0-1 Miles'], ['14666', '11', 'AW00014666', 'NULL', 'Louis', 'NULL', 'Gao', '0', '1980-02-07', 'M', 'NULL', 'M', 'louis9@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '0', '3529 Sweetwater Drive', 'NULL', '1 (11) 500 555-0117', '2012-09-10', '0-1 Miles'], ['14667', '35', 'AW00014667', 'NULL', 'Olivia', 'L', 'Alexander', '0', '1976-01-17', 'M', 'NULL', 'F', 'olivia64@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '4223 Las Trampas Road', 'NULL', '1 (11) 500 555-0115', '2012-09-24', '0-1 Miles'], ['14668', '18', 'AW00014668', 'NULL', 'Joe', 'NULL', 'Martin', '0', '1975-09-01', 'M', 'NULL', 'M', 'joe24@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '3072 Gumwood Dr.', 'NULL', '1 (11) 500 555-0118', '2012-09-04', '0-1 Miles'], ['14669', '7', 'AW00014669', 'NULL', 'Erika', 'L', 'Blanco', '0', '1976-01-06', 'M', 'NULL', 'F', 'erika13@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '2341 Peachwillow', 'NULL', '1 (11) 500 555-0141', '2013-09-06', '0-1 Miles'], ['14670', '5', 'AW00014670', 'NULL', 'Leslie', 'NULL', 'Gill', '0', '1974-05-03', 'S', 'NULL', 'F', 'leslie14@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7186 N. Thompson Rd.', 'NULL', '1 (11) 500 555-0180', '2012-09-08', '2-5 Miles'], ['14671', '6', 'AW00014671', 'NULL', 'Cristina', 'M', 'Lal', '0', '1978-08-05', 'M', 'NULL', 'F', 'cristina8@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9320 Teakwood Dr.', 'NULL', '1 (11) 500 555-0189', '2012-09-25', '0-1 Miles'], ['14672', '21', 'AW00014672', 'NULL', 'Omar', 'F', 'Nath', '0', '1974-10-07', 'S', 'NULL', 'M', 'omar39@adventure-works.com', '110000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '5711 Shannon Lane', 'NULL', '1 (11) 500 555-0183', '2012-09-26', '0-1 Miles'], ['14673', '22', 'AW00014673', 'NULL', 'Willie', 'NULL', 'Rai', '0', '1974-12-21', 'M', 'NULL', 'M', 'willie37@adventure-works.com', '110000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '174 Cedar Point Loop', 'NULL', '1 (11) 500 555-0191', '2012-09-09', '0-1 Miles'], ['14674', '39', 'AW00014674', 'NULL', 'Alexis', 'D', 'Williams', '0', '1973-03-30', 'M', 'NULL', 'F', 'alexis2@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '4938 York Dr.', 'NULL', '1 (11) 500 555-0114', '2013-08-30', '10+ Miles'], ['14675', '25', 'AW00014675', 'NULL', 'Brandi', 'M', 'Gomez', '0', '1973-02-02', 'M', 'NULL', 'F', 'brandi1@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '7164 Mepham Drive', 'NULL', '1 (11) 500 555-0157', '2013-06-07', '10+ Miles'], ['14676', '4', 'AW00014676', 'NULL', 'Micah', 'C', 'Wang', '0', '1972-07-25', 'S', 'NULL', 'M', 'micah11@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '1616 East Lane', 'NULL', '1 (11) 500 555-0131', '2012-09-14', '10+ Miles'], ['14677', '13', 'AW00014677', 'NULL', 'Ross', 'NULL', 'Hernandez', '0', '1977-10-06', 'S', 'NULL', 'M', 'ross24@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '4223 Almond Ave.', 'NULL', '1 (11) 500 555-0120', '2013-05-11', '0-1 Miles'], ['14678', '11', 'AW00014678', 'NULL', 'Shannon', 'M', 'Zheng', '0', '1971-12-29', 'M', 'NULL', 'F', 'shannon18@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '4430 Ardilla Road', 'NULL', '1 (11) 500 555-0195', '2013-02-19', '0-1 Miles'], ['14679', '37', 'AW00014679', 'NULL', 'Natasha', 'NULL', 'Suarez', '0', '1972-04-14', 'S', 'NULL', 'F', 'natasha19@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '8994 Richard Ave.', 'NULL', '1 (11) 500 555-0183', '2013-12-25', '0-1 Miles'], ['14680', '20', 'AW00014680', 'NULL', 'Marvin', 'NULL', 'Munoz', '0', '1972-05-18', 'S', 'NULL', 'M', 'marvin8@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '3814 Harvard Drive', 'NULL', '1 (11) 500 555-0110', '2013-11-28', '1-2 Miles'], ['14681', '24', 'AW00014681', 'NULL', 'Veronica', 'NULL', 'Chandra', '0', '1979-09-30', 'S', 'NULL', 'F', 'veronica2@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4736 S. Royal Links Circle', 'NULL', '1 (11) 500 555-0193', '2012-08-29', '0-1 Miles'], ['14682', '36', 'AW00014682', 'NULL', 'Gail', 'C', 'Alexander', '0', '1979-08-09', 'S', 'NULL', 'F', 'gail5@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '918 Park Lane', 'NULL', '1 (11) 500 555-0120', '2013-05-17', '5-10 Miles'], ['14683', '28', 'AW00014683', 'NULL', 'Molly', 'NULL', 'Sai', '0', '1970-05-26', 'M', 'NULL', 'F', 'molly6@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '7893 Carson Street', 'NULL', '1 (11) 500 555-0134', '2013-03-01', '5-10 Miles'], ['14684', '34', 'AW00014684', 'NULL', 'James', 'NULL', 'Zhang', '0', '1970-06-13', 'M', 'NULL', 'M', 'james39@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '2515 Beauty St', 'NULL', '1 (11) 500 555-0129', '2013-10-16', '0-1 Miles'], ['14685', '24', 'AW00014685', 'NULL', 'Lawrence', 'NULL', 'Ortega', '0', '1969-03-16', 'S', 'NULL', 'M', 'lawrence21@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '6660 Hill Top Rd.', 'NULL', '1 (11) 500 555-0176', '2013-08-01', '0-1 Miles'], ['14686', '17', 'AW00014686', 'NULL', 'Casey', 'A', 'Raje', '0', '1969-06-12', 'M', 'NULL', 'F', 'casey15@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '505 Lyman Rd', 'NULL', '1 (11) 500 555-0188', '2013-04-13', '5-10 Miles'], ['14687', '196', 'AW00014687', 'NULL', 'Olivia', 'T', 'Price', '0', '1979-08-22', 'S', 'NULL', 'F', 'olivia47@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '14, avenue du Port', 'NULL', '1 (11) 500 555-0152', '2013-09-08', '2-5 Miles'], ['14688', '132', 'AW00014688', 'NULL', 'Tabitha', 'NULL', 'Carlson', '0', '1986-04-12', 'S', 'NULL', 'F', 'tabitha39@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Altendorfer Straße 390', 'NULL', '1 (11) 500 555-0160', '2013-02-23', '1-2 Miles'], ['14689', '207', 'AW00014689', 'Mr.', 'Lloyd', 'M.', 'Saunders', '0', '1986-05-26', 'S', 'NULL', 'F', 'lloyd0@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '1, rue de l´Avenir', 'NULL', '535-555-0100', '2013-12-29', '0-1 Miles'], ['14690', '117', 'AW00014690', 'NULL', 'Drew', 'D', 'Rai', '0', '1985-07-20', 'S', 'NULL', 'M', 'drew19@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Brunnenstr 11', 'NULL', '1 (11) 500 555-0193', '2013-12-20', '1-2 Miles'], ['14691', '186', 'AW00014691', 'NULL', 'Derrick', 'NULL', 'Torres', '0', '1985-05-12', 'M', 'NULL', 'M', 'derrick11@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '4195, rue Léo Delibes', 'NULL', '1 (11) 500 555-0149', '2013-09-02', '1-2 Miles'], ['14692', '240', 'AW00014692', 'NULL', 'Nichole', 'M', 'Sharma', '0', '1983-09-09', 'S', 'NULL', 'F', 'nichole9@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '7025 Eastgate Avenue', 'NULL', '1 (11) 500 555-0141', '2013-11-11', '2-5 Miles'], ['14693', '209', 'AW00014693', 'NULL', 'Robert', 'C', 'Parker', '0', '1984-02-22', 'S', 'NULL', 'M', 'robert44@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '34, rue des Grands Champs', 'NULL', '1 (11) 500 555-0128', '2013-10-06', '2-5 Miles'], ['14694', '271', 'AW00014694', 'NULL', 'Haley', 'NULL', 'Parker', '0', '1978-09-25', 'S', 'NULL', 'F', 'haley47@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5188 Duke Way', 'NULL', '1 (11) 500 555-0112', '2013-03-07', '2-5 Miles'], ['14695', '156', 'AW00014695', 'NULL', 'Russell', 'NULL', 'Andersen', '0', '1978-03-19', 'S', 'NULL', 'M', 'russell15@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Berliner Platz 4', 'NULL', '1 (11) 500 555-0172', '2013-11-03', '0-1 Miles'], ['14696', '119', 'AW00014696', 'NULL', 'Shawn', 'J', 'Anand', '0', '1977-11-07', 'S', 'NULL', 'M', 'shawn24@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Alderstr 8429', 'NULL', '1 (11) 500 555-0156', '2013-04-12', '0-1 Miles'], ['14697', '248', 'AW00014697', 'NULL', 'Nelson', 'NULL', 'Jimenez', '0', '1977-08-09', 'S', 'NULL', 'M', 'nelson5@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '9891 Clayton Way', 'NULL', '1 (11) 500 555-0193', '2011-05-29', '1-2 Miles'], ['14698', '166', 'AW00014698', 'NULL', 'Diane', 'NULL', 'Navarro', '0', '1984-10-09', 'M', 'NULL', 'F', 'diane15@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Potsdamer Straße 92324', 'NULL', '1 (11) 500 555-0168', '2013-12-12', '1-2 Miles'], ['14699', '150', 'AW00014699', 'NULL', 'Gerald', 'R', 'Munoz', '0', '1979-04-17', 'M', 'NULL', 'M', 'gerald15@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Wallstr 254', 'NULL', '1 (11) 500 555-0146', '2013-07-06', '1-2 Miles'], ['14700', '238', 'AW00014700', 'NULL', 'Edward', 'NULL', 'Edwards', '0', '1979-05-21', 'M', 'NULL', 'M', 'edward20@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7392 Coach Place', 'NULL', '1 (11) 500 555-0154', '2011-05-27', '0-1 Miles'], ['14701', '180', 'AW00014701', 'NULL', 'Maurizio', 'J', 'Macagno', '0', '1977-09-18', 'S', 'NULL', 'M', 'maurizio0@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '194, rue de Bas Marin', 'NULL', '1 (11) 500 555-0173', '2012-03-14', '1-2 Miles'], ['14702', '234', 'AW00014702', 'NULL', 'Curtis', 'T', 'Zimmerman', '0', '1978-06-06', 'M', 'NULL', 'M', 'curtis1@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6180 E. 6th Street', 'NULL', '1 (11) 500 555-0145', '2011-05-07', '1-2 Miles'], ['14703', '165', 'AW00014703', 'NULL', 'Clifford', 'NULL', 'Srini', '0', '1977-11-30', 'S', 'NULL', 'M', 'clifford8@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Viktoria-Luise-Platz 473', 'Verkaufsabteilung', '1 (11) 500 555-0195', '2013-02-17', '2-5 Miles'], ['14704', '188', 'AW00014704', 'NULL', 'Kara', 'B', 'Andersen', '0', '1977-01-17', 'S', 'NULL', 'F', 'kara12@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '6, route de Marseille', 'NULL', '1 (11) 500 555-0186', '2013-02-04', '0-1 Miles'], ['14705', '241', 'AW00014705', 'NULL', 'Riley', 'NULL', 'Wood', '0', '1977-07-14', 'S', 'NULL', 'F', 'riley2@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1061 Carzino Ct', 'NULL', '1 (11) 500 555-0121', '2011-05-12', '1-2 Miles'], ['14706', '246', 'AW00014706', 'NULL', 'Kate', 'NULL', 'Jai', '0', '1977-11-23', 'S', 'NULL', 'F', 'kate9@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8307 Monument Blvd.', 'NULL', '1 (11) 500 555-0150', '2013-09-06', '0-1 Miles'], ['14707', '164', 'AW00014707', 'NULL', 'Tonya', 'J', 'Raje', '0', '1977-04-25', 'S', 'NULL', 'F', 'tonya13@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Winter der Böck 8550', 'Verkaufsabteilung', '1 (11) 500 555-0164', '2013-02-12', '0-1 Miles'], ['14708', '200', 'AW00014708', 'NULL', 'Evelyn', 'E', 'Kapoor', '0', '1976-10-02', 'S', 'NULL', 'F', 'evelyn1@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '12, cours Mirabeau', 'NULL', '1 (11) 500 555-0114', '2012-04-18', '1-2 Miles'], ['14709', '175', 'AW00014709', 'NULL', 'Ian', 'K', 'Martin', '0', '1982-03-10', 'S', 'NULL', 'M', 'ian14@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Zollhof 626655', 'NULL', '1 (11) 500 555-0195', '2011-09-14', '2-5 Miles'], ['14710', '147', 'AW00014710', 'NULL', 'Lisa', 'C', 'Ma', '0', '1976-08-23', 'S', 'NULL', 'F', 'lisa19@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Auf den Kuhlen Straße 2', 'NULL', '1 (11) 500 555-0160', '2013-10-10', '2-5 Miles'], ['14711', '160', 'AW00014711', 'NULL', 'Deborah', 'NULL', 'Xu', '0', '1977-04-30', 'S', 'NULL', 'F', 'deborah9@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Essener Straße 226', 'NULL', '1 (11) 500 555-0118', '2013-03-27', '2-5 Miles'], ['14712', '252', 'AW00014712', 'NULL', 'Eugene', 'NULL', 'Liu', '0', '1977-05-21', 'S', 'NULL', 'M', 'eugene8@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1828 Mt. Orange Place', 'NULL', '1 (11) 500 555-0185', '2011-05-20', '2-5 Miles'], ['14713', '172', 'AW00014713', 'NULL', 'Jon', 'W', 'Ye', '0', '1976-01-05', 'S', 'NULL', 'M', 'jon29@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Postfach 66 00 77', 'Kreditorenbuchhaltung', '1 (11) 500 555-0131', '2011-09-11', '1-2 Miles'], ['14714', '183', 'AW00014714', 'NULL', 'Meghan', 'J', 'Diaz', '0', '1976-02-08', 'S', 'NULL', 'F', 'meghan2@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '801, rue de Maubeuge', 'NULL', '1 (11) 500 555-0119', '2012-04-22', '1-2 Miles'], ['14715', '149', 'AW00014715', 'NULL', 'Erik', 'E', 'Munoz', '0', '1981-11-16', 'M', 'NULL', 'M', 'erik8@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Winterfeldtstr 249', 'NULL', '1 (11) 500 555-0175', '2013-10-03', '0-1 Miles'], ['14716', '184', 'AW00014716', 'NULL', 'Shannon', 'W', 'Zhou', '0', '1982-05-28', 'S', 'NULL', 'F', 'shannon9@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '29, rue Saint Denis', 'NULL', '1 (11) 500 555-0119', '2012-04-09', '0-1 Miles'], ['14717', '190', 'AW00014717', 'NULL', 'Abigail', 'D', 'Rivera', '0', '1976-09-01', 'S', 'NULL', 'F', 'abigail12@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '84, rue de la Centenaire', 'NULL', '1 (11) 500 555-0163', '2013-03-13', '1-2 Miles'], ['14718', '155', 'AW00014718', 'NULL', 'Gregory', 'NULL', 'Raji', '0', '1977-04-13', 'S', 'NULL', 'M', 'gregory25@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Kampstr 5855', 'NULL', '1 (11) 500 555-0185', '2013-03-06', '1-2 Miles'], ['14719', '182', 'AW00014719', 'NULL', 'Ronnie', 'NULL', 'He', '0', '1975-10-06', 'M', 'NULL', 'M', 'ronnie16@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5, avenue de Villiers', 'NULL', '1 (11) 500 555-0148', '2012-04-07', '0-1 Miles'], ['14720', '232', 'AW00014720', 'NULL', 'Naomi', 'B', 'Dominguez', '0', '1976-01-01', 'S', 'NULL', 'F', 'naomi13@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4493 N. Broadway', 'NULL', '1 (11) 500 555-0165', '2011-05-14', '1-2 Miles'], ['14721', '633', 'AW00014721', 'NULL', 'Daniel', 'J', 'Jones', '0', '1985-07-12', 'S', 'NULL', 'M', 'daniel20@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9875 C Del Rio Circle', 'NULL', '585-555-0127', '2013-12-12', '0-1 Miles'], ['14722', '611', 'AW00014722', 'NULL', 'Sharon', 'L', 'Carson', '0', '1980-06-25', 'S', 'NULL', 'F', 'sharon20@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3250 Golden Meadow Dr.', 'NULL', '411-555-0128', '2011-07-31', '1-2 Miles'], ['14723', '54', 'AW00014723', 'NULL', 'Andrew', 'NULL', 'Smith', '0', '1980-10-23', 'S', 'NULL', 'M', 'andrew9@adventure-works.com', '40000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5458 Encino Drive', 'NULL', '194-555-0177', '2013-03-20', '0-1 Miles'], ['14724', '49', 'AW00014724', 'NULL', 'Dylan', 'L', 'Robinson', '0', '1972-01-09', 'M', 'NULL', 'M', 'dylan48@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '380 Canyon Road', 'NULL', '915-555-0155', '2013-05-20', '0-1 Miles'], ['14725', '69', 'AW00014725', 'NULL', 'Evan', 'G', 'Morgan', '0', '1972-05-26', 'M', 'NULL', 'M', 'evan14@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2710 Chinquapin Court', 'NULL', '702-555-0169', '2013-03-18', '0-1 Miles'], ['14726', '627', 'AW00014726', 'NULL', 'Zachary', 'F', 'Yang', '0', '1971-12-31', 'S', 'NULL', 'M', 'zachary25@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '1867 Blue Ridge Dr', 'NULL', '301-555-0188', '2011-07-25', '1-2 Miles'], ['14727', '545', 'AW00014727', 'NULL', 'Anna', 'S', 'Bryant', '0', '1977-07-02', 'S', 'NULL', 'F', 'anna43@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4698 G Street', 'NULL', '223-555-0146', '2011-07-08', '1-2 Miles'], ['14728', '633', 'AW00014728', 'NULL', 'Elizabeth', 'NULL', 'Henderson', '0', '1982-11-15', 'S', 'NULL', 'F', 'elizabeth34@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3141 Park Tree Ct.', 'NULL', '216-555-0122', '2011-07-24', '1-2 Miles'], ['14729', '298', 'AW00014729', 'NULL', 'Gloria', 'T', 'Rubio', '0', '1977-07-04', 'S', 'NULL', 'F', 'gloria21@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5669 Ironwood Way', 'NULL', '826-555-0199', '2013-07-13', '0-1 Miles'], ['14730', '298', 'AW00014730', 'NULL', 'Jerry', 'M', 'Ferrier', '0', '1964-02-14', 'M', 'NULL', 'M', 'jerry22@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '1132 Plymouth Dr.', 'NULL', '433-555-0172', '2011-08-26', '0-1 Miles'], ['14731', '302', 'AW00014731', 'NULL', 'Seth', 'A', 'Brown', '0', '1964-05-21', 'M', 'NULL', 'M', 'seth4@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2168 Reading Drive', 'NULL', '177-555-0123', '2011-08-25', '5-10 Miles'], ['14732', '631', 'AW00014732', 'NULL', 'Trinity', 'NULL', 'Cook', '0', '1970-05-20', 'M', 'NULL', 'F', 'trinity18@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7918 Snyder Lane', 'Unit D7', '443-555-0164', '2011-08-04', '2-5 Miles'], ['14733', '299', 'AW00014733', 'NULL', 'Clarence', 'A', 'Raji', '0', '1958-08-26', 'M', 'NULL', 'M', 'clarence35@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4035 Red Maple Ct', 'NULL', '798-555-0183', '2011-08-01', '2-5 Miles'], ['14734', '539', 'AW00014734', 'NULL', 'Kevin', 'L', 'Edwards', '0', '1964-11-07', 'M', 'NULL', 'M', 'kevin38@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3440 Concord Ct.', 'NULL', '314-555-0167', '2011-08-06', '2-5 Miles'], ['14735', '546', 'AW00014735', 'NULL', 'Maria', 'NULL', 'Rogers', '0', '1959-04-09', 'M', 'NULL', 'F', 'maria3@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7954 Monument Blvd', 'NULL', '801-555-0117', '2011-08-06', '2-5 Miles'], ['14736', '536', 'AW00014736', 'NULL', 'Jack', 'E', 'Roberts', '0', '1959-11-08', 'M', 'NULL', 'M', 'jack39@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '1302 Martin St.', 'NULL', '553-555-0193', '2013-03-01', '0-1 Miles'], ['14737', '609', 'AW00014737', 'NULL', 'Dominic', 'M', 'Srini', '0', '1959-11-17', 'S', 'NULL', 'M', 'dominic8@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '930 Moss Hollow Court', 'NULL', '481-555-0110', '2011-08-24', '1-2 Miles'], ['14738', '326', 'AW00014738', 'NULL', 'Ethan', 'NULL', 'Garcia', '0', '1959-09-12', 'M', 'NULL', 'M', 'ethan52@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6183 Pinecrest Rd.', 'NULL', '185-555-0117', '2011-09-11', '0-1 Miles'], ['14739', '331', 'AW00014739', 'NULL', 'Charles', 'J', 'Gonzalez', '0', '1960-03-25', 'M', 'NULL', 'M', 'charles37@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9120 Springfield Drive', 'NULL', '189-555-0168', '2011-09-23', '0-1 Miles'], ['14740', '334', 'AW00014740', 'NULL', 'Jenna', 'M', 'Scott', '0', '1965-03-19', 'M', 'NULL', 'F', 'jenna13@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2402 Cinnabar St.', 'NULL', '487-555-0139', '2011-08-31', '1-2 Miles'], ['14741', '383', 'AW00014741', 'NULL', 'Emma', 'R', 'Cooper', '0', '1960-01-31', 'M', 'NULL', 'F', 'emma35@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2258 Pablo Neruda', 'NULL', '418-555-0139', '2011-09-14', '0-1 Miles'], ['14742', '336', 'AW00014742', 'NULL', 'Andrea', 'NULL', 'Howard', '0', '1961-01-15', 'M', 'NULL', 'F', 'andrea12@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1739 Sun View Terr', '#315', '950-555-0111', '2013-08-17', '1-2 Miles'], ['14743', '638', 'AW00014743', 'NULL', 'Nathan', 'l', 'Turner', '0', '1966-02-21', 'M', 'NULL', 'M', 'nathan34@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '880 Hackamore Lane', 'NULL', '760-555-0138', '2013-07-06', '1-2 Miles'], ['14744', '612', 'AW00014744', 'NULL', 'Elijah', 'L', 'Yang', '0', '1961-02-22', 'M', 'NULL', 'M', 'elijah1@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1629 Green View Court', 'NULL', '110-555-0172', '2011-08-31', '1-2 Miles'], ['14745', '49', 'AW00014745', 'NULL', 'Luke', 'E', 'Hall', '0', '1960-09-17', 'M', 'NULL', 'M', 'luke51@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '115 Santa Fe Street', 'NULL', '194-555-0165', '2013-07-28', '0-1 Miles'], ['14746', '374', 'AW00014746', 'NULL', 'Courtney', 'T', 'Nelson', '0', '1960-10-02', 'M', 'NULL', 'F', 'courtney7@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8182 Stephanie Way', 'NULL', '160-555-0110', '2011-09-06', '1-2 Miles'], ['14747', '331', 'AW00014747', 'NULL', 'Aidan', 'NULL', 'Wood', '0', '1966-11-12', 'M', 'NULL', 'M', 'aidan2@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '673 Chrisland Court', 'NULL', '129-555-0157', '2011-09-15', '1-2 Miles'], ['14748', '329', 'AW00014748', 'NULL', 'Don', 'A', 'Roessler', '0', '1967-03-06', 'M', 'NULL', 'M', 'don7@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9737 Colt Ct.', 'NULL', '316-555-0133', '2013-07-31', '1-2 Miles'], ['14749', '301', 'AW00014749', 'NULL', 'Jose', 'C', 'Jenkins', '0', '1967-04-24', 'M', 'NULL', 'M', 'jose30@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4920 Orange St', 'NULL', '159-555-0110', '2013-03-16', '0-1 Miles'], ['14750', '347', 'AW00014750', 'NULL', 'Mary', 'S', 'Green', '0', '1962-05-05', 'M', 'NULL', 'F', 'mary28@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2747 Cranbrook Way', 'NULL', '145-555-0147', '2011-09-15', '1-2 Miles'], ['14751', '648', 'AW00014751', 'NULL', 'Gabrielle', 'NULL', 'Price', '0', '1961-11-05', 'M', 'NULL', 'F', 'gabrielle22@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3410 Meadowbrook Dr.', 'NULL', '388-555-0121', '2013-06-30', '0-1 Miles'], ['14752', '300', 'AW00014752', 'NULL', 'Seth', 'NULL', 'Turner', '0', '1963-05-11', 'M', 'NULL', 'M', 'seth41@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2357 Madrid', 'NULL', '135-555-0119', '2011-10-28', '0-1 Miles'], ['14753', '539', 'AW00014753', 'NULL', 'Austin', 'C', 'Foster', '0', '1979-09-20', 'M', 'NULL', 'M', 'austin12@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6340 Olivera Rd', 'NULL', '154-555-0151', '2011-10-01', '1-2 Miles'], ['14754', '609', 'AW00014754', 'NULL', 'Grant', 'NULL', 'Pal', '0', '1963-05-17', 'M', 'NULL', 'M', 'grant14@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9503 Clark Creek Lane', 'NULL', '166-555-0146', '2011-10-05', '1-2 Miles'], ['14755', '302', 'AW00014755', 'NULL', 'Robert', 'NULL', 'Davis', '0', '1963-05-21', 'M', 'NULL', 'M', 'robert64@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6729 Mt. Washington', 'NULL', '102-555-0110', '2011-10-23', '0-1 Miles'], ['14756', '331', 'AW00014756', 'NULL', 'Charles', 'NULL', 'Reed', '0', '1962-11-12', 'M', 'NULL', 'M', 'charles68@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7974 Seal Way', 'NULL', '667-555-0141', '2011-10-26', '0-1 Miles'], ['14757', '361', 'AW00014757', 'NULL', 'Elizabeth', 'B', 'Garcia', '0', '1967-12-30', 'M', 'NULL', 'F', 'elizabeth20@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7807 Pine Creek Way', 'NULL', '183-555-0159', '2011-10-18', '1-2 Miles'], ['14758', '325', 'AW00014758', 'NULL', 'Victoria', 'NULL', 'Long', '0', '1969-05-22', 'S', 'NULL', 'F', 'victoria57@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6745 Blue Ridge Drive', 'NULL', '986-555-0131', '2013-05-04', '1-2 Miles'], ['14759', '368', 'AW00014759', 'NULL', 'Madison', 'C', 'Davis', '0', '1963-09-09', 'S', 'NULL', 'F', 'madison5@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8571 Sun View Drive', 'NULL', '430-555-0115', '2014-01-11', '0-1 Miles'], ['14760', '68', 'AW00014760', 'NULL', 'Zachary', 'L', 'Lewis', '0', '1964-06-10', 'M', 'NULL', 'M', 'zachary28@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2483 Northridge Ct.', 'NULL', '694-555-0116', '2013-06-05', '1-2 Miles'], ['14761', '361', 'AW00014761', 'NULL', 'Morgan', 'L', 'Kelly', '0', '1969-09-21', 'S', 'NULL', 'F', 'morgan68@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '313 Ladera', 'NULL', '199-555-0126', '2013-02-03', '1-2 Miles'], ['14762', '300', 'AW00014762', 'NULL', 'Adriana', 'K', 'Perez', '0', '1964-02-07', 'S', 'NULL', 'F', 'adriana22@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6793 Longview Road', 'NULL', '250-555-0118', '2013-06-27', '1-2 Miles'], ['14763', '536', 'AW00014763', 'NULL', 'George', 'J', 'Arun', '0', '1964-05-10', 'S', 'NULL', 'M', 'george12@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8844 Garcia', 'NULL', '503-555-0119', '2013-08-19', '1-2 Miles'], ['14764', '345', 'AW00014764', 'NULL', 'Xavier', 'NULL', 'Scott', '0', '1965-03-02', 'S', 'NULL', 'M', 'xavier27@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2748 Logan Court', 'NULL', '248-555-0114', '2013-12-07', '1-2 Miles'], ['14765', '71', 'AW00014765', 'NULL', 'Kevin', 'NULL', 'Nelson', '0', '1964-08-15', 'M', 'NULL', 'M', 'kevin47@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7977 Marina Road', 'NULL', '157-555-0158', '2013-08-26', '0-1 Miles'], ['14766', '223', 'AW00014766', 'NULL', 'Curtis', 'M', 'Xu', '0', '1973-08-21', 'S', 'NULL', 'M', 'curtis10@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '1, place Beaubernard', 'NULL', '1 (11) 500 555-0166', '2013-11-25', '2-5 Miles'], ['14767', '157', 'AW00014767', 'NULL', 'Stacy', 'A', 'Blanco', '0', '1974-02-15', 'S', 'NULL', 'F', 'stacy16@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Rotthäuser Weg 22', 'NULL', '1 (11) 500 555-0183', '2013-09-29', '2-5 Miles'], ['14768', '175', 'AW00014768', 'NULL', 'Ian', 'NULL', 'Kelly', '0', '1929-12-18', 'M', 'NULL', 'M', 'ian67@adventure-works.com', '10000.00', '4', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Hans-Rosenthal-Platz 512', 'NULL', '1 (11) 500 555-0120', '2013-06-01', '0-1 Miles'], ['14769', '160', 'AW00014769', 'NULL', 'Jessica', 'NULL', 'Powell', '0', '1974-03-15', 'M', 'NULL', 'F', 'jessica33@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Herzogstr 5772', 'NULL', '1 (11) 500 555-0164', '2011-09-04', '0-1 Miles'], ['14770', '229', 'AW00014770', 'NULL', 'Melvin', 'D', 'Andersen', '0', '1979-06-02', 'M', 'NULL', 'M', 'melvin11@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7954 Vista Avenue', 'NULL', '1 (11) 500 555-0123', '2011-06-28', '0-1 Miles'], ['14771', '249', 'AW00014771', 'NULL', 'Heidi', 'NULL', 'Vance', '0', '1974-02-20', 'M', 'NULL', 'F', 'heidi6@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1686 Lavere Way', 'NULL', '1 (11) 500 555-0170', '2011-06-18', '1-2 Miles'], ['14772', '118', 'AW00014772', 'NULL', 'Stacy', 'A', 'Torres', '0', '1974-04-22', 'M', 'NULL', 'F', 'stacy12@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Am Grossen Dern 4982', 'NULL', '1 (11) 500 555-0181', '2011-09-17', '1-2 Miles'], ['14773', '190', 'AW00014773', 'NULL', 'Noah', 'NULL', 'Ross', '0', '1973-10-25', 'M', 'NULL', 'M', 'noah0@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7, route de Marseille', 'NULL', '1 (11) 500 555-0136', '2012-04-02', '0-1 Miles'], ['14774', '143', 'AW00014774', 'NULL', 'Max', 'NULL', 'Ferrier', '0', '1973-09-14', 'S', 'NULL', 'M', 'max8@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Charlottenstr 35818', 'NULL', '1 (11) 500 555-0182', '2011-09-01', '0-1 Miles'], ['14775', '147', 'AW00014775', 'NULL', 'Bonnie', 'NULL', 'Xie', '0', '1985-05-11', 'M', 'NULL', 'F', 'bonnie8@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Curieweg 29', 'NULL', '1 (11) 500 555-0170', '2011-09-05', '0-1 Miles'], ['14776', '246', 'AW00014776', 'NULL', 'Ronald', 'D', 'Arthur', '0', '1979-01-21', 'M', 'NULL', 'M', 'ronald8@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5753 Megan Dr.', 'NULL', '1 (11) 500 555-0189', '2011-06-22', '0-1 Miles'], ['14777', '267', 'AW00014777', 'NULL', 'Kayla', 'A', 'Jenkins', '0', '1973-10-07', 'M', 'NULL', 'F', 'kayla31@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5201 Dumbarton Street', 'NULL', '1 (11) 500 555-0146', '2011-06-02', '0-1 Miles'], ['14778', '242', 'AW00014778', 'NULL', 'Renee', 'NULL', 'Jimenez', '0', '1972-12-18', 'S', 'NULL', 'F', 'renee5@adventure-works.com', '10000.00', '3', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '2941 Jill Ave', 'NULL', '1 (11) 500 555-0140', '2011-06-13', '0-1 Miles'], ['14779', '222', 'AW00014779', 'NULL', 'Henry', 'A', 'Fernandez', '0', '1978-03-08', 'S', 'NULL', 'M', 'henry17@adventure-works.com', '10000.00', '3', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '1011, avenue Foch', 'NULL', '1 (11) 500 555-0189', '2012-04-15', '0-1 Miles'], ['14780', '188', 'AW00014780', 'NULL', 'Tabitha', 'NULL', 'Alonso', '0', '1973-01-30', 'S', 'NULL', 'F', 'tabitha28@adventure-works.com', '10000.00', '4', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '22, rue Jean Mermoz', 'NULL', '1 (11) 500 555-0187', '2013-10-27', '0-1 Miles'], ['14781', '161', 'AW00014781', 'NULL', 'Robert', 'D', 'Butler', '0', '1972-10-31', 'S', 'NULL', 'M', 'robert27@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Erftplatz 66', 'NULL', '1 (11) 500 555-0112', '2013-12-15', '0-1 Miles'], ['14782', '160', 'AW00014782', 'NULL', 'Michael', 'R', 'Lewis', '0', '1973-04-15', 'S', 'NULL', 'M', 'michael53@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Kapellstr 4767', 'NULL', '1 (11) 500 555-0130', '2013-02-19', '1-2 Miles'], ['14783', '248', 'AW00014783', 'NULL', 'Cristina', 'NULL', 'Shan', '0', '1978-07-22', 'S', 'NULL', 'F', 'cristina10@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '9796 Virgil St.', 'NULL', '1 (11) 500 555-0168', '2013-09-14', '1-2 Miles'], ['14784', '263', 'AW00014784', 'NULL', 'Victor', 'K', 'Dominguez', '0', '1973-06-03', 'S', 'NULL', 'M', 'victor13@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '6819 Meadow Lane', 'NULL', '1 (11) 500 555-0181', '2013-07-04', '0-1 Miles'], ['14785', '208', 'AW00014785', 'NULL', 'Gavin', 'NULL', 'Patterson', '0', '1972-09-07', 'S', 'NULL', 'M', 'gavin10@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '1', '6, rue de l´Esplanade', 'NULL', '1 (11) 500 555-0173', '2014-01-04', '1-2 Miles'], ['14786', '117', 'AW00014786', 'NULL', 'Tristan', 'R', 'Jenkins', '0', '1978-08-08', 'M', 'NULL', 'M', 'tristan7@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Am Gallberg 186', 'NULL', '1 (11) 500 555-0111', '2013-08-11', '2-5 Miles'], ['14787', '232', 'AW00014787', 'NULL', 'Tabitha', 'NULL', 'Smith', '0', '1971-12-18', 'S', 'NULL', 'F', 'tabitha6@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '5922 Maywood Ln', 'NULL', '1 (11) 500 555-0183', '2013-07-28', '1-2 Miles'], ['14788', '201', 'AW00014788', 'NULL', 'Gerald', 'C', 'Rana', '0', '1972-06-17', 'S', 'NULL', 'M', 'gerald41@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '214, rue Léo Delibes', 'NULL', '1 (11) 500 555-0175', '2013-03-03', '1-2 Miles'], ['14789', '170', 'AW00014789', 'NULL', 'Rosa', 'K', 'Zhang', '0', '1972-04-01', 'S', 'NULL', 'F', 'rosa0@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Postfach 66 00 77', 'NULL', '1 (11) 500 555-0117', '2011-09-20', '0-1 Miles'], ['14790', '211', 'AW00014790', 'NULL', 'Terry', 'H', 'Tang', '0', '1972-08-08', 'M', 'NULL', 'M', 'terry7@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '25bis, boulevard Saint Germain', 'NULL', '1 (11) 500 555-0190', '2012-04-18', '0-1 Miles'], ['14791', '195', 'AW00014791', 'NULL', 'Ashlee', 'NULL', 'Deng', '0', '1972-10-29', 'M', 'NULL', 'F', 'ashlee8@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '59, place de la Concorde', 'NULL', '1 (11) 500 555-0193', '2012-04-28', '0-1 Miles'], ['14792', '235', 'AW00014792', 'NULL', 'Jerome', 'L', 'Rubio', '0', '1978-08-12', 'M', 'NULL', 'M', 'jerome20@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4188 Green Valley Road', 'NULL', '1 (11) 500 555-0196', '2011-06-30', '0-1 Miles'], ['14793', '245', 'AW00014793', 'NULL', 'Clayton', 'NULL', 'Nath', '0', '1972-12-18', 'S', 'NULL', 'M', 'clayton36@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2141 Del Monte Ct.', 'NULL', '1 (11) 500 555-0168', '2011-06-08', '0-1 Miles'], ['14794', '263', 'AW00014794', 'NULL', 'Gilbert', 'NULL', 'Becker', '0', '1978-08-09', 'M', 'NULL', 'M', 'gilbert40@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3831 Frigate Ct', 'NULL', '1 (11) 500 555-0113', '2011-06-21', '0-1 Miles'], ['14795', '129', 'AW00014795', 'NULL', 'Crystal', 'J', 'Gao', '0', '1971-09-03', 'M', 'NULL', 'F', 'crystal16@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', 'Auf der Krone 4993', 'NULL', '1 (11) 500 555-0136', '2011-09-02', '0-1 Miles'], ['14796', '196', 'AW00014796', 'NULL', 'Michael', 'J', 'Miller', '0', '1976-01-05', 'S', 'NULL', 'M', 'michael38@adventure-works.com', '10000.00', '4', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '62, rue de Linois', 'NULL', '1 (11) 500 555-0180', '2012-04-24', '0-1 Miles'], ['14797', '149', 'AW00014797', 'NULL', 'Steve', 'J', 'Gao', '0', '1976-01-05', 'S', 'NULL', 'M', 'steve17@adventure-works.com', '10000.00', '4', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Husemann Straße 4444', 'NULL', '1 (11) 500 555-0162', '2011-09-23', '0-1 Miles'], ['14798', '185', 'AW00014798', 'NULL', 'Colleen', 'L', 'Nara', '0', '1971-02-15', 'S', 'NULL', 'F', 'colleen39@adventure-works.com', '10000.00', '4', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '33, place de la République', 'NULL', '1 (11) 500 555-0131', '2012-04-10', '0-1 Miles'], ['14799', '260', 'AW00014799', 'NULL', 'Katie', 'R', 'Xu', '0', '1976-08-11', 'S', 'NULL', 'F', 'katie7@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '5431 Bella Avenue', 'NULL', '1 (11) 500 555-0125', '2013-02-18', '0-1 Miles'], ['14800', '161', 'AW00014800', 'NULL', 'Abby', 'NULL', 'Arthur', '0', '1970-07-03', 'M', 'NULL', 'F', 'abby5@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', 'Dunckerstr 6', 'NULL', '1 (11) 500 555-0144', '2011-09-03', '0-1 Miles'], ['14801', '131', 'AW00014801', 'NULL', 'Riley', 'R', 'Simmons', '0', '1969-08-14', 'M', 'NULL', 'F', 'riley13@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Wasserstr 6', 'NULL', '1 (11) 500 555-0110', '2011-09-29', '0-1 Miles'], ['14802', '211', 'AW00014802', 'NULL', 'Audrey', 'NULL', 'Moreno', '0', '1970-03-19', 'S', 'NULL', 'F', 'audrey7@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '79, rue des Pyrenees', 'NULL', '1 (11) 500 555-0199', '2012-04-28', '0-1 Miles'], ['14803', '147', 'AW00014803', 'NULL', 'Stacy', 'D', 'Martin', '0', '1969-12-05', 'S', 'NULL', 'F', 'stacy1@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Kappellweg 242', 'NULL', '1 (11) 500 555-0172', '2011-10-15', '0-1 Miles'], ['14804', '239', 'AW00014804', 'NULL', 'Martha', 'M', 'Zhou', '0', '1979-10-01', 'S', 'NULL', 'F', 'martha8@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '8387 B Way', 'NULL', '1 (11) 500 555-0156', '2013-04-29', '0-1 Miles'], ['14805', '172', 'AW00014805', 'NULL', 'Kari', 'NULL', 'Garcia', '0', '1974-06-18', 'S', 'NULL', 'F', 'kari15@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Marketplatz 5775', 'NULL', '1 (11) 500 555-0188', '2013-06-22', '0-1 Miles'], ['14806', '245', 'AW00014806', 'NULL', 'Damien', 'NULL', 'Jai', '0', '1974-05-03', 'S', 'NULL', 'M', 'damien27@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '6239 Monti Dr.', 'NULL', '1 (11) 500 555-0116', '2013-04-22', '0-1 Miles'], ['14807', '211', 'AW00014807', 'NULL', 'Brenda', 'M', 'Martinez', '0', '1968-08-04', 'S', 'NULL', 'F', 'brenda21@adventure-works.com', '10000.00', '4', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '487, rue Montcalm', 'NULL', '1 (11) 500 555-0137', '2013-09-22', '0-1 Miles'], ['14808', '252', 'AW00014808', 'NULL', 'Cynthia', 'L', 'Prasad', '0', '1980-03-15', 'S', 'NULL', 'F', 'cynthia14@adventure-works.com', '10000.00', '4', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '7496 Deerfield Dr.', 'NULL', '1 (11) 500 555-0197', '2013-06-09', '0-1 Miles'], ['14809', '239', 'AW00014809', 'NULL', 'Max', 'A', 'Suarez', '0', '1979-10-01', 'S', 'NULL', 'M', 'max17@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '3535 Hillview Dr.', 'NULL', '1 (11) 500 555-0117', '2013-03-02', '0-1 Miles'], ['14810', '196', 'AW00014810', 'NULL', 'Russell', 'E', 'Anand', '0', '1972-05-25', 'M', 'NULL', 'M', 'russell25@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '951, avenue Reille', 'NULL', '1 (11) 500 555-0180', '2013-06-04', '0-1 Miles'], ['14811', '158', 'AW00014811', 'NULL', 'Molly', 'NULL', 'Sanchez', '0', '1972-02-19', 'M', 'NULL', 'F', 'molly19@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', 'Erftplatz 444', 'NULL', '1 (11) 500 555-0188', '2013-03-17', '0-1 Miles'], ['14812', '238', 'AW00014812', 'NULL', 'Hunter', 'C', 'Henderson', '0', '1971-11-14', 'M', 'NULL', 'M', 'hunter1@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '7710 Medina Drive', 'NULL', '1 (11) 500 555-0114', '2013-05-29', '0-1 Miles'], ['14813', '187', 'AW00014813', 'NULL', 'Madison', 'NULL', 'Hayes', '0', '1968-10-29', 'S', 'NULL', 'F', 'madison34@adventure-works.com', '20000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '2, avenue de Norvege', 'NULL', '1 (11) 500 555-0116', '2012-05-23', '0-1 Miles'], ['14814', '235', 'AW00014814', 'NULL', 'Christine', 'J', 'Jai', '0', '1969-01-18', 'S', 'NULL', 'F', 'christine6@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1870 Walnut Ave.', 'NULL', '1 (11) 500 555-0125', '2013-02-10', '0-1 Miles'], ['14815', '236', 'AW00014815', 'NULL', 'Isabella', 'R', 'Gonzales', '0', '1976-12-14', 'M', 'NULL', 'F', 'isabella27@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '851 Summerfield Drive', 'NULL', '1 (11) 500 555-0131', '2013-11-14', '0-1 Miles'], ['14816', '241', 'AW00014816', 'NULL', 'Katherine', 'NULL', 'Lewis', '0', '1976-10-20', 'M', 'NULL', 'F', 'katherine92@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '72 Juliet Court', 'NULL', '1 (11) 500 555-0116', '2013-12-09', '0-1 Miles'], ['14817', '243', 'AW00014817', 'NULL', 'Anna', 'NULL', 'Washington', '0', '1982-03-12', 'M', 'NULL', 'F', 'anna38@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2094 Fruitwood', 'NULL', '1 (11) 500 555-0190', '2013-08-26', '0-1 Miles'], ['14818', '215', 'AW00014818', 'NULL', 'Diane', 'F', 'Ruiz', '0', '1969-11-23', 'S', 'NULL', 'F', 'diane7@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '12, rue Descartes', 'NULL', '1 (11) 500 555-0167', '2012-05-08', '0-1 Miles'], ['14819', '128', 'AW00014819', 'NULL', 'Dana', 'M', 'Ruiz', '0', '1969-12-07', 'M', 'NULL', 'F', 'dana18@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', 'Lieblingsweg 123', 'NULL', '1 (11) 500 555-0181', '2011-10-08', '0-1 Miles'], ['14820', '244', 'AW00014820', 'NULL', 'Drew', 'NULL', 'Bhat', '0', '1975-08-31', 'M', 'NULL', 'M', 'drew21@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7942 C Mt. Hood', 'NULL', '1 (11) 500 555-0131', '2013-02-14', '0-1 Miles'], ['14821', '269', 'AW00014821', 'NULL', 'Maurice', 'NULL', 'Raje', '0', '1969-10-06', 'M', 'NULL', 'M', 'maurice15@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '494 North Spoonwood Court', 'NULL', '1 (11) 500 555-0178', '2013-03-16', '0-1 Miles'], ['14822', '127', 'AW00014822', 'NULL', 'Jessica', 'S', 'Martin', '0', '1969-03-24', 'S', 'NULL', 'F', 'jessica62@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Winter der Böck 50', 'NULL', '1 (11) 500 555-0149', '2011-10-08', '0-1 Miles'], ['14823', '127', 'AW00014823', 'NULL', 'Nelson', 'J', 'Harrison', '0', '1969-06-26', 'S', 'NULL', 'M', 'nelson9@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Zimmerstr 411', 'NULL', '1 (11) 500 555-0119', '2011-10-02', '0-1 Miles'], ['14824', '117', 'AW00014824', 'NULL', 'Miguel', 'M', 'Baker', '0', '1974-11-13', 'S', 'NULL', 'M', 'miguel33@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Zimmerstr 11', 'NULL', '1 (11) 500 555-0145', '2011-10-18', '0-1 Miles'], ['14825', '170', 'AW00014825', 'NULL', 'Rebekah', 'H', 'Alonso', '0', '1982-08-31', 'S', 'NULL', 'F', 'rebekah28@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '384 Price Lane', 'NULL', '1 (11) 500 555-0144', '2013-06-19', '1-2 Miles'], ['14826', '221', 'AW00014826', 'NULL', 'Stefanie', 'J', 'Lopez', '0', '1985-02-13', 'M', 'NULL', 'F', 'stefanie14@adventure-works.com', '20000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '668, rue des Berges', 'NULL', '1 (11) 500 555-0169', '2013-08-15', '0-1 Miles'], ['14827', '174', 'AW00014827', 'NULL', 'Ernest', 'R', 'Xu', '0', '1984-10-01', 'S', 'NULL', 'M', 'ernest12@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Postfach 2 66 66', 'NULL', '1 (11) 500 555-0120', '2011-10-07', '0-1 Miles'], ['14828', '176', 'AW00014828', 'NULL', 'Hector', 'NULL', 'Muñoz', '0', '1985-03-08', 'S', 'NULL', 'M', 'hector5@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Am Gallberg 123', 'NULL', '1 (11) 500 555-0111', '2013-04-14', '0-1 Miles'], ['14829', '211', 'AW00014829', 'NULL', 'Gina', 'NULL', 'Vazquez', '0', '1983-07-15', 'S', 'NULL', 'F', 'gina15@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '58, rue des Berges', 'NULL', '1 (11) 500 555-0116', '2013-06-13', '0-1 Miles'], ['14830', '175', 'AW00014830', 'NULL', 'Isabella', 'NULL', 'Ward', '0', '1974-08-09', 'M', 'NULL', 'F', 'isabella2@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Zimmerstr 466', 'NULL', '1 (11) 500 555-0165', '2011-10-25', '0-1 Miles'], ['14831', '231', 'AW00014831', 'NULL', 'Gilbert', 'NULL', 'Xie', '0', '1968-08-05', 'M', 'NULL', 'M', 'gilbert24@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2505 Maywood Ln.', 'NULL', '1 (11) 500 555-0196', '2011-06-27', '0-1 Miles'], ['14832', '232', 'AW00014832', 'NULL', 'Barry', 'NULL', 'Rana', '0', '1980-04-30', 'M', 'NULL', 'M', 'barry12@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8434 Kenmore', 'NULL', '1 (11) 500 555-0127', '2011-06-14', '0-1 Miles'], ['14833', '241', 'AW00014833', 'NULL', 'Riley', 'NULL', 'Hayes', '0', '1967-12-11', 'S', 'NULL', 'F', 'riley19@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4766 Palm Ave', 'NULL', '1 (11) 500 555-0110', '2011-06-11', '2-5 Miles'], ['14834', '133', 'AW00014834', 'NULL', 'Ebony', 'NULL', 'Jimenez', '0', '1983-09-07', 'S', 'NULL', 'F', 'ebony28@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Höhenstr 9449', 'NULL', '1 (11) 500 555-0112', '2011-11-09', '0-1 Miles'], ['14835', '151', 'AW00014835', 'NULL', 'Melody', 'R', 'Saunders', '0', '1984-03-01', 'S', 'NULL', 'F', 'melody20@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Winter der Böck 2550', 'NULL', '1 (11) 500 555-0114', '2013-06-09', '0-1 Miles'], ['14836', '230', 'AW00014836', 'NULL', 'Peter', 'L', 'Chander', '0', '1983-10-04', 'M', 'NULL', 'M', 'peter20@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3557 Harvard Court', 'NULL', '1 (11) 500 555-0118', '2013-02-26', '0-1 Miles'], ['14837', '144', 'AW00014837', 'NULL', 'Dennis', 'NULL', 'Li', '0', '1983-01-14', 'S', 'NULL', 'M', 'dennis4@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Am Karlshof 368', 'NULL', '1 (11) 500 555-0164', '2013-11-17', '2-5 Miles'], ['14838', '121', 'AW00014838', 'NULL', 'Darren', 'NULL', 'Alvarez', '0', '1983-01-23', 'S', 'NULL', 'M', 'darren26@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Kappellweg 242', 'NULL', '1 (11) 500 555-0133', '2011-11-15', '0-1 Miles'], ['14839', '238', 'AW00014839', 'NULL', 'Natasha', 'NULL', 'Sanz', '0', '1982-11-15', 'S', 'NULL', 'F', 'natasha20@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '8489 Seaview Ave.', 'NULL', '1 (11) 500 555-0115', '2013-06-01', '2-5 Miles'], ['14840', '277', 'AW00014840', 'NULL', 'Autumn', 'NULL', 'Zhu', '0', '1983-04-22', 'S', 'NULL', 'F', 'autumn13@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '5115 Meadowbrook Court', 'NULL', '1 (11) 500 555-0193', '2013-02-21', '2-5 Miles'], ['14841', '171', 'AW00014841', 'NULL', 'Franklin', 'NULL', 'Pal', '0', '1917-06-05', 'M', 'NULL', 'M', 'franklin30@adventure-works.com', '20000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Wertheimer Straße 8', 'NULL', '1 (11) 500 555-0185', '2013-09-02', '1-2 Miles'], ['14842', '117', 'AW00014842', 'NULL', 'Meagan', 'NULL', 'Kim', '0', '1981-02-06', 'S', 'NULL', 'F', 'meagan1@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Helsenbergbogen 6', 'NULL', '1 (11) 500 555-0117', '2013-03-08', '5-10 Miles'], ['14843', '243', 'AW00014843', 'NULL', 'Lee', 'NULL', 'Vazquez', '0', '1981-01-03', 'S', 'NULL', 'M', 'lee13@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '4982 Norse Ct.', 'NULL', '1 (11) 500 555-0186', '2011-06-17', '1-2 Miles'], ['14844', '131', 'AW00014844', 'NULL', 'Blake', 'NULL', 'Miller', '0', '1986-02-25', 'S', 'NULL', 'M', 'blake5@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Pflugstr 8515', 'NULL', '1 (11) 500 555-0118', '2013-10-15', '2-5 Miles'], ['14845', '223', 'AW00014845', 'NULL', 'Chelsea', 'NULL', 'Sai', '0', '1985-08-13', 'S', 'NULL', 'F', 'chelsea6@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '1, rue de la Centenaire', 'NULL', '1 (11) 500 555-0113', '2013-02-16', '0-1 Miles'], ['14846', '259', 'AW00014846', 'NULL', 'Kelsey', 'K', 'Chande', '0', '1985-11-09', 'S', 'NULL', 'F', 'kelsey14@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '1782 Poplar Ave.', 'NULL', '1 (11) 500 555-0179', '2011-07-20', '1-2 Miles'], ['14847', '270', 'AW00014847', 'Mr.', 'Vadim', 'NULL', 'Sazanovich', '0', '1979-09-09', 'S', 'NULL', 'F', 'vadim0@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '8531 Bayter Court', 'NULL', '958-555-0100', '2011-07-21', '1-2 Miles'], ['14848', '186', 'AW00014848', 'NULL', 'George', 'NULL', 'Louverdis', '0', '1981-03-09', 'S', 'NULL', 'M', 'george5@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Attaché de Presse', 'NULL', '1 (11) 500 555-0171', '2012-05-11', '2-5 Miles'], ['14849', '142', 'AW00014849', 'NULL', 'Dwayne', 'NULL', 'Martin', '0', '1981-04-10', 'S', 'NULL', 'M', 'dwayne0@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Zollhof 6678', 'NULL', '1 (11) 500 555-0191', '2013-04-01', '0-1 Miles'], ['14850', '182', 'AW00014850', 'NULL', 'Audrey', 'NULL', 'Vazquez', '0', '1978-09-23', 'S', 'NULL', 'F', 'audrey16@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '2452, rue de Varenne', 'NULL', '1 (11) 500 555-0112', '2013-08-17', '0-1 Miles'], ['14851', '206', 'AW00014851', 'NULL', 'Karla', 'M', 'Tang', '0', '1978-08-02', 'S', 'NULL', 'F', 'karla4@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '611, rue de Longchamp', 'NULL', '1 (11) 500 555-0152', '2012-05-05', '1-2 Miles'], ['14852', '335', 'AW00014852', 'NULL', 'Adam', 'J', 'Gonzalez', '0', '1984-05-12', 'S', 'NULL', 'M', 'adam39@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8694 Orangewood Ave.', 'NULL', '136-555-0124', '2011-10-04', '1-2 Miles'], ['14853', '30', 'AW00014853', 'NULL', 'Derrick', 'R', 'Diaz', '0', '1953-08-12', 'M', 'NULL', 'M', 'derrick3@adventure-works.com', '20000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3985 Dolores Way', 'NULL', '1 (11) 500 555-0169', '2013-08-17', '5-10 Miles'], ['14854', '38', 'AW00014854', 'NULL', 'Nancy', 'NULL', 'Fernandez', '0', '1959-11-09', 'S', 'NULL', 'F', 'nancy19@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3857 Mt. Etna', 'NULL', '1 (11) 500 555-0115', '2013-07-29', '5-10 Miles'], ['14855', '20', 'AW00014855', 'NULL', 'Deanna', 'L', 'Weber', '0', '1954-06-23', 'S', 'NULL', 'F', 'deanna7@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4798 Macaroon Drive', 'NULL', '1 (11) 500 555-0117', '2012-09-08', '5-10 Miles'], ['14856', '536', 'AW00014856', 'NULL', 'Kari', 'NULL', 'Carlson', '0', '1983-02-01', 'S', 'NULL', 'F', 'kari39@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7847 Delta Fair Blvd.', 'NULL', '161-555-0184', '2014-01-15', '5-10 Miles'], ['14857', '37', 'AW00014857', 'NULL', 'Diane', 'E', 'Serrano', '0', '1954-07-27', 'M', 'NULL', 'F', 'diane21@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '378 Milburn Dr', 'NULL', '1 (11) 500 555-0197', '2013-02-20', '1-2 Miles'], ['14858', '3', 'AW00014858', 'NULL', 'Louis', 'NULL', 'Zhu', '0', '1956-12-18', 'M', 'NULL', 'M', 'louis8@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4691 Frisbie Court', 'NULL', '1 (11) 500 555-0158', '2013-03-03', '1-2 Miles'], ['14859', '6', 'AW00014859', 'NULL', 'Jarrod', 'M', 'Weber', '0', '1957-09-02', 'M', 'NULL', 'M', 'jarrod4@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4364 Chelsea', 'NULL', '1 (11) 500 555-0170', '2013-02-13', '1-2 Miles'], ['14860', '29', 'AW00014860', 'NULL', 'Arturo', 'H', 'Chande', '0', '1963-06-14', 'M', 'NULL', 'M', 'arturo40@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7939 Bayview Court', 'NULL', '1 (11) 500 555-0148', '2013-04-18', '1-2 Miles'], ['14861', '231', 'AW00014861', 'NULL', 'Misty', 'NULL', 'Deng', '0', '1982-04-06', 'S', 'NULL', 'F', 'misty2@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9437 Cambridge Dr.', 'NULL', '1 (11) 500 555-0114', '2011-07-19', '0-1 Miles'], ['14862', '243', 'AW00014862', 'NULL', 'Spencer', 'S', 'Jenkins', '0', '1977-02-17', 'S', 'NULL', 'M', 'spencer8@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5341 Arnold Dr.', 'NULL', '1 (11) 500 555-0118', '2013-08-27', '1-2 Miles'], ['14863', '269', 'AW00014863', 'NULL', 'Dana', 'H', 'Carlson', '0', '1982-10-19', 'S', 'NULL', 'F', 'dana11@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4749 Blackwood Drive', 'NULL', '1 (11) 500 555-0148', '2013-03-15', '1-2 Miles'], ['14864', '276', 'AW00014864', 'NULL', 'Desiree', 'V', 'Carlson', '0', '1976-12-22', 'S', 'NULL', 'F', 'desiree14@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '8548 Dewing Ave.', 'NULL', '1 (11) 500 555-0161', '2013-10-08', '1-2 Miles'], ['14865', '269', 'AW00014865', 'NULL', 'Austin', 'V', 'Coleman', '0', '1976-01-12', 'S', 'NULL', 'M', 'austin1@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3563 Mulberry', 'NULL', '1 (11) 500 555-0167', '2013-03-26', '1-2 Miles'], ['14866', '161', 'AW00014866', 'NULL', 'Hailey', 'R', 'Peterson', '0', '1981-10-17', 'S', 'NULL', 'F', 'hailey14@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Pflugstr 24', 'NULL', '1 (11) 500 555-0123', '2013-02-07', '1-2 Miles'], ['14867', '59', 'AW00014867', 'NULL', 'Lauren', 'C', 'Richardson', '0', '1981-01-04', 'S', 'NULL', 'F', 'lauren10@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7185 St George Dr', 'NULL', '482-555-0132', '2013-07-12', '1-2 Miles'], ['14868', '383', 'AW00014868', 'NULL', 'Ariana', 'NULL', 'Morgan', '0', '1981-02-16', 'S', 'NULL', 'F', 'ariana20@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1172 Lunar Lane', 'NULL', '318-555-0120', '2011-09-29', '1-2 Miles'], ['14869', '552', 'AW00014869', 'NULL', 'Jennifer', 'J', 'Bryant', '0', '1981-02-22', 'S', 'NULL', 'F', 'jennifer91@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9027 Lancelot Dr', 'NULL', '150-555-0167', '2014-01-23', '0-1 Miles'], ['14870', '298', 'AW00014870', 'NULL', 'Brandi', 'M', 'Ortega', '0', '1979-07-11', 'S', 'NULL', 'F', 'brandi21@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4684 Ptarmigan Drive', 'NULL', '157-555-0139', '2013-01-28', '0-1 Miles'], ['14871', '52', 'AW00014871', 'NULL', 'Timothy', 'NULL', 'Hill', '0', '1985-04-07', 'S', 'NULL', 'M', 'timothy39@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4348 Donaleen Ct.', 'NULL', '904-555-0157', '2013-08-24', '1-2 Miles'], ['14872', '548', 'AW00014872', 'NULL', 'Fernando', 'C', 'Clark', '0', '1985-02-23', 'M', 'NULL', 'M', 'fernando17@adventure-works.com', '30000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4782 Dewing Avenue', 'NULL', '780-555-0133', '2013-05-27', '0-1 Miles'], ['14873', '336', 'AW00014873', 'NULL', 'Fernando', 'NULL', 'Long', '0', '1979-08-10', 'M', 'NULL', 'M', 'fernando52@adventure-works.com', '30000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4683 Buchanan Pl.', 'NULL', '129-555-0146', '2013-09-12', '0-1 Miles'], ['14874', '49', 'AW00014874', 'NULL', 'Nicole', 'L', 'Sanchez', '0', '1981-02-23', 'S', 'NULL', 'F', 'nicole26@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1874 Royal Links Circle', 'NULL', '954-555-0133', '2013-09-08', '1-2 Miles'], ['14875', '53', 'AW00014875', 'NULL', 'Alyssa', 'I', 'Foster', '0', '1981-06-26', 'S', 'NULL', 'F', 'alyssa61@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9659 Walnut Blvd', 'NULL', '470-555-0136', '2013-09-17', '1-2 Miles'], ['14876', '301', 'AW00014876', 'NULL', 'Nathan', 'NULL', 'Anderson', '0', '1936-09-05', 'M', 'NULL', 'M', 'nathan68@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1739 Breaker Dr.', 'NULL', '160-555-0110', '2013-05-12', '1-2 Miles'], ['14877', '63', 'AW00014877', 'NULL', 'Steven', 'C', 'Brooks', '0', '1972-01-11', 'S', 'NULL', 'M', 'steven11@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '3585 Holly Oak Dr.', 'NULL', '178-555-0184', '2013-09-07', '1-2 Miles'], ['14878', '631', 'AW00014878', 'NULL', 'Marcus', 'NULL', 'Murphy', '0', '1971-08-31', 'M', 'NULL', 'M', 'marcus91@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '642 Camby Rd.', 'NULL', '893-555-0161', '2013-04-21', '0-1 Miles'], ['14879', '299', 'AW00014879', 'NULL', 'Andrea', 'NULL', 'Richardson', '0', '1972-05-25', 'S', 'NULL', 'F', 'andrea10@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1221 Foxhill Dr', 'NULL', '854-555-0190', '2011-10-19', '1-2 Miles'], ['14880', '372', 'AW00014880', 'NULL', 'Jessica', 'NULL', 'Ross', '0', '1958-10-08', 'M', 'NULL', 'F', 'jessica28@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9302 Veracruz', 'NULL', '398-555-0199', '2011-10-10', '1-2 Miles'], ['14881', '611', 'AW00014881', 'NULL', 'Eric', 'NULL', 'Griffin', '0', '1970-05-06', 'M', 'NULL', 'M', 'eric28@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9127 Pinnacle Drive', 'NULL', '921-555-0181', '2011-11-02', '5-10 Miles'], ['14882', '299', 'AW00014882', 'NULL', 'Kathryn', 'E', 'Nara', '0', '1964-10-17', 'M', 'NULL', 'F', 'kathryn15@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6899 Pembroke Dr.', 'NULL', '202-555-0124', '2011-11-16', '2-5 Miles'], ['14883', '335', 'AW00014883', 'NULL', 'Gabrielle', 'NULL', 'Barnes', '0', '1964-03-19', 'M', 'NULL', 'F', 'gabrielle25@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6441 Co Road', 'NULL', '762-555-0152', '2011-10-31', '5-10 Miles'], ['14884', '307', 'AW00014884', 'NULL', 'Kristi', 'M', 'Torres', '0', '1958-10-03', 'M', 'NULL', 'F', 'kristi7@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6866 Big Canyon Rd.', 'NULL', '795-555-0199', '2011-11-27', '5-10 Miles'], ['14885', '69', 'AW00014885', 'NULL', 'Judith', 'R', 'White', '0', '1959-08-08', 'M', 'NULL', 'F', 'judith4@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '960 Petarct', 'NULL', '423-555-0145', '2013-10-04', '0-1 Miles'], ['14886', '69', 'AW00014886', 'NULL', 'Sydney', 'M', 'Powell', '0', '1965-06-04', 'S', 'NULL', 'F', 'sydney31@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '5385 Sony Hill Circle', 'NULL', '122-555-0119', '2013-03-25', '1-2 Miles'], ['14887', '638', 'AW00014887', 'NULL', 'Lauren', 'A', 'Wilson', '0', '1959-08-31', 'M', 'NULL', 'F', 'lauren25@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9387 Oak Brook Place', 'NULL', '937-555-0124', '2013-04-07', '5-10 Miles'], ['14888', '648', 'AW00014888', 'NULL', 'Jasmine', 'A', 'Russell', '0', '1965-11-15', 'M', 'NULL', 'F', 'jasmine59@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6146 Schenone Court', 'NULL', '140-555-0118', '2011-11-21', '1-2 Miles'], ['14889', '302', 'AW00014889', 'NULL', 'Drew', 'W', 'Kumar', '0', '1971-04-04', 'M', 'NULL', 'M', 'drew8@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8852 Lacorso Dr.', 'NULL', '776-555-0195', '2013-10-07', '5-10 Miles'], ['14890', '315', 'AW00014890', 'NULL', 'Wyatt', 'NULL', 'Adams', '0', '1960-01-23', 'M', 'NULL', 'M', 'wyatt35@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '989 Crown Ct', 'NULL', '989-555-0116', '2013-06-14', '10+ Miles'], ['14891', '355', 'AW00014891', 'NULL', 'Kyle', 'E', 'Hayes', '0', '1965-05-06', 'M', 'NULL', 'M', 'kyle18@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4376 Golf Club Road', 'NULL', '107-555-0173', '2011-11-13', '0-1 Miles'], ['14892', '352', 'AW00014892', 'NULL', 'Savannah', 'J', 'Sanders', '0', '1960-08-04', 'M', 'NULL', 'F', 'savannah2@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3829 Cardinal Drive', 'NULL', '926-555-0114', '2011-11-13', '1-2 Miles'], ['14893', '49', 'AW00014893', 'NULL', 'Gabrielle', 'NULL', 'Diaz', '0', '1960-08-07', 'M', 'NULL', 'F', 'gabrielle44@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5816 Camacho', 'NULL', '914-555-0114', '2013-10-04', '1-2 Miles'], ['14894', '542', 'AW00014894', 'NULL', 'James', 'A', 'Baker', '0', '1961-05-18', 'M', 'NULL', 'M', 'james65@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3442 Rolando Ave.', 'NULL', '436-555-0114', '2011-11-28', '1-2 Miles'], ['14895', '374', 'AW00014895', 'NULL', 'Connor', 'NULL', 'Hernandez', '0', '1966-10-03', 'M', 'NULL', 'M', 'connor45@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9340 Long Brook Way', 'NULL', '141-555-0193', '2011-10-31', '1-2 Miles'], ['14896', '335', 'AW00014896', 'NULL', 'Alexia', 'D', 'Flores', '0', '1960-11-07', 'M', 'NULL', 'F', 'alexia10@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4683 Joseph Ave', 'NULL', '632-555-0172', '2011-11-16', '0-1 Miles'], ['14897', '49', 'AW00014897', 'NULL', 'Hunter', 'NULL', 'Moore', '0', '1961-12-31', 'M', 'NULL', 'M', 'hunter67@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4429 Deermeadow Way', 'NULL', '179-555-0116', '2013-03-11', '0-1 Miles'], ['14898', '626', 'AW00014898', 'NULL', 'Katelyn', 'L', 'Edwards', '0', '1961-10-01', 'M', 'NULL', 'F', 'katelyn23@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2614 Sandiago Drive', 'NULL', '996-555-0190', '2013-12-02', '0-1 Miles'], ['14899', '302', 'AW00014899', 'NULL', 'Rodney', 'S', 'Dominguez', '0', '1962-03-25', 'M', 'NULL', 'M', 'rodney9@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1716 Rosewood Dr', 'NULL', '155-555-0146', '2013-06-13', '1-2 Miles'], ['14900', '71', 'AW00014900', 'NULL', 'Rachel', 'J', 'Lewis', '0', '1962-04-23', 'M', 'NULL', 'F', 'rachel24@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7590 Bayview Circle', 'NULL', '147-555-0139', '2013-10-12', '1-2 Miles'], ['14901', '343', 'AW00014901', 'NULL', 'Katherine', 'NULL', 'Richardson', '0', '1967-07-20', 'M', 'NULL', 'F', 'katherine13@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4351 Shenandoah Dr.', 'NULL', '273-555-0114', '2013-02-10', '0-1 Miles'], ['14902', '298', 'AW00014902', 'NULL', 'Arianna', 'C', 'Diaz', '0', '1962-03-24', 'M', 'NULL', 'F', 'arianna19@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9982 Climbing Dr', 'NULL', '142-555-0189', '2011-11-13', '1-2 Miles'], ['14903', '361', 'AW00014903', 'NULL', 'Amanda', 'L', 'Morgan', '0', '1961-09-01', 'M', 'NULL', 'F', 'amanda4@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '683 Larch Ct.', 'NULL', '740-555-0139', '2013-04-14', '1-2 Miles'], ['14904', '63', 'AW00014904', 'NULL', 'Spencer', 'NULL', 'Powell', '0', '1961-10-30', 'M', 'NULL', 'M', 'spencer10@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '295 Halfmoon Court', 'NULL', '781-555-0161', '2013-07-15', '1-2 Miles'], ['14905', '612', 'AW00014905', 'NULL', 'Ricardo', 'NULL', 'Shen', '0', '1961-09-30', 'M', 'NULL', 'M', 'ricardo2@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3763 Anderson Way', 'NULL', '519-555-0133', '2013-09-19', '1-2 Miles'], ['14906', '50', 'AW00014906', 'NULL', 'Robert', 'J', 'Washington', '0', '1962-05-16', 'M', 'NULL', 'M', 'robert26@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7276 Vista Diablo', 'NULL', '838-555-0173', '2013-08-25', '0-1 Miles'], ['14907', '311', 'AW00014907', 'NULL', 'Sheena', 'L', 'Anand', '0', '1961-09-01', 'M', 'NULL', 'F', 'sheena21@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '683 Larch Ct.', 'NULL', '457-555-0186', '2013-08-30', '1-2 Miles'], ['14908', '611', 'AW00014908', 'NULL', 'Morgan', 'A', 'Mitchell', '0', '1973-01-02', 'M', 'NULL', 'F', 'morgan8@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2627 Holiday Hills Drive', 'NULL', '971-555-0198', '2013-04-21', '0-1 Miles'], ['14909', '539', 'AW00014909', 'NULL', 'Benjamin', 'E', 'Bryant', '0', '1962-03-22', 'M', 'NULL', 'M', 'benjamin19@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '717 Ridge Park Drive', 'NULL', '833-555-0113', '2013-02-24', '0-1 Miles'], ['14910', '62', 'AW00014910', 'NULL', 'Caitlin', 'L', 'Murphy', '0', '1963-05-24', 'M', 'NULL', 'F', 'caitlin12@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2318 Pleasant Circle', 'NULL', '377-555-0119', '2013-10-27', '0-1 Miles'], ['14911', '70', 'AW00014911', 'NULL', 'Shelby', 'J', 'Watson', '0', '1968-02-16', 'M', 'NULL', 'F', 'shelby0@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2895 Churchill Dr', 'NULL', '725-555-0142', '2013-10-19', '1-2 Miles'], ['14912', '361', 'AW00014912', 'NULL', 'Emma', 'M', 'Taylor', '0', '1963-02-18', 'M', 'NULL', 'F', 'emma8@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5805 Virginia Lane', 'NULL', '967-555-0173', '2011-10-29', '1-2 Miles'], ['14913', '352', 'AW00014913', 'NULL', 'Chloe', 'NULL', 'Roberts', '0', '1968-10-14', 'M', 'NULL', 'F', 'chloe10@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9843 Wilke Drive', 'NULL', '474-555-0192', '2011-12-13', '1-2 Miles'], ['14914', '302', 'AW00014914', 'NULL', 'Arianna', 'NULL', 'Gray', '0', '1974-02-11', 'M', 'NULL', 'F', 'arianna27@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6065 Blue Cr', 'NULL', '862-555-0181', '2011-12-21', '1-2 Miles'], ['14915', '553', 'AW00014915', 'NULL', 'Katherine', 'NULL', 'Howard', '0', '1974-04-06', 'M', 'NULL', 'F', 'katherine15@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8796 Bayview Court', 'NULL', '137-555-0187', '2011-12-10', '1-2 Miles'], ['14916', '638', 'AW00014916', 'NULL', 'Paige', 'C', 'Washington', '0', '1969-09-13', 'S', 'NULL', 'F', 'paige12@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '623 Lakespring Place', 'NULL', '756-555-0186', '2013-02-12', '0-1 Miles'], ['14917', '633', 'AW00014917', 'NULL', 'Adrian', 'NULL', 'Morgan', '0', '1969-01-18', 'M', 'NULL', 'M', 'adrian14@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4246 Selena Court', 'NULL', '473-555-0113', '2013-07-08', '0-1 Miles'], ['14918', '618', 'AW00014918', 'NULL', 'Mariah', 'NULL', 'Howard', '0', '1969-11-02', 'S', 'NULL', 'F', 'mariah36@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5895 Orchid Ct', 'NULL', '565-555-0115', '2013-08-04', '1-2 Miles'], ['14919', '311', 'AW00014919', 'NULL', 'Erik', 'J', 'Torres', '0', '1969-10-22', 'M', 'NULL', 'M', 'erik12@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9947 Buskirk Avenue', 'NULL', '538-555-0130', '2013-04-30', '0-1 Miles'], ['14920', '372', 'AW00014920', 'NULL', 'Jason', 'C', 'Hill', '0', '1970-05-20', 'M', 'NULL', 'M', 'jason42@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2409 Harbor View Dr.', 'NULL', '172-555-0112', '2013-04-19', '0-1 Miles'], ['14921', '361', 'AW00014921', 'NULL', 'Sara', 'C', 'Watson', '0', '1976-03-19', 'S', 'NULL', 'F', 'sara9@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '8679 Balboa Court', 'NULL', '514-555-0192', '2013-02-20', '0-1 Miles'], ['14922', '642', 'AW00014922', 'NULL', 'Paige', 'R', 'Perry', '0', '1970-09-10', 'S', 'NULL', 'F', 'paige8@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '3359 Northwood Dr', 'NULL', '636-555-0197', '2013-11-24', '0-1 Miles'], ['14923', '187', 'AW00014923', 'NULL', 'Andy', 'NULL', 'Blanco', '0', '1973-08-01', 'S', 'NULL', 'M', 'andy20@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '1, rue de la Centenaire', 'NULL', '1 (11) 500 555-0117', '2013-10-27', '0-1 Miles'], ['14924', '203', 'AW00014924', 'NULL', 'Cynthia', 'NULL', 'Sai', '0', '1979-12-14', 'M', 'NULL', 'F', 'cynthia10@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '3, rue du Puits Dixme', 'NULL', '1 (11) 500 555-0115', '2013-03-13', '2-5 Miles'], ['14925', '186', 'AW00014925', 'NULL', 'Ashley', 'M', 'Hughes', '0', '1974-04-27', 'M', 'NULL', 'F', 'ashley38@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '68, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0169', '2012-05-24', '0-1 Miles'], ['14926', '223', 'AW00014926', 'NULL', 'Juan', 'R', 'Rogers', '0', '1973-09-18', 'M', 'NULL', 'M', 'juan29@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '33, rue Henri Gagnon', 'NULL', '1 (11) 500 555-0181', '2012-05-26', '0-1 Miles'], ['14927', '163', 'AW00014927', 'NULL', 'Chelsea', 'S', 'Martinez', '0', '1974-03-26', 'M', 'NULL', 'F', 'chelsea19@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Heideweg 5914', 'NULL', '1 (11) 500 555-0116', '2011-11-15', '0-1 Miles'], ['14928', '251', 'AW00014928', 'NULL', 'Roy', 'A', 'Patel', '0', '1973-09-18', 'M', 'NULL', 'M', 'roy3@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '217 Ramsay Circle', 'NULL', '1 (11) 500 555-0139', '2011-07-30', '0-1 Miles'], ['14929', '276', 'AW00014929', 'NULL', 'Peter', 'NULL', 'Anand', '0', '1979-09-30', 'M', 'NULL', 'M', 'peter27@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7516 Laguna Street', 'NULL', '1 (11) 500 555-0117', '2011-07-18', '2-5 Miles'], ['14930', '220', 'AW00014930', 'NULL', 'Cindy', 'M', 'Sara', '0', '1973-12-29', 'S', 'NULL', 'F', 'cindy10@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '47, impasse Ste-Madeleine', 'NULL', '1 (11) 500 555-0120', '2012-05-05', '0-1 Miles'], ['14931', '204', 'AW00014931', 'NULL', 'Andres', 'S', 'Pal', '0', '1974-05-02', 'M', 'NULL', 'M', 'andres9@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '363, rue Jean Mermoz', 'NULL', '1 (11) 500 555-0138', '2012-05-28', '0-1 Miles'], ['14932', '203', 'AW00014932', 'NULL', 'Pedro', 'Y', 'Fernandez', '0', '1978-04-17', 'M', 'NULL', 'M', 'pedro15@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '3783, rue Lamarck', 'NULL', '1 (11) 500 555-0156', '2013-08-12', '2-5 Miles'], ['14933', '119', 'AW00014933', 'NULL', 'Ronald', 'NULL', 'Patel', '0', '1972-07-17', 'M', 'NULL', 'M', 'ronald5@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Am Karlshof 820', 'NULL', '1 (11) 500 555-0139', '2014-01-26', '2-5 Miles'], ['14934', '245', 'AW00014934', 'NULL', 'Jermaine', 'G', 'Sai', '0', '1983-09-17', 'S', 'NULL', 'M', 'jermaine4@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '3949 Fillet Ave.', 'NULL', '1 (11) 500 555-0113', '2013-11-10', '1-2 Miles'], ['14935', '121', 'AW00014935', 'NULL', 'Rafael', 'R', 'Liang', '0', '1972-12-08', 'S', 'NULL', 'M', 'rafael18@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Hellweg 4924', 'NULL', '1 (11) 500 555-0115', '2013-03-10', '0-1 Miles'], ['14936', '224', 'AW00014936', 'NULL', 'Bryan', 'NULL', 'Sanchez', '0', '1972-08-19', 'S', 'NULL', 'M', 'bryan18@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '1', '906, boulevard Tremblay', 'NULL', '1 (11) 500 555-0180', '2013-08-15', '0-1 Miles'], ['14937', '278', 'AW00014937', 'NULL', 'Brendan', 'L', 'Xu', '0', '1983-05-19', 'S', 'NULL', 'M', 'brendan4@adventure-works.com', '10000.00', '4', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '1796 Hamlet', 'NULL', '1 (11) 500 555-0140', '2011-07-07', '0-1 Miles'], ['14938', '246', 'AW00014938', 'NULL', 'Mallory', 'NULL', 'Sanz', '0', '1971-12-14', 'S', 'NULL', 'F', 'mallory6@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '715 Pheasant Circle', 'NULL', '1 (11) 500 555-0116', '2013-03-08', '2-5 Miles'], ['14939', '119', 'AW00014939', 'NULL', 'Cory', 'L', 'Kapoor', '0', '1972-10-15', 'M', 'NULL', 'M', 'cory19@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Am Gallberg 24', 'NULL', '1 (11) 500 555-0114', '2011-11-17', '0-1 Miles'], ['14940', '151', 'AW00014940', 'NULL', 'Carmen', 'A', 'Rana', '0', '1978-02-19', 'M', 'NULL', 'F', 'carmen14@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Zur Lindung 764', 'NULL', '1 (11) 500 555-0149', '2011-11-16', '0-1 Miles'], ['14941', '261', 'AW00014941', 'NULL', 'Emma', 'J', 'Patterson', '0', '1972-01-24', 'S', 'NULL', 'F', 'emma56@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '1536 Camino Verde Ct.', 'NULL', '1 (11) 500 555-0196', '2011-07-14', '0-1 Miles'], ['14942', '216', 'AW00014942', 'NULL', 'Whitney', 'NULL', 'Madan', '0', '1971-08-13', 'S', 'NULL', 'F', 'whitney6@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '1', '11, rue du Puits Dixme', 'NULL', '1 (11) 500 555-0157', '2013-07-02', '1-2 Miles'], ['14943', '176', 'AW00014943', 'NULL', 'Lindsay', 'E', 'Pal', '0', '1977-08-08', 'M', 'NULL', 'F', 'lindsay12@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Alderstr 6246', 'NULL', '1 (11) 500 555-0146', '2013-04-06', '2-5 Miles'], ['14944', '221', 'AW00014944', 'NULL', 'Sebastian', 'NULL', 'Watson', '0', '1976-08-06', 'S', 'NULL', 'M', 'sebastian1@adventure-works.com', '10000.00', '5', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '801, rue des Bouchers', 'NULL', '1 (11) 500 555-0183', '2012-06-29', '0-1 Miles'], ['14945', '127', 'AW00014945', 'NULL', 'Samantha', 'R', 'Lewis', '0', '1976-12-04', 'S', 'NULL', 'F', 'samantha22@adventure-works.com', '10000.00', '5', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Heidestieg Straße 8664', 'NULL', '1 (11) 500 555-0195', '2011-10-31', '0-1 Miles'], ['14946', '203', 'AW00014946', 'NULL', 'Frederick', 'NULL', 'Vance', '0', '1971-03-04', 'S', 'NULL', 'M', 'frederick3@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '1155, rue Ste-Honoré', 'NULL', '1 (11) 500 555-0120', '2012-06-12', '0-1 Miles'], ['14947', '234', 'AW00014947', 'NULL', 'Alejandro', 'NULL', 'Chen', '0', '1976-01-08', 'S', 'NULL', 'M', 'alejandro4@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '2837 Thissen Court', 'NULL', '1 (11) 500 555-0146', '2011-07-02', '0-1 Miles'], ['14948', '199', 'AW00014948', 'NULL', 'Damien', 'NULL', 'Lal', '0', '1970-10-09', 'M', 'NULL', 'M', 'damien25@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '288, chaussée de Tournai', 'NULL', '1 (11) 500 555-0130', '2012-06-14', '0-1 Miles'], ['14949', '235', 'AW00014949', 'NULL', 'Steve', 'NULL', 'Wu', '0', '1970-10-12', 'M', 'NULL', 'M', 'steve10@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5241 St. Andrews Way', 'NULL', '1 (11) 500 555-0198', '2011-07-18', '0-1 Miles'], ['14950', '267', 'AW00014950', 'NULL', 'Maria', 'NULL', 'Hernandez', '0', '1975-08-24', 'S', 'NULL', 'F', 'maria59@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '644 North Ranchford', 'NULL', '1 (11) 500 555-0151', '2011-07-13', '0-1 Miles'], ['14951', '149', 'AW00014951', 'NULL', 'Katie', 'A', 'Rai', '0', '1970-03-26', 'M', 'NULL', 'F', 'katie20@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', 'Hochstr 8444', 'NULL', '1 (11) 500 555-0131', '2011-11-22', '0-1 Miles'], ['14952', '166', 'AW00014952', 'NULL', 'Holly', 'NULL', 'Srini', '0', '1970-05-22', 'M', 'NULL', 'F', 'holly9@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', 'Haberstr 19', 'NULL', '1 (11) 500 555-0124', '2011-11-24', '0-1 Miles'], ['14953', '237', 'AW00014953', 'NULL', 'Adrienne', 'NULL', 'Gill', '0', '1968-12-11', 'S', 'NULL', 'F', 'adrienne10@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '7532 Erie Dr', 'NULL', '1 (11) 500 555-0151', '2013-03-12', '0-1 Miles'], ['14954', '196', 'AW00014954', 'NULL', 'Denise', 'W', 'Perez', '0', '1968-09-21', 'S', 'NULL', 'F', 'denise22@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '5, rue Malar', 'NULL', '1 (11) 500 555-0118', '2013-07-19', '0-1 Miles'], ['14955', '263', 'AW00014955', 'NULL', 'Jorge', 'A', 'Xu', '0', '1968-08-30', 'M', 'NULL', 'M', 'jorge14@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '3469 Gill Ct.', 'NULL', '1 (11) 500 555-0159', '2013-07-08', '0-1 Miles'], ['14956', '147', 'AW00014956', 'NULL', 'Krista', 'NULL', 'Romero', '0', '1968-10-08', 'S', 'NULL', 'F', 'krista10@adventure-works.com', '20000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Zeiter Weg 9922', 'NULL', '1 (11) 500 555-0113', '2011-11-09', '0-1 Miles'], ['14957', '202', 'AW00014957', 'NULL', 'Lacey', 'K', 'Shan', '0', '1974-05-28', 'S', 'NULL', 'F', 'lacey0@adventure-works.com', '20000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '421, rue Léo Delibes', 'NULL', '1 (11) 500 555-0184', '2012-06-01', '0-1 Miles'], ['14958', '242', 'AW00014958', 'NULL', 'Clayton', 'E', 'Liang', '0', '1972-04-04', 'M', 'NULL', 'M', 'clayton15@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '7899 E St.', 'NULL', '1 (11) 500 555-0131', '2013-12-29', '0-1 Miles'], ['14959', '187', 'AW00014959', 'NULL', 'Ross', 'NULL', 'Patel', '0', '1974-01-11', 'S', 'NULL', 'M', 'ross2@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1, rue de Courtaboeuf', 'NULL', '1 (11) 500 555-0158', '2013-09-10', '0-1 Miles'], ['14960', '215', 'AW00014960', 'NULL', 'Leonard', 'B', 'Pal', '0', '1976-11-11', 'S', 'NULL', 'M', 'leonard13@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '906, rue de l´Avenir', 'NULL', '1 (11) 500 555-0147', '2012-06-12', '0-1 Miles'], ['14961', '159', 'AW00014961', 'NULL', 'Jaclyn', 'NULL', 'Yang', '0', '1976-04-12', 'M', 'NULL', 'F', 'jaclyn5@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Winter der Böck 2550', 'NULL', '1 (11) 500 555-0196', '2013-04-07', '0-1 Miles'], ['14962', '171', 'AW00014962', 'NULL', 'Justin', 'W', 'Jai', '0', '1971-04-12', 'M', 'NULL', 'M', 'justin28@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Zollhof 7266', 'NULL', '1 (11) 500 555-0180', '2014-01-23', '0-1 Miles'], ['14963', '231', 'AW00014963', 'NULL', 'Sydney', 'C', 'Perry', '0', '1976-03-19', 'M', 'NULL', 'F', 'sydney30@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7307 Corte Segundo', 'NULL', '1 (11) 500 555-0169', '2013-11-09', '0-1 Miles'], ['14964', '262', 'AW00014964', 'NULL', 'Damien', 'C', 'Shen', '0', '1970-12-01', 'M', 'NULL', 'M', 'damien19@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2557 Meadowbrook Dr.', 'NULL', '1 (11) 500 555-0116', '2013-11-28', '0-1 Miles'], ['14965', '179', 'AW00014965', 'NULL', 'Edwin', 'NULL', 'Zhou', '0', '1975-07-06', 'M', 'NULL', 'M', 'edwin9@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '55, rue de la Cavalerie', 'NULL', '1 (11) 500 555-0186', '2012-06-18', '0-1 Miles'], ['14966', '210', 'AW00014966', 'NULL', 'Derrick', 'NULL', 'Vazquez', '0', '1969-11-02', 'S', 'NULL', 'M', 'derrick13@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '18, rue Henri Gagnon', 'NULL', '1 (11) 500 555-0129', '2012-06-05', '0-1 Miles'], ['14967', '164', 'AW00014967', 'NULL', 'Bridget', 'NULL', 'Xu', '0', '1969-11-12', 'S', 'NULL', 'F', 'bridget6@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Holzstr 7333', 'NULL', '1 (11) 500 555-0177', '2011-11-15', '0-1 Miles'], ['14968', '249', 'AW00014968', 'NULL', 'Troy', 'NULL', 'Patel', '0', '1970-01-03', 'M', 'NULL', 'M', 'troy3@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9443 Lacanda Ct.', 'NULL', '1 (11) 500 555-0153', '2013-07-30', '0-1 Miles'], ['14969', '128', 'AW00014969', 'NULL', 'Julio', 'E', 'Vazquez', '0', '1979-09-30', 'S', 'NULL', 'M', 'julio15@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Altendorfer Straße 930', 'NULL', '1 (11) 500 555-0128', '2011-12-10', '0-1 Miles'], ['14970', '258', 'AW00014970', 'NULL', 'Bruce', 'H', 'Chandra', '0', '1982-08-30', 'M', 'NULL', 'M', 'bruce2@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '8446 Whyte Park Ave', 'NULL', '1 (11) 500 555-0119', '2013-05-11', '2-5 Miles'], ['14971', '183', 'AW00014971', 'NULL', 'Susan', 'P', 'Zhu', '0', '1984-07-23', 'M', 'NULL', 'F', 'susan24@adventure-works.com', '20000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '10, rue Pierre-Demoulin', 'NULL', '1 (11) 500 555-0146', '2013-06-03', '0-1 Miles'], ['14972', '171', 'AW00014972', 'NULL', 'Cristina', 'J', 'Deng', '0', '1985-04-03', 'S', 'NULL', 'F', 'cristina1@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Werftstr 878787', 'NULL', '1 (11) 500 555-0123', '2013-12-11', '0-1 Miles'], ['14973', '175', 'AW00014973', 'NULL', 'Alicia', 'NULL', 'Jai', '0', '1985-01-18', 'S', 'NULL', 'F', 'alicia9@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Postfach 66 11 66', 'NULL', '1 (11) 500 555-0153', '2013-02-22', '0-1 Miles'], ['14974', '249', 'AW00014974', 'Mr.', 'K.', 'NULL', 'Saravan', '0', '1984-12-29', 'S', 'NULL', 'M', 'k0@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3272 Ryan Court', 'NULL', '156-555-0100', '2013-03-31', '0-1 Miles'], ['14975', '231', 'AW00014975', 'NULL', 'Dalton', 'NULL', 'Scott', '0', '1968-12-30', 'M', 'NULL', 'M', 'dalton29@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4629 Candle Dr', '#30', '1 (11) 500 555-0190', '2011-07-11', '0-1 Miles'], ['14976', '183', 'AW00014976', 'NULL', 'Randy', 'NULL', 'Hu', '0', '1967-12-09', 'M', 'NULL', 'M', 'randy23@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '54, avenue du Port', 'NULL', '1 (11) 500 555-0111', '2012-06-18', '0-1 Miles'], ['14977', '199', 'AW00014977', 'NULL', 'Stacy', 'NULL', 'Carlson', '0', '1983-08-18', 'S', 'NULL', 'F', 'stacy19@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6, route de Marseille', 'NULL', '1 (11) 500 555-0173', '2014-01-17', '0-1 Miles'], ['14978', '134', 'AW00014978', 'NULL', 'Jamie', 'NULL', 'Ortega', '0', '1983-09-29', 'S', 'NULL', 'M', 'jamie44@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Kappellweg 242', 'NULL', '1 (11) 500 555-0133', '2011-12-22', '0-1 Miles'], ['14979', '150', 'AW00014979', 'NULL', 'Rodney', 'L', 'Serrano', '0', '1983-09-04', 'S', 'NULL', 'M', 'rodney12@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Platz des Landtags 55', 'NULL', '1 (11) 500 555-0127', '2011-12-10', '0-1 Miles'], ['14980', '178', 'AW00014980', 'NULL', 'Michele', 'NULL', 'Garcia', '0', '1984-03-02', 'S', 'NULL', 'F', 'michele28@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Unter Linden 244', 'NULL', '1 (11) 500 555-0143', '2014-01-02', '0-1 Miles'], ['14981', '256', 'AW00014981', 'NULL', 'April', 'L', 'Raji', '0', '1983-09-05', 'S', 'NULL', 'F', 'april17@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '3', '4510 Terry Lynn Lane', 'NULL', '1 (11) 500 555-0114', '2013-05-23', '0-1 Miles'], ['14982', '262', 'AW00014982', 'NULL', 'Kayla', 'NULL', 'Hughes', '0', '1984-04-06', 'M', 'NULL', 'F', 'kayla35@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '3', '7551 Black Walnut Ct.', 'NULL', '1 (11) 500 555-0197', '2013-03-10', '0-1 Miles'], ['14983', '268', 'AW00014983', 'NULL', 'Juan', 'R', 'Sanz', '0', '1984-02-21', 'S', 'NULL', 'M', 'juan7@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '3', '7814 Nephi Court', 'NULL', '1 (11) 500 555-0196', '2013-05-05', '0-1 Miles'], ['14984', '275', 'AW00014984', 'NULL', 'Regina', 'M', 'Vance', '0', '1984-05-12', 'S', 'NULL', 'F', 'regina3@adventure-works.com', '30000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9246 Westminster Pl', 'NULL', '1 (11) 500 555-0119', '2011-07-15', '0-1 Miles'], ['14985', '220', 'AW00014985', 'NULL', 'Jaclyn', 'A', 'Zhu', '0', '1982-11-24', 'S', 'NULL', 'F', 'jaclyn15@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '921, impasse Ste-Madeleine', 'NULL', '1 (11) 500 555-0125', '2013-03-14', '2-5 Miles'], ['14986', '271', 'AW00014986', 'NULL', 'Richard', 'J', 'Martinez', '0', '1982-02-02', 'M', 'NULL', 'M', 'richard11@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1251 Alan Drive', 'NULL', '1 (11) 500 555-0150', '2013-09-26', '2-5 Miles'], ['14987', '189', 'AW00014987', 'NULL', 'Misty', 'NULL', 'Nara', '0', '1982-06-02', 'S', 'NULL', 'F', 'misty18@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '111, quai Paul Doumer', 'NULL', '1 (11) 500 555-0154', '2013-06-07', '5-10 Miles'], ['14988', '248', 'AW00014988', 'NULL', 'Mandy', 'NULL', 'Lu', '0', '1980-07-23', 'M', 'NULL', 'F', 'mandy13@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '1227 Wesley Court', 'NULL', '1 (11) 500 555-0170', '2013-06-25', '0-1 Miles'], ['14989', '212', 'AW00014989', 'NULL', 'Shawna', 'R', 'She', '0', '1981-12-21', 'S', 'NULL', 'F', 'shawna0@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '28, quai de Grenelle', 'NULL', '1 (11) 500 555-0176', '2013-06-22', '5-10 Miles'], ['14990', '158', 'AW00014990', 'NULL', 'Nelson', 'J', 'Ramos', '0', '1981-07-25', 'S', 'NULL', 'M', 'nelson16@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Wallstr 824', 'NULL', '1 (11) 500 555-0160', '2011-11-30', '0-1 Miles'], ['14991', '272', 'AW00014991', 'NULL', 'Edwin', 'NULL', 'Zhao', '0', '1981-08-25', 'S', 'NULL', 'M', 'edwin11@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '973 Broadway Street', 'NULL', '1 (11) 500 555-0135', '2011-07-19', '0-1 Miles'], ['14992', '228', 'AW00014992', 'NULL', 'Dale', 'B', 'Andersen', '0', '1918-02-11', 'M', 'NULL', 'M', 'dale10@adventure-works.com', '20000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '2844 Plymouth Drive', 'NULL', '1 (11) 500 555-0182', '2013-09-04', '5-10 Miles'], ['14993', '234', 'AW00014993', 'NULL', 'Sean', 'NULL', 'Morgan', '0', '1980-12-08', 'S', 'NULL', 'M', 'sean21@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '8437 Holbrook Dr.', 'NULL', '1 (11) 500 555-0197', '2013-03-01', '2-5 Miles'], ['14994', '224', 'AW00014994', 'NULL', 'Seth', 'L', 'King', '0', '1981-06-25', 'S', 'NULL', 'M', 'seth27@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6, route de Marseille', 'NULL', '1 (11) 500 555-0198', '2013-05-30', '2-5 Miles'], ['14995', '198', 'AW00014995', 'NULL', 'Stefanie', 'NULL', 'Malhotra', '0', '1985-05-05', 'S', 'NULL', 'F', 'stefanie4@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '8, rue de l´Avenir', 'NULL', '1 (11) 500 555-0180', '2012-06-27', '1-2 Miles'], ['14996', '138', 'AW00014996', 'NULL', 'Ross', 'R', 'Gill', '0', '1981-04-12', 'S', 'NULL', 'M', 'ross31@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Unter Linden 934', 'NULL', '1 (11) 500 555-0114', '2013-06-30', '0-1 Miles'], ['14997', '161', 'AW00014997', 'NULL', 'Angel', 'NULL', 'Cooper', '0', '1980-12-02', 'M', 'NULL', 'M', 'angel8@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Brunnenstr 6466', 'NULL', '1 (11) 500 555-0195', '2011-12-06', '0-1 Miles'], ['14998', '224', 'AW00014998', 'NULL', 'Robert', 'NULL', 'Rodriguez', '0', '1979-10-14', 'S', 'NULL', 'M', 'robert80@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '360, avenue de Malakoff', 'NULL', '1 (11) 500 555-0142', '2012-06-04', '1-2 Miles'], ['14999', '261', 'AW00014999', 'NULL', 'Arianna', 'W', 'Morris', '0', '1978-11-03', 'S', 'NULL', 'F', 'arianna41@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '1767 Ham Dr.', 'NULL', '1 (11) 500 555-0160', '2014-01-02', '1-2 Miles'], ['15000', '178', 'AW00015000', 'NULL', 'Kelli', 'NULL', 'Zhou', '0', '1978-11-19', 'S', 'NULL', 'F', 'kelli9@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Königsteiner Straße 241', 'NULL', '1 (11) 500 555-0129', '2013-02-24', '0-1 Miles'], ['15001', '165', 'AW00015001', 'NULL', 'Autumn', 'NULL', 'Lu', '0', '1978-08-31', 'S', 'NULL', 'F', 'autumn10@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Auf dem Ufer 764', 'NULL', '1 (11) 500 555-0113', '2013-07-19', '1-2 Miles'], ['15002', '180', 'AW00015002', 'NULL', 'Jenny', 'A', 'Lin', '0', '1978-10-04', 'S', 'NULL', 'F', 'jenny10@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '88, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0151', '2012-06-17', '0-1 Miles'], ['15003', '222', 'AW00015003', 'NULL', 'Dennis', 'P', 'Yang', '0', '1984-09-17', 'S', 'NULL', 'M', 'dennis6@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '35, route de Marseille', 'NULL', '1 (11) 500 555-0173', '2012-06-09', '1-2 Miles'], ['15004', '191', 'AW00015004', 'NULL', 'Suzanne', 'NULL', 'Hu', '0', '1979-06-04', 'S', 'NULL', 'F', 'suzanne21@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '5407, rue Lauriston', 'NULL', '1 (11) 500 555-0123', '2012-06-27', '1-2 Miles'], ['15005', '337', 'AW00015005', 'NULL', 'Adrian', 'NULL', 'Cooper', '0', '1984-03-19', 'S', 'NULL', 'M', 'adrian10@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2055 Seawind Dr.', 'NULL', '478-555-0132', '2011-12-16', '1-2 Miles'], ['15006', '383', 'AW00015006', 'NULL', 'Grace', 'C', 'Jackson', '0', '1984-05-20', 'M', 'NULL', 'F', 'grace11@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3780 Angi Lane', 'NULL', '602-555-0171', '2011-12-02', '5-10 Miles'], ['15007', '49', 'AW00015007', 'NULL', 'Jaime', 'R', 'Rubio', '0', '1983-02-18', 'S', 'NULL', 'F', 'jaime23@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '495 Alameda Drive', 'NULL', '352-555-0115', '2013-02-24', '5-10 Miles'], ['15008', '70', 'AW00015008', 'NULL', 'Blake', 'NULL', 'Parker', '0', '1983-05-27', 'M', 'NULL', 'M', 'blake44@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3197 Winterglenn Way', 'NULL', '432-555-0151', '2013-03-26', '1-2 Miles'], ['15009', '634', 'AW00015009', 'NULL', 'Chloe', 'NULL', 'Patterson', '0', '1982-12-08', 'S', 'NULL', 'F', 'chloe77@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3175 Olivera Rd.', 'NULL', '312-555-0187', '2013-05-13', '5-10 Miles'], ['15010', '299', 'AW00015010', 'NULL', 'Cory', 'J', 'Suri', '0', '1983-03-12', 'M', 'NULL', 'M', 'cory18@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9342 Temple Drive', 'NULL', '109-555-0114', '2013-12-23', '5-10 Miles'], ['15011', '315', 'AW00015011', 'NULL', 'Amber', 'E', 'Mitchell', '0', '1983-05-13', 'S', 'NULL', 'F', 'amber11@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5537 Baltic Sea Ct.', 'NULL', '802-555-0115', '2013-07-09', '5-10 Miles'], ['15012', '626', 'AW00015012', 'NULL', 'Emma', 'A', 'Hughes', '0', '1982-03-03', 'M', 'NULL', 'F', 'emma57@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8412 Jorge', 'NULL', '457-555-0190', '2013-12-20', '5-10 Miles'], ['15013', '329', 'AW00015013', 'NULL', 'Julia', 'D', 'Campbell', '0', '1982-05-13', 'S', 'NULL', 'F', 'julia6@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6258 Stinson', '#8', '606-555-0185', '2013-05-03', '1-2 Miles'], ['15014', '19', 'AW00015014', 'NULL', 'Warren', 'NULL', 'Liu', '0', '1960-07-15', 'M', 'NULL', 'M', 'warren21@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7596 Green St.', 'NULL', '1 (11) 500 555-0131', '2012-09-08', '1-2 Miles'], ['15015', '39', 'AW00015015', 'NULL', 'Randy', 'NULL', 'Liu', '0', '1955-11-03', 'M', 'NULL', 'M', 'randy5@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '1246 Glenside Ct.', 'NULL', '1 (11) 500 555-0159', '2012-10-03', '1-2 Miles'], ['15016', '300', 'AW00015016', 'NULL', 'Daniel', 'L', 'Clark', '0', '1985-08-12', 'S', 'NULL', 'M', 'daniel9@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9177 Olympic Drive', 'NULL', '259-555-0179', '2011-12-05', '1-2 Miles'], ['15017', '338', 'AW00015017', 'NULL', 'Amanda', 'E', 'Ramirez', '0', '1986-04-21', 'S', 'NULL', 'F', 'amanda16@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1 Smiling Tree Court', 'Space 55', '486-555-0148', '2011-12-21', '1-2 Miles'], ['15018', '39', 'AW00015018', 'NULL', 'Felicia', 'L', 'Martin', '0', '1957-04-22', 'M', 'NULL', 'F', 'felicia0@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6492 Cunningham Way', 'NULL', '1 (11) 500 555-0146', '2013-02-11', '1-2 Miles'], ['15019', '2', 'AW00015019', 'NULL', 'Mary', 'B', 'Ramos', '0', '1956-09-24', 'S', 'NULL', 'F', 'mary38@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2796 Valley Crest Dr.', 'NULL', '1 (11) 500 555-0188', '2013-03-12', '5-10 Miles'], ['15020', '22', 'AW00015020', 'NULL', 'Christy', 'NULL', 'Ma', '0', '1957-04-22', 'M', 'NULL', 'F', 'christy14@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9970 Loma Linda', 'NULL', '1 (11) 500 555-0132', '2013-07-23', '1-2 Miles'], ['15021', '4', 'AW00015021', 'NULL', 'Lucas', 'J', 'Moore', '0', '1956-10-09', 'M', 'NULL', 'M', 'lucas21@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', 'Midi-Couleurs', 'NULL', '1 (11) 500 555-0137', '2013-03-20', '1-2 Miles'], ['15022', '17', 'AW00015022', 'NULL', 'Latasha', 'C', 'Gutierrez', '0', '1962-11-12', 'M', 'NULL', 'F', 'latasha11@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2477 Everett Court', 'NULL', '1 (11) 500 555-0186', '2012-10-02', '1-2 Miles'], ['15023', '641', 'AW00015023', 'NULL', 'Juan', 'J', 'Watson', '0', '1984-12-30', 'M', 'NULL', 'M', 'juan10@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6409 Queens Road', 'NULL', '175-555-0163', '2011-12-15', '5-10 Miles'], ['15024', '32', 'AW00015024', 'NULL', 'Nathan', 'NULL', 'Jones', '0', '1969-05-09', 'M', 'NULL', 'M', 'nathan61@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '845 Lay Brooke Way', 'NULL', '1 (11) 500 555-0115', '2013-04-09', '5-10 Miles'], ['15025', '36', 'AW00015025', 'NULL', 'Kristi', 'N', 'Subram', '0', '1958-01-15', 'S', 'NULL', 'F', 'kristi30@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3605 Haynes Court', 'NULL', '1 (11) 500 555-0119', '2013-08-07', '5-10 Miles'], ['15026', '21', 'AW00015026', 'NULL', 'Felicia', 'J', 'Diaz', '0', '1958-01-06', 'S', 'NULL', 'F', 'felicia3@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6896 Camino Norte', 'NULL', '1 (11) 500 555-0118', '2013-04-19', '5-10 Miles'], ['15027', '32', 'AW00015027', 'NULL', 'Tommy', 'C', 'Jai', '0', '1959-04-18', 'M', 'NULL', 'M', 'tommy8@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1971 Cleveland Ave.', 'NULL', '1 (11) 500 555-0150', '2012-10-06', '5-10 Miles'], ['15028', '40', 'AW00015028', 'NULL', 'Tabitha', 'NULL', 'Alvarez', '0', '1985-09-07', 'S', 'NULL', 'F', 'tabitha24@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '151 Buchanan Ct', 'NULL', '1 (11) 500 555-0164', '2012-10-22', '0-1 Miles'], ['15029', '19', 'AW00015029', 'NULL', 'Alejandro', 'W', 'Ye', '0', '1984-12-01', 'S', 'NULL', 'M', 'alejandro12@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5572 Running Springs Road', 'NULL', '1 (11) 500 555-0199', '2012-10-05', '2-5 Miles'], ['15030', '35', 'AW00015030', 'NULL', 'Jeffery', 'W', 'Zheng', '0', '1986-01-09', 'M', 'NULL', 'M', 'jeffery19@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2228 Alhambra Avenue', 'NULL', '1 (11) 500 555-0121', '2012-10-24', '0-1 Miles'], ['15031', '7', 'AW00015031', 'NULL', 'Darryl', 'J', 'Lin', '0', '1982-08-27', 'M', 'NULL', 'M', 'darryl7@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '6912 Hamilton Avenue', 'NULL', '1 (11) 500 555-0146', '2013-02-12', '2-5 Miles'], ['15032', '19', 'AW00015032', 'NULL', 'Meredith', 'NULL', 'Suarez', '0', '1981-12-09', 'S', 'NULL', 'F', 'meredith43@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '8437 Holbrook Dr.', 'NULL', '1 (11) 500 555-0180', '2012-10-06', '2-5 Miles'], ['15033', '11', 'AW00015033', 'NULL', 'Dana', 'D', 'Moreno', '0', '1981-12-30', 'S', 'NULL', 'F', 'dana22@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '8826 Kinross Drive', 'NULL', '1 (11) 500 555-0143', '2012-10-25', '2-5 Miles'], ['15034', '38', 'AW00015034', 'NULL', 'Hector', 'L', 'Suarez', '0', '1985-02-22', 'S', 'NULL', 'M', 'hector17@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '6271 Ironwood Way', 'NULL', '1 (11) 500 555-0190', '2013-03-22', '2-5 Miles'], ['15035', '25', 'AW00015035', 'NULL', 'Jay', 'S', 'Mehta', '0', '1984-08-10', 'S', 'NULL', 'M', 'jay20@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '8408 Garcia Ranch Road', 'NULL', '1 (11) 500 555-0197', '2012-10-13', '2-5 Miles'], ['15036', '15', 'AW00015036', 'NULL', 'Derek', 'NULL', 'She', '0', '1985-02-19', 'S', 'NULL', 'M', 'derek1@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9652 Los Angeles', 'NULL', '1 (11) 500 555-0161', '2012-10-15', '0-1 Miles'], ['15037', '14', 'AW00015037', 'NULL', 'Jaime', 'L', 'Raji', '0', '1985-02-19', 'S', 'NULL', 'M', 'jaime44@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1679 Bay View Drive', 'NULL', '1 (11) 500 555-0160', '2012-10-22', '0-1 Miles'], ['15038', '9', 'AW00015038', 'NULL', 'Cedric', 'NULL', 'Yang', '0', '1984-01-09', 'M', 'NULL', 'M', 'cedric5@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2989 Pepper Way', 'NULL', '1 (11) 500 555-0158', '2012-10-24', '0-1 Miles'], ['15039', '31', 'AW00015039', 'NULL', 'Michele', 'M', 'Xie', '0', '1982-10-03', 'S', 'NULL', 'F', 'michele3@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '4951 Coralie Drive', 'NULL', '1 (11) 500 555-0140', '2013-06-25', '1-2 Miles'], ['15040', '29', 'AW00015040', 'NULL', 'George', 'NULL', 'Lopez', '0', '1982-12-08', 'M', 'NULL', 'M', 'george23@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '3175 Olivera Rd.', 'NULL', '1 (11) 500 555-0198', '2012-10-21', '2-5 Miles'], ['15041', '24', 'AW00015041', 'NULL', 'Michele', 'NULL', 'Goel', '0', '1983-03-08', 'M', 'NULL', 'F', 'michele20@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '1136 Lane Way', 'NULL', '1 (11) 500 555-0170', '2012-10-25', '2-5 Miles'], ['15042', '2', 'AW00015042', 'NULL', 'Bryant', 'L', 'Perez', '0', '1982-07-21', 'S', 'NULL', 'M', 'bryant20@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '1502 Marion Ct.', 'NULL', '1 (11) 500 555-0189', '2012-10-21', '0-1 Miles'], ['15043', '35', 'AW00015043', 'NULL', 'Joel', 'A', 'Gonzalez', '0', '1982-11-07', 'S', 'NULL', 'M', 'joel17@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '9392 16th St.', 'NULL', '1 (11) 500 555-0116', '2012-10-12', '0-1 Miles'], ['15044', '37', 'AW00015044', 'NULL', 'Valerie', 'M', 'Hu', '0', '1983-02-07', 'S', 'NULL', 'F', 'valerie22@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '4292 Wellington Avenue', 'NULL', '1 (11) 500 555-0112', '2012-10-14', '0-1 Miles'], ['15045', '218', 'AW00015045', 'NULL', 'Tasha', 'R', 'Luo', '0', '1954-04-16', 'M', 'NULL', 'F', 'tasha6@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '8, rue Pierre-Demoulin', 'NULL', '1 (11) 500 555-0126', '2013-07-25', '0-1 Miles'], ['15046', '270', 'AW00015046', 'NULL', 'Casey', 'NULL', 'Tang', '0', '1949-05-17', 'M', 'NULL', 'F', 'casey4@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5056 Argyll Ave', 'NULL', '1 (11) 500 555-0134', '2011-07-18', '0-1 Miles'], ['15047', '249', 'AW00015047', 'NULL', 'Meghan', 'W', 'Vazquez', '0', '1967-02-08', 'M', 'NULL', 'F', 'meghan14@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5074 Ulfinian Way', 'NULL', '1 (11) 500 555-0165', '2011-07-19', '0-1 Miles'], ['15048', '271', 'AW00015048', 'NULL', 'Bonnie', 'H', 'Yuan', '0', '1966-12-17', 'M', 'NULL', 'F', 'bonnie12@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6126 Virgil Street', 'NULL', '1 (11) 500 555-0111', '2011-08-01', '0-1 Miles'], ['15049', '155', 'AW00015049', 'NULL', 'Frank', 'M', 'Dominguez', '0', '1971-03-21', 'S', 'NULL', 'M', 'frank20@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Buergermeister-ulrich-str 5800', 'NULL', '1 (11) 500 555-0124', '2013-11-26', '1-2 Miles'], ['15050', '160', 'AW00015050', 'NULL', 'Joshua', 'NULL', 'Miller', '0', '1971-12-07', 'S', 'NULL', 'M', 'joshua8@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Kampstr 7257', 'NULL', '1 (11) 500 555-0124', '2011-12-26', '1-2 Miles'], ['15051', '230', 'AW00015051', 'NULL', 'Harold', 'J', 'McDonald', '0', '1965-11-20', 'S', 'NULL', 'M', 'harold11@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '5071 Almaden Dr.', 'NULL', '1 (11) 500 555-0179', '2011-08-09', '1-2 Miles'], ['15052', '253', 'AW00015052', 'NULL', 'Kari', 'S', 'Moreno', '0', '1971-05-02', 'M', 'NULL', 'F', 'kari26@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '6558 Nulty Drive', 'NULL', '1 (11) 500 555-0148', '2013-02-13', '2-5 Miles'], ['15053', '224', 'AW00015053', 'NULL', 'Kurt', 'NULL', 'Andersen', '0', '1970-11-05', 'S', 'NULL', 'M', 'kurt13@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '600, avenue des Laurentides', 'NULL', '1 (11) 500 555-0147', '2013-09-17', '2-5 Miles'], ['15054', '134', 'AW00015054', 'NULL', 'Roger', 'L', 'Anand', '0', '1964-08-13', 'S', 'NULL', 'M', 'roger50@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Parise Straße 7556', 'NULL', '1 (11) 500 555-0142', '2011-12-06', '1-2 Miles'], ['15055', '175', 'AW00015055', 'NULL', 'Patrick', 'W', 'Torres', '0', '1965-01-18', 'M', 'NULL', 'M', 'patrick10@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Kulmer Straße 4625', 'NULL', '1 (11) 500 555-0180', '2011-11-30', '2-5 Miles'], ['15056', '244', 'AW00015056', 'NULL', 'Jaime', 'L', 'Suarez', '0', '1964-09-29', 'M', 'NULL', 'F', 'jaime21@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '7129 Corte Bonita', 'NULL', '1 (11) 500 555-0196', '2011-08-13', '2-5 Miles'], ['15057', '253', 'AW00015057', 'NULL', 'Regina', 'M', 'Chandra', '0', '1970-06-23', 'S', 'NULL', 'F', 'regina2@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '4012 Lime Ridge Drive', 'NULL', '1 (11) 500 555-0161', '2013-04-07', '2-5 Miles'], ['15058', '273', 'AW00015058', 'NULL', 'Julio', 'J', 'Suarez', '0', '1970-11-23', 'M', 'NULL', 'M', 'julio20@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2687 Apollo Way', 'NULL', '1 (11) 500 555-0187', '2011-08-10', '0-1 Miles'], ['15059', '276', 'AW00015059', 'NULL', 'Lisa', 'R', 'Zhu', '0', '1970-09-10', 'M', 'NULL', 'F', 'lisa17@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3359 Northwood Dr', 'NULL', '1 (11) 500 555-0175', '2011-08-09', '0-1 Miles'], ['15060', '222', 'AW00015060', 'NULL', 'Max', 'W', 'Vazquez', '0', '1969-12-20', 'S', 'NULL', 'M', 'max14@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '27, place Beaubernard', 'NULL', '1 (11) 500 555-0112', '2013-12-29', '2-5 Miles'], ['15061', '224', 'AW00015061', 'NULL', 'Margaret', 'G', 'Ma', '0', '1965-11-25', 'M', 'NULL', 'F', 'margaret22@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '208, chaussée de Tournai', 'NULL', '1 (11) 500 555-0111', '2012-06-21', '0-1 Miles'], ['15062', '264', 'AW00015062', 'NULL', 'Jaime', 'NULL', 'Alonso', '0', '1966-03-22', 'S', 'NULL', 'F', 'jaime9@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9923 Pampered Ct.', 'NULL', '1 (11) 500 555-0139', '2011-08-05', '0-1 Miles'], ['15063', '155', 'AW00015063', 'NULL', 'Kari', 'J', 'Malhotra', '0', '1965-12-17', 'M', 'NULL', 'F', 'kari6@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Postfach 8 11 55', 'NULL', '1 (11) 500 555-0116', '2011-12-19', '0-1 Miles'], ['15064', '204', 'AW00015064', 'NULL', 'Erik', 'C', 'Rubio', '0', '1966-01-31', 'M', 'NULL', 'M', 'erik21@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4313, rue de Linois', 'NULL', '1 (11) 500 555-0143', '2012-06-10', '0-1 Miles'], ['15065', '123', 'AW00015065', 'NULL', 'Alejandro', 'P', 'Gao', '0', '1981-05-11', 'S', 'NULL', 'M', 'alejandro18@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Postfach 99 09 00', 'NULL', '1 (11) 500 555-0128', '2013-03-02', '2-5 Miles'], ['15066', '222', 'AW00015066', 'NULL', 'Diana', 'NULL', 'Munoz', '0', '1975-09-02', 'M', 'NULL', 'F', 'diana6@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '9, rue de Courtaboeuf', 'NULL', '1 (11) 500 555-0116', '2013-08-20', '5-10 Miles'], ['15067', '209', 'AW00015067', 'NULL', 'Dana', 'NULL', 'Alvarez', '0', '1975-08-05', 'S', 'NULL', 'F', 'dana20@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '44, rue du Départ', 'NULL', '1 (11) 500 555-0149', '2012-06-22', '0-1 Miles'], ['15068', '160', 'AW00015068', 'NULL', 'Jessica', 'NULL', 'Barnes', '0', '1981-02-13', 'S', 'NULL', 'F', 'jessica27@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Am Gallberg 2667', 'NULL', '1 (11) 500 555-0123', '2013-05-05', '2-5 Miles'], ['15069', '162', 'AW00015069', 'NULL', 'Noah', 'L', 'Lal', '0', '1975-09-20', 'S', 'NULL', 'M', 'noah24@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Krönerweg 26', 'NULL', '1 (11) 500 555-0126', '2013-03-03', '2-5 Miles'], ['15070', '204', 'AW00015070', 'NULL', 'Alfredo', 'N', 'Navarro', '0', '1974-10-07', 'S', 'NULL', 'M', 'alfredo11@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '1103, rue Lamarck', 'NULL', '1 (11) 500 555-0131', '2012-06-01', '0-1 Miles'], ['15071', '187', 'AW00015071', 'NULL', 'Krista', 'R', 'Gutierrez', '0', '1981-12-13', 'S', 'NULL', 'F', 'krista11@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '254, rue de Bas Marin', 'NULL', '1 (11) 500 555-0181', '2012-06-09', '0-1 Miles'], ['15072', '224', 'AW00015072', 'NULL', 'Whitney', 'NULL', 'Subram', '0', '1976-01-01', 'S', 'NULL', 'F', 'whitney12@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Attaché de Presse', 'NULL', '1 (11) 500 555-0165', '2012-06-09', '0-1 Miles'], ['15073', '164', 'AW00015073', 'NULL', 'Tasha', 'NULL', 'Chander', '0', '1981-05-03', 'M', 'NULL', 'F', 'tasha16@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Parise Straße 7551', 'Verkaufsabteilung', '1 (11) 500 555-0141', '2011-12-02', '0-1 Miles'], ['15074', '171', 'AW00015074', 'NULL', 'Elizabeth', 'NULL', 'Perry', '0', '1925-08-25', 'M', 'NULL', 'F', 'elizabeth37@adventure-works.com', '10000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '2', 'Postfach 2 77 77', 'NULL', '1 (11) 500 555-0193', '2014-01-19', '0-1 Miles'], ['15075', '237', 'AW00015075', 'NULL', 'Alexa', 'NULL', 'Kelly', '0', '1926-03-15', 'M', 'NULL', 'F', 'alexa2@adventure-works.com', '10000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2212 Palmer Rd', 'NULL', '1 (11) 500 555-0184', '2013-02-23', '0-1 Miles'], ['15076', '162', 'AW00015076', 'NULL', 'Sheila', 'NULL', 'Ramos', '0', '1974-12-18', 'M', 'NULL', 'F', 'sheila16@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Winterfeldtstr 4442', 'NULL', '1 (11) 500 555-0116', '2013-12-18', '1-2 Miles'], ['15077', '279', 'AW00015077', 'NULL', 'Dominique', 'S', 'Lopez', '0', '1974-11-13', 'M', 'NULL', 'F', 'dominique14@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8921 Jill Ave.', 'NULL', '1 (11) 500 555-0153', '2011-08-06', '0-1 Miles'], ['15078', '238', 'AW00015078', 'NULL', 'Jacob', 'H', 'Wilson', '0', '1980-08-06', 'S', 'NULL', 'M', 'jacob7@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '6064 Brodia Court', 'NULL', '1 (11) 500 555-0124', '2011-08-04', '1-2 Miles'], ['15079', '223', 'AW00015079', 'NULL', 'Jose', 'C', 'Martin', '0', '1974-12-02', 'M', 'NULL', 'M', 'jose76@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '56, rue des Grands Champs', 'NULL', '1 (11) 500 555-0191', '2012-06-24', '0-1 Miles'], ['15080', '134', 'AW00015080', 'NULL', 'Evelyn', 'P', 'Chandra', '0', '1986-05-05', 'M', 'NULL', 'F', 'evelyn2@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Pappelallee 665', 'NULL', '1 (11) 500 555-0145', '2011-12-28', '0-1 Miles'], ['15081', '256', 'AW00015081', 'NULL', 'Daisy', 'NULL', 'Munoz', '0', '1975-06-19', 'M', 'NULL', 'F', 'daisy3@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6053 Frisbie Court', 'NULL', '1 (11) 500 555-0173', '2011-08-02', '0-1 Miles'], ['15082', '190', 'AW00015082', 'NULL', 'Kelvin', 'NULL', 'Lal', '0', '1974-12-11', 'M', 'NULL', 'M', 'kelvin5@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '118, rue Marbeuf', 'NULL', '1 (11) 500 555-0150', '2012-06-10', '0-1 Miles'], ['15083', '265', 'AW00015083', 'NULL', 'Teresa', 'A', 'Gutierrez', '0', '1975-01-02', 'M', 'NULL', 'F', 'teresa11@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5525 Lisa Lee Lane', 'NULL', '1 (11) 500 555-0156', '2011-09-15', '0-1 Miles'], ['15084', '133', 'AW00015084', 'NULL', 'Adrienne', 'NULL', 'Serrano', '0', '1980-09-16', 'S', 'NULL', 'F', 'adrienne13@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Winterfeldtstr 2529', 'NULL', '1 (11) 500 555-0186', '2012-01-22', '0-1 Miles'], ['15085', '212', 'AW00015085', 'NULL', 'Kristin', 'H', 'Jai', '0', '1974-12-30', 'S', 'NULL', 'F', 'kristin12@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '88, impasse Notre-Dame', 'NULL', '1 (11) 500 555-0113', '2012-07-30', '0-1 Miles'], ['15086', '224', 'AW00015086', 'NULL', 'Latasha', 'M', 'Dominguez', '0', '1980-02-16', 'S', 'NULL', 'F', 'latasha12@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8818, avenue de Villiers', 'NULL', '1 (11) 500 555-0158', '2012-07-15', '0-1 Miles'], ['15087', '232', 'AW00015087', 'NULL', 'Robin', 'L', 'Sanz', '0', '1980-04-30', 'S', 'NULL', 'F', 'robin15@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '3830 York Dr.', 'NULL', '1 (11) 500 555-0194', '2011-09-21', '0-1 Miles'], ['15088', '239', 'AW00015088', 'NULL', 'Colleen', 'J', 'Cai', '0', '1980-03-05', 'S', 'NULL', 'F', 'colleen22@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5500 Grammercy Lane', 'NULL', '1 (11) 500 555-0159', '2011-09-18', '0-1 Miles'], ['15089', '268', 'AW00015089', 'NULL', 'Martin', 'NULL', 'Prasad', '0', '1975-05-02', 'M', 'NULL', 'M', 'martin14@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8122 Mink Court', 'NULL', '1 (11) 500 555-0123', '2011-09-23', '0-1 Miles'], ['15090', '155', 'AW00015090', 'NULL', 'Troy', 'NULL', 'Mehta', '0', '1969-12-18', 'S', 'NULL', 'M', 'troy15@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Zur Lindung 1', 'NULL', '1 (11) 500 555-0187', '2013-07-23', '0-1 Miles'], ['15091', '144', 'AW00015091', 'NULL', 'Jermaine', 'C', 'Madan', '0', '1973-09-17', 'M', 'NULL', 'M', 'jermaine6@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Kampstr 989', 'NULL', '1 (11) 500 555-0195', '2013-05-06', '2-5 Miles'], ['15092', '161', 'AW00015092', 'NULL', 'Adrian', 'F', 'Morris', '0', '1960-02-15', 'M', 'NULL', 'M', 'adrian19@adventure-works.com', '80000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', 'Bundesallee 6234', 'NULL', '1 (11) 500 555-0146', '2013-04-18', '2-5 Miles'], ['15093', '198', 'AW00015093', 'NULL', 'Johnny', 'NULL', 'Moyer', '0', '1949-08-16', 'M', 'NULL', 'M', 'johnny20@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Midi-Couleurs', 'NULL', '1 (11) 500 555-0111', '2012-07-19', '2-5 Miles'], ['15094', '193', 'AW00015094', 'NULL', 'Wendy', 'B', 'Ortega', '0', '1955-03-16', 'M', 'NULL', 'F', 'wendy20@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5710, rue Villedo', 'NULL', '1 (11) 500 555-0113', '2012-06-30', '10+ Miles'], ['15095', '211', 'AW00015095', 'NULL', 'Jodi', 'A', 'Shan', '0', '1950-07-05', 'M', 'NULL', 'F', 'jodi10@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '35, rue de Longchamp', 'NULL', '1 (11) 500 555-0195', '2012-07-15', '2-5 Miles'], ['15096', '156', 'AW00015096', 'Mr.', 'Gary', 'NULL', 'Schare', '0', '1951-01-14', 'M', 'NULL', 'M', 'gary4@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', 'Kulmer Straße 36', 'NULL', '157-555-0100', '2013-09-18', '10+ Miles'], ['15097', '241', 'AW00015097', 'NULL', 'Morgan', 'NULL', 'Bennett', '0', '1950-10-21', 'M', 'NULL', 'F', 'morgan71@adventure-works.com', '110000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '5283 Rishell Ct.', 'NULL', '1 (11) 500 555-0198', '2011-09-15', '5-10 Miles'], ['15098', '207', 'AW00015098', 'NULL', 'Diana', 'NULL', 'Sanz', '0', '1951-08-28', 'S', 'NULL', 'F', 'diana19@adventure-works.com', '80000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '198, avenue du Québec', 'NULL', '1 (11) 500 555-0178', '2013-07-25', '10+ Miles'], ['15099', '185', 'AW00015099', 'NULL', 'Alvin', 'NULL', 'Ma', '0', '1951-12-07', 'S', 'NULL', 'M', 'alvin15@adventure-works.com', '80000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '26, rue de l´Esplanade', 'NULL', '1 (11) 500 555-0160', '2013-06-13', '10+ Miles'], ['15100', '171', 'AW00015100', 'NULL', 'Brenda', 'NULL', 'Chandra', '0', '1952-05-22', 'M', 'NULL', 'F', 'brenda6@adventure-works.com', '110000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', 'Holzstr 7555', 'Kreditorenbuchhaltung', '1 (11) 500 555-0176', '2012-01-04', '5-10 Miles'], ['15101', '162', 'AW00015101', 'NULL', 'Shawn', 'E', 'Shan', '0', '1952-04-15', 'S', 'NULL', 'M', 'shawn12@adventure-works.com', '120000.00', '4', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', 'Berliner Platz 224', 'NULL', '1 (11) 500 555-0120', '2012-01-04', '10+ Miles'], ['15102', '243', 'AW00015102', 'NULL', 'Allen', 'A', 'Malhotra', '0', '1952-02-11', 'M', 'NULL', 'M', 'allen4@adventure-works.com', '130000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '5053 F. Mt Hood Circle', 'NULL', '1 (11) 500 555-0180', '2013-10-15', '0-1 Miles'], ['15103', '269', 'AW00015103', 'NULL', 'Jonathan', 'D', 'Lopez', '0', '1958-09-05', 'M', 'NULL', 'M', 'jonathan50@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5950 Coggins Drive', 'NULL', '1 (11) 500 555-0110', '2013-03-03', '10+ Miles'], ['15104', '224', 'AW00015104', 'NULL', 'Ashley', 'NULL', 'Thompson', '0', '1969-07-31', 'M', 'NULL', 'F', 'ashley16@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '371, rue des Rosiers', 'NULL', '1 (11) 500 555-0117', '2013-07-20', '2-5 Miles'], ['15105', '163', 'AW00015105', 'NULL', 'Tina', 'F', 'Rana', '0', '1971-04-04', 'M', 'NULL', 'F', 'tina13@adventure-works.com', '100000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', 'Alderweg 9784', 'NULL', '1 (11) 500 555-0157', '2013-03-02', '10+ Miles'], ['15106', '265', 'AW00015106', 'NULL', 'Shannon', 'R', 'Navarro', '0', '1971-05-03', 'M', 'NULL', 'M', 'shannon31@adventure-works.com', '170000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '2403 Riverwood Circle', 'NULL', '1 (11) 500 555-0194', '2011-09-25', '10+ Miles'], ['15107', '191', 'AW00015107', 'NULL', 'Roy', 'NULL', 'Saunders', '0', '1959-01-17', 'M', 'NULL', 'M', 'roy10@adventure-works.com', '90000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '34, route de Marseille', 'NULL', '1 (11) 500 555-0167', '2013-03-26', '2-5 Miles'], ['15108', '252', 'AW00015108', 'NULL', 'Colleen', 'NULL', 'Gao', '0', '1959-01-03', 'M', 'NULL', 'F', 'colleen15@adventure-works.com', '130000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5167 Oakmead', 'NULL', '1 (11) 500 555-0124', '2013-06-08', '0-1 Miles'], ['15109', '219', 'AW00015109', 'NULL', 'Meghan', 'K', 'Carlson', '0', '1974-06-03', 'M', 'NULL', 'F', 'meghan17@adventure-works.com', '80000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '118, rue Marbeuf', 'NULL', '1 (11) 500 555-0115', '2013-06-13', '10+ Miles'], ['15110', '147', 'AW00015110', 'NULL', 'Janelle', 'M', 'Prasad', '0', '1957-08-25', 'M', 'NULL', 'F', 'janelle8@adventure-works.com', '100000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Kampstr 9859', 'NULL', '1 (11) 500 555-0125', '2013-12-27', '2-5 Miles'], ['15111', '192', 'AW00015111', 'NULL', 'Leah', 'NULL', 'Huang', '0', '1962-09-05', 'M', 'NULL', 'F', 'leah4@adventure-works.com', '80000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '22, rue du Puits Dixme', 'NULL', '1 (11) 500 555-0166', '2014-01-16', '2-5 Miles'], ['15112', '195', 'AW00015112', 'NULL', 'Alicia', 'NULL', 'Luo', '0', '1962-11-14', 'M', 'NULL', 'F', 'alicia4@adventure-works.com', '80000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '88040, rue Basse-du-Rocher', 'NULL', '1 (11) 500 555-0149', '2013-02-11', '2-5 Miles'], ['15113', '127', 'AW00015113', 'NULL', 'Robert', 'NULL', 'Smith', '0', '1962-05-31', 'M', 'NULL', 'M', 'robert84@adventure-works.com', '80000.00', '5', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Erftplatz 123', 'Verkaufsabteilung', '1 (11) 500 555-0166', '2014-01-19', '10+ Miles'], ['15114', '176', 'AW00015114', 'NULL', 'Erika', 'NULL', 'Munoz', '0', '1957-04-25', 'M', 'NULL', 'F', 'erika5@adventure-works.com', '110000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Galeriestr 626', 'NULL', '1 (11) 500 555-0113', '2012-01-01', '10+ Miles'], ['15115', '186', 'AW00015115', 'NULL', 'Christian', 'M', 'Patterson', '0', '1955-12-11', 'S', 'NULL', 'M', 'christian25@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '33, rue Georges-Clémenceau', 'NULL', '1 (11) 500 555-0196', '2013-07-10', '10+ Miles'], ['15116', '133', 'AW00015116', 'NULL', 'Mackenzie', 'M', 'Ramirez', '0', '1961-04-22', 'M', 'NULL', 'F', 'mackenzie5@adventure-works.com', '100000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '4', 'Knaackstr 44', 'Verkaufsabteilung', '1 (11) 500 555-0172', '2012-01-01', '5-10 Miles'], ['15117', '129', 'AW00015117', 'NULL', 'Dana', 'B', 'Dominguez', '0', '1954-11-11', 'M', 'NULL', 'F', 'dana5@adventure-works.com', '100000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '4', 'Carlsplatz 46', 'NULL', '1 (11) 500 555-0111', '2012-01-19', '10+ Miles'], ['15118', '269', 'AW00015118', 'NULL', 'Nelson', 'NULL', 'Ortega', '0', '1955-01-06', 'M', 'NULL', 'M', 'nelson21@adventure-works.com', '170000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '916 Sandview Dr.', 'NULL', '1 (11) 500 555-0113', '2011-08-31', '10+ Miles'], ['15119', '256', 'AW00015119', 'NULL', 'Johnny', 'NULL', 'Tang', '0', '1958-10-03', 'M', 'NULL', 'M', 'johnny4@adventure-works.com', '120000.00', '5', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '1873 Lyon Circle', 'NULL', '1 (11) 500 555-0113', '2013-05-25', '10+ Miles'], ['15120', '34', 'AW00015120', 'NULL', 'Erika', 'NULL', 'Suarez', '0', '1981-08-16', 'M', 'NULL', 'F', 'erika16@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '5160 Mt. Wilson Way', 'NULL', '1 (11) 500 555-0160', '2012-10-07', '10+ Miles'], ['15121', '32', 'AW00015121', 'NULL', 'Brendan', 'NULL', 'Andersen', '0', '1981-12-15', 'S', 'NULL', 'M', 'brendan11@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '9119 Near Drive', 'NULL', '1 (11) 500 555-0110', '2012-10-24', '10+ Miles'], ['15122', '27', 'AW00015122', 'NULL', 'Abby', 'T', 'Raman', '0', '1982-06-10', 'S', 'NULL', 'F', 'abby9@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '6937 E. 42nd Street', 'NULL', '1 (11) 500 555-0189', '2012-10-09', '10+ Miles'], ['15123', '33', 'AW00015123', 'NULL', 'Sergio', 'L', 'Lopez', '0', '1981-03-25', 'S', 'NULL', 'M', 'sergio17@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '8461 Lodge Drive', 'NULL', '1 (11) 500 555-0174', '2013-07-27', '10+ Miles'], ['15124', '37', 'AW00015124', 'NULL', 'Wendy', 'A', 'Hernandez', '0', '1980-05-17', 'S', 'NULL', 'F', 'wendy4@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '4346 Woodchuck Pl.', 'NULL', '1 (11) 500 555-0159', '2013-05-22', '10+ Miles'], ['15125', '26', 'AW00015125', 'NULL', 'Cory', 'A', 'Martinez', '0', '1980-08-06', 'S', 'NULL', 'M', 'cory15@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '8981 Stafford Ave', 'NULL', '1 (11) 500 555-0180', '2013-02-15', '10+ Miles'], ['15126', '31', 'AW00015126', 'NULL', 'Manuel', 'NULL', 'Sanchez', '0', '1980-08-20', 'S', 'NULL', 'M', 'manuel18@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '3628 Terra Granda', 'NULL', '1 (11) 500 555-0172', '2013-02-20', '10+ Miles'], ['15127', '5', 'AW00015127', 'NULL', 'Wesley', 'K', 'Yang', '0', '1986-02-10', 'S', 'NULL', 'M', 'wesley5@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '74 Jamie Way', 'NULL', '1 (11) 500 555-0188', '2012-10-13', '10+ Miles'], ['15128', '26', 'AW00015128', 'NULL', 'Angelica', 'NULL', 'Barnes', '0', '1979-11-19', 'S', 'NULL', 'F', 'angelica2@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '7090 Peabody Road', 'NULL', '1 (11) 500 555-0143', '2013-04-17', '10+ Miles'], ['15129', '25', 'AW00015129', 'NULL', 'Jennifer', 'M', 'Patterson', '0', '1984-10-02', 'M', 'NULL', 'F', 'jennifer84@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '7572 Easley Drive', 'NULL', '1 (11) 500 555-0175', '2012-10-11', '10+ Miles'], ['15130', '16', 'AW00015130', 'NULL', 'Roger', 'V', 'Ma', '0', '1984-09-10', 'S', 'NULL', 'M', 'roger20@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '616 Willow Court', 'NULL', '1 (11) 500 555-0133', '2012-10-07', '10+ Miles'], ['15131', '8', 'AW00015131', 'NULL', 'Lacey', 'L', 'Sun', '0', '1983-02-20', 'S', 'NULL', 'F', 'lacey25@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '2540 Waterview Place', 'NULL', '1 (11) 500 555-0159', '2013-08-09', '10+ Miles'], ['15132', '14', 'AW00015132', 'NULL', 'Jenny', 'NULL', 'Pal', '0', '1978-09-19', 'M', 'NULL', 'F', 'jenny34@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '2', '2672 Viking Drive', 'NULL', '1 (11) 500 555-0143', '2013-07-27', '10+ Miles'], ['15133', '20', 'AW00015133', 'NULL', 'Raul', 'R', 'Rai', '0', '1979-01-04', 'M', 'NULL', 'M', 'raul15@adventure-works.com', '120000.00', '5', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '6384 Euclid Ave.', 'NULL', '1 (11) 500 555-0115', '2012-10-24', '10+ Miles'], ['15134', '20', 'AW00015134', 'NULL', 'Meagan', 'J', 'Raman', '0', '1978-05-21', 'S', 'NULL', 'F', 'meagan12@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '5640 Icicle Way', 'NULL', '1 (11) 500 555-0151', '2012-10-23', '10+ Miles'], ['15135', '18', 'AW00015135', 'NULL', 'Derek', 'M', 'Kumar', '0', '1983-02-11', 'S', 'NULL', 'M', 'derek7@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '9416 Shadow Falls Drive', 'NULL', '1 (11) 500 555-0127', '2012-10-21', '10+ Miles'], ['15136', '27', 'AW00015136', 'NULL', 'Emma', 'M', 'Johnson', '0', '1977-10-30', 'M', 'NULL', 'F', 'emma0@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '3', '4350 Laguna St', 'NULL', '1 (11) 500 555-0175', '2013-01-30', '10+ Miles'], ['15137', '18', 'AW00015137', 'NULL', 'Luke', 'NULL', 'Foster', '0', '1978-02-10', 'M', 'NULL', 'M', 'luke5@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '2024 Belle Dr', 'NULL', '1 (11) 500 555-0115', '2013-02-15', '10+ Miles'], ['15138', '18', 'AW00015138', 'NULL', 'Monique', 'J', 'Hernandez', '0', '1977-12-18', 'S', 'NULL', 'F', 'monique0@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '2200 Rock Oak Road', 'NULL', '1 (11) 500 555-0139', '2013-01-28', '10+ Miles'], ['15139', '38', 'AW00015139', 'NULL', 'Colin', 'M', 'She', '0', '1976-10-29', 'M', 'NULL', 'M', 'colin23@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '4350 Laguna St', 'NULL', '1 (11) 500 555-0196', '2013-03-19', '10+ Miles'], ['15140', '18', 'AW00015140', 'NULL', 'Diane', 'A', 'Bradley', '0', '1977-03-05', 'S', 'NULL', 'F', 'diane20@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '3086 Indigo Ct', 'NULL', '1 (11) 500 555-0139', '2013-02-04', '10+ Miles'], ['15141', '16', 'AW00015141', 'NULL', 'Sandra', 'P', 'Zheng', '0', '1977-04-20', 'S', 'NULL', 'F', 'sandra27@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '6790 Falcon Dr.', 'NULL', '1 (11) 500 555-0147', '2013-09-12', '10+ Miles'], ['15142', '32', 'AW00015142', 'NULL', 'Karl', 'NULL', 'Nara', '0', '1977-11-09', 'M', 'NULL', 'M', 'karl17@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '9906 Oak Grove Road', 'NULL', '1 (11) 500 555-0189', '2013-08-12', '10+ Miles'], ['15143', '16', 'AW00015143', 'NULL', 'Kelvin', 'S', 'Wang', '0', '1976-12-14', 'M', 'NULL', 'M', 'kelvin21@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '3467 Monzeneda Way', 'NULL', '1 (11) 500 555-0149', '2012-09-29', '10+ Miles'], ['15144', '24', 'AW00015144', 'NULL', 'Deanna', 'W', 'Serrano', '0', '1976-10-01', 'S', 'NULL', 'F', 'deanna43@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '2763 Pass', 'NULL', '1 (11) 500 555-0153', '2012-10-04', '10+ Miles'], ['15145', '34', 'AW00015145', 'NULL', 'Crystal', 'A', 'Lu', '0', '1977-01-15', 'S', 'NULL', 'F', 'crystal12@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '8473 Larkwood Ct.', 'NULL', '1 (11) 500 555-0199', '2012-09-29', '10+ Miles'], ['15146', '5', 'AW00015146', 'NULL', 'Adriana', 'M', 'Sara', '0', '1976-12-09', 'M', 'NULL', 'F', 'adriana11@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '6358 Parkview Court', 'NULL', '1 (11) 500 555-0195', '2013-07-01', '10+ Miles'], ['15147', '27', 'AW00015147', 'NULL', 'Clarence', 'R', 'Chen', '0', '1982-03-12', 'M', 'NULL', 'M', 'clarence38@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '1310 Mitchelleanjen Ln.', 'NULL', '1 (11) 500 555-0119', '2013-04-19', '10+ Miles'], ['15148', '27', 'AW00015148', 'NULL', 'James', 'M', 'West', '0', '1976-01-06', 'M', 'NULL', 'M', 'james40@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '846 Springwood Way', 'NULL', '1 (11) 500 555-0187', '2013-03-21', '10+ Miles'], ['15149', '21', 'AW00015149', 'NULL', 'Natalie', 'NULL', 'Morgan', '0', '1981-08-23', 'M', 'NULL', 'F', 'natalie6@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '9394 Poor Ridge Court', 'NULL', '1 (11) 500 555-0184', '2013-06-25', '10+ Miles'], ['15150', '14', 'AW00015150', 'NULL', 'Colleen', 'D', 'Shan', '0', '1975-11-21', 'M', 'NULL', 'F', 'colleen34@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '1153 Southampton Road', 'NULL', '1 (11) 500 555-0142', '2012-10-27', '10+ Miles'], ['15151', '6', 'AW00015151', 'NULL', 'Karl', 'M', 'Shen', '0', '1982-12-10', 'M', 'NULL', 'M', 'karl2@adventure-works.com', '110000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '857 Alum Rock Drive', 'NULL', '1 (11) 500 555-0182', '2012-10-14', '10+ Miles'], ['15152', '40', 'AW00015152', 'NULL', 'Meghan', 'J', 'Moreno', '0', '1976-12-12', 'M', 'NULL', 'F', 'meghan6@adventure-works.com', '110000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '8048 Shepberry Court', 'NULL', '1 (11) 500 555-0112', '2012-10-04', '10+ Miles'], ['15153', '2', 'AW00015153', 'NULL', 'Kristen', 'R', 'Li', '0', '1977-04-02', 'M', 'NULL', 'F', 'kristen3@adventure-works.com', '110000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '4', '4752 Willow Creek Ct.', 'NULL', '1 (11) 500 555-0113', '2013-02-23', '10+ Miles'], ['15154', '28', 'AW00015154', 'NULL', 'Joe', 'NULL', 'Hernandez', '0', '1977-03-06', 'M', 'NULL', 'M', 'joe27@adventure-works.com', '130000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Management', 'Gestión', 'Direction', '1', '4', '5012 Bayshore Rd.', 'NULL', '1 (11) 500 555-0131', '2013-03-22', '10+ Miles'], ['15155', '310', 'AW00015155', 'NULL', 'Jamie', 'NULL', 'Harrison', '0', '1947-03-08', 'M', 'NULL', 'F', 'jamie22@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7046 Slow Creek Road', 'NULL', '200-555-0168', '2012-01-15', '10+ Miles'], ['15156', '311', 'AW00015156', 'NULL', 'Dylan', 'D', 'Foster', '0', '1946-08-22', 'M', 'NULL', 'M', 'dylan15@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7035 Creekridge Lane', 'NULL', '246-555-0114', '2013-03-26', '5-10 Miles'], ['15157', '54', 'AW00015157', 'NULL', 'Jordan', 'NULL', 'Gonzalez', '0', '1946-07-11', 'M', 'NULL', 'M', 'jordan62@adventure-works.com', '100000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '3994 Rancho View Drive', 'NULL', '892-555-0110', '2013-02-01', '5-10 Miles'], ['15158', '338', 'AW00015158', 'NULL', 'Victoria', 'NULL', 'Moore', '0', '1946-12-11', 'M', 'NULL', 'F', 'victoria9@adventure-works.com', '100000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '5707 Monte Vista Road', 'NULL', '364-555-0124', '2013-02-13', '5-10 Miles'], ['15159', '648', 'AW00015159', 'NULL', 'Eric', 'NULL', 'Washington', '0', '1947-02-12', 'M', 'NULL', 'M', 'eric21@adventure-works.com', '100000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '1345 La Luz', 'NULL', '874-555-0150', '2013-11-17', '1-2 Miles'], ['15160', '307', 'AW00015160', 'NULL', 'Candace', 'S', 'Van', '0', '1947-07-20', 'M', 'NULL', 'F', 'candace3@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '420 Royal Links Circle', 'NULL', '954-555-0133', '2014-01-28', '5-10 Miles'], ['15161', '352', 'AW00015161', 'NULL', 'Trinity', 'A', 'James', '0', '1948-02-13', 'S', 'NULL', 'F', 'trinity7@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1868 Alexander Pl', 'NULL', '149-555-0196', '2013-02-23', '5-10 Miles'], ['15162', '53', 'AW00015162', 'NULL', 'Kaitlyn', 'Z', 'Barnes', '0', '1948-04-01', 'M', 'NULL', 'F', 'kaitlyn70@adventure-works.com', '100000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '8605 Flamingo Dr', 'NULL', '104-555-0123', '2013-08-20', '5-10 Miles'], ['15163', '648', 'AW00015163', 'NULL', 'Victoria', 'J', 'Murphy', '0', '1948-01-03', 'M', 'NULL', 'F', 'victoria32@adventure-works.com', '100000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '1013 Buchanan Rd', 'NULL', '338-555-0126', '2013-09-13', '5-10 Miles'], ['15164', '339', 'AW00015164', 'NULL', 'Savannah', 'NULL', 'Collins', '0', '1949-05-25', 'M', 'NULL', 'F', 'savannah23@adventure-works.com', '100000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '96 Citrus Ave.', 'Unit B', '763-555-0163', '2013-07-18', '5-10 Miles'], ['15165', '310', 'AW00015165', 'NULL', 'Carl', 'NULL', 'Anand', '0', '1949-01-08', 'M', 'NULL', 'M', 'carl21@adventure-works.com', '100000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '8743 Roanwood Way', 'NULL', '127-555-0124', '2013-07-08', '5-10 Miles'], ['15166', '311', 'AW00015166', 'NULL', 'Nina', 'NULL', 'Goel', '0', '1949-03-10', 'M', 'NULL', 'F', 'nina19@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '9770 Fraga Court', '#91', '786-555-0115', '2012-01-17', '0-1 Miles'], ['15167', '614', 'AW00015167', 'NULL', 'Sara', 'NULL', 'Hernandez', '0', '1948-09-20', 'M', 'NULL', 'F', 'sara45@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '5476 Weber Bryan', 'NULL', '118-555-0122', '2012-01-22', '0-1 Miles'], ['15168', '632', 'AW00015168', 'NULL', 'Xavier', 'R', 'Bell', '0', '1950-06-06', 'M', 'NULL', 'M', 'xavier81@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7194 Fourth St.', 'NULL', '696-555-0116', '2013-09-20', '10+ Miles'], ['15169', '32', 'AW00015169', 'NULL', 'Zachary', 'M', 'Miller', '0', '1958-10-03', 'M', 'NULL', 'M', 'zachary35@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6866 Franklin Canyon Rd.', 'NULL', '1 (11) 500 555-0161', '2012-10-01', '5-10 Miles'], ['15170', '17', 'AW00015170', 'NULL', 'Jermaine', 'L', 'Martinez', '0', '1976-10-13', 'M', 'NULL', 'M', 'jermaine16@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4217 Almond Avenue', 'NULL', '1 (11) 500 555-0160', '2012-10-15', '5-10 Miles'], ['15171', '23', 'AW00015171', 'NULL', 'Destiny', 'NULL', 'Jones', '0', '1959-11-08', 'S', 'NULL', 'F', 'destiny3@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', 'P. O. Box # 9257', 'NULL', '1 (11) 500 555-0154', '2012-09-30', '5-10 Miles'], ['15172', '68', 'AW00015172', 'NULL', 'Alexandra', 'K', 'Hill', '0', '1986-02-10', 'S', 'NULL', 'F', 'alexandra63@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '74 Jamie Way', 'NULL', '172-555-0157', '2013-02-03', '5-10 Miles'], ['15173', '539', 'AW00015173', 'NULL', 'Miguel', 'J', 'Henderson', '0', '1981-04-13', 'S', 'NULL', 'M', 'miguel51@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2444 Piedmont', 'NULL', '218-555-0176', '2013-04-21', '5-10 Miles'], ['15174', '302', 'AW00015174', 'NULL', 'Trinity', 'NULL', 'Rogers', '0', '1980-09-05', 'S', 'NULL', 'F', 'trinity16@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3728 Chinquapin Ct.', 'NULL', '309-555-0111', '2013-09-23', '5-10 Miles'], ['15175', '41', 'AW00015175', 'NULL', 'Kristi', 'S', 'Malhotra', '0', '1984-11-21', 'S', 'NULL', 'F', 'kristi21@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4605 Springvale Court', 'NULL', '380-555-0148', '2013-06-15', '5-10 Miles'], ['15176', '49', 'AW00015176', 'NULL', 'Kristi', 'NULL', 'Ramos', '0', '1978-08-29', 'M', 'NULL', 'F', 'kristi13@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4594 Springer Court', 'NULL', '187-555-0112', '2013-06-05', '5-10 Miles'], ['15177', '311', 'AW00015177', 'NULL', 'Jorge', 'W', 'Lu', '0', '1979-02-16', 'S', 'NULL', 'M', 'jorge13@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '9314 Indianhead Way', 'NULL', '117-555-0110', '2013-11-25', '0-1 Miles'], ['15178', '32', 'AW00015178', 'NULL', 'Drew', 'W', 'Tang', '0', '1961-01-15', 'M', 'NULL', 'M', 'drew4@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '24 Jam Way', 'NULL', '1 (11) 500 555-0138', '2012-10-17', '5-10 Miles'], ['15179', '22', 'AW00015179', 'NULL', 'Jay', 'NULL', 'Rubio', '0', '1961-07-06', 'S', 'NULL', 'M', 'jay51@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5619 Saddlehill Lane', 'NULL', '1 (11) 500 555-0185', '2012-10-06', '1-2 Miles'], ['15180', '20', 'AW00015180', 'NULL', 'Jillian', 'L', 'Suri', '0', '1961-07-22', 'S', 'NULL', 'F', 'jillian1@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8752 Greenway Drive', 'NULL', '1 (11) 500 555-0141', '2012-10-07', '5-10 Miles'], ['15181', '30', 'AW00015181', 'NULL', 'Rosa', 'P', 'Huang', '0', '1973-01-30', 'S', 'NULL', 'F', 'rosa6@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8160 Star Tree Court', 'NULL', '1 (11) 500 555-0139', '2012-10-09', '5-10 Miles'], ['15182', '31', 'AW00015182', 'NULL', 'Deanna', 'NULL', 'Srini', '0', '1967-08-23', 'S', 'NULL', 'F', 'deanna12@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3794 Trees Drive', 'NULL', '1 (11) 500 555-0148', '2012-10-22', '5-10 Miles'], ['15183', '29', 'AW00015183', 'NULL', 'Michele', 'NULL', 'Raji', '0', '1979-01-13', 'S', 'NULL', 'F', 'michele22@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '4169 Deercreek Ln', 'NULL', '1 (11) 500 555-0113', '2012-10-08', '5-10 Miles'], ['15184', '24', 'AW00015184', 'NULL', 'Mathew', 'A', 'Hernandez', '0', '1963-10-25', 'S', 'NULL', 'M', 'mathew0@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '1454 Hillridge Way', 'NULL', '1 (11) 500 555-0184', '2012-10-17', '5-10 Miles'], ['15185', '39', 'AW00015185', 'NULL', 'Jonathan', 'D', 'Evans', '0', '1964-02-07', 'M', 'NULL', 'M', 'jonathan30@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '2708 Stephanie Way', 'NULL', '1 (11) 500 555-0118', '2012-09-29', '0-1 Miles'], ['15186', '28', 'AW00015186', 'NULL', 'Leah', 'J', 'Yang', '0', '1969-07-17', 'M', 'NULL', 'F', 'leah3@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8958 Las Palmas', 'NULL', '1 (11) 500 555-0191', '2013-03-31', '0-1 Miles'], ['15187', '51', 'AW00015187', 'NULL', 'Benjamin', 'D', 'Brown', '0', '1979-05-03', 'S', 'NULL', 'M', 'benjamin36@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '4296 Mountaire Pkwy.', 'NULL', '228-555-0178', '2013-06-20', '0-1 Miles'], ['15188', '627', 'AW00015188', 'NULL', 'Isaac', 'S', 'Watson', '0', '1979-09-07', 'S', 'NULL', 'M', 'isaac0@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2951 Cape Cod Way', 'NULL', '149-555-0137', '2012-01-12', '5-10 Miles'], ['15189', '633', 'AW00015189', 'NULL', 'Kayla', 'B', 'Russell', '0', '1985-08-11', 'M', 'NULL', 'F', 'kayla44@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '986 Roundhouse Pl.', 'NULL', '189-555-0189', '2012-01-24', '5-10 Miles'], ['15190', '302', 'AW00015190', 'NULL', 'Katherine', 'L', 'Watson', '0', '1980-02-16', 'S', 'NULL', 'F', 'katherine21@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '7047 Poncho St', 'NULL', '853-555-0161', '2013-12-05', '5-10 Miles'], ['15191', '307', 'AW00015191', 'NULL', 'Andres', 'L', 'Kumar', '0', '1980-02-16', 'S', 'NULL', 'M', 'andres4@adventure-works.com', '60000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '7047 Poncho St', 'NULL', '282-555-0167', '2012-01-08', '5-10 Miles'], ['15192', '28', 'AW00015192', 'NULL', 'Tasha', 'NULL', 'Shan', '0', '1965-04-23', 'S', 'NULL', 'F', 'tasha11@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '2552 Palm Ave', 'NULL', '1 (11) 500 555-0149', '2012-09-29', '0-1 Miles'], ['15193', '310', 'AW00015193', 'NULL', 'Samuel', 'NULL', 'King', '0', '1971-09-15', 'S', 'NULL', 'M', 'samuel48@adventure-works.com', '120000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '2788 Mt. Tamalpais Place', 'NULL', '422-555-0188', '2012-01-15', '2-5 Miles'], ['15194', '310', 'AW00015194', 'NULL', 'Erik', 'W', 'Suarez', '0', '1977-11-20', 'S', 'NULL', 'M', 'erik19@adventure-works.com', '120000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '1157 Chilpancingo Pk.', 'NULL', '177-555-0168', '2012-01-18', '0-1 Miles'], ['15195', '311', 'AW00015195', 'NULL', 'Edwin', 'NULL', 'Huang', '0', '1972-03-06', 'S', 'NULL', 'M', 'edwin6@adventure-works.com', '120000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '2815 La Vuelta', 'NULL', '158-555-0170', '2012-01-10', '2-5 Miles'], ['15196', '314', 'AW00015196', 'NULL', 'Isaiah', 'O', 'Reed', '0', '1977-06-22', 'S', 'NULL', 'M', 'isaiah20@adventure-works.com', '120000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '8702 Orchard View Ave', 'NULL', '529-555-0140', '2012-01-27', '2-5 Miles'], ['15197', '68', 'AW00015197', 'NULL', 'Elijah', 'NULL', 'Kumar', '0', '1963-03-19', 'M', 'NULL', 'M', 'elijah2@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '3354 Change Circle', 'NULL', '587-555-0116', '2013-07-06', '1-2 Miles'], ['15198', '315', 'AW00015198', 'NULL', 'Lauren', 'K', 'Watson', '0', '1968-09-28', 'M', 'NULL', 'F', 'lauren43@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '3067 Maya', 'NULL', '184-555-0169', '2013-02-07', '1-2 Miles'], ['15199', '299', 'AW00015199', 'NULL', 'Joe', 'L', 'Jordan', '0', '1962-09-08', 'M', 'NULL', 'M', 'joe5@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '5195 Donald Dr', 'NULL', '795-555-0182', '2012-01-01', '5-10 Miles'], ['15200', '302', 'AW00015200', 'NULL', 'Mindy', 'A', 'Simpson', '0', '1962-08-10', 'M', 'NULL', 'F', 'mindy6@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '8377 St. Raphael Drive', 'NULL', '689-555-0113', '2012-02-11', '0-1 Miles'], ['15201', '70', 'AW00015201', 'NULL', 'Miranda', 'NULL', 'Washington', '0', '1962-09-05', 'S', 'NULL', 'F', 'miranda13@adventure-works.com', '90000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '4698 Pepper Way', 'NULL', '580-555-0132', '2013-06-25', '2-5 Miles'], ['15202', '322', 'AW00015202', 'NULL', 'Blake', 'C', 'Bryant', '0', '1963-04-25', 'M', 'NULL', 'M', 'blake66@adventure-works.com', '90000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '9583 Silverwood Dr.', 'NULL', '149-555-0191', '2013-07-29', '5-10 Miles'], ['15203', '315', 'AW00015203', 'NULL', 'David', 'NULL', 'Lewis', '0', '1968-09-13', 'M', 'NULL', 'M', 'david84@adventure-works.com', '90000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6660 Hill Top Rd.', 'NULL', '505-555-0183', '2012-01-30', '2-5 Miles'], ['15204', '8', 'AW00015204', 'NULL', 'Deanna', 'S', 'Gonzalez', '0', '1973-01-18', 'M', 'NULL', 'F', 'deanna22@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '6764 Eastgate', 'NULL', '1 (11) 500 555-0186', '2012-10-07', '1-2 Miles'], ['15205', '10', 'AW00015205', 'NULL', 'Shawna', 'C', 'Black', '0', '1973-06-20', 'S', 'NULL', 'F', 'shawna19@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '3310 Harvey Way', 'NULL', '1 (11) 500 555-0145', '2012-10-10', '1-2 Miles'], ['15206', '30', 'AW00015206', 'NULL', 'Maurice', 'NULL', 'Andersen', '0', '1972-10-09', 'M', 'NULL', 'M', 'maurice14@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '4176 Cotton Ct', 'NULL', '1 (11) 500 555-0184', '2013-05-31', '0-1 Miles'], ['15207', '27', 'AW00015207', 'NULL', 'Josue', 'NULL', 'Diaz', '0', '1973-06-12', 'S', 'NULL', 'M', 'josue0@adventure-works.com', '100000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '3123 Bonita Ave', 'NULL', '1 (11) 500 555-0183', '2012-09-29', '2-5 Miles'], ['15208', '5', 'AW00015208', 'NULL', 'Colleen', 'E', 'Luo', '0', '1968-04-03', 'M', 'NULL', 'F', 'colleen30@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3731 Broadmoor Avenue', 'NULL', '1 (11) 500 555-0125', '2012-10-05', '5-10 Miles'], ['15209', '36', 'AW00015209', 'NULL', 'Frank', 'M', 'Romero', '0', '1979-01-13', 'M', 'NULL', 'M', 'frank16@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2441 Talbart St.', 'NULL', '1 (11) 500 555-0143', '2012-10-21', '0-1 Miles'], ['15210', '28', 'AW00015210', 'NULL', 'Kurt', 'NULL', 'Raje', '0', '1968-06-24', 'S', 'NULL', 'M', 'kurt14@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1870 Holland Circle', 'NULL', '1 (11) 500 555-0116', '2012-10-02', '5-10 Miles'], ['15211', '28', 'AW00015211', 'NULL', 'Kenneth', 'S', 'Luo', '0', '1966-09-03', 'S', 'NULL', 'M', 'kenneth6@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9343 Seaview Avenue', 'NULL', '1 (11) 500 555-0162', '2012-10-05', '0-1 Miles'], ['15212', '4', 'AW00015212', 'NULL', 'Marcus', 'D', 'Henderson', '0', '1967-01-11', 'M', 'NULL', 'M', 'marcus54@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5979 La Corte Bonita', 'NULL', '1 (11) 500 555-0150', '2013-04-13', '5-10 Miles'], ['15213', '31', 'AW00015213', 'NULL', 'Briana', 'L', 'Martin', '0', '1967-01-03', 'M', 'NULL', 'F', 'briana0@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1301 Stanbridge Ct', 'NULL', '1 (11) 500 555-0180', '2012-10-04', '0-1 Miles'], ['15214', '21', 'AW00015214', 'NULL', 'Amanda', 'NULL', 'Jenkins', '0', '1972-05-15', 'S', 'NULL', 'F', 'amanda28@adventure-works.com', '100000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '7829 Baldwin Dr.', 'NULL', '1 (11) 500 555-0139', '2012-11-12', '1-2 Miles'], ['15215', '34', 'AW00015215', 'NULL', 'Alberto', 'C', 'Jiménez', '0', '1972-03-24', 'S', 'NULL', 'M', 'alberto7@adventure-works.com', '100000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '607 B Way', 'NULL', '1 (11) 500 555-0182', '2012-11-15', '1-2 Miles'], ['15216', '33', 'AW00015216', 'NULL', 'Desiree', 'NULL', 'Gutierrez', '0', '1965-12-14', 'M', 'NULL', 'F', 'desiree7@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6252 Winding Lane', 'NULL', '1 (11) 500 555-0161', '2013-02-11', '5-10 Miles'], ['15217', '35', 'AW00015217', 'NULL', 'Ethan', 'NULL', 'Jai', '0', '1971-02-15', 'S', 'NULL', 'M', 'ethan28@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9846 Pestana Way', 'NULL', '1 (11) 500 555-0172', '2013-02-15', '5-10 Miles'], ['15218', '29', 'AW00015218', 'NULL', 'Willie', 'NULL', 'Johnsen', '0', '1971-03-06', 'S', 'NULL', 'M', 'willie30@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1278 Holly Oak Drive', 'NULL', '1 (11) 500 555-0148', '2012-11-26', '5-10 Miles'], ['15219', '29', 'AW00015219', 'NULL', 'Clayton', 'A', 'Chen', '0', '1976-02-19', 'S', 'NULL', 'M', 'clayton2@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3977 Strasbourg Lane', 'NULL', '1 (11) 500 555-0144', '2012-11-07', '0-1 Miles'], ['15220', '3', 'AW00015220', 'NULL', 'Micah', 'J', 'Liu', '0', '1975-09-07', 'S', 'NULL', 'M', 'micah14@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6247 Aspen Drive', 'NULL', '1 (11) 500 555-0156', '2012-11-24', '0-1 Miles'], ['15221', '8', 'AW00015221', 'NULL', 'Troy', 'P', 'Arun', '0', '1975-03-08', 'S', 'NULL', 'M', 'troy7@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '623 Davis Ave.', 'NULL', '1 (11) 500 555-0129', '2012-11-09', '0-1 Miles'], ['15222', '35', 'AW00015222', 'NULL', 'Cynthia', 'M', 'Patel', '0', '1975-09-12', 'M', 'NULL', 'F', 'cynthia7@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4767 Detroit Ave.', 'NULL', '1 (11) 500 555-0116', '2013-06-18', '0-1 Miles'], ['15223', '11', 'AW00015223', 'NULL', 'Ebony', 'F', 'Martin', '0', '1975-11-24', 'S', 'NULL', 'F', 'ebony22@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '8713 Yosemite Ct.', 'NULL', '1 (11) 500 555-0162', '2012-11-04', '5-10 Miles'], ['15224', '12', 'AW00015224', 'NULL', 'Pedro', 'S', 'Gutierrez', '0', '1975-02-05', 'S', 'NULL', 'M', 'pedro31@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7652 Mcelroy', 'NULL', '1 (11) 500 555-0118', '2013-05-05', '5-10 Miles'], ['15225', '30', 'AW00015225', 'NULL', 'Yolanda', 'NULL', 'Bhat', '0', '1965-06-08', 'M', 'NULL', 'F', 'yolanda19@adventure-works.com', '90000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2060 Hill Dr', '# 108', '1 (11) 500 555-0111', '2012-10-29', '2-5 Miles'], ['15226', '5', 'AW00015226', 'NULL', 'Lori', 'M', 'Moreno', '0', '1980-04-30', 'S', 'NULL', 'F', 'lori9@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '792 Myrtle Drive', 'NULL', '1 (11) 500 555-0192', '2012-11-11', '0-1 Miles'], ['15227', '10', 'AW00015227', 'NULL', 'Harold', 'NULL', 'Malhotra', '0', '1968-12-12', 'S', 'NULL', 'M', 'harold2@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '319 Dale Pl.', 'NULL', '1 (11) 500 555-0171', '2012-11-08', '5-10 Miles'], ['15228', '14', 'AW00015228', 'NULL', 'Jermaine', 'E', 'Raman', '0', '1969-05-01', 'M', 'NULL', 'M', 'jermaine10@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '7749 Dakota Lane', 'NULL', '1 (11) 500 555-0141', '2012-11-19', '0-1 Miles'], ['15229', '28', 'AW00015229', 'NULL', 'Calvin', 'NULL', 'Rai', '0', '1968-02-29', 'M', 'NULL', 'M', 'calvin16@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8544 Dewing Avenue', 'NULL', '1 (11) 500 555-0119', '2012-11-03', '0-1 Miles'], ['15230', '11', 'AW00015230', 'NULL', 'Jillian', 'D', 'Vance', '0', '1973-12-14', 'M', 'NULL', 'F', 'jillian4@adventure-works.com', '70000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '4930 Virginia Hills Drive', 'NULL', '1 (11) 500 555-0175', '2013-08-19', '0-1 Miles'], ['15231', '13', 'AW00015231', 'NULL', 'Alexia', 'D', 'Barnes', '0', '1967-10-08', 'M', 'NULL', 'F', 'alexia3@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1693 O Avenue', 'NULL', '1 (11) 500 555-0178', '2013-10-01', '0-1 Miles'], ['15232', '23', 'AW00015232', 'NULL', 'Omar', 'I', 'Ma', '0', '1972-07-14', 'S', 'NULL', 'M', 'omar15@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4502 Knewal Rd', 'NULL', '1 (11) 500 555-0198', '2013-06-22', '5-10 Miles'], ['15233', '36', 'AW00015233', 'NULL', 'Tammy', 'NULL', 'Rodriguez', '0', '1972-03-06', 'M', 'NULL', 'F', 'tammy20@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '4428 Madhatter Circle', 'NULL', '1 (11) 500 555-0125', '2013-07-06', '5-10 Miles'], ['15234', '16', 'AW00015234', 'NULL', 'Kathleen', 'C', 'Moreno', '0', '1964-01-22', 'S', 'NULL', 'F', 'kathleen8@adventure-works.com', '100000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '4201 Logan Court', 'NULL', '1 (11) 500 555-0119', '2013-03-25', '10+ Miles'], ['15235', '33', 'AW00015235', 'NULL', 'Kari', 'NULL', 'Lopez', '0', '1971-06-22', 'M', 'NULL', 'F', 'kari17@adventure-works.com', '60000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8763 Lori Dr.', 'NULL', '1 (11) 500 555-0139', '2013-06-24', '0-1 Miles'], ['15236', '23', 'AW00015236', 'NULL', 'Brandy', 'I', 'Kapoor', '0', '1965-11-04', 'M', 'NULL', 'F', 'brandy19@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '5254 Westwood Lane', 'NULL', '1 (11) 500 555-0146', '2013-03-29', '10+ Miles'], ['15237', '12', 'AW00015237', 'NULL', 'Devon', 'L', 'Lal', '0', '1976-10-11', 'M', 'NULL', 'M', 'devon6@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '2369 Teak St.', 'NULL', '1 (11) 500 555-0191', '2013-06-04', '5-10 Miles'], ['15238', '3', 'AW00015238', 'NULL', 'Jonathon', 'A', 'Alonso', '0', '1967-10-13', 'M', 'NULL', 'M', 'jonathon5@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8983 Haynes Court', 'NULL', '1 (11) 500 555-0152', '2013-06-11', '5-10 Miles'], ['15239', '27', 'AW00015239', 'NULL', 'Sergio', 'D', 'Rodriguez', '0', '1962-03-07', 'M', 'NULL', 'M', 'sergio20@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6140 Mt. Whitney Way', 'NULL', '1 (11) 500 555-0119', '2013-07-19', '5-10 Miles'], ['15240', '13', 'AW00015240', 'NULL', 'Monique', 'R', 'Navarro', '0', '1959-04-06', 'M', 'NULL', 'F', 'monique6@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '8486 Hazelwood Lane', 'NULL', '1 (11) 500 555-0114', '2013-07-15', '0-1 Miles'], ['15241', '9', 'AW00015241', 'NULL', 'Geoffrey', 'M', 'Madan', '0', '1964-05-23', 'M', 'NULL', 'M', 'geoffrey7@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '523 Baywood Drive', 'NULL', '1 (11) 500 555-0134', '2013-07-25', '5-10 Miles'], ['15242', '18', 'AW00015242', 'NULL', 'Neil', 'NULL', 'Suarez', '0', '1959-02-19', 'M', 'NULL', 'M', 'neil18@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '9967 Malibu Place', 'NULL', '1 (11) 500 555-0187', '2013-08-12', '0-1 Miles'], ['15243', '543', 'AW00015243', 'NULL', 'Lauren', 'NULL', 'Harris', '0', '1981-11-30', 'M', 'NULL', 'F', 'lauren32@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1564 Weston Court', 'NULL', '867-555-0150', '2013-10-28', '5-10 Miles'], ['15244', '62', 'AW00015244', 'NULL', 'Alexis', 'L', 'Rodriguez', '0', '1981-12-03', 'M', 'NULL', 'F', 'alexis17@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6306 Morning Way', 'NULL', '306-555-0159', '2013-03-12', '5-10 Miles'], ['15245', '369', 'AW00015245', 'NULL', 'Eduardo', 'NULL', 'Ross', '0', '1981-11-25', 'M', 'NULL', 'M', 'eduardo48@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9968 Northwood Dr.', 'NULL', '355-555-0178', '2013-07-30', '5-10 Miles'], ['15246', '359', 'AW00015246', 'NULL', 'Kaitlyn', 'R', 'Watson', '0', '1981-10-05', 'M', 'NULL', 'F', 'kaitlyn64@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6936 Andrews Drive', 'NULL', '870-555-0119', '2013-05-27', '5-10 Miles'], ['15247', '633', 'AW00015247', 'NULL', 'Catherine', 'NULL', 'Stewart', '0', '1981-05-10', 'S', 'NULL', 'F', 'catherine20@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6757 Pampered Ct.', 'NULL', '393-555-0141', '2013-05-09', '0-1 Miles'], ['15248', '612', 'AW00015248', 'NULL', 'Richard', 'NULL', 'Harris', '0', '1982-06-27', 'M', 'NULL', 'M', 'richard54@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4277 Banana Court', 'NULL', '429-555-0155', '2013-11-09', '5-10 Miles'], ['15249', '348', 'AW00015249', 'NULL', 'Abigail', 'L', 'Anderson', '0', '1985-08-11', 'S', 'NULL', 'F', 'abigail52@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6565 Woodcrest Dr.', 'NULL', '142-555-0137', '2013-09-04', '0-1 Miles'], ['15250', '335', 'AW00015250', 'NULL', 'Jose', 'M', 'Scott', '0', '1986-05-13', 'S', 'NULL', 'M', 'jose50@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4255 Collins Dr.', 'NULL', '222-555-0119', '2013-05-05', '0-1 Miles'], ['15251', '59', 'AW00015251', 'NULL', 'Noah', 'A', 'Hall', '0', '1985-08-21', 'S', 'NULL', 'M', 'noah72@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4092 Folson Drive', 'NULL', '485-555-0116', '2013-05-06', '5-10 Miles'], ['15252', '547', 'AW00015252', 'NULL', 'Jada', 'NULL', 'Murphy', '0', '1985-08-13', 'M', 'NULL', 'F', 'jada6@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8299 Fernwood Drive', 'NULL', '136-555-0129', '2012-02-24', '5-10 Miles'], ['15253', '38', 'AW00015253', 'NULL', 'Barry', 'NULL', 'Suri', '0', '1952-01-14', 'M', 'NULL', 'M', 'barry2@adventure-works.com', '10000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9233 Pepper Way', 'NULL', '1 (11) 500 555-0182', '2013-08-04', '5-10 Miles'], ['15254', '421', 'AW00015254', 'NULL', 'Carla', 'C', 'Chapman', '0', '1985-08-23', 'M', 'NULL', 'F', 'carla5@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1568 Delta Fair Blvd.', 'NULL', '367-555-0181', '2012-01-30', '0-1 Miles'], ['15255', '358', 'AW00015255', 'NULL', 'Evan', 'NULL', 'Collins', '0', '1983-12-02', 'M', 'NULL', 'M', 'evan26@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5444 Flamingo Dr.', 'NULL', '604-555-0118', '2012-02-03', '5-10 Miles'], ['15256', '312', 'AW00015256', 'NULL', 'Dalton', 'R', 'Ramirez', '0', '1983-08-23', 'S', 'NULL', 'M', 'dalton77@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '820 Dobrich Circle', 'NULL', '277-555-0124', '2012-02-14', '0-1 Miles'], ['15257', '611', 'AW00015257', 'NULL', 'Matthew', 'NULL', 'Anderson', '0', '1983-09-22', 'S', 'NULL', 'M', 'matthew15@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8154 Via Mexico', 'NULL', '271-555-0176', '2013-02-03', '5-10 Miles'], ['15258', '607', 'AW00015258', 'NULL', 'Chloe', 'NULL', 'Reed', '0', '1983-11-04', 'M', 'NULL', 'F', 'chloe49@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6108 Estudello St.', 'NULL', '418-555-0176', '2013-09-25', '5-10 Miles'], ['15259', '301', 'AW00015259', 'NULL', 'Franklin', 'NULL', 'Zhu', '0', '1983-04-03', 'S', 'NULL', 'M', 'franklin13@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6140 Nightingale Drive', '# 79', '665-555-0159', '2014-01-04', '5-10 Miles'], ['15260', '307', 'AW00015260', 'NULL', 'Kathleen', 'NULL', 'Torres', '0', '1983-02-18', 'S', 'NULL', 'F', 'kathleen14@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4257 Crown Court', 'NULL', '139-555-0176', '2013-04-04', '5-10 Miles'], ['15261', '12', 'AW00015261', 'NULL', 'Carolyn', 'NULL', 'Torres', '0', '1950-12-17', 'M', 'NULL', 'F', 'carolyn32@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '8439 Rio Grande Drive', 'NULL', '1 (11) 500 555-0150', '2013-04-08', '0-1 Miles'], ['15262', '2', 'AW00015262', 'NULL', 'Jan', 'A', 'Gonzalez', '0', '1945-11-17', 'M', 'NULL', 'F', 'jan12@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7618 Eastgate', 'NULL', '1 (11) 500 555-0190', '2012-11-10', '0-1 Miles'], ['15263', '34', 'AW00015263', 'NULL', 'Paige', 'L', 'Coleman', '0', '1946-06-19', 'M', 'NULL', 'F', 'paige6@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5495 Olivera Road', 'NULL', '1 (11) 500 555-0143', '2013-10-04', '5-10 Miles'], ['15264', '23', 'AW00015264', 'NULL', 'Peter', 'L', 'Goel', '0', '1946-06-19', 'M', 'NULL', 'M', 'peter24@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5495 Olivera Road', 'NULL', '1 (11) 500 555-0176', '2013-03-20', '5-10 Miles'], ['15265', '11', 'AW00015265', 'NULL', 'Kristopher', 'L', 'Malhotra', '0', '1946-02-15', 'S', 'NULL', 'M', 'kristopher5@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2616 Northridge Drive', 'NULL', '1 (11) 500 555-0135', '2012-10-31', '5-10 Miles'], ['15266', '18', 'AW00015266', 'NULL', 'Briana', 'A', 'Suarez', '0', '1946-10-08', 'M', 'NULL', 'F', 'briana16@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9015 G St.', 'NULL', '1 (11) 500 555-0165', '2012-11-22', '0-1 Miles'], ['15267', '21', 'AW00015267', 'NULL', 'Kendra', 'R', 'Alvarez', '0', '1948-04-03', 'M', 'NULL', 'F', 'kendra4@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '9435 Breck Court', 'NULL', '1 (11) 500 555-0142', '2012-11-20', '0-1 Miles'], ['15268', '12', 'AW00015268', 'NULL', 'Shannon', 'F', 'Wu', '0', '1953-10-04', 'S', 'NULL', 'F', 'shannon7@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '1619 Stillman Court', 'NULL', '1 (11) 500 555-0113', '2012-10-30', '5-10 Miles'], ['15269', '616', 'AW00015269', 'NULL', 'Chloe', 'W', 'King', '0', '1981-11-17', 'M', 'NULL', 'F', 'chloe17@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4719 Delaware Drive', 'NULL', '940-555-0133', '2013-04-27', '5-10 Miles'], ['15270', '631', 'AW00015270', 'NULL', 'Ariana', 'B', 'Cox', '0', '1982-02-03', 'S', 'NULL', 'F', 'ariana9@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1237 Dance Court', 'NULL', '360-555-0173', '2013-08-06', '1-2 Miles'], ['15271', '637', 'AW00015271', 'NULL', 'Samuel', 'R', 'Yang', '0', '1981-12-01', 'S', 'NULL', 'M', 'samuel25@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2370 Mac Court', 'NULL', '231-555-0113', '2013-09-03', '5-10 Miles'], ['15272', '642', 'AW00015272', 'NULL', 'Kyle', 'NULL', 'Gonzales', '0', '1981-12-30', 'S', 'NULL', 'M', 'kyle12@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '277 South Royal Links', 'NULL', '258-555-0160', '2013-11-24', '1-2 Miles'], ['15273', '336', 'AW00015273', 'NULL', 'Brandon', 'NULL', 'Alexander', '0', '1981-11-11', 'S', 'NULL', 'M', 'brandon16@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4911 Peachwillow Lane', 'NULL', '780-555-0152', '2013-04-06', '5-10 Miles'], ['15274', '337', 'AW00015274', 'NULL', 'Alexander', 'M', 'Johnson', '0', '1982-01-22', 'S', 'NULL', 'M', 'alexander3@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5033 Pine Hollow Rd.', 'NULL', '443-555-0139', '2013-05-18', '5-10 Miles'], ['15275', '369', 'AW00015275', 'NULL', 'Eric', 'L', 'Collins', '0', '1982-04-22', 'M', 'NULL', 'M', 'eric44@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8181 Landana Dr.', 'NULL', '116-555-0177', '2013-02-27', '5-10 Miles'], ['15276', '316', 'AW00015276', 'NULL', 'Megan', 'L', 'Hall', '0', '1985-06-02', 'S', 'NULL', 'F', 'megan26@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6684 Galloway Drive', 'NULL', '194-555-0177', '2012-02-19', '1-2 Miles'], ['15277', '337', 'AW00015277', 'NULL', 'Hailey', 'E', 'Griffin', '0', '1979-12-02', 'S', 'NULL', 'F', 'hailey41@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '732 East 87th Street', 'NULL', '969-555-0112', '2013-06-22', '1-2 Miles'], ['15278', '358', 'AW00015278', 'NULL', 'Brandon', 'NULL', 'Russell', '0', '1985-08-30', 'S', 'NULL', 'M', 'brandon17@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9570 Royal Links Ct', '# 24', '839-555-0181', '2013-02-03', '5-10 Miles'], ['15279', '360', 'AW00015279', 'NULL', 'Hunter', 'E', 'Lee', '0', '1980-06-25', 'S', 'NULL', 'M', 'hunter55@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9255 Westover Dr.', 'NULL', '931-555-0121', '2013-10-02', '1-2 Miles'], ['15280', '358', 'AW00015280', 'NULL', 'Mya', 'L', 'Griffin', '0', '1973-12-11', 'S', 'NULL', 'F', 'mya21@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '8964 Yosemite Ct', 'NULL', '846-555-0139', '2012-02-24', '1-2 Miles'], ['15281', '299', 'AW00015281', 'NULL', 'Hunter', 'NULL', 'Anderson', '0', '1972-10-19', 'S', 'NULL', 'M', 'hunter68@adventure-works.com', '110000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '665 Mark Twain Dr.', 'NULL', '107-555-0195', '2013-03-20', '10+ Miles'], ['15282', '359', 'AW00015282', 'NULL', 'Elizabeth', 'A', 'Thomas', '0', '1969-01-17', 'M', 'NULL', 'F', 'elizabeth14@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '7379 Cambelback Place', 'NULL', '196-555-0129', '2013-10-06', '1-2 Miles'], ['15283', '49', 'AW00015283', 'NULL', 'Eugene', 'A', 'Li', '0', '1978-05-22', 'S', 'NULL', 'M', 'eugene7@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '5446 Via Estrella', 'NULL', '956-555-0161', '2013-10-10', '1-2 Miles'], ['15284', '310', 'AW00015284', 'NULL', 'Jay', 'NULL', 'Prasad', '0', '1983-03-10', 'S', 'NULL', 'M', 'jay16@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '174 Carlotta', 'NULL', '353-555-0119', '2012-01-31', '1-2 Miles'], ['15285', '307', 'AW00015285', 'NULL', 'Olivia', 'A', 'Rodriguez', '0', '1983-02-07', 'S', 'NULL', 'F', 'olivia19@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6660 Poppy Circle', 'NULL', '571-555-0145', '2013-03-16', '0-1 Miles'], ['15286', '546', 'AW00015286', 'NULL', 'Thomas', 'C', 'Nelson', '0', '1979-03-31', 'M', 'NULL', 'M', 'thomas46@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3278 Mt. Hood Clircle', 'NULL', '340-555-0178', '2013-11-11', '0-1 Miles'], ['15287', '641', 'AW00015287', 'NULL', 'Stephanie', 'S', 'Baker', '0', '1978-10-21', 'S', 'NULL', 'F', 'stephanie61@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2064 Pleasant Circle', 'NULL', '598-555-0132', '2012-02-25', '1-2 Miles'], ['15288', '307', 'AW00015288', 'NULL', 'Logan', 'NULL', 'Perry', '0', '1978-09-25', 'M', 'NULL', 'M', 'logan10@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1308 Mt. Hood Circle', 'NULL', '988-555-0121', '2012-01-30', '1-2 Miles'], ['15289', '326', 'AW00015289', 'NULL', 'Katelyn', 'NULL', 'Gray', '0', '1983-02-10', 'M', 'NULL', 'F', 'katelyn4@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6158 Hawthorne Dr', 'NULL', '814-555-0115', '2012-02-21', '0-1 Miles'], ['15290', '648', 'AW00015290', 'NULL', 'Edward', 'NULL', 'Thompson', '0', '1983-07-24', 'M', 'NULL', 'M', 'edward38@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '9916 Walnut Blvd.', 'NULL', '146-555-0179', '2012-03-13', '0-1 Miles'], ['15291', '62', 'AW00015291', 'NULL', 'Julia', 'J', 'Alexander', '0', '1982-10-19', 'S', 'NULL', 'F', 'julia85@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8428 Appia Court', 'NULL', '381-555-0158', '2013-11-15', '1-2 Miles'], ['15292', '553', 'AW00015292', 'NULL', 'Megan', 'C', 'Bailey', '0', '1976-12-14', 'S', 'NULL', 'F', 'megan36@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4098 Woodcrest Dr.', 'NULL', '885-555-0193', '2013-10-04', '1-2 Miles'], ['15293', '542', 'AW00015293', 'NULL', 'Mason', 'C', 'Watson', '0', '1982-03-07', 'M', 'NULL', 'M', 'mason2@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '255 Mt. Olivet Ct.', 'NULL', '638-555-0178', '2014-01-12', '1-2 Miles'], ['15294', '635', 'AW00015294', 'NULL', 'Michael', 'NULL', 'Robinson', '0', '1977-02-05', 'M', 'NULL', 'M', 'michael50@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '862 The Alameda', 'NULL', '408-555-0134', '2013-04-22', '1-2 Miles'], ['15295', '300', 'AW00015295', 'NULL', 'Louis', 'NULL', 'Shan', '0', '1976-09-20', 'M', 'NULL', 'M', 'louis27@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9845 Oxford Place', 'NULL', '842-555-0114', '2013-06-12', '1-2 Miles'], ['15296', '385', 'AW00015296', 'NULL', 'Chloe', 'C', 'Peterson', '0', '1976-12-10', 'M', 'NULL', 'F', 'chloe60@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8942 Sierra Road', 'NULL', '772-555-0144', '2013-10-05', '0-1 Miles'], ['15297', '614', 'AW00015297', 'NULL', 'Nicole', 'J', 'Bryant', '0', '1976-11-11', 'M', 'NULL', 'F', 'nicole67@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'P.O. Box 4559', 'NULL', '553-555-0132', '2013-07-07', '1-2 Miles'], ['15298', '612', 'AW00015298', 'NULL', 'Joe', 'G', 'Chandra', '0', '1983-09-08', 'M', 'NULL', 'M', 'joe6@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5342 Pacheco St.', 'NULL', '204-555-0194', '2013-11-20', '0-1 Miles'], ['15299', '543', 'AW00015299', 'NULL', 'Charles', 'H', 'Lopez', '0', '1983-10-19', 'M', 'NULL', 'M', 'charles32@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5022 Euclid Ave.', 'NULL', '517-555-0133', '2013-11-25', '0-1 Miles'], ['15300', '632', 'AW00015300', 'NULL', 'Seth', 'NULL', 'Butler', '0', '1978-05-09', 'M', 'NULL', 'M', 'seth62@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '984 Talbart St.', 'NULL', '144-555-0168', '2014-01-26', '0-1 Miles'], ['15301', '310', 'AW00015301', 'NULL', 'Amy', 'A', 'Guo', '0', '1977-08-18', 'S', 'NULL', 'F', 'amy24@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6538 Camelback Road', 'NULL', '673-555-0145', '2013-02-21', '2-5 Miles'], ['15302', '339', 'AW00015302', 'NULL', 'Brianna', 'NULL', 'Thomas', '0', '1978-01-09', 'S', 'NULL', 'F', 'brianna9@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7539 Hazelwood Lane', 'NULL', '113-555-0130', '2012-03-23', '2-5 Miles'], ['15303', '339', 'AW00015303', 'NULL', 'Haley', 'NULL', 'Patterson', '0', '1950-04-22', 'S', 'NULL', 'F', 'haley29@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1192 Parkway Drive', 'NULL', '722-555-0145', '2012-03-01', '1-2 Miles'], ['15304', '50', 'AW00015304', 'NULL', 'Miranda', 'J', 'Powell', '0', '1950-05-23', 'M', 'NULL', 'F', 'miranda8@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2603 Line Court', 'NULL', '869-555-0114', '2013-06-03', '1-2 Miles'], ['15305', '301', 'AW00015305', 'NULL', 'Jacquelyn', 'D', 'Ortega', '0', '1951-04-18', 'S', 'NULL', 'F', 'jacquelyn23@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '1206 Olive St', 'NULL', '919-555-0119', '2013-04-21', '2-5 Miles'], ['15306', '609', 'AW00015306', 'NULL', 'Victoria', 'NULL', 'Sanchez', '0', '1951-03-19', 'M', 'NULL', 'F', 'victoria25@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3963 Greentree Drive', 'NULL', '143-555-0113', '2014-01-02', '2-5 Miles'], ['15307', '338', 'AW00015307', 'NULL', 'Jennifer', 'NULL', 'Garcia', '0', '1956-04-21', 'M', 'NULL', 'F', 'jennifer44@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9769 Bentley St.', 'NULL', '157-555-0133', '2013-03-30', '2-5 Miles'], ['15308', '299', 'AW00015308', 'NULL', 'Christy', 'C', 'Lal', '0', '1961-10-05', 'M', 'NULL', 'F', 'christy26@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4675 Pomar Way', 'NULL', '266-555-0183', '2012-03-09', '10+ Miles'], ['15309', '301', 'AW00015309', 'NULL', 'Dylan', 'C', 'Wilson', '0', '1951-01-30', 'M', 'NULL', 'M', 'dylan34@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '642 Country View Lane', 'NULL', '951-555-0169', '2012-03-22', '10+ Miles'], ['15310', '52', 'AW00015310', 'NULL', 'Amanda', 'M', 'Stewart', '0', '1951-05-18', 'M', 'NULL', 'F', 'amanda0@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6238 Valleymanor', 'NULL', '187-555-0156', '2013-06-08', '2-5 Miles'], ['15311', '642', 'AW00015311', 'NULL', 'Brandon', 'J', 'Thompson', '0', '1956-07-17', 'M', 'NULL', 'M', 'brandon36@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8499 San Marino Ct.', 'NULL', '830-555-0125', '2012-03-08', '10+ Miles'], ['15312', '345', 'AW00015312', 'NULL', 'Alexandria', 'A', 'Gonzales', '0', '1951-01-12', 'M', 'NULL', 'F', 'alexandria17@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5359 Piedmont Dr', 'NULL', '147-555-0143', '2012-03-11', '10+ Miles'], ['15313', '547', 'AW00015313', 'NULL', 'Garrett', 'C', 'Morris', '0', '1952-04-26', 'M', 'NULL', 'M', 'garrett23@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '622 Medina Dr.', 'NULL', '173-555-0198', '2013-08-17', '2-5 Miles'], ['15314', '368', 'AW00015314', 'NULL', 'Eduardo', 'NULL', 'Torres', '0', '1952-02-02', 'S', 'NULL', 'M', 'eduardo72@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '8120 Golden Meadow', 'NULL', '369-555-0192', '2012-03-12', '10+ Miles'], ['15315', '635', 'AW00015315', 'NULL', 'Katherine', 'S', 'Bennett', '0', '1952-04-15', 'M', 'NULL', 'F', 'katherine26@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '5979 Lynwood Drive', 'NULL', '739-555-0110', '2013-04-08', '1-2 Miles'], ['15316', '314', 'AW00015316', 'NULL', 'Alexis', 'NULL', 'Harris', '0', '1953-04-09', 'M', 'NULL', 'F', 'alexis12@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '8055 Kiska Court', 'NULL', '192-555-0138', '2013-10-30', '2-5 Miles'], ['15317', '302', 'AW00015317', 'NULL', 'Rachel', 'R', 'Jenkins', '0', '1958-05-16', 'M', 'NULL', 'F', 'rachel54@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '7296 Seawind Dr.', 'NULL', '836-555-0114', '2013-05-09', '2-5 Miles'], ['15318', '539', 'AW00015318', 'NULL', 'Grace', 'D', 'Watson', '0', '1953-03-20', 'M', 'NULL', 'F', 'grace44@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '3925 Boyd', 'NULL', '886-555-0176', '2013-12-01', '2-5 Miles'], ['15319', '311', 'AW00015319', 'NULL', 'Jade', 'M', 'Sanchez', '0', '1952-07-03', 'M', 'NULL', 'F', 'jade19@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '8482 Rosey View Drive', 'NULL', '914-555-0119', '2013-01-29', '1-2 Miles'], ['15320', '634', 'AW00015320', 'NULL', 'Eduardo', 'F', 'Brooks', '0', '1969-04-11', 'M', 'NULL', 'M', 'eduardo68@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '8636 St. Francis St.', 'NULL', '637-555-0150', '2012-03-18', '10+ Miles'], ['15321', '322', 'AW00015321', 'NULL', 'Blake', 'NULL', 'Phillips', '0', '1952-10-31', 'M', 'NULL', 'M', 'blake42@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5333 D St.', 'NULL', '383-555-0129', '2012-03-26', '1-2 Miles'], ['15322', '644', 'AW00015322', 'NULL', 'Evan', 'M', 'Green', '0', '1958-08-06', 'M', 'NULL', 'M', 'evan41@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8741 Barbie Dr.', 'NULL', '566-555-0142', '2012-03-18', '5-10 Miles'], ['15323', '64', 'AW00015323', 'NULL', 'Eduardo', 'NULL', 'Wilson', '0', '1953-09-20', 'M', 'NULL', 'M', 'eduardo6@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8764 Pacific', 'NULL', '764-555-0184', '2013-11-20', '10+ Miles'], ['15324', '513', 'AW00015324', 'NULL', 'Renee', 'NULL', 'Serrano', '0', '1953-11-18', 'M', 'NULL', 'F', 'renee14@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '8871 Likins Ave.', 'NULL', '506-555-0117', '2013-12-17', '2-5 Miles'], ['15325', '632', 'AW00015325', 'NULL', 'Elijah', 'P', 'Hayes', '0', '1959-05-17', 'M', 'NULL', 'M', 'elijah24@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '2660 St George Dr', 'NULL', '783-555-0162', '2012-03-11', '2-5 Miles'], ['15326', '307', 'AW00015326', 'NULL', 'Todd', 'J', 'Zheng', '0', '1959-09-14', 'M', 'NULL', 'M', 'todd18@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8885 Partridge Dr.', 'NULL', '701-555-0178', '2013-08-13', '2-5 Miles'], ['15327', '312', 'AW00015327', 'NULL', 'Paula', 'NULL', 'Hernandez', '0', '1954-06-15', 'S', 'NULL', 'F', 'paula6@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '2976 Dumbarton Drive', 'NULL', '205-555-0111', '2013-11-25', '10+ Miles'], ['15328', '359', 'AW00015328', 'NULL', 'Fernando', 'NULL', 'Jackson', '0', '1954-05-22', 'M', 'NULL', 'M', 'fernando11@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6999 Icicle Ct.', 'NULL', '468-555-0145', '2012-03-15', '1-2 Miles'], ['15329', '372', 'AW00015329', 'NULL', 'Brianna', 'NULL', 'Cox', '0', '1954-04-18', 'S', 'NULL', 'F', 'brianna37@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8756 Nottingham Pl.', 'NULL', '632-555-0153', '2012-03-23', '10+ Miles'], ['15330', '611', 'AW00015330', 'NULL', 'Catherine', 'NULL', 'Richardson', '0', '1955-02-22', 'S', 'NULL', 'F', 'catherine8@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '9043 Risdon Road', 'NULL', '847-555-0115', '2013-02-09', '2-5 Miles'], ['15331', '542', 'AW00015331', 'NULL', 'Jacob', 'M', 'Taylor', '0', '1960-08-22', 'M', 'NULL', 'M', 'jacob8@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1019 Kenwal Rd.', 'NULL', '927-555-0155', '2013-04-23', '2-5 Miles'], ['15332', '637', 'AW00015332', 'NULL', 'Jason', 'F', 'Sharma', '0', '1960-04-04', 'M', 'NULL', 'M', 'jason27@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6927 Ricardo Drive', 'NULL', '785-555-0118', '2013-11-27', '10+ Miles'], ['15333', '301', 'AW00015333', 'NULL', 'Marie', 'NULL', 'Diaz', '0', '1955-05-05', 'M', 'NULL', 'F', 'marie27@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '3562 East Ave.', 'NULL', '453-555-0131', '2012-03-30', '2-5 Miles'], ['15334', '62', 'AW00015334', 'NULL', 'Sydney', 'J', 'Williams', '0', '1955-11-01', 'S', 'NULL', 'F', 'sydney66@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4911 Leonard Ct.', 'NULL', '358-555-0174', '2013-12-27', '10+ Miles'], ['15335', '634', 'AW00015335', 'NULL', 'Emily', 'NULL', 'Patterson', '0', '1955-08-03', 'S', 'NULL', 'F', 'emily35@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6220 Krueger Dr.', 'NULL', '117-555-0161', '2013-11-08', '2-5 Miles'], ['15336', '302', 'AW00015336', 'NULL', 'Marco', 'J', 'Garcia', '0', '1956-03-20', 'M', 'NULL', 'M', 'marco15@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '1450 A St.', 'NULL', '627-555-0111', '2014-01-20', '2-5 Miles'], ['15337', '307', 'AW00015337', 'NULL', 'Rachel', 'A', 'Gonzales', '0', '1961-05-24', 'M', 'NULL', 'F', 'rachel65@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '9819 Sunsine Drive', 'NULL', '582-555-0135', '2012-03-31', '10+ Miles'], ['15338', '576', 'AW00015338', 'NULL', 'Marie', 'J', 'Navarro', '0', '1955-12-29', 'M', 'NULL', 'F', 'marie33@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '1295 Fabian Way', 'NULL', '621-555-0152', '2012-04-14', '10+ Miles'], ['15339', '322', 'AW00015339', 'NULL', 'Noah', 'J', 'Zhang', '0', '1955-12-29', 'M', 'NULL', 'M', 'noah21@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '1295 Fabian Way', 'NULL', '925-555-0143', '2012-04-14', '10+ Miles'], ['15340', '43', 'AW00015340', 'NULL', 'Brittany', 'R', 'Barnes', '0', '1956-11-03', 'M', 'NULL', 'F', 'brittany3@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6876 Winthrop Street', 'NULL', '285-555-0118', '2013-03-16', '10+ Miles'], ['15341', '311', 'AW00015341', 'NULL', 'Lacey', 'NULL', 'Deng', '0', '1957-05-11', 'M', 'NULL', 'F', 'lacey37@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3257 Toyon Dr.', 'NULL', '495-555-0182', '2012-04-16', '2-5 Miles'], ['15342', '311', 'AW00015342', 'NULL', 'Ashlee', 'L', 'Raji', '0', '1956-10-18', 'M', 'NULL', 'F', 'ashlee5@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6177 Arleda Lane', 'NULL', '440-555-0114', '2012-04-15', '2-5 Miles'], ['15343', '334', 'AW00015343', 'NULL', 'Carson', 'NULL', 'Barnes', '0', '1957-03-06', 'M', 'NULL', 'M', 'carson2@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2741 Gainborough Dr.', 'NULL', '714-555-0197', '2012-03-31', '10+ Miles'], ['15344', '352', 'AW00015344', 'NULL', 'Luke', 'E', 'Russell', '0', '1956-09-04', 'M', 'NULL', 'M', 'luke9@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '5096 Flamingo Dr', 'NULL', '622-555-0116', '2013-04-17', '1-2 Miles'], ['15345', '361', 'AW00015345', 'NULL', 'Ashley', 'R', 'Perry', '0', '1956-11-12', 'M', 'NULL', 'F', 'ashley34@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '8193 Scenic Ct.', 'NULL', '725-555-0116', '2012-04-05', '2-5 Miles'], ['15346', '369', 'AW00015346', 'NULL', 'Charles', 'E', 'Rodriguez', '0', '1956-09-10', 'S', 'NULL', 'M', 'charles24@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2932 Manuel', 'NULL', '363-555-0187', '2012-04-05', '10+ Miles'], ['15347', '298', 'AW00015347', 'NULL', 'Deanna', 'A', 'Alonso', '0', '1957-12-25', 'M', 'NULL', 'F', 'deanna34@adventure-works.com', '60000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4641 Miguel Drive', 'NULL', '233-555-0114', '2012-04-20', '2-5 Miles'], ['15348', '642', 'AW00015348', 'NULL', 'Greg', 'G', 'Carter', '0', '1958-05-19', 'S', 'NULL', 'M', 'greg8@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4807 Crawford', 'NULL', '741-555-0121', '2012-04-10', '10+ Miles'], ['15349', '374', 'AW00015349', 'NULL', 'Stephanie', 'L', 'Gonzalez', '0', '1963-11-07', 'M', 'NULL', 'F', 'stephanie62@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3871 Twinview Place', 'NULL', '735-555-0155', '2012-04-29', '10+ Miles'], ['15350', '611', 'AW00015350', 'NULL', 'Kathleen', 'N', 'Serrano', '0', '1963-08-30', 'M', 'NULL', 'F', 'kathleen17@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '1471 Michigan Blvd.', 'NULL', '659-555-0186', '2012-04-15', '2-5 Miles'], ['15351', '612', 'AW00015351', 'NULL', 'Steve', 'NULL', 'Lu', '0', '1957-10-12', 'M', 'NULL', 'M', 'steve14@adventure-works.com', '70000.00', '5', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4009 San Ysidro Court', 'NULL', '597-555-0183', '2012-04-17', '10+ Miles'], ['15352', '173', 'AW00015352', 'NULL', 'Raymond', 'NULL', 'Martinez', '0', '1964-01-17', 'S', 'NULL', 'M', 'raymond18@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', 'Westheimer Straße 7606', 'NULL', '1 (11) 500 555-0118', '2013-03-23', '0-1 Miles'], ['15353', '273', 'AW00015353', 'NULL', 'Michele', 'K', 'Xu', '0', '1963-12-31', 'S', 'NULL', 'F', 'michele5@adventure-works.com', '160000.00', '2', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '4407 Mildred Ln.', 'NULL', '1 (11) 500 555-0173', '2013-03-26', '0-1 Miles'], ['15354', '271', 'AW00015354', 'NULL', 'Corey', 'NULL', 'Kumar', '0', '1962-08-07', 'M', 'NULL', 'M', 'corey7@adventure-works.com', '170000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '4186 Green Valley Road', 'NULL', '1 (11) 500 555-0162', '2011-09-03', '0-1 Miles'], ['15355', '186', 'AW00015355', 'NULL', 'Janelle', 'NULL', 'Martinez', '0', '1961-07-17', 'M', 'NULL', 'F', 'janelle14@adventure-works.com', '100000.00', '2', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '22, avenue Foch', 'NULL', '1 (11) 500 555-0181', '2013-11-03', '2-5 Miles'], ['15356', '167', 'AW00015356', 'NULL', 'Dawn', 'NULL', 'Jai', '0', '1960-10-16', 'M', 'NULL', 'F', 'dawn35@adventure-works.com', '120000.00', '3', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Roßstr 9928', 'NULL', '1 (11) 500 555-0162', '2013-03-07', '10+ Miles'], ['15357', '157', 'AW00015357', 'NULL', 'Craig', 'NULL', 'Navarro', '0', '1966-10-18', 'M', 'NULL', 'M', 'craig11@adventure-works.com', '120000.00', '2', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Räuscherweg 24', 'NULL', '1 (11) 500 555-0193', '2012-01-09', '5-10 Miles'], ['15358', '348', 'AW00015358', 'NULL', 'Danielle', 'J', 'Sanders', '0', '1937-09-22', 'S', 'NULL', 'F', 'danielle6@adventure-works.com', '90000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '6687 Fairlane Place', 'NULL', '130-555-0153', '2013-12-07', '5-10 Miles'], ['15359', '614', 'AW00015359', 'NULL', 'Logan', 'M', 'Yang', '0', '1938-10-05', 'M', 'NULL', 'M', 'logan0@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8387 B Way', 'NULL', '108-555-0126', '2013-09-12', '0-1 Miles'], ['15360', '301', 'AW00015360', 'NULL', 'Ryan', 'NULL', 'Martin', '0', '1938-12-20', 'M', 'NULL', 'M', 'ryan37@adventure-works.com', '110000.00', '1', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '2761 Willcrest Circle', 'NULL', '523-555-0164', '2013-12-10', '1-2 Miles'], ['15361', '368', 'AW00015361', 'NULL', 'Thomas', 'NULL', 'Gonzales', '0', '1938-11-15', 'S', 'NULL', 'M', 'thomas19@adventure-works.com', '160000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '4', '2489 Driving Drive', 'NULL', '709-555-0190', '2014-01-24', '0-1 Miles'], ['15362', '63', 'AW00015362', 'NULL', 'Jennifer', 'NULL', 'Adams', '0', '1976-12-02', 'M', 'NULL', 'F', 'jennifer18@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '7700 Meaham Drive', 'NULL', '124-555-0126', '2013-06-17', '2-5 Miles'], ['15363', '66', 'AW00015363', 'NULL', 'Justin', 'S', 'Yang', '0', '1970-08-26', 'M', 'NULL', 'M', 'justin24@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '6813 Morning Way', 'NULL', '289-555-0163', '2013-06-27', '0-1 Miles'], ['15364', '536', 'AW00015364', 'NULL', 'Aidan', 'R', 'Bryant', '0', '1970-08-21', 'S', 'NULL', 'M', 'aidan19@adventure-works.com', '90000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '7779 Lake Meadow Circle', 'NULL', '969-555-0112', '2012-04-11', '2-5 Miles'], ['15365', '325', 'AW00015365', 'NULL', 'Victoria', 'NULL', 'Gray', '0', '1976-10-20', 'M', 'NULL', 'F', 'victoria42@adventure-works.com', '120000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '586 Willow Pass Dr.', 'NULL', '355-555-0189', '2012-05-21', '2-5 Miles'], ['15366', '336', 'AW00015366', 'NULL', 'Alyssa', 'C', 'Coleman', '0', '1976-12-18', 'M', 'NULL', 'F', 'alyssa52@adventure-works.com', '130000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '5566 Brook Way', 'NULL', '801-555-0135', '2013-02-22', '0-1 Miles'], ['15367', '547', 'AW00015367', 'NULL', 'Alyssa', 'L', 'White', '0', '1969-07-04', 'S', 'NULL', 'F', 'alyssa12@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '9739 Benedict Court', 'NULL', '672-555-0186', '2012-05-23', '10+ Miles'], ['15368', '300', 'AW00015368', 'NULL', 'Brandi', 'A', 'Martin', '0', '1969-08-07', 'M', 'NULL', 'F', 'brandi0@adventure-works.com', '110000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '5618 Mill Rd.', 'NULL', '739-555-0144', '2013-04-06', '2-5 Miles'], ['15369', '612', 'AW00015369', 'NULL', 'Connor', 'NULL', 'Perez', '0', '1967-02-17', 'M', 'NULL', 'M', 'connor32@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '1522 Azalea Ave.', 'NULL', '551-555-0195', '2012-05-19', '5-10 Miles'], ['15370', '543', 'AW00015370', 'NULL', 'Jessica', 'K', 'Butler', '0', '1961-12-31', 'M', 'NULL', 'F', 'jessica38@adventure-works.com', '70000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '0', '2080 Mountain View Dr.', 'NULL', '830-555-0114', '2013-10-08', '0-1 Miles'], ['15371', '644', 'AW00015371', 'NULL', 'Cameron', 'NULL', 'Bryant', '0', '1961-09-01', 'M', 'NULL', 'M', 'cameron13@adventure-works.com', '80000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '2845 La Vista Avenue', 'NULL', '973-555-0195', '2012-05-16', '0-1 Miles'], ['15372', '611', 'AW00015372', 'NULL', 'Miguel', 'NULL', 'Alexander', '0', '1967-07-16', 'M', 'NULL', 'M', 'miguel65@adventure-works.com', '80000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '6628 Moretti Drive', 'NULL', '555-555-0138', '2012-05-29', '2-5 Miles'], ['15373', '616', 'AW00015373', 'NULL', 'Kaitlyn', 'NULL', 'Jones', '0', '1939-10-17', 'M', 'NULL', 'F', 'kaitlyn26@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3788 Concord Place', 'NULL', '967-555-0173', '2013-12-13', '5-10 Miles'], ['15374', '302', 'AW00015374', 'NULL', 'Donna', 'NULL', 'Kumar', '0', '1940-04-10', 'M', 'NULL', 'F', 'donna7@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2639 Parkview Court', 'NULL', '985-555-0182', '2012-05-08', '5-10 Miles'], ['15375', '310', 'AW00015375', 'NULL', 'Alisha', 'M', 'Chande', '0', '1940-03-14', 'S', 'NULL', 'F', 'alisha39@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4836 Stratton Circle', 'NULL', '276-555-0131', '2013-07-09', '2-5 Miles'], ['15376', '66', 'AW00015376', 'NULL', 'Megan', 'A', 'Sanders', '0', '1974-05-02', 'S', 'NULL', 'F', 'megan49@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '7476 Halfmoon Court', 'NULL', '127-555-0148', '2013-04-30', '0-1 Miles'], ['15377', '69', 'AW00015377', 'NULL', 'Brianna', 'NULL', 'Jackson', '0', '1969-01-01', 'S', 'NULL', 'F', 'brianna10@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5108 C Mt. Hood Cr.', 'NULL', '259-555-0163', '2013-02-24', '2-5 Miles'], ['15378', '71', 'AW00015378', 'NULL', 'Devin', 'J', 'Ward', '0', '1968-09-02', 'M', 'NULL', 'M', 'devin70@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '7983 Pinecrest Dr.', 'NULL', '450-555-0162', '2013-02-22', '2-5 Miles'], ['15379', '359', 'AW00015379', 'NULL', 'Amanda', 'A', 'Griffin', '0', '1969-05-22', 'M', 'NULL', 'F', 'amanda42@adventure-works.com', '130000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '7 Pastel Drive', 'NULL', '498-555-0118', '2012-05-14', '1-2 Miles'], ['15380', '623', 'AW00015380', 'NULL', 'Nathan', 'T', 'Robinson', '0', '1968-04-06', 'M', 'NULL', 'M', 'nathan52@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '8072 Chickpea Ct', 'NULL', '689-555-0128', '2012-05-20', '5-10 Miles'], ['15381', '631', 'AW00015381', 'NULL', 'Alexa', 'NULL', 'Howard', '0', '1967-11-07', 'M', 'NULL', 'F', 'alexa9@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '5041 Stillwater Court', '# 205', '769-555-0136', '2014-01-08', '1-2 Miles'], ['15382', '299', 'AW00015382', 'NULL', 'Kimberly', 'R', 'Blue', '0', '1973-05-07', 'M', 'NULL', 'F', 'kimberly16@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3219 Sandra Circle', 'NULL', '141-555-0165', '2013-08-04', '1-2 Miles'], ['15383', '335', 'AW00015383', 'NULL', 'Charles', 'NULL', 'Rivera', '0', '1968-04-26', 'M', 'NULL', 'M', 'charles56@adventure-works.com', '130000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '9497 Richard Ave.', 'NULL', '960-555-0112', '2014-01-19', '0-1 Miles'], ['15384', '536', 'AW00015384', 'NULL', 'Xavier', 'NULL', 'Alan', '0', '1966-08-23', 'M', 'NULL', 'M', 'xavier22@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '5952 Haven Drive', 'NULL', '326-555-0171', '2013-04-04', '5-10 Miles'], ['15385', '543', 'AW00015385', 'NULL', 'Destiny', 'NULL', 'Reed', '0', '1972-06-10', 'M', 'NULL', 'F', 'destiny27@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '6284 Levee Rd.', 'NULL', '615-555-0184', '2013-04-14', '5-10 Miles'], ['15386', '635', 'AW00015386', 'NULL', 'Nicholas', 'NULL', 'Taylor', '0', '1966-09-05', 'S', 'NULL', 'M', 'nicholas10@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '4909 Poco Lane', 'NULL', '298-555-0196', '2013-08-27', '1-2 Miles'], ['15387', '307', 'AW00015387', 'NULL', 'Miguel', 'B', 'Rodriguez', '0', '1966-08-13', 'M', 'NULL', 'M', 'miguel20@adventure-works.com', '110000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '6448 Castle Court', 'NULL', '988-555-0125', '2013-11-25', '5-10 Miles'], ['15388', '315', 'AW00015388', 'NULL', 'Victoria', 'NULL', 'Smith', '0', '1966-07-19', 'M', 'NULL', 'F', 'victoria1@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '581 Roanoke Dr.', 'NULL', '254-555-0158', '2012-05-05', '0-1 Miles'], ['15389', '352', 'AW00015389', 'NULL', 'Joan', 'E', 'King', '0', '1967-03-06', 'S', 'NULL', 'F', 'joan14@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '3477 Sunset Meadows', 'NULL', '434-555-0189', '2012-05-29', '0-1 Miles'], ['15390', '547', 'AW00015390', 'NULL', 'Jonathan', 'B', 'Turner', '0', '1960-10-31', 'M', 'NULL', 'M', 'jonathan34@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '3016 Heald Court', 'NULL', '195-555-0123', '2013-09-05', '1-2 Miles'], ['15391', '56', 'AW00015391', 'NULL', 'Jordyn', 'K', 'Powell', '0', '1966-03-16', 'M', 'NULL', 'F', 'jordyn8@adventure-works.com', '90000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '1', '3156 Crystal Avenue', 'NULL', '809-555-0141', '2013-06-26', '10+ Miles'], ['15392', '374', 'AW00015392', 'NULL', 'Sydney', 'NULL', 'Brown', '0', '1960-02-16', 'S', 'NULL', 'F', 'sydney68@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9610 Hudson Ave', 'NULL', '435-555-0120', '2013-06-11', '1-2 Miles'], ['15393', '299', 'AW00015393', 'NULL', 'Rebekah', 'E', 'Ruiz', '0', '1941-03-31', 'M', 'NULL', 'F', 'rebekah22@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6728 Palisade Court', 'NULL', '860-555-0140', '2013-12-25', '5-10 Miles'], ['15394', '335', 'AW00015394', 'NULL', 'Natalie', 'C', 'Wilson', '0', '1947-04-03', 'M', 'NULL', 'F', 'natalie74@adventure-works.com', '90000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4005 Foothill Way', 'NULL', '546-555-0128', '2012-05-25', '1-2 Miles'], ['15395', '69', 'AW00015395', 'NULL', 'Joseph', 'D', 'Clark', '0', '1966-04-16', 'S', 'NULL', 'M', 'joseph26@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '9608 Grammercy Lane', 'NULL', '656-555-0119', '2013-06-26', '5-10 Miles'], ['15396', '631', 'AW00015396', 'NULL', 'Julia', 'NULL', 'Wilson', '0', '1971-10-30', 'M', 'NULL', 'F', 'julia29@adventure-works.com', '100000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '9169 Olivera Road', 'NULL', '265-555-0181', '2012-05-23', '5-10 Miles'], ['15397', '301', 'AW00015397', 'NULL', 'Karl', 'NULL', 'Tang', '0', '1965-12-05', 'M', 'NULL', 'M', 'karl4@adventure-works.com', '110000.00', '5', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '2171 H Stagecoach Rd', '#77', '746-555-0140', '2013-02-18', '2-5 Miles'], ['15398', '348', 'AW00015398', 'NULL', 'Jose', 'NULL', 'Wang', '0', '1966-04-12', 'M', 'NULL', 'M', 'jose19@adventure-works.com', '150000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '7332 Arcadia Pl', 'NULL', '177-555-0147', '2012-04-30', '2-5 Miles'], ['15399', '299', 'AW00015399', 'NULL', 'Mackenzie', 'J', 'Murphy', '0', '1960-01-29', 'S', 'NULL', 'F', 'mackenzie13@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9194 West I St', 'NULL', '793-555-0139', '2012-06-12', '5-10 Miles'], ['15400', '339', 'AW00015400', 'NULL', 'Samuel', 'W', 'Roberts', '0', '1960-03-18', 'M', 'NULL', 'M', 'samuel34@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1262 West Rd.', 'NULL', '429-555-0180', '2013-05-01', '1-2 Miles'], ['15401', '335', 'AW00015401', 'NULL', 'Rachel', 'R', 'Hughes', '0', '1960-02-13', 'S', 'NULL', 'F', 'rachel59@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5974 N St.', 'NULL', '292-555-0117', '2013-10-19', '5-10 Miles'], ['15402', '71', 'AW00015402', 'NULL', 'Connor', 'J', 'Evans', '0', '1960-02-13', 'M', 'NULL', 'M', 'connor29@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '69 Market Pl.', 'NULL', '934-555-0148', '2013-06-24', '1-2 Miles'], ['15403', '312', 'AW00015403', 'NULL', 'Jeremiah', 'L', 'Ross', '0', '1965-09-02', 'M', 'NULL', 'M', 'jeremiah27@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6034 Thunderbird Dr.', 'NULL', '137-555-0112', '2013-06-22', '1-2 Miles'], ['15404', '374', 'AW00015404', 'NULL', 'Sydney', 'L', 'Robinson', '0', '1959-10-31', 'S', 'NULL', 'F', 'sydney80@adventure-works.com', '70000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '4697 Pepperidge Way', 'NULL', '837-555-0132', '2012-06-05', '5-10 Miles'], ['15405', '299', 'AW00015405', 'NULL', 'Miguel', 'E', 'Ross', '0', '1958-09-21', 'M', 'NULL', 'M', 'miguel50@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7784 Mt. Etna', 'NULL', '998-555-0130', '2013-04-29', '5-10 Miles'], ['15406', '545', 'AW00015406', 'NULL', 'Amanda', 'NULL', 'Butler', '0', '1958-11-23', 'S', 'NULL', 'F', 'amanda35@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2957 Tri-state Avenue', 'NULL', '920-555-0197', '2013-03-18', '1-2 Miles'], ['15407', '637', 'AW00015407', 'NULL', 'Julia', 'NULL', 'Lee', '0', '1964-09-02', 'S', 'NULL', 'F', 'julia43@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3443 Centennial Way', 'NULL', '870-555-0110', '2013-11-01', '1-2 Miles'], ['15408', '325', 'AW00015408', 'NULL', 'Olivia', 'NULL', 'Thompson', '0', '1959-04-25', 'S', 'NULL', 'F', 'olivia14@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7982 D Kiska Ct.', 'NULL', '306-555-0142', '2013-08-31', '5-10 Miles'], ['15409', '633', 'AW00015409', 'NULL', 'Eduardo', 'J', 'Cooper', '0', '1958-01-31', 'M', 'NULL', 'M', 'eduardo77@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '1454 Santa Barbara Rd.', 'NULL', '641-555-0174', '2012-06-05', '5-10 Miles'], ['15410', '301', 'AW00015410', 'NULL', 'Katherine', 'B', 'Harris', '0', '1957-12-20', 'M', 'NULL', 'F', 'katherine84@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '4945 Noah Court', 'NULL', '157-555-0177', '2012-06-27', '1-2 Miles'], ['15411', '302', 'AW00015411', 'NULL', 'Jay', 'NULL', 'Chandra', '0', '1948-11-03', 'S', 'NULL', 'M', 'jay8@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2926 Woodside Court', 'NULL', '146-555-0146', '2012-06-03', '10+ Miles'], ['15412', '312', 'AW00015412', 'NULL', 'Ryan', 'A', 'Griffin', '0', '1942-12-12', 'M', 'NULL', 'M', 'ryan24@adventure-works.com', '130000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '2599 Amaranth Way', 'NULL', '497-555-0186', '2013-12-08', '2-5 Miles'], ['15413', '49', 'AW00015413', 'NULL', 'Donald', 'NULL', 'Prasad', '0', '1943-03-04', 'M', 'NULL', 'M', 'donald11@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '873 Wellington Avenue', 'NULL', '974-555-0121', '2013-01-31', '0-1 Miles'], ['15414', '300', 'AW00015414', 'NULL', 'Isaac', 'B', 'Richardson', '0', '1945-03-02', 'M', 'NULL', 'M', 'isaac9@adventure-works.com', '110000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '7741 Morgan Ave.', 'NULL', '786-555-0138', '2013-02-09', '5-10 Miles'], ['15415', '641', 'AW00015415', 'NULL', 'Rachel', 'NULL', 'Gray', '0', '1944-11-10', 'M', 'NULL', 'F', 'rachel42@adventure-works.com', '110000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '3890 El Camino Drive', 'NULL', '488-555-0149', '2013-08-26', '2-5 Miles'], ['15416', '545', 'AW00015416', 'NULL', 'Edward', 'A', 'Barnes', '0', '1945-08-18', 'M', 'NULL', 'M', 'edward51@adventure-works.com', '100000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '3043 Gregory Dr.', 'NULL', '165-555-0162', '2013-10-14', '1-2 Miles'], ['15417', '307', 'AW00015417', 'NULL', 'Alvin', 'NULL', 'Lu', '0', '1952-06-01', 'S', 'NULL', 'M', 'alvin11@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5010 Orange Street', 'NULL', '167-555-0176', '2012-06-09', '10+ Miles'], ['15418', '60', 'AW00015418', 'NULL', 'Angel', 'E', 'Kelly', '0', '1974-04-04', 'S', 'NULL', 'M', 'angel1@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '4791 Wightman Lane', 'NULL', '128-555-0140', '2013-04-17', '1-2 Miles'], ['15419', '539', 'AW00015419', 'NULL', 'Carlos', 'NULL', 'Baker', '0', '1979-01-13', 'S', 'NULL', 'M', 'carlos35@adventure-works.com', '100000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1005 Tanager Court', 'NULL', '765-555-0115', '2012-06-14', '1-2 Miles'], ['15420', '618', 'AW00015420', 'NULL', 'Nathan', 'B', 'Hernandez', '0', '1974-04-01', 'M', 'NULL', 'M', 'nathan48@adventure-works.com', '100000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '4248 Semillon Circle', 'NULL', '981-555-0180', '2013-03-02', '1-2 Miles'], ['15421', '635', 'AW00015421', 'NULL', 'Cameron', 'W', 'Clark', '0', '1973-08-31', 'S', 'NULL', 'M', 'cameron37@adventure-works.com', '100000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '1430 N. Civic Drive', 'NULL', '889-555-0157', '2013-10-28', '1-2 Miles'], ['15422', '552', 'AW00015422', 'NULL', 'Kelly', 'F', 'Griffin', '0', '1985-01-06', 'M', 'NULL', 'F', 'kelly25@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1561 Black Point Pl', 'NULL', '835-555-0134', '2012-06-14', '5-10 Miles'], ['15423', '644', 'AW00015423', 'NULL', 'Jack', 'NULL', 'Long', '0', '1984-10-23', 'S', 'NULL', 'M', 'jack10@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5792 Mori Court', 'NULL', '236-555-0115', '2013-03-10', '5-10 Miles'], ['15424', '300', 'AW00015424', 'NULL', 'Rebecca', 'C', 'Hill', '0', '1984-12-09', 'S', 'NULL', 'F', 'rebecca23@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4986 Treat Blvd.', 'NULL', '678-555-0155', '2013-12-19', '5-10 Miles'], ['15425', '4', 'AW00015425', 'NULL', 'Tina', 'L', 'Sai', '0', '1955-09-22', 'M', 'NULL', 'F', 'tina7@adventure-works.com', '10000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1087 Park Tree Ct.', 'NULL', '1 (11) 500 555-0114', '2012-11-12', '1-2 Miles'], ['15426', '7', 'AW00015426', 'NULL', 'Cristina', 'N', 'Kumar', '0', '1949-08-16', 'S', 'NULL', 'F', 'cristina7@adventure-works.com', '10000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '9995 Le Jean Way', 'NULL', '1 (11) 500 555-0135', '2013-03-26', '5-10 Miles'], ['15427', '359', 'AW00015427', 'NULL', 'Jade', 'NULL', 'Murphy', '0', '1985-05-17', 'S', 'NULL', 'F', 'jade12@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '7444 Margo Drive', 'NULL', '109-555-0190', '2012-06-09', '1-2 Miles'], ['15428', '372', 'AW00015428', 'NULL', 'Richard', 'D', 'Howard', '0', '1984-10-28', 'M', 'NULL', 'M', 'richard93@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5391 Ashford Court', 'NULL', '321-555-0115', '2012-06-15', '5-10 Miles'], ['15429', '383', 'AW00015429', 'NULL', 'Aaron', 'NULL', 'Li', '0', '1984-10-16', 'M', 'NULL', 'M', 'aaron26@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8345 Orangewood Ave.', 'NULL', '681-555-0150', '2012-06-20', '0-1 Miles'], ['15430', '612', 'AW00015430', 'NULL', 'Alfredo', 'NULL', 'Jiménez', '0', '1983-12-07', 'M', 'NULL', 'M', 'alfredo6@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8241 San Jose Drive', 'NULL', '466-555-0112', '2013-02-03', '5-10 Miles'], ['15431', '299', 'AW00015431', 'NULL', 'John', 'NULL', 'Jackson', '0', '1983-09-14', 'M', 'NULL', 'M', 'john49@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5584 Greenview Court', 'NULL', '259-555-0126', '2013-04-26', '5-10 Miles'], ['15432', '310', 'AW00015432', 'NULL', 'Alvin', 'R', 'Kumar', '0', '1984-02-15', 'S', 'NULL', 'M', 'alvin30@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3612 Vista Place', 'NULL', '768-555-0154', '2012-06-21', '5-10 Miles'], ['15433', '311', 'AW00015433', 'NULL', 'Adam', 'NULL', 'Sharma', '0', '1984-02-15', 'S', 'NULL', 'M', 'adam26@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5093 Greer Ave', 'NULL', '385-555-0155', '2012-06-05', '1-2 Miles'], ['15434', '38', 'AW00015434', 'NULL', 'Brent', 'NULL', 'Zhou', '0', '1950-07-19', 'M', 'NULL', 'M', 'brent8@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8753 Black Walnut Ct.', 'NULL', '1 (11) 500 555-0197', '2013-05-01', '1-2 Miles'], ['15435', '40', 'AW00015435', 'NULL', 'Geoffrey', 'P', 'Raman', '0', '1952-04-10', 'S', 'NULL', 'M', 'geoffrey10@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '8814 Fieldbrook Pl', 'NULL', '1 (11) 500 555-0130', '2012-11-07', '5-10 Miles'], ['15436', '5', 'AW00015436', 'NULL', 'Patricia', 'E', 'Suri', '0', '1952-03-19', 'S', 'NULL', 'F', 'patricia5@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4152 Prestwick Drive', 'NULL', '1 (11) 500 555-0122', '2012-11-01', '5-10 Miles'], ['15437', '11', 'AW00015437', 'NULL', 'Candace', 'NULL', 'Srini', '0', '1952-12-19', 'M', 'NULL', 'F', 'candace8@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2096 Trinity Ave.', 'NULL', '1 (11) 500 555-0110', '2013-11-13', '5-10 Miles'], ['15438', '17', 'AW00015438', 'NULL', 'Arthur', 'NULL', 'Rodriguez', '0', '1952-09-07', 'M', 'NULL', 'M', 'arthur20@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5506 Jimno Ave', 'NULL', '1 (11) 500 555-0151', '2012-11-08', '1-2 Miles'], ['15439', '21', 'AW00015439', 'NULL', 'Mason', 'NULL', 'Evans', '0', '1959-01-11', 'M', 'NULL', 'M', 'mason21@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4596 West St.', 'NULL', '1 (11) 500 555-0185', '2012-11-02', '1-2 Miles'], ['15440', '230', 'AW00015440', 'NULL', 'Jon', 'H', 'Pal', '0', '1979-09-20', 'M', 'NULL', 'M', 'jon8@adventure-works.com', '10000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '8837 Almond Avenue', 'NULL', '1 (11) 500 555-0153', '2011-10-01', '0-1 Miles'], ['15441', '240', 'AW00015441', 'NULL', 'Christy', 'L', 'Zeng', '0', '1971-08-17', 'M', 'NULL', 'F', 'christy20@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '608 Jeanne Circle', 'NULL', '1 (11) 500 555-0116', '2013-04-03', '0-1 Miles'], ['15442', '188', 'AW00015442', 'NULL', 'Alejandro', 'J', 'Shen', '0', '1967-12-25', 'M', 'NULL', 'M', 'alejandro28@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '880, avenue de Malakoff', 'NULL', '1 (11) 500 555-0185', '2013-07-03', '0-1 Miles'], ['15443', '123', 'AW00015443', 'NULL', 'Francisco', 'NULL', 'Patel', '0', '1967-09-23', 'M', 'NULL', 'M', 'francisco4@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Auf dem Ufer 764', 'NULL', '1 (11) 500 555-0185', '2013-02-05', '0-1 Miles'], ['15444', '278', 'AW00015444', 'NULL', 'Roy', 'S', 'Fernandez', '0', '1967-08-09', 'M', 'NULL', 'M', 'roy16@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9907 Via Appia', 'NULL', '1 (11) 500 555-0114', '2013-04-26', '0-1 Miles'], ['15445', '225', 'AW00015445', 'NULL', 'Bob', 'NULL', 'Lopez', '0', '1968-06-11', 'M', 'NULL', 'M', 'bob9@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '75, rue de Terre Neuve', 'NULL', '1 (11) 500 555-0180', '2013-06-27', '0-1 Miles'], ['15446', '215', 'AW00015446', 'NULL', 'Levi', 'NULL', 'Madan', '0', '1972-05-19', 'S', 'NULL', 'M', 'levi7@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1032 Cowell Road', 'NULL', '1 (11) 500 555-0146', '2013-05-15', '0-1 Miles'], ['15447', '222', 'AW00015447', 'NULL', 'Regina', 'NULL', 'Madan', '0', '1966-11-08', 'M', 'NULL', 'F', 'regina7@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6, avenue du Québec', 'NULL', '1 (11) 500 555-0110', '2013-05-27', '0-1 Miles'], ['15448', '264', 'AW00015448', 'NULL', 'Omar', 'K', 'She', '0', '1967-04-24', 'M', 'NULL', 'M', 'omar22@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '987 Peachwillow St.', 'NULL', '1 (11) 500 555-0160', '2013-09-07', '0-1 Miles'], ['15449', '277', 'AW00015449', 'NULL', 'Cedric', 'NULL', 'Yuan', '0', '1940-08-14', 'M', 'NULL', 'M', 'cedric28@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4524 P St.', 'NULL', '1 (11) 500 555-0176', '2013-06-04', '0-1 Miles'], ['15450', '184', 'AW00015450', 'NULL', 'Marshall', 'D', 'Black', '0', '1941-12-08', 'M', 'NULL', 'M', 'marshall40@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '48bis, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0197', '2013-03-01', '0-1 Miles'], ['15451', '211', 'AW00015451', 'NULL', 'Linda', 'A', 'Munoz', '0', '1967-11-16', 'M', 'NULL', 'F', 'linda22@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8, quai de Grenelle', 'NULL', '1 (11) 500 555-0143', '2012-07-09', '0-1 Miles'], ['15452', '206', 'AW00015452', 'NULL', 'Alison', 'NULL', 'Goel', '0', '1964-02-16', 'M', 'NULL', 'F', 'alison20@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '9851, rue de Varenne', 'NULL', '1 (11) 500 555-0113', '2013-03-20', '0-1 Miles'], ['15453', '261', 'AW00015453', 'NULL', 'Isabelle', 'C', 'Barnes', '0', '1969-08-07', 'M', 'NULL', 'F', 'isabelle3@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '4771 Kenston Dr', 'NULL', '1 (11) 500 555-0190', '2011-10-05', '0-1 Miles'], ['15454', '162', 'AW00015454', 'NULL', 'Ian', 'K', 'Bennett', '0', '1961-03-02', 'M', 'NULL', 'M', 'ian41@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Auf dem Ufer 664', 'NULL', '1 (11) 500 555-0139', '2012-01-28', '0-1 Miles'], ['15455', '189', 'AW00015455', 'NULL', 'Denise', 'F', 'Raman', '0', '1945-10-07', 'S', 'NULL', 'F', 'denise13@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '11, avenue du Président-Kennedy', 'NULL', '1 (11) 500 555-0113', '2012-07-08', '0-1 Miles'], ['15456', '175', 'AW00015456', 'NULL', 'Donald', 'NULL', 'Suri', '0', '1946-04-13', 'S', 'NULL', 'M', 'donald2@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Alderstr 2646', 'NULL', '1 (11) 500 555-0154', '2012-01-20', '0-1 Miles'], ['15457', '171', 'AW00015457', 'NULL', 'Adriana', 'S', 'Martinez', '0', '1946-08-28', 'M', 'NULL', 'F', 'adriana18@adventure-works.com', '20000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Brunnenstr 6675', 'NULL', '1 (11) 500 555-0176', '2011-12-31', '0-1 Miles'], ['15458', '120', 'AW00015458', 'NULL', 'Krystal', 'M', 'Ma', '0', '1953-06-23', 'M', 'NULL', 'F', 'krystal16@adventure-works.com', '20000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Wertheimer Straße 432', 'NULL', '1 (11) 500 555-0194', '2013-08-15', '0-1 Miles'], ['15459', '149', 'AW00015459', 'NULL', 'Beth', 'NULL', 'Dominguez', '0', '1947-10-11', 'M', 'NULL', 'F', 'beth15@adventure-works.com', '20000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Herzogstr 228', 'NULL', '1 (11) 500 555-0179', '2013-06-29', '0-1 Miles'], ['15460', '173', 'AW00015460', 'NULL', 'Bethany', 'NULL', 'Nara', '0', '1953-02-09', 'M', 'NULL', 'F', 'bethany20@adventure-works.com', '20000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Am Karlshof 6200', 'NULL', '1 (11) 500 555-0187', '2011-12-29', '0-1 Miles'], ['15461', '238', 'AW00015461', 'NULL', 'Alberto', 'R', 'Gutierrez', '0', '1947-11-10', 'M', 'NULL', 'M', 'alberto12@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8641 Summit View Dr.', 'NULL', '1 (11) 500 555-0128', '2013-02-13', '0-1 Miles'], ['15462', '215', 'AW00015462', 'NULL', 'Tony', 'C', 'Chande', '0', '1949-02-23', 'M', 'NULL', 'M', 'tony17@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Attaché de Presse', 'NULL', '1 (11) 500 555-0115', '2012-07-17', '0-1 Miles'], ['15463', '216', 'AW00015463', 'NULL', 'Terrence', 'T', 'Yuan', '0', '1949-05-18', 'S', 'NULL', 'M', 'terrence7@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '663, rue des Ecoles', 'NULL', '1 (11) 500 555-0175', '2012-07-25', '1-2 Miles'], ['15464', '22', 'AW00015464', 'NULL', 'Kristi', 'NULL', 'Blanco', '0', '1985-10-02', 'M', 'NULL', 'F', 'kristi11@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6027 Lisa Ann Street', 'NULL', '1 (11) 500 555-0142', '2013-09-06', '0-1 Miles'], ['15465', '34', 'AW00015465', 'NULL', 'Jacquelyn', 'NULL', 'Navarro', '0', '1986-03-03', 'M', 'NULL', 'F', 'jacquelyn10@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '8589 Shady Ln.', 'NULL', '1 (11) 500 555-0132', '2013-03-02', '0-1 Miles'], ['15466', '358', 'AW00015466', 'NULL', 'Elijah', 'NULL', 'Perez', '0', '1975-07-08', 'M', 'NULL', 'M', 'elijah32@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2590 Concord', 'NULL', '228-555-0141', '2012-06-02', '2-5 Miles'], ['15467', '301', 'AW00015467', 'NULL', 'Caleb', 'A', 'Shan', '0', '1976-01-30', 'M', 'NULL', 'M', 'caleb27@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8483 Arizona Drive', 'NULL', '777-555-0132', '2012-06-22', '2-5 Miles'], ['15468', '65', 'AW00015468', 'NULL', 'Emma', 'NULL', 'Foster', '0', '1976-05-09', 'M', 'NULL', 'F', 'emma62@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3718 Loma Linda', 'NULL', '573-555-0116', '2013-02-22', '0-1 Miles'], ['15469', '368', 'AW00015469', 'NULL', 'Fernando', 'L', 'Williams', '0', '1981-10-24', 'M', 'NULL', 'M', 'fernando3@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7172 Parkway Drive', 'NULL', '133-555-0176', '2013-02-09', '0-1 Miles'], ['15470', '335', 'AW00015470', 'NULL', 'Hailey', 'M', 'Lopez', '0', '1981-02-17', 'M', 'NULL', 'F', 'hailey60@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6345 Dartmouth Way', 'NULL', '967-555-0118', '2013-08-15', '0-1 Miles'], ['15471', '352', 'AW00015471', 'NULL', 'Destiny', 'D', 'White', '0', '1974-09-05', 'S', 'NULL', 'F', 'destiny12@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9428 Veronica Ct.', 'NULL', '791-555-0152', '2012-06-03', '2-5 Miles'], ['15472', '627', 'AW00015472', 'NULL', 'Jennifer', 'B', 'Torres', '0', '1980-10-14', 'S', 'NULL', 'F', 'jennifer67@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7688 P St.', 'NULL', '336-555-0135', '2012-05-31', '2-5 Miles'], ['15473', '312', 'AW00015473', 'NULL', 'Abigail', 'NULL', 'Jenkins', '0', '1974-10-13', 'S', 'NULL', 'F', 'abigail32@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '4838 Second Street', 'NULL', '135-555-0132', '2012-05-30', '0-1 Miles'], ['15474', '300', 'AW00015474', 'NULL', 'Cameron', 'M', 'Lal', '0', '1974-10-30', 'M', 'NULL', 'M', 'cameron25@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '536 Panoramic Avenue', 'NULL', '906-555-0115', '2012-06-20', '2-5 Miles'], ['15475', '385', 'AW00015475', 'NULL', 'Kaitlyn', 'S', 'Brooks', '0', '1980-10-14', 'S', 'NULL', 'F', 'kaitlyn65@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1342 Isla Bonita', 'NULL', '674-555-0174', '2012-06-20', '0-1 Miles'], ['15476', '337', 'AW00015476', 'NULL', 'Alyssa', 'NULL', 'Powell', '0', '1975-05-01', 'S', 'NULL', 'F', 'alyssa55@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8597 Sandra', 'NULL', '489-555-0146', '2013-01-31', '2-5 Miles'], ['15477', '310', 'AW00015477', 'NULL', 'Jose', 'J', 'Adams', '0', '1975-02-08', 'S', 'NULL', 'M', 'jose51@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8735 Golf Club Rd.', 'NULL', '644-555-0114', '2013-12-14', '2-5 Miles'], ['15478', '53', 'AW00015478', 'NULL', 'Melanie', 'B', 'Russell', '0', '1977-02-15', 'M', 'NULL', 'F', 'melanie7@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '498 Willow Pass Rd', '#61', '212-555-0195', '2013-01-30', '0-1 Miles'], ['15479', '631', 'AW00015479', 'NULL', 'Andrea', 'NULL', 'Wright', '0', '1977-02-17', 'M', 'NULL', 'F', 'andrea42@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1086 Rose Dr.', 'NULL', '817-555-0190', '2013-11-20', '0-1 Miles'], ['15480', '301', 'AW00015480', 'NULL', 'Denise', 'K', 'Lopez', '0', '1977-01-19', 'M', 'NULL', 'F', 'denise17@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6843 San Simeon Dr.', 'NULL', '646-555-0179', '2012-07-15', '0-1 Miles'], ['15481', '302', 'AW00015481', 'NULL', 'Jamie', 'M', 'Zhang', '0', '1982-08-21', 'S', 'NULL', 'F', 'jamie2@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '267 Aspen Drive', 'NULL', '238-555-0175', '2012-07-14', '2-5 Miles'], ['15482', '307', 'AW00015482', 'NULL', 'Audrey', 'L', 'Rubio', '0', '1976-08-07', 'M', 'NULL', 'F', 'audrey23@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1713 StandingView Dr.', 'NULL', '124-555-0139', '2012-07-11', '2-5 Miles'], ['15483', '361', 'AW00015483', 'NULL', 'Katherine', 'NULL', 'Robinson', '0', '1976-11-04', 'M', 'NULL', 'F', 'katherine89@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7294 Kathleen Drive', 'NULL', '351-555-0116', '2012-07-09', '0-1 Miles'], ['15484', '383', 'AW00015484', 'NULL', 'Samuel', 'L', 'Henderson', '0', '1976-12-17', 'M', 'NULL', 'M', 'samuel3@adventure-works.com', '80000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9414 Pampered Ct', 'NULL', '601-555-0167', '2012-07-22', '0-1 Miles'], ['15485', '329', 'AW00015485', 'NULL', 'Jordan', 'NULL', 'Wright', '0', '1975-05-19', 'M', 'NULL', 'F', 'jordan49@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8308 Roskelley Drive', 'NULL', '648-555-0150', '2013-03-12', '2-5 Miles'], ['15486', '553', 'AW00015486', 'NULL', 'Kevin', 'NULL', 'Griffin', '0', '1975-03-23', 'M', 'NULL', 'M', 'kevin23@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7905 Nottingham Place', 'NULL', '869-555-0169', '2013-06-21', '0-1 Miles'], ['15487', '372', 'AW00015487', 'NULL', 'Jesse', 'NULL', 'Ramirez', '0', '1975-03-09', 'S', 'NULL', 'M', 'jesse7@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9746 Gumwood Dr.', 'NULL', '226-555-0191', '2013-03-07', '2-5 Miles'], ['15488', '43', 'AW00015488', 'NULL', 'Evan', 'J', 'Richardson', '0', '1974-09-24', 'M', 'NULL', 'M', 'evan10@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6713 Eaker Way', 'NULL', '680-555-0155', '2013-06-10', '0-1 Miles'], ['15489', '644', 'AW00015489', 'NULL', 'Emily', 'NULL', 'Thompson', '0', '1974-01-23', 'S', 'NULL', 'F', 'emily16@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5230 E. 67th Street', 'NULL', '639-555-0149', '2012-07-06', '2-5 Miles'], ['15490', '60', 'AW00015490', 'NULL', 'Kaitlyn', 'R', 'Rivera', '0', '1973-08-02', 'S', 'NULL', 'F', 'kaitlyn55@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '9748 Sutherland Dr', 'NULL', '197-555-0170', '2013-07-04', '0-1 Miles'], ['15491', '403', 'AW00015491', 'NULL', 'Shannon', 'A', 'Li', '0', '1979-04-20', 'S', 'NULL', 'F', 'shannon3@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5243 Harmony Way', 'NULL', '757-555-0175', '2012-06-30', '2-5 Miles'], ['15492', '623', 'AW00015492', 'NULL', 'Grace', 'J', 'Long', '0', '1985-04-14', 'S', 'NULL', 'F', 'grace57@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2135 St. Paul Way', 'NULL', '702-555-0149', '2012-07-06', '2-5 Miles'], ['15493', '543', 'AW00015493', 'NULL', 'Eric', 'N', 'Chen', '0', '1979-09-16', 'M', 'NULL', 'M', 'eric33@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1986 St. Andrews Way', 'NULL', '647-555-0159', '2012-06-30', '2-5 Miles'], ['15494', '69', 'AW00015494', 'NULL', 'Anna', 'D', 'Ross', '0', '1974-05-14', 'S', 'NULL', 'F', 'anna28@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '2775 Heather Leaf Ln.', 'NULL', '742-555-0145', '2013-02-26', '0-1 Miles'], ['15495', '307', 'AW00015495', 'NULL', 'Craig', 'A', 'Alonso', '0', '1972-11-14', 'M', 'NULL', 'M', 'craig9@adventure-works.com', '40000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7136 Almond Drive', 'NULL', '941-555-0118', '2013-12-29', '2-5 Miles'], ['15496', '310', 'AW00015496', 'NULL', 'Kelli', 'V', 'Goel', '0', '1973-03-07', 'S', 'NULL', 'F', 'kelli42@adventure-works.com', '40000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '143 Pecan Pl.', 'NULL', '539-555-0126', '2013-03-05', '2-5 Miles'], ['15497', '347', 'AW00015497', 'NULL', 'Katelyn', 'R', 'Phillips', '0', '1972-09-01', 'M', 'NULL', 'F', 'katelyn28@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6084 Norris Court', 'NULL', '119-555-0157', '2012-07-02', '0-1 Miles'], ['15498', '64', 'AW00015498', 'NULL', 'Alexandra', 'E', 'Washington', '0', '1975-08-08', 'M', 'NULL', 'F', 'alexandra36@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8595 Central Avenue', '# 778', '314-555-0177', '2013-02-20', '0-1 Miles'], ['15499', '638', 'AW00015499', 'NULL', 'Robert', 'NULL', 'Thomas', '0', '1976-06-22', 'M', 'NULL', 'M', 'robert69@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5619 Ida Drive', 'NULL', '160-555-0199', '2012-07-09', '0-1 Miles'], ['15500', '302', 'AW00015500', 'NULL', 'Keith', 'NULL', 'Raji', '0', '1975-07-25', 'M', 'NULL', 'M', 'keith25@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7248 Holiday Hills Dr.', 'NULL', '207-555-0133', '2012-07-22', '0-1 Miles'], ['15501', '310', 'AW00015501', 'NULL', 'Justin', 'NULL', 'Simmons', '0', '1975-12-19', 'M', 'NULL', 'M', 'justin12@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1046 San Carlos Avenue', 'NULL', '655-555-0194', '2012-07-29', '2-5 Miles'], ['15502', '539', 'AW00015502', 'NULL', 'Nathaniel', 'C', 'Howard', '0', '1978-10-15', 'S', 'NULL', 'M', 'nathaniel12@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '91 Yukon St.', 'NULL', '351-555-0158', '2012-07-15', '2-5 Miles'], ['15503', '638', 'AW00015503', 'NULL', 'Caitlin', 'V', 'James', '0', '1978-08-22', 'S', 'NULL', 'F', 'caitlin6@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8022 Muy Verde', 'NULL', '409-555-0189', '2012-07-07', '2-5 Miles'], ['15504', '618', 'AW00015504', 'NULL', 'Jared', 'M', 'James', '0', '1972-09-29', 'S', 'NULL', 'M', 'jared1@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4655 Dubhe Court', 'NULL', '149-555-0166', '2013-05-19', '0-1 Miles'], ['15505', '552', 'AW00015505', 'NULL', 'Gabriella', 'A', 'Bailey', '0', '1972-08-06', 'S', 'NULL', 'F', 'gabriella14@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3004 Zulu Court', 'NULL', '802-555-0186', '2013-06-23', '0-1 Miles'], ['15506', '302', 'AW00015506', 'NULL', 'Evan', 'C', 'Sanders', '0', '1982-09-20', 'S', 'NULL', 'M', 'evan3@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6743 E. Leland', 'NULL', '381-555-0126', '2012-07-23', '2-5 Miles'], ['15507', '70', 'AW00015507', 'NULL', 'Hailey', 'NULL', 'Campbell', '0', '1972-03-27', 'M', 'NULL', 'F', 'hailey49@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3908 Alaska Drive', 'NULL', '343-555-0181', '2013-01-28', '0-1 Miles'], ['15508', '626', 'AW00015508', 'NULL', 'Megan', 'NULL', 'Brooks', '0', '1972-02-05', 'M', 'NULL', 'F', 'megan47@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3284 S. Bascom Avenue', 'NULL', '170-555-0165', '2013-07-23', '2-5 Miles'], ['15509', '648', 'AW00015509', 'NULL', 'Zachary', 'NULL', 'Washington', '0', '1971-08-23', 'M', 'NULL', 'M', 'zachary12@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5718 Janin Pl', 'NULL', '259-555-0187', '2013-03-15', '2-5 Miles'], ['15510', '536', 'AW00015510', 'NULL', 'Ernest', 'NULL', 'She', '0', '1977-10-20', 'M', 'NULL', 'M', 'ernest21@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6091 Bluefish Lane', 'NULL', '984-555-0124', '2013-08-22', '2-5 Miles'], ['15511', '66', 'AW00015511', 'NULL', 'Haley', 'NULL', 'Kelly', '0', '1974-08-11', 'M', 'NULL', 'F', 'haley18@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7132 Rainier Dr.', 'NULL', '118-555-0143', '2013-04-15', '0-1 Miles'], ['15512', '607', 'AW00015512', 'NULL', 'Jose', 'M', 'Hayes', '0', '1975-01-29', 'M', 'NULL', 'M', 'jose17@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3141 Jabber Place', 'NULL', '599-555-0171', '2013-10-23', '0-1 Miles'], ['15513', '635', 'AW00015513', 'NULL', 'Madeline', 'E', 'Perez', '0', '1975-04-19', 'S', 'NULL', 'F', 'madeline12@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '734 Mt. Tamalpais Place', 'NULL', '772-555-0115', '2013-08-16', '2-5 Miles'], ['15514', '644', 'AW00015514', 'NULL', 'Angela', 'NULL', 'Ramirez', '0', '1974-11-16', 'S', 'NULL', 'F', 'angela33@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '995 Roundtree Place', 'NULL', '517-555-0166', '2013-05-27', '2-5 Miles'], ['15515', '648', 'AW00015515', 'NULL', 'Carlos', 'K', 'Wright', '0', '1974-10-08', 'M', 'NULL', 'M', 'carlos49@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '360 Vista Way', 'NULL', '243-555-0132', '2013-11-30', '2-5 Miles'], ['15516', '307', 'AW00015516', 'NULL', 'Shaun', 'V', 'Raje', '0', '1980-10-14', 'M', 'NULL', 'M', 'shaun15@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '2063 Trafalgar Circle', 'NULL', '180-555-0189', '2013-07-03', '2-5 Miles'], ['15517', '369', 'AW00015517', 'NULL', 'Thomas', 'C', 'Edwards', '0', '1980-01-19', 'S', 'NULL', 'M', 'thomas38@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5322 Mitchell Canyon Rd.', 'NULL', '986-555-0119', '2012-07-01', '0-1 Miles'], ['15518', '374', 'AW00015518', 'NULL', 'Richard', 'A', 'Bryant', '0', '1975-03-12', 'M', 'NULL', 'M', 'richard73@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '292 Shangri-la Rd.', 'NULL', '642-555-0119', '2012-07-16', '0-1 Miles'], ['15519', '536', 'AW00015519', 'NULL', 'Jennifer', 'K', 'Evans', '0', '1927-05-10', 'M', 'NULL', 'F', 'jennifer4@adventure-works.com', '10000.00', '4', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '600 Lake Place', 'NULL', '944-555-0134', '2013-04-27', '0-1 Miles'], ['15520', '312', 'AW00015520', 'NULL', 'Desiree', 'NULL', 'Navarro', '0', '1970-12-17', 'S', 'NULL', 'F', 'desiree6@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '611 Hilltop Dr.', 'NULL', '489-555-0112', '2012-07-07', '0-1 Miles'], ['15521', '298', 'AW00015521', 'NULL', 'Kathryn', 'NULL', 'Deng', '0', '1976-05-21', 'S', 'NULL', 'F', 'kathryn1@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '2748 Pine St.', 'NULL', '493-555-0166', '2012-08-03', '10+ Miles'], ['15522', '547', 'AW00015522', 'NULL', 'Ethan', 'I', 'Russell', '0', '1976-09-03', 'M', 'NULL', 'M', 'ethan16@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5533 Fremont Street', '# 113', '487-555-0194', '2013-08-17', '0-1 Miles'], ['15523', '627', 'AW00015523', 'NULL', 'Jonathan', 'NULL', 'Yang', '0', '1969-08-07', 'S', 'NULL', 'M', 'jonathan26@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1481 Bent Street', 'NULL', '114-555-0137', '2012-08-07', '2-5 Miles'], ['15524', '542', 'AW00015524', 'NULL', 'Dalton', 'M', 'Stone', '0', '1975-09-12', 'M', 'NULL', 'M', 'dalton0@adventure-works.com', '50000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3989 Terrace Drive', '#55', '184-555-0165', '2013-05-21', '2-5 Miles'], ['15525', '301', 'AW00015525', 'NULL', 'Marie', 'E', 'Gonzalez', '0', '1975-02-08', 'S', 'NULL', 'F', 'marie20@adventure-works.com', '50000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '2431 Keith Court', 'NULL', '622-555-0192', '2012-08-01', '5-10 Miles'], ['15526', '70', 'AW00015526', 'NULL', 'Isabelle', 'A', 'Flores', '0', '1969-12-17', 'S', 'NULL', 'F', 'isabelle11@adventure-works.com', '50000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '926 Morning Way', 'NULL', '342-555-0196', '2013-02-20', '0-1 Miles'], ['15527', '329', 'AW00015527', 'NULL', 'Megan', 'C', 'Rivera', '0', '1969-10-06', 'S', 'NULL', 'F', 'megan37@adventure-works.com', '50000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9265 La Paz', 'NULL', '114-555-0120', '2012-08-13', '0-1 Miles'], ['15528', '545', 'AW00015528', 'NULL', 'Lucas', 'NULL', 'Ramirez', '0', '1979-10-01', 'M', 'NULL', 'M', 'lucas79@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '6587 B Way', 'NULL', '907-555-0153', '2012-08-19', '2-5 Miles'], ['15529', '626', 'AW00015529', 'NULL', 'Jason', 'NULL', 'Allen', '0', '1969-01-01', 'M', 'NULL', 'M', 'jason50@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '16 Woodside Court', 'NULL', '151-555-0119', '2012-08-05', '2-5 Miles'], ['15530', '66', 'AW00015530', 'NULL', 'Madison', 'L', 'Johnson', '0', '1968-09-30', 'S', 'NULL', 'F', 'madison1@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '9171 Driftwood Court', 'NULL', '294-555-0150', '2013-12-16', '0-1 Miles'], ['15531', '610', 'AW00015531', 'NULL', 'Calvin', 'A', 'Raji', '0', '1968-12-11', 'M', 'NULL', 'M', 'calvin20@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '5509 Newcastle Road', 'NULL', '230-555-0191', '2012-08-05', '2-5 Miles'], ['15532', '307', 'AW00015532', 'NULL', 'Marshall', 'NULL', 'Jai', '0', '1968-08-03', 'S', 'NULL', 'M', 'marshall32@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '5009 Orange Street', 'NULL', '598-555-0177', '2012-08-27', '2-5 Miles'], ['15533', '360', 'AW00015533', 'NULL', 'Anna', 'R', 'Richardson', '0', '1979-09-06', 'S', 'NULL', 'F', 'anna14@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7008 Mines Road', 'NULL', '114-555-0184', '2013-08-19', '0-1 Miles'], ['15534', '547', 'AW00015534', 'NULL', 'Steven', 'NULL', 'Bell', '0', '1969-03-21', 'S', 'NULL', 'M', 'steven23@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '5134 Red Leaf', 'NULL', '972-555-0116', '2012-08-05', '2-5 Miles'], ['15535', '302', 'AW00015535', 'NULL', 'Jordan', 'L', 'Scott', '0', '1969-04-30', 'M', 'NULL', 'M', 'jordan69@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '7032 Clyde Street', 'NULL', '411-555-0116', '2012-08-23', '2-5 Miles'], ['15536', '52', 'AW00015536', 'NULL', 'Victoria', 'A', 'Thomas', '0', '1974-08-09', 'M', 'NULL', 'F', 'victoria12@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '194 Hoover Court', 'NULL', '531-555-0149', '2013-07-25', '0-1 Miles'], ['15537', '325', 'AW00015537', 'NULL', 'Destiny', 'NULL', 'Peterson', '0', '1968-07-22', 'M', 'NULL', 'F', 'destiny40@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8634 Forte Way', 'NULL', '528-555-0180', '2012-08-05', '2-5 Miles'], ['15538', '326', 'AW00015538', 'NULL', 'Luis', 'NULL', 'Lal', '0', '1969-02-24', 'S', 'NULL', 'M', 'luis29@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '9039 Blocking Ct.', 'NULL', '863-555-0195', '2012-08-25', '0-1 Miles'], ['15539', '299', 'AW00015539', 'NULL', 'Raul', 'NULL', 'Goel', '0', '1967-07-23', 'S', 'NULL', 'M', 'raul17@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '8634 Forte Way', 'NULL', '230-555-0150', '2013-10-13', '2-5 Miles'], ['15540', '302', 'AW00015540', 'NULL', 'Randall', 'C', 'Ortega', '0', '1973-04-04', 'S', 'NULL', 'M', 'randall24@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5513 Cortes', 'NULL', '739-555-0117', '2012-08-23', '0-1 Miles'], ['15541', '352', 'AW00015541', 'NULL', 'Zoe', 'J', 'Morris', '0', '1967-10-05', 'S', 'NULL', 'F', 'zoe17@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '734 Balboa Ct.', 'NULL', '260-555-0117', '2013-08-22', '2-5 Miles'], ['15542', '301', 'AW00015542', 'NULL', 'Andrea', 'L', 'Baker', '0', '1973-04-18', 'S', 'NULL', 'F', 'andrea38@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6688 Las Quebrados Ln.', 'NULL', '680-555-0125', '2012-08-20', '0-1 Miles'], ['15543', '59', 'AW00015543', 'NULL', 'Emma', 'P', 'Flores', '0', '1967-09-23', 'S', 'NULL', 'F', 'emma58@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6235 Bayview Cr', 'NULL', '239-555-0133', '2013-04-15', '2-5 Miles'], ['15544', '325', 'AW00015544', 'NULL', 'Thomas', 'J', 'Brown', '0', '1968-06-12', 'M', 'NULL', 'M', 'thomas64@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3966 Bonifacio', 'NULL', '868-555-0117', '2013-04-28', '2-5 Miles'], ['15545', '307', 'AW00015545', 'NULL', 'Jennifer', 'S', 'Rivera', '0', '1972-02-07', 'M', 'NULL', 'F', 'jennifer62@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7515 Royal Oak Rd.', 'NULL', '574-555-0134', '2013-07-16', '0-1 Miles'], ['15546', '552', 'AW00015546', 'NULL', 'Robert', 'Z', 'Jenkins', '0', '1966-11-18', 'M', 'NULL', 'M', 'robert20@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '9972 San Miguel Rd', 'NULL', '875-555-0192', '2013-12-18', '10+ Miles'], ['15547', '314', 'AW00015547', 'NULL', 'Cassidy', 'NULL', 'Wood', '0', '1967-04-05', 'M', 'NULL', 'F', 'cassidy2@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4058 First Ave', 'NULL', '241-555-0163', '2012-08-17', '0-1 Miles'], ['15548', '385', 'AW00015548', 'NULL', 'Morgan', 'J', 'Brooks', '0', '1966-03-12', 'M', 'NULL', 'F', 'morgan67@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8309 Colonial Way', 'NULL', '621-555-0156', '2012-08-25', '2-5 Miles'], ['15549', '49', 'AW00015549', 'NULL', 'Richard', 'R', 'Davis', '0', '1972-12-03', 'S', 'NULL', 'M', 'richard45@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9363 Vista Bonita', '# 123', '790-555-0114', '2013-01-11', '2-5 Miles'], ['15550', '611', 'AW00015550', 'NULL', 'Orlando', 'NULL', 'Alonso', '0', '1978-05-17', 'S', 'NULL', 'M', 'orlando8@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '7355 Macarthur Avenue', 'NULL', '230-555-0162', '2013-11-29', '0-1 Miles'], ['15551', '612', 'AW00015551', 'NULL', 'Kaylee', 'T', 'Gray', '0', '1973-01-02', 'S', 'NULL', 'F', 'kaylee4@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4022 H Pine Creek Way', 'NULL', '550-555-0185', '2012-08-22', '2-5 Miles'], ['15552', '631', 'AW00015552', 'NULL', 'Tyler', 'C', 'Lewis', '0', '1972-12-28', 'S', 'NULL', 'M', 'tyler21@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9 Serrana Ct.', 'NULL', '711-555-0186', '2012-08-19', '2-5 Miles'], ['15553', '301', 'AW00015553', 'NULL', 'Ivan', 'NULL', 'Lopez', '0', '1972-12-08', 'S', 'NULL', 'M', 'ivan13@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '4029 The Alameda', 'NULL', '381-555-0111', '2012-08-20', '0-1 Miles'], ['15554', '311', 'AW00015554', 'NULL', 'Zoe', 'L', 'Bailey', '0', '1973-03-01', 'S', 'NULL', 'F', 'zoe14@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '8904 La Salle Ave', 'NULL', '789-555-0182', '2012-09-03', '0-1 Miles'], ['15555', '352', 'AW00015555', 'NULL', 'Hailey', 'NULL', 'Barnes', '0', '1966-04-22', 'M', 'NULL', 'F', 'hailey24@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '71 Westwood Lane', 'NULL', '688-555-0181', '2012-09-16', '2-5 Miles'], ['15556', '65', 'AW00015556', 'NULL', 'Dylan', 'NULL', 'Davis', '0', '1976-11-08', 'M', 'NULL', 'M', 'dylan32@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5082 Longview Road', 'NULL', '619-555-0160', '2013-03-03', '2-5 Miles'], ['15557', '348', 'AW00015557', 'NULL', 'Nathaniel', 'NULL', 'Murphy', '0', '1966-02-11', 'M', 'NULL', 'M', 'nathaniel16@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '105 Woodruff Ln.', 'NULL', '222-555-0198', '2012-09-05', '0-1 Miles'], ['15558', '633', 'AW00015558', 'NULL', 'Hailey', 'NULL', 'Morris', '0', '1965-09-29', 'M', 'NULL', 'F', 'hailey1@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3902 Gary Drive', 'NULL', '859-555-0122', '2012-09-01', '2-5 Miles'], ['15559', '49', 'AW00015559', 'NULL', 'Devin', 'A', 'Flores', '0', '1970-05-22', 'M', 'NULL', 'M', 'devin51@adventure-works.com', '60000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5812 Pepperridge Pl.', 'NULL', '116-555-0111', '2013-02-12', '2-5 Miles'], ['15560', '611', 'AW00015560', 'NULL', 'Gabrielle', 'E', 'Gray', '0', '1964-09-17', 'M', 'NULL', 'F', 'gabrielle15@adventure-works.com', '60000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3450 Breck Court', 'NULL', '960-555-0132', '2013-05-11', '2-5 Miles'], ['15561', '543', 'AW00015561', 'NULL', 'Angel', 'B', 'Young', '0', '1970-01-24', 'S', 'NULL', 'M', 'angel40@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '5097 Bourton Ct.', 'NULL', '757-555-0174', '2012-09-01', '2-5 Miles'], ['15562', '611', 'AW00015562', 'NULL', 'Kaitlyn', 'I', 'James', '0', '1976-04-15', 'S', 'NULL', 'F', 'kaitlyn63@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '3478 Liana Lane', 'NULL', '134-555-0148', '2012-09-25', '2-5 Miles'], ['15563', '618', 'AW00015563', 'NULL', 'Luke', 'NULL', 'Lopez', '0', '1970-07-10', 'M', 'NULL', 'M', 'luke44@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '6139 Deermeadow Way', 'NULL', '333-555-0137', '2013-10-05', '0-1 Miles'], ['15564', '66', 'AW00015564', 'NULL', 'Eduardo', 'NULL', 'Hughes', '0', '1970-02-21', 'M', 'NULL', 'M', 'eduardo56@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7751 Mendocino Dr.', 'NULL', '184-555-0150', '2013-05-28', '0-1 Miles'], ['15565', '616', 'AW00015565', 'NULL', 'Kyle', 'NULL', 'Mitchell', '0', '1964-08-06', 'S', 'NULL', 'M', 'kyle40@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '673 Hawes St.', 'NULL', '199-555-0111', '2012-08-29', '2-5 Miles'], ['15566', '57', 'AW00015566', 'NULL', 'Aaron', 'NULL', 'Foster', '0', '1970-09-21', 'M', 'NULL', 'M', 'aaron15@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '4461 Centennial Way', 'NULL', '477-555-0181', '2013-07-07', '0-1 Miles'], ['15567', '49', 'AW00015567', 'NULL', 'Carmen', 'V', 'Madan', '0', '1964-12-21', 'M', 'NULL', 'F', 'carmen10@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7682 Vista', 'NULL', '134-555-0143', '2013-07-22', '0-1 Miles'], ['15568', '325', 'AW00015568', 'NULL', 'Aaron', 'A', 'Hayes', '0', '1963-07-11', 'M', 'NULL', 'M', 'aaron22@adventure-works.com', '80000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5274 Holbrook Dr', 'NULL', '193-555-0161', '2012-09-25', '2-5 Miles'], ['15569', '536', 'AW00015569', 'NULL', 'Morgan', 'NULL', 'Ward', '0', '1974-08-22', 'M', 'NULL', 'F', 'morgan60@adventure-works.com', '80000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5186 Oeffler Ln.', 'NULL', '971-555-0169', '2012-09-16', '0-1 Miles'], ['15570', '372', 'AW00015570', 'NULL', 'Brianna', 'L', 'Powell', '0', '1975-02-05', 'S', 'NULL', 'F', 'brianna54@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4016 Boyd', 'NULL', '228-555-0193', '2012-09-22', '0-1 Miles'], ['15571', '65', 'AW00015571', 'NULL', 'Angel', 'G', 'Allen', '0', '1975-03-06', 'S', 'NULL', 'M', 'angel39@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9209 Mendocino Drive', 'NULL', '179-555-0124', '2013-01-28', '2-5 Miles'], ['15572', '54', 'AW00015572', 'NULL', 'Anna', 'B', 'Garcia', '0', '1963-09-16', 'M', 'NULL', 'F', 'anna54@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6477 Willow Pass Rd.', 'NULL', '128-555-0133', '2013-07-03', '2-5 Miles'], ['15573', '634', 'AW00015573', 'NULL', 'Thomas', 'E', 'Wilson', '0', '1969-08-21', 'S', 'NULL', 'M', 'thomas67@adventure-works.com', '70000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '6853 Hacienda', 'NULL', '466-555-0174', '2013-10-05', '0-1 Miles'], ['15574', '383', 'AW00015574', 'NULL', 'Carlos', 'B', 'Peterson', '0', '1969-01-17', 'S', 'NULL', 'M', 'carlos6@adventure-works.com', '70000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '7907 Eagle Peak Road', 'NULL', '823-555-0169', '2014-01-07', '0-1 Miles'], ['15575', '23', 'AW00015575', 'NULL', 'Alvin', 'B', 'Ye', '0', '1985-01-06', 'M', 'NULL', 'M', 'alvin9@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '570 Guerrero', 'NULL', '1 (11) 500 555-0110', '2012-10-29', '2-5 Miles'], ['15576', '9', 'AW00015576', 'NULL', 'Carly', 'J', 'Raje', '0', '1976-03-18', 'S', 'NULL', 'F', 'carly13@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '2391 Pepper Place', 'NULL', '1 (11) 500 555-0127', '2012-11-23', '0-1 Miles'], ['15577', '10', 'AW00015577', 'NULL', 'Mayra', 'E', 'Malhotra', '0', '1975-08-25', 'M', 'NULL', 'F', 'mayra4@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '5623 Detroit Ave.', 'NULL', '1 (11) 500 555-0164', '2013-04-04', '0-1 Miles'], ['15578', '35', 'AW00015578', 'NULL', 'Diane', 'NULL', 'Gill', '0', '1981-08-16', 'M', 'NULL', 'F', 'diane18@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '6163 Craig Drive', 'NULL', '1 (11) 500 555-0119', '2012-11-10', '0-1 Miles'], ['15579', '31', 'AW00015579', 'NULL', 'Brittany', 'NULL', 'Coleman', '0', '1973-07-04', 'S', 'NULL', 'F', 'brittany5@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '8198 Lynwood Drive', 'NULL', '1 (11) 500 555-0164', '2013-02-09', '2-5 Miles'], ['15580', '33', 'AW00015580', 'NULL', 'Ruben', 'NULL', 'Raman', '0', '1979-02-20', 'M', 'NULL', 'M', 'ruben13@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7317 Cortes', 'NULL', '1 (11) 500 555-0115', '2012-10-28', '2-5 Miles'], ['15581', '36', 'AW00015581', 'NULL', 'Toni', 'NULL', 'Perez', '0', '1973-10-25', 'S', 'NULL', 'F', 'toni22@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2444 North Ranchford', 'NULL', '1 (11) 500 555-0184', '2013-08-09', '2-5 Miles'], ['15582', '34', 'AW00015582', 'NULL', 'Jeffery', 'A', 'Cai', '0', '1974-01-18', 'M', 'NULL', 'M', 'jeffery21@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7379 Cambelback Place', 'NULL', '1 (11) 500 555-0138', '2012-11-27', '2-5 Miles'], ['15583', '14', 'AW00015583', 'NULL', 'Lindsey', 'NULL', 'Xu', '0', '1974-03-28', 'S', 'NULL', 'F', 'lindsey5@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '6107 Westwood Dr', 'NULL', '1 (11) 500 555-0198', '2013-06-02', '10+ Miles'], ['15584', '13', 'AW00015584', 'NULL', 'Christy', 'NULL', 'Raji', '0', '1972-10-14', 'M', 'NULL', 'F', 'christy39@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '6374 St. Germain Lane', 'NULL', '1 (11) 500 555-0197', '2013-03-26', '10+ Miles'], ['15585', '19', 'AW00015585', 'NULL', 'Roy', 'H', 'Garcia', '0', '1978-03-05', 'M', 'NULL', 'M', 'roy15@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '9850 Martindale', 'NULL', '1 (11) 500 555-0164', '2012-11-21', '10+ Miles'], ['15586', '21', 'AW00015586', 'NULL', 'Victor', 'NULL', 'Blanco', '0', '1975-02-24', 'M', 'NULL', 'M', 'victor16@adventure-works.com', '110000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '8837 Paris Lane', 'NULL', '1 (11) 500 555-0198', '2012-11-26', '0-1 Miles'], ['15587', '33', 'AW00015587', 'NULL', 'Jessica', 'NULL', 'Ward', '0', '1980-10-10', 'M', 'NULL', 'F', 'jessica15@adventure-works.com', '110000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '7420 Lilac Circle', 'NULL', '1 (11) 500 555-0139', '2012-11-18', '0-1 Miles'], ['15588', '4', 'AW00015588', 'NULL', 'Kristy', 'NULL', 'Alvarez', '0', '1980-07-03', 'M', 'NULL', 'F', 'kristy5@adventure-works.com', '110000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '5493 Roskelley Drive', 'NULL', '1 (11) 500 555-0114', '2012-11-02', '2-5 Miles'], ['15589', '24', 'AW00015589', 'NULL', 'Gilbert', 'NULL', 'He', '0', '1974-10-13', 'M', 'NULL', 'M', 'gilbert16@adventure-works.com', '110000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '2823 La Orinda Pl.', 'NULL', '1 (11) 500 555-0119', '2012-11-26', '2-5 Miles'], ['15590', '35', 'AW00015590', 'NULL', 'Marshall', 'J', 'Wu', '0', '1974-09-24', 'M', 'NULL', 'M', 'marshall6@adventure-works.com', '120000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '8977 Woodhaven Lane', 'NULL', '1 (11) 500 555-0144', '2012-11-24', '0-1 Miles'], ['15591', '37', 'AW00015591', 'NULL', 'Darren', 'P', 'Srini', '0', '1975-03-22', 'S', 'NULL', 'M', 'darren11@adventure-works.com', '120000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4618 Olive Hill', 'NULL', '1 (11) 500 555-0147', '2012-11-01', '0-1 Miles'], ['15592', '8', 'AW00015592', 'NULL', 'Janet', 'L', 'Moreno', '0', '1983-10-01', 'M', 'NULL', 'F', 'janet11@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '3870 Grand Ct.', 'NULL', '1 (11) 500 555-0127', '2013-02-02', '10+ Miles'], ['15593', '31', 'AW00015593', 'NULL', 'Naomi', 'A', 'Martin', '0', '1973-03-18', 'M', 'NULL', 'F', 'naomi0@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '89 Ancona Ct.', 'NULL', '1 (11) 500 555-0176', '2013-03-04', '10+ Miles'], ['15594', '4', 'AW00015594', 'NULL', 'Joanna', 'NULL', 'Carlson', '0', '1978-03-05', 'S', 'NULL', 'F', 'joanna17@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7530 St. Francis St.', 'NULL', '1 (11) 500 555-0177', '2013-12-24', '0-1 Miles'], ['15595', '7', 'AW00015595', 'NULL', 'Andre', 'NULL', 'Sanchez', '0', '1971-08-05', 'M', 'NULL', 'M', 'andre19@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '4697 Mt. Dell', 'NULL', '1 (11) 500 555-0167', '2012-10-28', '0-1 Miles'], ['15596', '17', 'AW00015596', 'NULL', 'Gilbert', 'NULL', 'Goel', '0', '1971-07-02', 'S', 'NULL', 'M', 'gilbert39@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '3637 Pheasant Circle', 'NULL', '1 (11) 500 555-0149', '2012-11-24', '1-2 Miles'], ['15597', '38', 'AW00015597', 'NULL', 'Terry', 'NULL', 'Raji', '0', '1971-08-06', 'M', 'NULL', 'M', 'terry23@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '9397 N. 8th St.', 'NULL', '1 (11) 500 555-0163', '2012-11-18', '1-2 Miles'], ['15598', '16', 'AW00015598', 'NULL', 'Tanya', 'I', 'Rubio', '0', '1971-04-20', 'S', 'NULL', 'F', 'tanya18@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3478 Liana Lane', 'NULL', '1 (11) 500 555-0112', '2013-09-19', '5-10 Miles'], ['15599', '26', 'AW00015599', 'NULL', 'Darryl', 'R', 'Ma', '0', '1970-11-18', 'S', 'NULL', 'M', 'darryl15@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '3432 White Pl.', 'NULL', '1 (11) 500 555-0141', '2013-04-19', '5-10 Miles'], ['15600', '32', 'AW00015600', 'NULL', 'Josue', 'R', 'Dominguez', '0', '1974-05-02', 'M', 'NULL', 'M', 'josue1@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '9754 Olivera', 'NULL', '1 (11) 500 555-0192', '2012-10-30', '10+ Miles'], ['15601', '20', 'AW00015601', 'NULL', 'Naomi', 'C', 'Moreno', '0', '1979-08-09', 'M', 'NULL', 'F', 'naomi6@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '918 Park Lane', 'NULL', '1 (11) 500 555-0136', '2012-11-22', '10+ Miles'], ['15602', '37', 'AW00015602', 'NULL', 'Warren', 'M', 'Wu', '0', '1979-01-14', 'S', 'NULL', 'M', 'warren23@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4785 Scott Street', 'NULL', '1 (11) 500 555-0119', '2013-06-22', '5-10 Miles'], ['15603', '13', 'AW00015603', 'NULL', 'Philip', 'M', 'Blanco', '0', '1975-09-02', 'M', 'NULL', 'M', 'philip15@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '4249 Heights Ave.', 'NULL', '1 (11) 500 555-0128', '2013-03-31', '5-10 Miles'], ['15604', '31', 'AW00015604', 'NULL', 'Clifford', 'NULL', 'Prasad', '0', '1970-06-13', 'M', 'NULL', 'M', 'clifford9@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '2515 Beauty St', 'NULL', '1 (11) 500 555-0115', '2013-06-20', '0-1 Miles'], ['15605', '3', 'AW00015605', 'NULL', 'Alan', 'L', 'Yang', '0', '1970-02-21', 'M', 'NULL', 'M', 'alan9@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '9023 Maryland Dr.', 'NULL', '1 (11) 500 555-0143', '2013-09-27', '10+ Miles'], ['15606', '33', 'AW00015606', 'NULL', 'Marco', 'C', 'Prasad', '0', '1970-06-10', 'M', 'NULL', 'M', 'marco10@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '8523 Rose Drive', 'C', '1 (11) 500 555-0165', '2013-02-27', '10+ Miles'], ['15607', '20', 'AW00015607', 'NULL', 'Ricky', 'A', 'Gill', '0', '1975-09-19', 'S', 'NULL', 'M', 'ricky14@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7559 W. Buchanan Rd.', 'NULL', '1 (11) 500 555-0113', '2013-11-16', '5-10 Miles'], ['15608', '120', 'AW00015608', 'NULL', 'Faith', 'A', 'James', '0', '1984-05-10', 'S', 'NULL', 'F', 'faith29@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Rykestr 95', 'NULL', '1 (11) 500 555-0118', '2013-08-28', '2-5 Miles'], ['15609', '222', 'AW00015609', 'NULL', 'Karl', 'C', 'Sharma', '0', '1985-08-11', 'S', 'NULL', 'M', 'karl10@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '22, rue du Puits Dixme', 'NULL', '1 (11) 500 555-0159', '2013-08-15', '0-1 Miles'], ['15610', '273', 'AW00015610', 'NULL', 'Jessica', 'A', 'Gonzales', '0', '1986-04-11', 'S', 'NULL', 'F', 'jessica41@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '8251 Vista Del Sol', 'NULL', '1 (11) 500 555-0117', '2013-09-18', '2-5 Miles'], ['15611', '215', 'AW00015611', 'NULL', 'Michele', 'NULL', 'Patel', '0', '1984-02-08', 'S', 'NULL', 'F', 'michele58@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '64, avenue des Laurentides', 'NULL', '1 (11) 500 555-0182', '2013-06-14', '2-5 Miles'], ['15612', '259', 'AW00015612', 'NULL', 'Damien', 'NULL', 'Ma', '0', '1983-10-05', 'S', 'NULL', 'M', 'damien12@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '4867 Glaze Dr', 'NULL', '1 (11) 500 555-0195', '2013-05-08', '1-2 Miles'], ['15613', '221', 'AW00015613', 'NULL', 'Melinda', 'NULL', 'Moreno', '0', '1984-03-14', 'S', 'NULL', 'F', 'melinda3@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '7408, rue Maillard', 'NULL', '1 (11) 500 555-0155', '2013-05-23', '1-2 Miles'], ['15614', '262', 'AW00015614', 'NULL', 'Faith', 'S', 'Simmons', '0', '1980-05-13', 'M', 'NULL', 'F', 'faith14@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3744 Dalis Drive', 'NULL', '1 (11) 500 555-0117', '2011-10-13', '1-2 Miles'], ['15615', '259', 'AW00015615', 'NULL', 'Erika', 'NULL', 'Alvarez', '0', '1984-08-12', 'S', 'NULL', 'F', 'erika4@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6837 Weber Bryan St.', 'NULL', '1 (11) 500 555-0171', '2013-03-26', '2-5 Miles'], ['15616', '183', 'AW00015616', 'NULL', 'Janet', 'K', 'Alonso', '0', '1984-05-14', 'S', 'NULL', 'F', 'janet13@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '610, boulevard Tremblay', 'NULL', '1 (11) 500 555-0112', '2013-09-21', '1-2 Miles'], ['15617', '197', 'AW00015617', 'NULL', 'Dawn', 'A', 'Chande', '0', '1984-08-02', 'S', 'NULL', 'F', 'dawn39@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '216, quai Paul Doumer', 'NULL', '1 (11) 500 555-0169', '2013-02-01', '2-5 Miles'], ['15618', '162', 'AW00015618', 'NULL', 'Gabriel', 'NULL', 'Sharma', '0', '1978-08-26', 'M', 'NULL', 'M', 'gabriel27@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Hansaallee 482', 'NULL', '1 (11) 500 555-0124', '2013-04-01', '1-2 Miles'], ['15619', '236', 'AW00015619', 'NULL', 'Levi', 'NULL', 'Subram', '0', '1978-09-23', 'M', 'NULL', 'M', 'levi12@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4822 Center Street', 'NULL', '1 (11) 500 555-0111', '2011-10-13', '0-1 Miles'], ['15620', '256', 'AW00015620', 'NULL', 'Dominique', 'S', 'Subram', '0', '1978-11-16', 'S', 'NULL', 'F', 'dominique10@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '7098 Walnut Blvd.', 'NULL', '1 (11) 500 555-0119', '2011-10-05', '0-1 Miles'], ['15621', '268', 'AW00015621', 'NULL', 'Kelli', 'T', 'Wu', '0', '1979-03-26', 'S', 'NULL', 'F', 'kelli7@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7763 Folson Drive', 'NULL', '1 (11) 500 555-0165', '2011-10-07', '1-2 Miles'], ['15622', '144', 'AW00015622', 'Ms.', 'Yvonne', 'NULL', 'Schleger', '0', '1978-04-14', 'S', 'NULL', 'M', 'yvonne2@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Charlottenstr 3918', 'NULL', '155-555-0100', '2012-01-14', '1-2 Miles'], ['15623', '195', 'AW00015623', 'NULL', 'Molly', 'A', 'Madan', '0', '1978-04-10', 'M', 'NULL', 'F', 'molly7@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '70, place de la République', 'NULL', '1 (11) 500 555-0131', '2012-08-25', '0-1 Miles'], ['15624', '217', 'AW00015624', 'NULL', 'Tyrone', 'NULL', 'Rubio', '0', '1983-08-08', 'M', 'NULL', 'M', 'tyrone20@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4343, rue Léo Delibes', 'NULL', '1 (11) 500 555-0156', '2012-08-17', '0-1 Miles'], ['15625', '142', 'AW00015625', 'NULL', 'Clinton', 'NULL', 'Alvarez', '0', '1978-04-16', 'M', 'NULL', 'M', 'clinton1@adventure-works.com', '40000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Berliner Platz 554', 'Verkaufsabteilung', '1 (11) 500 555-0196', '2012-02-08', '1-2 Miles'], ['15626', '155', 'AW00015626', 'NULL', 'Eduardo', 'F', 'White', '0', '1983-07-20', 'M', 'NULL', 'M', 'eduardo11@adventure-works.com', '40000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Parkstr 851', 'NULL', '1 (11) 500 555-0178', '2012-02-28', '1-2 Miles'], ['15627', '146', 'AW00015627', 'NULL', 'Troy', 'NULL', 'Srini', '0', '1978-06-23', 'S', 'NULL', 'M', 'troy9@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Postenweg 2228', 'NULL', '1 (11) 500 555-0160', '2012-02-17', '1-2 Miles'], ['15628', '161', 'AW00015628', 'NULL', 'Brianna', 'T', 'Sandberg', '0', '1922-04-10', 'M', 'NULL', 'F', 'brianna47@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Berliner Platz 664', 'NULL', '1 (11) 500 555-0177', '2013-10-17', '0-1 Miles'], ['15629', '162', 'AW00015629', 'NULL', 'Meghan', 'A', 'Ruiz', '0', '1977-03-31', 'S', 'NULL', 'F', 'meghan1@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Alte Landstr 221', 'NULL', '1 (11) 500 555-0199', '2013-12-31', '1-2 Miles'], ['15630', '260', 'AW00015630', 'NULL', 'Nichole', 'C', 'Tang', '0', '1976-10-30', 'S', 'NULL', 'F', 'nichole4@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '1492 Bermad Dr.', 'NULL', '1 (11) 500 555-0125', '2011-10-24', '1-2 Miles'], ['15631', '263', 'AW00015631', 'NULL', 'Clayton', 'NULL', 'Andersen', '0', '1977-05-11', 'S', 'NULL', 'M', 'clayton31@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '8844 Bel Aire Drive', 'NULL', '1 (11) 500 555-0121', '2011-10-24', '1-2 Miles'], ['15632', '245', 'AW00015632', 'NULL', 'Gloria', 'P', 'Carlson', '0', '1976-07-08', 'M', 'NULL', 'F', 'gloria19@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '5256 Chickpea Ct.', 'NULL', '1 (11) 500 555-0114', '2011-11-09', '0-1 Miles'], ['15633', '128', 'AW00015633', 'NULL', 'Ashlee', 'D', 'Shan', '0', '1977-02-08', 'S', 'NULL', 'F', 'ashlee17@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Hans-Rosenthal-Platz 7', 'NULL', '1 (11) 500 555-0173', '2013-05-21', '0-1 Miles'], ['15634', '271', 'AW00015634', 'NULL', 'Dalton', 'L', 'Kelly', '0', '1982-05-23', 'S', 'NULL', 'M', 'dalton72@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '9987 Roseann Dr.', 'NULL', '1 (11) 500 555-0140', '2013-06-18', '2-5 Miles'], ['15635', '261', 'AW00015635', 'NULL', 'Sheila', 'NULL', 'Martin', '0', '1977-02-20', 'S', 'NULL', 'F', 'sheila0@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '7326 Kenmore', 'NULL', '1 (11) 500 555-0199', '2013-05-13', '2-5 Miles'], ['15636', '127', 'AW00015636', 'NULL', 'David', 'P', 'White', '0', '1975-11-22', 'S', 'NULL', 'M', 'david71@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Wasserstr 345', 'NULL', '1 (11) 500 555-0150', '2013-06-11', '1-2 Miles'], ['15637', '179', 'AW00015637', 'NULL', 'Russell', 'A', 'Sharma', '0', '1977-01-19', 'S', 'NULL', 'M', 'russell12@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6, route de Marseille', 'NULL', '1 (11) 500 555-0167', '2012-08-04', '1-2 Miles'], ['15638', '259', 'AW00015638', 'NULL', 'Rosa', 'J', 'He', '0', '1947-01-23', 'M', 'NULL', 'F', 'rosa18@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1161 Daffodil Dr.', 'NULL', '1 (11) 500 555-0162', '2011-11-19', '0-1 Miles'], ['15639', '21', 'AW00015639', 'NULL', 'Melanie', 'H', 'Coleman', '0', '1985-08-30', 'M', 'NULL', 'F', 'melanie21@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '8446 Wheel Ave.', 'NULL', '1 (11) 500 555-0112', '2013-04-06', '0-1 Miles'], ['15640', '21', 'AW00015640', 'NULL', 'Gary', 'NULL', 'Gomez', '0', '1985-10-14', 'S', 'NULL', 'M', 'gary11@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '4744 Mary Dr.', 'NULL', '1 (11) 500 555-0117', '2013-01-28', '1-2 Miles'], ['15641', '33', 'AW00015641', 'NULL', 'Marco', 'L', 'Sara', '0', '1983-11-01', 'M', 'NULL', 'M', 'marco11@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '2756 Eastgate Ave.', 'NULL', '1 (11) 500 555-0124', '2013-04-22', '2-5 Miles'], ['15642', '35', 'AW00015642', 'NULL', 'Cara', 'B', 'Gao', '0', '1983-02-21', 'S', 'NULL', 'F', 'cara10@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '8420 Dayton Court', 'NULL', '1 (11) 500 555-0187', '2012-10-31', '0-1 Miles'], ['15643', '14', 'AW00015643', 'NULL', 'Omar', 'NULL', 'Raji', '0', '1983-03-20', 'S', 'NULL', 'M', 'omar42@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '5121 Mount Hood Circle', 'NULL', '1 (11) 500 555-0134', '2012-10-30', '0-1 Miles'], ['15644', '4', 'AW00015644', 'NULL', 'Savannah', 'F', 'Gonzalez', '0', '1985-02-16', 'S', 'NULL', 'F', 'savannah31@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '5227 Sutton Circle', 'NULL', '1 (11) 500 555-0117', '2012-11-11', '1-2 Miles'], ['15645', '10', 'AW00015645', 'NULL', 'Javier', 'NULL', 'Gill', '0', '1984-09-08', 'M', 'NULL', 'M', 'javier8@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '3440 Alvina Drive', 'NULL', '1 (11) 500 555-0180', '2012-11-02', '0-1 Miles'], ['15646', '31', 'AW00015646', 'NULL', 'Emma', 'A', 'Kelly', '0', '1984-05-02', 'S', 'NULL', 'F', 'emma46@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '3112 Gilardy Dr.', 'NULL', '1 (11) 500 555-0132', '2012-11-15', '2-5 Miles'], ['15647', '23', 'AW00015647', 'NULL', 'Dawn', 'NULL', 'He', '0', '1984-05-19', 'M', 'NULL', 'F', 'dawn20@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '536 Beech Ct.', 'NULL', '1 (11) 500 555-0125', '2012-11-06', '0-1 Miles'], ['15648', '34', 'AW00015648', 'NULL', 'Edgar', 'A', 'Gonzalez', '0', '1984-03-03', 'M', 'NULL', 'M', 'edgar19@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '570 Highridge Court', 'NULL', '1 (11) 500 555-0117', '2012-10-28', '0-1 Miles'], ['15649', '160', 'AW00015649', 'NULL', 'Melinda', 'T', 'Jimenez', '0', '1954-04-07', 'M', 'NULL', 'F', 'melinda2@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Rotthäuser Weg 866', 'NULL', '1 (11) 500 555-0140', '2012-02-10', '0-1 Miles'], ['15650', '208', 'AW00015650', 'NULL', 'Ronnie', 'NULL', 'Li', '0', '1972-01-31', 'S', 'NULL', 'M', 'ronnie2@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '1010, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0123', '2013-12-14', '0-1 Miles'], ['15651', '212', 'AW00015651', 'NULL', 'Ann', 'T', 'Lopez', '0', '1972-07-09', 'S', 'NULL', 'F', 'ann21@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '1, rue de Maubeuge', 'NULL', '1 (11) 500 555-0165', '2012-08-13', '1-2 Miles'], ['15652', '229', 'AW00015652', 'NULL', 'Barbara', 'M', 'Wang', '0', '1966-11-22', 'M', 'NULL', 'F', 'barbara11@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '438 Post Road', 'NULL', '1 (11) 500 555-0169', '2011-11-17', '0-1 Miles'], ['15653', '254', 'AW00015653', 'NULL', 'Gerald', 'E', 'Madan', '0', '1977-12-01', 'S', 'NULL', 'M', 'gerald37@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '109 Clayton Road', 'NULL', '1 (11) 500 555-0120', '2011-11-09', '0-1 Miles'], ['15654', '200', 'AW00015654', 'NULL', 'Levi', 'NULL', 'Fernandez', '0', '1965-09-09', 'S', 'NULL', 'M', 'levi15@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '9193, place du Tertre', 'NULL', '1 (11) 500 555-0172', '2013-06-10', '2-5 Miles'], ['15655', '144', 'AW00015655', 'NULL', 'Deanna', 'NULL', 'Gomez', '0', '1971-10-30', 'M', 'NULL', 'F', 'deanna26@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Kalkweg 4435', 'NULL', '1 (11) 500 555-0124', '2012-02-22', '1-2 Miles'], ['15656', '178', 'AW00015656', 'NULL', 'Darryl', 'NULL', 'Zhao', '0', '1965-12-13', 'S', 'NULL', 'M', 'darryl10@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Moritzstr 44', 'NULL', '1 (11) 500 555-0156', '2012-02-10', '1-2 Miles'], ['15657', '271', 'AW00015657', 'NULL', 'Marcus', 'A', 'Hayes', '0', '1965-12-18', 'M', 'NULL', 'M', 'marcus72@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2775 Mt. Olivet Pl.', 'NULL', '1 (11) 500 555-0141', '2011-11-05', '0-1 Miles'], ['15658', '184', 'AW00015658', 'NULL', 'Victoria', 'NULL', 'Rogers', '0', '1965-02-12', 'S', 'NULL', 'F', 'victoria27@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '61, rue des Rosiers', 'NULL', '1 (11) 500 555-0161', '2013-09-01', '2-5 Miles'], ['15659', '127', 'AW00015659', 'NULL', 'Angela', 'J', 'Rivera', '0', '1964-08-13', 'M', 'NULL', 'F', 'angela43@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Klara Straße 463', 'NULL', '1 (11) 500 555-0111', '2012-02-16', '0-1 Miles'], ['15660', '250', 'AW00015660', 'NULL', 'April', 'NULL', 'Jai', '0', '1965-03-01', 'M', 'NULL', 'F', 'april9@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '209 Mobile Lane', 'NULL', '1 (11) 500 555-0184', '2011-12-17', '0-1 Miles'], ['15661', '269', 'AW00015661', 'NULL', 'Brandon', 'J', 'Robinson', '0', '1965-02-16', 'M', 'NULL', 'M', 'brandon48@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9520 Glenhaven Ave.', 'NULL', '1 (11) 500 555-0149', '2011-12-06', '0-1 Miles'], ['15662', '279', 'AW00015662', 'NULL', 'Megan', 'M', 'Richardson', '0', '1965-11-21', 'M', 'NULL', 'F', 'megan38@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7129 Oakmead', 'NULL', '1 (11) 500 555-0132', '2011-12-06', '0-1 Miles'], ['15663', '196', 'AW00015663', 'NULL', 'Mandy', 'A', 'Chen', '0', '1965-01-05', 'M', 'NULL', 'F', 'mandy3@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8, avenue de Norvege', 'NULL', '1 (11) 500 555-0198', '2012-08-18', '0-1 Miles'], ['15664', '172', 'AW00015664', 'NULL', 'Jill', 'NULL', 'Vazquez', '0', '1970-04-22', 'S', 'NULL', 'F', 'jill22@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Marienplatz 5', 'NULL', '1 (11) 500 555-0133', '2012-02-01', '0-1 Miles'], ['15665', '198', 'AW00015665', 'NULL', 'Kristi', 'P', 'Sai', '0', '1965-01-02', 'M', 'NULL', 'F', 'kristi22@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1055, rue Basse-du-Rocher', 'NULL', '1 (11) 500 555-0196', '2012-08-13', '0-1 Miles'], ['15666', '205', 'AW00015666', 'NULL', 'Bianca', 'B', 'Liang', '0', '1981-10-18', 'S', 'NULL', 'F', 'bianca13@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '55, rue de la Cavalerie', 'NULL', '1 (11) 500 555-0175', '2012-08-20', '0-1 Miles'], ['15667', '151', 'AW00015667', 'NULL', 'Hector', 'NULL', 'Ramos', '0', '1976-03-16', 'M', 'NULL', 'M', 'hector15@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Parkstr 4256', 'Kreditorenbuchhaltung', '1 (11) 500 555-0116', '2012-01-29', '0-1 Miles'], ['15668', '273', 'AW00015668', 'NULL', 'Erick', 'E', 'Fernandez', '0', '1981-02-23', 'M', 'NULL', 'M', 'erick15@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '1948 O Avenue', 'NULL', '1 (11) 500 555-0117', '2011-12-24', '0-1 Miles'], ['15669', '279', 'AW00015669', 'NULL', 'Paul', 'J', 'Suurs', '0', '1981-04-20', 'M', 'NULL', 'F', 'paul8@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3327 Rockridge Dr.', 'NULL', '1 (11) 500 555-0112', '2011-12-08', '0-1 Miles'], ['15670', '183', 'AW00015670', 'NULL', 'Sergio', 'S', 'Sánchez', '0', '1975-01-31', 'M', 'NULL', 'M', 'sergio21@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', "22, rue de l'Espace De Schengen", 'NULL', '1 (11) 500 555-0116', '2013-12-17', '1-2 Miles'], ['15671', '268', 'AW00015671', 'NULL', 'Lawrence', 'NULL', 'Torres', '0', '1974-11-24', 'S', 'NULL', 'M', 'lawrence10@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '869 Welle Road', 'NULL', '1 (11) 500 555-0149', '2013-02-28', '0-1 Miles'], ['15672', '160', 'AW00015672', 'NULL', 'Kelvin', 'E', 'Nara', '0', '1974-07-19', 'S', 'NULL', 'M', 'kelvin13@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Pappelallee 667', 'NULL', '1 (11) 500 555-0173', '2013-12-24', '2-5 Miles'], ['15673', '209', 'AW00015673', 'NULL', 'Jon', 'NULL', 'Goel', '0', '1980-06-04', 'S', 'NULL', 'M', 'jon16@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '71, avenue de la Gare', 'NULL', '1 (11) 500 555-0169', '2013-04-10', '0-1 Miles'], ['15674', '117', 'AW00015674', 'NULL', 'Tommy', 'A', 'Raheem', '0', '1975-01-05', 'S', 'NULL', 'M', 'tommy14@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Zeiter Weg 9963', 'NULL', '1 (11) 500 555-0114', '2012-03-13', '0-1 Miles'], ['15675', '120', 'AW00015675', 'NULL', 'Jay', 'A', 'Alonso', '0', '1975-04-15', 'M', 'NULL', 'M', 'jay37@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Kurfürstenstr 594', 'NULL', '1 (11) 500 555-0144', '2012-03-09', '0-1 Miles'], ['15676', '224', 'AW00015676', 'NULL', 'Todd', 'NULL', 'Wang', '0', '1974-10-05', 'S', 'NULL', 'M', 'todd3@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '28bis, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0132', '2012-08-24', '0-1 Miles'], ['15677', '220', 'AW00015677', 'NULL', 'Alyssa', 'C', 'Bradley', '0', '1975-02-08', 'M', 'NULL', 'F', 'alyssa31@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '116, boulevard d´Albi', 'NULL', '1 (11) 500 555-0127', '2012-09-27', '0-1 Miles'], ['15678', '212', 'AW00015678', 'NULL', 'Susan', 'NULL', 'Zhou', '0', '1980-06-04', 'M', 'NULL', 'F', 'susan18@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '95, rue Ste-Honoré', 'NULL', '1 (11) 500 555-0131', '2012-09-08', '0-1 Miles'], ['15679', '189', 'AW00015679', 'NULL', 'Robert', 'NULL', 'Patterson', '0', '1958-03-10', 'M', 'NULL', 'M', 'robert24@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '35, rue de la Cavalerie', 'NULL', '1 (11) 500 555-0171', '2013-05-11', '0-1 Miles'], ['15680', '171', 'AW00015680', 'NULL', 'Tasha', 'NULL', 'She', '0', '1956-09-05', 'M', 'NULL', 'F', 'tasha0@adventure-works.com', '10000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Wallstr 25', 'NULL', '1 (11) 500 555-0117', '2013-07-05', '0-1 Miles'], ['15681', '262', 'AW00015681', 'NULL', 'Emma', 'P', 'Gonzales', '0', '1960-02-07', 'M', 'NULL', 'F', 'emma63@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6668 Mazatlan', 'NULL', '1 (11) 500 555-0170', '2013-02-01', '10+ Miles'], ['15682', '142', 'AW00015682', 'NULL', 'Heidi', 'R', 'Garcia', '0', '1949-11-18', 'S', 'NULL', 'F', 'heidi17@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', 'Lindenalle 1384', 'NULL', '1 (11) 500 555-0138', '2014-01-11', '10+ Miles'], ['15683', '156', 'AW00015683', 'NULL', 'Jessie', 'NULL', 'Carlson', '0', '1949-12-20', 'S', 'NULL', 'F', 'jessie37@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Nollendorfplatz 518', 'NULL', '1 (11) 500 555-0158', '2013-03-13', '10+ Miles'], ['15684', '168', 'AW00015684', 'NULL', 'Tyrone', 'NULL', 'Suarez', '0', '1955-07-07', 'S', 'NULL', 'M', 'tyrone18@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Kalkweg 123', 'NULL', '1 (11) 500 555-0181', '2012-03-09', '2-5 Miles'], ['15685', '172', 'AW00015685', 'NULL', 'Robin', 'NULL', 'Vazquez', '0', '1949-12-07', 'M', 'NULL', 'F', 'robin11@adventure-works.com', '110000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', 'Winterfeldtstr 5557', 'NULL', '1 (11) 500 555-0179', '2012-03-25', '5-10 Miles'], ['15686', '244', 'AW00015686', 'NULL', 'Pedro', 'A', 'Vazquez', '0', '1949-12-31', 'M', 'NULL', 'M', 'pedro35@adventure-works.com', '130000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '745 Harvey Way', 'NULL', '1 (11) 500 555-0169', '2013-02-26', '0-1 Miles'], ['15687', '211', 'AW00015687', 'NULL', 'Jay', 'NULL', 'Suri', '0', '1950-12-16', 'M', 'NULL', 'M', 'jay6@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '33, allée des Princes', 'NULL', '1 (11) 500 555-0124', '2012-09-14', '10+ Miles'], ['15688', '196', 'AW00015688', 'NULL', 'Chase', 'J', 'Gray', '0', '1950-11-04', 'M', 'NULL', 'M', 'chase6@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '15, rue Philibert-Delorme', 'NULL', '1 (11) 500 555-0124', '2012-09-08', '2-5 Miles'], ['15689', '158', 'AW00015689', 'NULL', 'Stacey', 'NULL', 'Wang', '0', '1950-07-06', 'S', 'NULL', 'F', 'stacey1@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Welt Platz 33', 'NULL', '1 (11) 500 555-0194', '2013-05-04', '10+ Miles'], ['15690', '267', 'AW00015690', 'NULL', 'Clifford', 'R', 'Perez', '0', '1951-12-10', 'S', 'NULL', 'M', 'clifford20@adventure-works.com', '160000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '8361 Flora Ave.', 'NULL', '1 (11) 500 555-0124', '2013-10-21', '0-1 Miles'], ['15691', '273', 'AW00015691', 'NULL', 'Julian', 'J', 'Henderson', '0', '1959-12-15', 'M', 'NULL', 'M', 'julian6@adventure-works.com', '90000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6804 Alovera Road', 'NULL', '1 (11) 500 555-0136', '2011-12-27', '10+ Miles'], ['15692', '262', 'AW00015692', 'NULL', 'Ryan', 'J', 'Garcia', '0', '1959-10-12', 'M', 'NULL', 'M', 'ryan52@adventure-works.com', '90000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5329 Notre Dame Ave', 'NULL', '1 (11) 500 555-0116', '2011-11-30', '2-5 Miles'], ['15693', '127', 'AW00015693', 'NULL', 'Isabel', 'NULL', 'Barnes', '0', '1960-01-16', 'S', 'NULL', 'F', 'isabel3@adventure-works.com', '90000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Haberstr 39', 'NULL', '1 (11) 500 555-0181', '2012-03-28', '10+ Miles'], ['15694', '236', 'AW00015694', 'NULL', 'Stephanie', 'NULL', 'Diaz', '0', '1959-01-18', 'M', 'NULL', 'F', 'stephanie49@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1379 T St.', 'NULL', '1 (11) 500 555-0153', '2013-09-15', '2-5 Miles'], ['15695', '261', 'AW00015695', 'NULL', 'Bruce', 'NULL', 'Gomez', '0', '1959-12-16', 'M', 'NULL', 'M', 'bruce23@adventure-works.com', '150000.00', '3', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '2', '4471 Willcrest Circle', 'NULL', '1 (11) 500 555-0117', '2011-11-29', '0-1 Miles'], ['15696', '222', 'AW00015696', 'NULL', 'Damien', 'A', 'Sun', '0', '1958-12-03', 'M', 'NULL', 'M', 'damien10@adventure-works.com', '100000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '72, place Beaubernard', 'NULL', '1 (11) 500 555-0172', '2013-06-27', '10+ Miles'], ['15697', '121', 'AW00015697', 'NULL', 'Julia', 'NULL', 'Morris', '0', '1959-01-03', 'M', 'NULL', 'F', 'julia48@adventure-works.com', '110000.00', '2', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Essener Straße 8215', 'NULL', '1 (11) 500 555-0114', '2012-03-16', '10+ Miles'], ['15698', '162', 'AW00015698', 'NULL', 'Susan', 'D', 'Wang', '0', '1958-08-31', 'S', 'NULL', 'F', 'susan11@adventure-works.com', '120000.00', '3', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', 'Rykestr 8114', 'NULL', '1 (11) 500 555-0191', '2013-11-11', '10+ Miles'], ['15699', '276', 'AW00015699', 'NULL', 'Jonathon', 'F', 'Hernandez', '0', '1959-03-11', 'M', 'NULL', 'M', 'jonathon0@adventure-works.com', '170000.00', '0', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '7680 Lay Brooke Way', 'NULL', '1 (11) 500 555-0191', '2012-01-05', '0-1 Miles'], ['15700', '193', 'AW00015700', 'NULL', 'Eugene', 'R', 'Guo', '0', '1958-05-19', 'M', 'NULL', 'M', 'eugene22@adventure-works.com', '80000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8139 Clark Creek Lane', 'NULL', '1 (11) 500 555-0155', '2012-09-27', '2-5 Miles'], ['15701', '236', 'AW00015701', 'NULL', 'Jillian', 'R', 'Kapoor', '0', '1958-03-27', 'M', 'NULL', 'F', 'jillian2@adventure-works.com', '130000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '2828 Rogers Ave.', 'NULL', '1 (11) 500 555-0185', '2013-03-29', '10+ Miles'], ['15702', '240', 'AW00015702', 'NULL', 'Ruth', 'NULL', 'Mehta', '0', '1958-02-15', 'M', 'NULL', 'F', 'ruth18@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '7950 H Pine Creek Way', '#3', '1 (11) 500 555-0139', '2012-01-09', '0-1 Miles'], ['15703', '142', 'AW00015703', 'NULL', 'Alison', 'NULL', 'Chande', '0', '1962-05-02', 'M', 'NULL', 'F', 'alison15@adventure-works.com', '80000.00', '5', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Postfach 11 05 00', 'NULL', '1 (11) 500 555-0110', '2013-01-28', '10+ Miles'], ['15704', '134', 'AW00015704', 'NULL', 'Peter', 'E', 'Luo', '0', '1956-09-10', 'S', 'NULL', 'M', 'peter13@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', 'Alderweg 370', 'NULL', '1 (11) 500 555-0167', '2013-08-19', '10+ Miles'], ['15705', '117', 'AW00015705', 'NULL', 'Gabriel', 'NULL', 'Simmons', '0', '1955-09-19', 'M', 'NULL', 'M', 'gabriel12@adventure-works.com', '100000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '4', 'Hunzinger Allee 193', 'NULL', '1 (11) 500 555-0186', '2013-05-20', '10+ Miles'], ['15706', '210', 'AW00015706', 'NULL', 'Tina', 'L', 'Arthur', '0', '1955-05-25', 'M', 'NULL', 'F', 'tina8@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '5710, cours Mirabeau', 'NULL', '1 (11) 500 555-0154', '2013-03-12', '10+ Miles'], ['15707', '121', 'AW00015707', 'NULL', 'Robin', 'NULL', 'Rubio', '0', '1960-09-11', 'M', 'NULL', 'F', 'robin16@adventure-works.com', '120000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', 'Parise Straße 40552', 'NULL', '1 (11) 500 555-0145', '2013-09-12', '10+ Miles'], ['15708', '150', 'AW00015708', 'NULL', 'Nina', 'NULL', 'Jai', '0', '1960-07-17', 'M', 'NULL', 'F', 'nina11@adventure-works.com', '120000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', 'Karl Liebknecht str 577', 'NULL', '1 (11) 500 555-0112', '2013-02-23', '10+ Miles'], ['15709', '215', 'AW00015709', 'NULL', 'Chelsea', 'M', 'Prasad', '0', '1959-08-31', 'M', 'NULL', 'F', 'chelsea10@adventure-works.com', '70000.00', '5', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '24, rue de la Centenaire', 'NULL', '1 (11) 500 555-0197', '2013-03-24', '10+ Miles'], ['15710', '190', 'AW00015710', 'NULL', 'Brandy', 'A', 'Rana', '0', '1953-07-22', 'M', 'NULL', 'F', 'brandy7@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '3', "33, rue de l'Espace De Schengen", 'NULL', '1 (11) 500 555-0137', '2012-09-02', '5-10 Miles'], ['15711', '235', 'AW00015711', 'NULL', 'Jeffery', 'NULL', 'Liang', '0', '1953-12-30', 'M', 'NULL', 'M', 'jeffery16@adventure-works.com', '110000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '6753 Mines Road', 'NULL', '1 (11) 500 555-0193', '2013-05-21', '10+ Miles'], ['15712', '249', 'AW00015712', 'NULL', 'Whitney', 'NULL', 'Chandra', '0', '1954-06-04', 'M', 'NULL', 'F', 'whitney2@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '2237 Buena Vista Ave.', 'NULL', '1 (11) 500 555-0167', '2013-07-11', '0-1 Miles'], ['15713', '267', 'AW00015713', 'NULL', 'Hannah', 'F', 'Lee', '0', '1953-12-07', 'M', 'NULL', 'F', 'hannah20@adventure-works.com', '130000.00', '5', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '9771 Wesley Court', 'NULL', '1 (11) 500 555-0126', '2013-11-08', '10+ Miles'], ['15714', '214', 'AW00015714', 'NULL', 'Bethany', 'W', 'Pal', '0', '1953-03-16', 'S', 'NULL', 'F', 'bethany15@adventure-works.com', '80000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '24, place de Fontenoy', 'NULL', '1 (11) 500 555-0163', '2013-10-09', '10+ Miles'], ['15715', '27', 'AW00015715', 'NULL', 'Isabella', 'NULL', 'Adams', '0', '1980-12-17', 'S', 'NULL', 'F', 'isabella46@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '1933 Rock Creek Pl.', 'NULL', '1 (11) 500 555-0115', '2013-07-29', '10+ Miles'], ['15716', '24', 'AW00015716', 'NULL', 'Roy', 'NULL', 'Madan', '0', '1980-12-17', 'S', 'NULL', 'M', 'roy8@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '1933 Rock Creek Pl.', 'NULL', '1 (11) 500 555-0189', '2012-11-19', '10+ Miles'], ['15717', '18', 'AW00015717', 'NULL', 'Alexia', 'M', 'Henderson', '0', '1981-11-23', 'S', 'NULL', 'F', 'alexia5@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '9556 Nightingale Drive', 'NULL', '1 (11) 500 555-0113', '2012-11-11', '5-10 Miles'], ['15718', '3', 'AW00015718', 'NULL', 'Heather', 'L', 'Lin', '0', '1981-10-13', 'M', 'NULL', 'F', 'heather7@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '4890 Heron Ct', 'NULL', '1 (11) 500 555-0116', '2013-09-16', '10+ Miles'], ['15719', '15', 'AW00015719', 'NULL', 'Lacey', 'A', 'Liang', '0', '1982-01-10', 'M', 'NULL', 'F', 'lacey29@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '3284 Pheasant Court', 'NULL', '1 (11) 500 555-0131', '2012-11-23', '10+ Miles'], ['15720', '7', 'AW00015720', 'NULL', 'Jaime', 'NULL', 'Ramos', '0', '1980-01-23', 'M', 'NULL', 'F', 'jaime19@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '756 Palm Dr', 'NULL', '1 (11) 500 555-0159', '2013-02-10', '10+ Miles'], ['15721', '40', 'AW00015721', 'NULL', 'Cara', 'R', 'Guo', '0', '1985-08-11', 'S', 'NULL', 'F', 'cara13@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '8673 Mt. Wilson Way', 'NULL', '1 (11) 500 555-0174', '2013-06-17', '10+ Miles'], ['15722', '32', 'AW00015722', 'NULL', 'Angela', 'NULL', 'Jenkins', '0', '1980-05-25', 'M', 'NULL', 'F', 'angela9@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '913 Pelican Loop', 'NULL', '1 (11) 500 555-0118', '2012-11-18', '10+ Miles'], ['15723', '11', 'AW00015723', 'NULL', 'Kate', 'L', 'Deng', '0', '1985-03-14', 'M', 'NULL', 'F', 'kate1@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '5802 Ampersand Drive', 'NULL', '1 (11) 500 555-0132', '2012-11-08', '10+ Miles'], ['15724', '21', 'AW00015724', 'NULL', 'Roger', 'L', 'She', '0', '1979-10-30', 'S', 'NULL', 'M', 'roger27@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '6679 Stanbridge Ct.', 'NULL', '1 (11) 500 555-0187', '2012-11-04', '10+ Miles'], ['15725', '19', 'AW00015725', 'NULL', 'Trevor', 'M', 'Price', '0', '1979-01-15', 'M', 'NULL', 'M', 'trevor0@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '1065 Coachman Pl.', 'NULL', '1 (11) 500 555-0133', '2012-11-21', '10+ Miles'], ['15726', '25', 'AW00015726', 'NULL', 'Faith', 'F', 'Barnes', '0', '1978-08-27', 'M', 'NULL', 'F', 'faith3@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '6176 Crow Street', 'NULL', '1 (11) 500 555-0195', '2012-11-07', '10+ Miles'], ['15727', '8', 'AW00015727', 'NULL', 'Alisha', 'A', 'Zeng', '0', '1977-10-31', 'M', 'NULL', 'F', 'alisha23@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '6173 Alier Drive', 'NULL', '1 (11) 500 555-0143', '2013-05-09', '10+ Miles'], ['15728', '33', 'AW00015728', 'NULL', 'Keith', 'NULL', 'Sharma', '0', '1979-01-31', 'M', 'NULL', 'M', 'keith12@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '3', '4214 Northwood Dr.', 'NULL', '1 (11) 500 555-0199', '2013-03-08', '10+ Miles'], ['15729', '32', 'AW00015729', 'NULL', 'Mayra', 'M', 'Suri', '0', '1983-09-21', 'M', 'NULL', 'F', 'mayra0@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '7015 F Mt Hood Circle', 'NULL', '1 (11) 500 555-0114', '2012-12-27', '10+ Miles'], ['15730', '2', 'AW00015730', 'NULL', 'Philip', 'NULL', 'Dominguez', '0', '1977-08-18', 'M', 'NULL', 'M', 'philip13@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '2743 Veale Ave', 'NULL', '1 (11) 500 555-0117', '2013-08-19', '10+ Miles'], ['15731', '19', 'AW00015731', 'NULL', 'Corey', 'R', 'Chavez', '0', '1976-09-16', 'S', 'NULL', 'M', 'corey13@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '8287 Altura Dr.', 'NULL', '1 (11) 500 555-0157', '2013-03-26', '10+ Miles'], ['15732', '17', 'AW00015732', 'NULL', 'Sandra', 'V', 'Zhu', '0', '1983-05-25', 'M', 'NULL', 'F', 'sandra21@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '7001 Lanitos Ct', 'NULL', '1 (11) 500 555-0110', '2012-12-12', '10+ Miles'], ['15733', '26', 'AW00015733', 'NULL', 'Leslie', 'NULL', 'Ramos', '0', '1977-09-22', 'M', 'NULL', 'F', 'leslie18@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '6644 Camino Norte', 'NULL', '1 (11) 500 555-0118', '2012-12-08', '10+ Miles'], ['15734', '19', 'AW00015734', 'NULL', 'Alicia', 'NULL', 'Lal', '0', '1976-01-08', 'M', 'NULL', 'F', 'alicia6@adventure-works.com', '100000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '2419 Martindale Dr.', 'NULL', '1 (11) 500 555-0161', '2012-12-25', '10+ Miles'], ['15735', '3', 'AW00015735', 'NULL', 'Lori', 'A', 'Blanco', '0', '1975-10-30', 'M', 'NULL', 'F', 'lori16@adventure-works.com', '100000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '6966 Eaker Way', 'NULL', '1 (11) 500 555-0118', '2013-06-21', '10+ Miles'], ['15736', '300', 'AW00015736', 'NULL', 'Sheena', 'NULL', 'Raje', '0', '1946-12-11', 'M', 'NULL', 'F', 'sheena12@adventure-works.com', '110000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5707 Monte Vista Road', 'A211', '161-555-0149', '2013-11-07', '5-10 Miles'], ['15737', '626', 'AW00015737', 'NULL', 'Alexander', 'J', 'Robinson', '0', '1946-10-02', 'S', 'NULL', 'M', 'alexander22@adventure-works.com', '120000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '4273 Alum Rock Drive', 'NULL', '533-555-0141', '2012-09-02', '5-10 Miles'], ['15738', '374', 'AW00015738', 'NULL', 'Abigail', 'NULL', 'Miller', '0', '1947-01-20', 'M', 'NULL', 'F', 'abigail51@adventure-works.com', '120000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '5919 Zartop Street', 'NULL', '698-555-0175', '2013-12-16', '2-5 Miles'], ['15739', '369', 'AW00015739', 'NULL', 'Garrett', 'NULL', 'Rogers', '0', '1948-06-14', 'M', 'NULL', 'M', 'garrett24@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5707 Bellwood Court', 'NULL', '265-555-0154', '2012-08-28', '10+ Miles'], ['15740', '536', 'AW00015740', 'NULL', 'Johnny', 'G', 'Kumar', '0', '1947-10-09', 'M', 'NULL', 'M', 'johnny8@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7091 Clemson Court', 'NULL', '132-555-0146', '2013-09-18', '1-2 Miles'], ['15741', '385', 'AW00015741', 'NULL', 'Isabella', 'NULL', 'Allen', '0', '1948-04-09', 'M', 'NULL', 'F', 'isabella55@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3189 La Salle St.', 'NULL', '571-555-0140', '2013-10-20', '5-10 Miles'], ['15742', '352', 'AW00015742', 'NULL', 'Grace', 'A', 'Thompson', '0', '1948-05-06', 'M', 'NULL', 'F', 'grace15@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5835 Olivera Rd.', 'NULL', '445-555-0177', '2013-02-16', '5-10 Miles'], ['15743', '623', 'AW00015743', 'NULL', 'Chloe', 'M', 'Thompson', '0', '1953-02-14', 'M', 'NULL', 'F', 'chloe26@adventure-works.com', '120000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '3748 Moss Hollow Court', 'NULL', '524-555-0119', '2013-11-24', '5-10 Miles'], ['15744', '614', 'AW00015744', 'NULL', 'Angela', 'T', 'Gray', '0', '1947-09-19', 'M', 'NULL', 'F', 'angela32@adventure-works.com', '120000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '898 Park Blvd.', 'NULL', '116-555-0178', '2013-08-16', '5-10 Miles'], ['15745', '609', 'AW00015745', 'NULL', 'Julian', 'NULL', 'Hayes', '0', '1948-02-12', 'M', 'NULL', 'M', 'julian22@adventure-works.com', '120000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '8426 Easley Dr.', 'NULL', '963-555-0130', '2013-08-30', '5-10 Miles'], ['15746', '626', 'AW00015746', 'NULL', 'Emily', 'L', 'Walker', '0', '1949-05-31', 'M', 'NULL', 'F', 'emily23@adventure-works.com', '120000.00', '2', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '1604 Crown Court', 'NULL', '460-555-0156', '2013-12-03', '5-10 Miles'], ['15747', '307', 'AW00015747', 'NULL', 'Evan', 'NULL', 'Nelson', '0', '1949-08-24', 'M', 'NULL', 'M', 'evan34@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2030 Lighthouse Way', 'NULL', '627-555-0185', '2013-09-05', '10+ Miles'], ['15748', '54', 'AW00015748', 'NULL', 'Austin', 'D', 'Jenkins', '0', '1949-12-07', 'M', 'NULL', 'M', 'austin2@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3603 Stinson', 'NULL', '280-555-0155', '2013-05-29', '1-2 Miles'], ['15749', '611', 'AW00015749', 'NULL', 'Grace', 'NULL', 'Brown', '0', '1950-04-24', 'S', 'NULL', 'F', 'grace3@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2325 Mountaire Drive', 'NULL', '627-555-0172', '2014-01-17', '10+ Miles'], ['15750', '298', 'AW00015750', 'NULL', 'Kaitlin', 'NULL', 'Martinez', '0', '1984-10-16', 'M', 'NULL', 'F', 'kaitlin16@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '3302 Trujillo', '# 112', '591-555-0116', '2012-09-08', '0-1 Miles'], ['15751', '32', 'AW00015751', 'NULL', 'Kristen', 'NULL', 'Xu', '0', '1966-02-21', 'S', 'NULL', 'F', 'kristen11@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '935 Vista Oak Dr', 'NULL', '1 (11) 500 555-0110', '2012-12-21', '5-10 Miles'], ['15752', '10', 'AW00015752', 'NULL', 'Bobby', 'NULL', 'Rodriguez', '0', '1961-03-31', 'M', 'NULL', 'M', 'bobby11@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '592 Woodcrest Drive', 'NULL', '1 (11) 500 555-0117', '2012-12-08', '1-2 Miles'], ['15753', '27', 'AW00015753', 'NULL', 'Margaret', 'NULL', 'Li', '0', '1962-06-21', 'S', 'NULL', 'F', 'margaret10@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '997 Grasswood Ct.', 'NULL', '1 (11) 500 555-0129', '2012-12-09', '5-10 Miles'], ['15754', '11', 'AW00015754', 'NULL', 'Crystal', 'E', 'Xu', '0', '1961-12-21', 'S', 'NULL', 'F', 'crystal13@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8036 Summit View Dr.', 'NULL', '1 (11) 500 555-0127', '2012-12-04', '5-10 Miles'], ['15755', '39', 'AW00015755', 'NULL', 'Connor', 'NULL', 'Flores', '0', '1967-01-22', 'M', 'NULL', 'M', 'connor7@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9297 Mauna Kea Court', 'NULL', '1 (11) 500 555-0145', '2012-12-24', '1-2 Miles'], ['15756', '28', 'AW00015756', 'NULL', 'Kari', 'NULL', 'Gutierrez', '0', '1974-01-01', 'S', 'NULL', 'F', 'kari31@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8507 Mt. Palomar Pl.', 'NULL', '1 (11) 500 555-0115', '2012-12-25', '5-10 Miles'], ['15757', '28', 'AW00015757', 'NULL', 'Edwin', 'J', 'Ferrier', '0', '1963-01-07', 'S', 'NULL', 'M', 'edwin45@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '7594 Alexander Pl.', 'NULL', '1 (11) 500 555-0158', '2012-12-24', '5-10 Miles'], ['15758', '38', 'AW00015758', 'NULL', 'Arturo', 'NULL', 'Andersen', '0', '1969-05-22', 'M', 'NULL', 'M', 'arturo38@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '6745 Blue Ridge Drive', 'NULL', '1 (11) 500 555-0158', '2014-01-05', '5-10 Miles'], ['15759', '536', 'AW00015759', 'NULL', 'Erin', 'L', 'Brooks', '0', '1979-05-07', 'M', 'NULL', 'F', 'erin5@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '7253 Mt. Alpine Pl', 'NULL', '211-555-0184', '2013-03-21', '0-1 Miles'], ['15760', '54', 'AW00015760', 'NULL', 'Richard', 'D', 'James', '0', '1979-11-01', 'M', 'NULL', 'M', 'richard79@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2732 Frisbie Ct.', 'NULL', '625-555-0113', '2013-03-23', '5-10 Miles'], ['15761', '57', 'AW00015761', 'NULL', 'Xavier', 'R', 'Thompson', '0', '1980-04-16', 'S', 'NULL', 'M', 'xavier13@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2617 Melody Drive', 'NULL', '936-555-0113', '2013-10-03', '5-10 Miles'], ['15762', '59', 'AW00015762', 'NULL', 'Garrett', 'O', 'Stewart', '0', '1979-11-05', 'S', 'NULL', 'M', 'garrett27@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '5870 Louisiana Dr.', 'NULL', '238-555-0177', '2013-06-25', '1-2 Miles'], ['15763', '644', 'AW00015763', 'NULL', 'Xavier', 'F', 'Young', '0', '1980-01-22', 'M', 'NULL', 'M', 'xavier23@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2575 Garcia', 'NULL', '713-555-0147', '2012-09-08', '5-10 Miles'], ['15764', '40', 'AW00015764', 'NULL', 'Louis', 'D', 'Guo', '0', '1964-12-12', 'S', 'NULL', 'M', 'louis12@adventure-works.com', '120000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '4209 San Carlos Ave.', 'NULL', '1 (11) 500 555-0129', '2012-12-07', '0-1 Miles'], ['15765', '32', 'AW00015765', 'NULL', 'Gilbert', 'C', 'Deng', '0', '1965-04-16', 'M', 'NULL', 'M', 'gilbert22@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '8249 La Jolla', 'NULL', '1 (11) 500 555-0176', '2012-12-22', '0-1 Miles'], ['15766', '36', 'AW00015766', 'NULL', 'Priscilla', 'NULL', 'Black', '0', '1965-02-12', 'S', 'NULL', 'F', 'priscilla19@adventure-works.com', '160000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '2335 Peabody Road', 'NULL', '1 (11) 500 555-0113', '2013-01-29', '0-1 Miles'], ['15767', '37', 'AW00015767', 'NULL', 'George', 'C', 'Prasad', '0', '1970-05-20', 'S', 'NULL', 'M', 'george15@adventure-works.com', '160000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '2409 Harbor View Dr.', 'NULL', '1 (11) 500 555-0163', '2012-12-21', '0-1 Miles'], ['15768', '334', 'AW00015768', 'NULL', 'Victoria', 'E', 'Walker', '0', '1972-05-25', 'M', 'NULL', 'F', 'victoria22@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '5961 Crowe Pl.', 'NULL', '465-555-0152', '2012-10-05', '0-1 Miles'], ['15769', '335', 'AW00015769', 'NULL', 'Kelly', 'NULL', 'Coleman', '0', '1971-11-06', 'M', 'NULL', 'F', 'kelly10@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '1306 Cashew Ln', 'NULL', '209-555-0129', '2012-10-05', '0-1 Miles'], ['15770', '372', 'AW00015770', 'NULL', 'Xavier', 'H', 'Brooks', '0', '1983-04-06', 'S', 'NULL', 'M', 'xavier67@adventure-works.com', '150000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '5900 Pinehurst Court', 'NULL', '339-555-0199', '2012-10-12', '0-1 Miles'], ['15771', '543', 'AW00015771', 'NULL', 'Maria', 'A', 'Diaz', '0', '1963-07-23', 'M', 'NULL', 'F', 'maria43@adventure-works.com', '130000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '2613 West I St.', 'NULL', '400-555-0178', '2012-10-23', '1-2 Miles'], ['15772', '361', 'AW00015772', 'NULL', 'Christopher', 'NULL', 'Anderson', '0', '1968-03-09', 'M', 'NULL', 'M', 'christopher10@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2216 Blue Ridge Dr.', 'NULL', '993-555-0186', '2013-07-19', '1-2 Miles'], ['15773', '336', 'AW00015773', 'NULL', 'Dylan', 'L', 'Jenkins', '0', '1963-04-02', 'M', 'NULL', 'M', 'dylan5@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3791 Rossmor Parkway', 'NULL', '369-555-0114', '2013-07-27', '1-2 Miles'], ['15774', '634', 'AW00015774', 'NULL', 'Natalie', 'NULL', 'Kelly', '0', '1968-02-24', 'M', 'NULL', 'F', 'natalie23@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '6501 West Way', 'NULL', '196-555-0196', '2013-04-08', '5-10 Miles'], ['15775', '609', 'AW00015775', 'NULL', 'Michelle', 'W', 'Ward', '0', '1979-12-13', 'M', 'NULL', 'F', 'michelle13@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '8463 Monument Blvd.', 'NULL', '328-555-0144', '2013-08-17', '1-2 Miles'], ['15776', '345', 'AW00015776', 'NULL', 'Jesse', 'C', 'Mitchell', '0', '1979-09-06', 'M', 'NULL', 'M', 'jesse36@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '6469 Apple Drive', 'NULL', '276-555-0112', '2013-05-26', '5-10 Miles'], ['15777', '637', 'AW00015777', 'NULL', 'Brianna', 'D', 'Smith', '0', '1968-01-18', 'M', 'NULL', 'F', 'brianna0@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '4762 Heights Avenue', 'NULL', '959-555-0110', '2013-04-20', '1-2 Miles'], ['15778', '616', 'AW00015778', 'NULL', 'José', 'S', 'Miller', '0', '1962-11-07', 'S', 'NULL', 'M', 'josé64@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '1946 Bayside Way', 'NULL', '528-555-0143', '2012-10-21', '5-10 Miles'], ['15779', '611', 'AW00015779', 'NULL', 'Jackson', 'NULL', 'Hayes', '0', '1973-08-14', 'M', 'NULL', 'M', 'jackson24@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '7783 Limewood Pl', 'NULL', '214-555-0114', '2013-05-21', '5-10 Miles'], ['15780', '301', 'AW00015780', 'NULL', 'Claudia', 'E', 'McDonald', '0', '1968-05-10', 'M', 'NULL', 'F', 'claudia3@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '6457 Appalachian Dr.', 'NULL', '371-555-0169', '2012-10-10', '5-10 Miles'], ['15781', '360', 'AW00015781', 'NULL', 'Blake', 'E', 'Evans', '0', '1962-09-30', 'M', 'NULL', 'M', 'blake45@adventure-works.com', '80000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '3237 Meager Dr', 'NULL', '142-555-0191', '2012-10-17', '2-5 Miles'], ['15782', '648', 'AW00015782', 'NULL', 'Katelyn', 'D', 'Collins', '0', '1968-11-19', 'M', 'NULL', 'F', 'katelyn24@adventure-works.com', '90000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '3727 Winter Lane', 'NULL', '485-555-0120', '2013-12-15', '5-10 Miles'], ['15783', '31', 'AW00015783', 'NULL', 'David', 'NULL', 'Alexander', '0', '1973-01-07', 'M', 'NULL', 'M', 'david52@adventure-works.com', '90000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '7334 Sterling Hill', 'Unit G12', '1 (11) 500 555-0116', '2013-07-10', '0-1 Miles'], ['15784', '26', 'AW00015784', 'NULL', 'Rebekah', 'A', 'Vazquez', '0', '1973-03-03', 'M', 'NULL', 'F', 'rebekah34@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', 'Conesweg 168', 'NULL', '1 (11) 500 555-0136', '2012-12-14', '1-2 Miles'], ['15785', '36', 'AW00015785', 'NULL', 'Edwin', 'NULL', 'Zhang', '0', '1967-10-24', 'S', 'NULL', 'M', 'edwin0@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5993 Baywood Drive', 'NULL', '1 (11) 500 555-0118', '2012-11-29', '5-10 Miles'], ['15786', '34', 'AW00015786', 'NULL', 'Marshall', 'V', 'Andersen', '0', '1968-05-02', 'M', 'NULL', 'M', 'marshall33@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9281 Brushcreek Dr', 'NULL', '1 (11) 500 555-0162', '2012-12-27', '5-10 Miles'], ['15787', '17', 'AW00015787', 'NULL', 'Cynthia', 'NULL', 'Gonzalez', '0', '1966-11-18', 'S', 'NULL', 'F', 'cynthia24@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5757 St. Catherines Court', 'NULL', '1 (11) 500 555-0114', '2013-04-26', '5-10 Miles'], ['15788', '35', 'AW00015788', 'NULL', 'Barbara', 'NULL', 'Li', '0', '1971-09-15', 'S', 'NULL', 'F', 'barbara13@adventure-works.com', '100000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4334 Contra Costa Blvd.', 'NULL', '1 (11) 500 555-0145', '2012-12-17', '2-5 Miles'], ['15789', '26', 'AW00015789', 'Mr.', 'Steve', 'NULL', 'Schmidt', '0', '1972-02-12', 'S', 'NULL', 'F', 'steve3@adventure-works.com', '110000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '6126 North Sixth Street', 'NULL', '988-555-0100', '2012-12-01', '0-1 Miles'], ['15790', '31', 'AW00015790', 'NULL', 'Colin', 'NULL', 'Xu', '0', '1965-12-13', 'S', 'NULL', 'M', 'colin13@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5133 Serrana Ct.', 'NULL', '1 (11) 500 555-0179', '2012-12-12', '5-10 Miles'], ['15791', '18', 'AW00015791', 'NULL', 'Megan', 'J', 'Long', '0', '1966-03-20', 'M', 'NULL', 'F', 'megan59@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6696 Adria Drive', 'NULL', '1 (11) 500 555-0130', '2013-03-11', '5-10 Miles'], ['15792', '30', 'AW00015792', 'NULL', 'Ernest', 'P', 'Zhou', '0', '1976-08-05', 'M', 'NULL', 'M', 'ernest8@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8532 Monterey Ave', 'NULL', '1 (11) 500 555-0142', '2012-12-03', '0-1 Miles'], ['15793', '2', 'AW00015793', 'NULL', 'Renee', 'NULL', 'Navarro', '0', '1976-04-08', 'S', 'NULL', 'F', 'renee9@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6512 Buena Vista Ave.', 'NULL', '1 (11) 500 555-0159', '2012-12-17', '0-1 Miles'], ['15794', '26', 'AW00015794', 'NULL', 'Tonya', 'NULL', 'Chander', '0', '1981-12-15', 'M', 'NULL', 'F', 'tonya15@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '98 Ruby Lane', 'NULL', '1 (11) 500 555-0147', '2013-03-23', '0-1 Miles'], ['15795', '16', 'AW00015795', 'NULL', 'Diane', 'R', 'Munoz', '0', '1970-07-16', 'M', 'NULL', 'F', 'diane12@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '7728 Condor Place', 'NULL', '1 (11) 500 555-0139', '2013-04-13', '0-1 Miles'], ['15796', '39', 'AW00015796', 'NULL', 'Edward', 'NULL', 'Hayes', '0', '1970-11-08', 'M', 'NULL', 'M', 'edward71@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '9155 Wee Donegal', 'NULL', '1 (11) 500 555-0119', '2013-12-24', '1-2 Miles'], ['15797', '19', 'AW00015797', 'NULL', 'Isaac', 'NULL', 'Cox', '0', '1970-09-25', 'M', 'NULL', 'M', 'isaac10@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '5252 Grand View Ave.', 'NULL', '1 (11) 500 555-0134', '2012-11-29', '1-2 Miles'], ['15798', '33', 'AW00015798', 'NULL', 'Anne', 'NULL', 'Munoz', '0', '1970-03-19', 'S', 'NULL', 'F', 'anne8@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7927 Saclan Terr.', 'NULL', '1 (11) 500 555-0177', '2013-04-12', '5-10 Miles'], ['15799', '32', 'AW00015799', 'NULL', 'Victoria', 'NULL', 'Anderson', '0', '1964-07-11', 'M', 'NULL', 'F', 'victoria11@adventure-works.com', '90000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '408 Lislin Ct.', 'NULL', '1 (11) 500 555-0136', '2012-12-12', '2-5 Miles'], ['15800', '5', 'AW00015800', 'NULL', 'Alberto', 'L', 'Serrano', '0', '1970-12-07', 'S', 'NULL', 'M', 'alberto16@adventure-works.com', '90000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7932 Pierce Ct.', 'NULL', '1 (11) 500 555-0112', '2012-11-29', '2-5 Miles'], ['15801', '22', 'AW00015801', 'NULL', 'Katrina', 'NULL', 'Shen', '0', '1969-05-12', 'S', 'NULL', 'F', 'katrina1@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '398 Pecan Pl', 'NULL', '1 (11) 500 555-0113', '2012-12-26', '5-10 Miles'], ['15802', '14', 'AW00015802', 'NULL', 'Bridget', 'NULL', 'Kumar', '0', '1979-10-18', 'S', 'NULL', 'F', 'bridget9@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '5854 Baird Court', '# 212', '1 (11) 500 555-0111', '2012-12-24', '0-1 Miles'], ['15803', '35', 'AW00015803', 'NULL', 'Bradley', 'NULL', 'Goel', '0', '1968-04-16', 'M', 'NULL', 'M', 'bradley21@adventure-works.com', '70000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '6471 Harvey Way', 'NULL', '1 (11) 500 555-0142', '2013-07-28', '0-1 Miles'], ['15804', '10', 'AW00015804', 'NULL', 'Brittney', 'M', 'Liu', '0', '1968-02-17', 'M', 'NULL', 'F', 'brittney3@adventure-works.com', '70000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '2520 Almond Street', 'NULL', '1 (11) 500 555-0162', '2013-12-12', '5-10 Miles'], ['15805', '16', 'AW00015805', 'NULL', 'Dawn', 'N', 'Lin', '0', '1967-08-30', 'M', 'NULL', 'F', 'dawn9@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1699 Meadowbrook Court', 'NULL', '1 (11) 500 555-0112', '2013-12-09', '5-10 Miles'], ['15806', '19', 'AW00015806', 'NULL', 'Devin', 'NULL', 'Allen', '0', '1973-01-02', 'M', 'NULL', 'M', 'devin22@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7026 Trail Way', 'NULL', '1 (11) 500 555-0170', '2013-02-26', '0-1 Miles'], ['15807', '8', 'AW00015807', 'Mr.', 'Scot', 'NULL', 'Schulte', '0', '1972-10-29', 'S', 'NULL', 'M', 'scot1@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '5473 Olive Hill', 'NULL', '910-555-0100', '2013-03-31', '10+ Miles'], ['15808', '40', 'AW00015808', 'NULL', 'Natasha', 'NULL', 'Blanco', '0', '1966-07-19', 'M', 'NULL', 'F', 'natasha15@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '581 Roanoke Dr.', 'NULL', '1 (11) 500 555-0162', '2012-12-03', '10+ Miles'], ['15809', '13', 'AW00015809', 'NULL', 'Christian', 'NULL', 'Sharma', '0', '1966-03-15', 'M', 'NULL', 'M', 'christian16@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6086 Glen Wood Drive', 'NULL', '1 (11) 500 555-0159', '2013-02-22', '10+ Miles'], ['15810', '37', 'AW00015810', 'NULL', 'Regina', 'NULL', 'Kapoor', '0', '1971-09-03', 'M', 'NULL', 'F', 'regina1@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '1954 Sudden Loop', 'NULL', '1 (11) 500 555-0139', '2013-04-07', '5-10 Miles'], ['15811', '15', 'AW00015811', 'Ms.', 'Barbara', 'R.', 'Schultz', '0', '1971-05-02', 'M', 'NULL', 'M', 'barbara7@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6321 Laguna Street', 'NULL', '558-555-0100', '2013-04-06', '5-10 Miles'], ['15812', '23', 'AW00015812', 'NULL', 'Logan', 'NULL', 'Allen', '0', '1964-10-07', 'M', 'NULL', 'M', 'logan48@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5634 Haviland Place', 'NULL', '1 (11) 500 555-0192', '2013-05-20', '0-1 Miles'], ['15813', '355', 'AW00015813', 'NULL', 'Julian', 'NULL', 'Diaz', '0', '1982-01-30', 'S', 'NULL', 'M', 'julian21@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3767 View Dr.', 'NULL', '358-555-0115', '2013-09-12', '5-10 Miles'], ['15814', '302', 'AW00015814', 'NULL', 'Monica', 'J', 'Subram', '0', '1981-10-14', 'S', 'NULL', 'F', 'monica13@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2098 Chilpancingo Pkwy.', 'NULL', '230-555-0113', '2013-10-10', '5-10 Miles'], ['15815', '51', 'AW00015815', 'NULL', 'Nicole', 'N', 'Price', '0', '1980-07-24', 'S', 'NULL', 'F', 'nicole48@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4946 Abbey Court', 'NULL', '813-555-0150', '2013-04-19', '5-10 Miles'], ['15816', '50', 'AW00015816', 'NULL', 'Victoria', 'NULL', 'Miller', '0', '1981-11-17', 'M', 'NULL', 'F', 'victoria7@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1516 Court Lane', 'NULL', '195-555-0131', '2013-02-21', '5-10 Miles'], ['15817', '536', 'AW00015817', 'NULL', 'Chloe', 'NULL', 'Alexander', '0', '1982-01-05', 'S', 'NULL', 'F', 'chloe84@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9543 West I St.', 'NULL', '257-555-0128', '2013-05-13', '0-1 Miles'], ['15818', '609', 'AW00015818', 'NULL', 'Stanley', 'NULL', 'Perez', '0', '1982-01-16', 'M', 'NULL', 'M', 'stanley23@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2279 Pineview Lane', 'NULL', '737-555-0171', '2013-12-15', '5-10 Miles'], ['15819', '633', 'AW00015819', 'NULL', 'Savannah', 'A', 'Cox', '0', '1986-03-15', 'S', 'NULL', 'F', 'savannah9@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8286 All Ways Drive', 'NULL', '844-555-0119', '2013-09-10', '5-10 Miles'], ['15820', '618', 'AW00015820', 'NULL', 'Chase', 'T', 'Ward', '0', '1986-04-01', 'M', 'NULL', 'M', 'chase12@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7179 Golden Rain', 'NULL', '936-555-0114', '2013-02-02', '5-10 Miles'], ['15821', '383', 'AW00015821', 'NULL', 'Logan', 'C', 'Anderson', '0', '1986-06-25', 'S', 'NULL', 'M', 'logan61@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3938 Baywood Drive', 'NULL', '147-555-0142', '2013-02-03', '0-1 Miles'], ['15822', '29', 'AW00015822', 'NULL', 'Damien', 'M', 'Zhu', '0', '1944-04-17', 'M', 'NULL', 'M', 'damien11@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8208 Vista Ave.', 'NULL', '1 (11) 500 555-0188', '2013-06-22', '0-1 Miles'], ['15823', '32', 'AW00015823', 'NULL', 'Sharon', 'M', 'Tang', '0', '1944-03-23', 'S', 'NULL', 'F', 'sharon10@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '2107 Amending Road', 'NULL', '1 (11) 500 555-0114', '2013-05-15', '5-10 Miles'], ['15824', '310', 'AW00015824', 'NULL', 'Lindsay', 'L', 'Kumar', '0', '1982-11-30', 'S', 'NULL', 'F', 'lindsay7@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '50 Relief Valley Ct', 'NULL', '577-555-0118', '2013-03-16', '5-10 Miles'], ['15825', '637', 'AW00015825', 'NULL', 'Angela', 'W', 'Simmons', '0', '1981-12-02', 'S', 'NULL', 'F', 'angela18@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5572 Running Springs Road', 'NULL', '787-555-0188', '2014-01-14', '5-10 Miles'], ['15826', '53', 'AW00015826', 'NULL', 'Marissa', 'NULL', 'Price', '0', '1984-07-08', 'S', 'NULL', 'F', 'marissa19@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2374 Flamingo Drive', 'NULL', '277-555-0144', '2013-02-16', '5-10 Miles'], ['15827', '614', 'AW00015827', 'NULL', 'Danielle', 'NULL', 'Ward', '0', '1984-11-03', 'S', 'NULL', 'F', 'danielle14@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1201 Ricardo Drive', 'NULL', '444-555-0142', '2012-10-19', '0-1 Miles'], ['15828', '29', 'AW00015828', 'NULL', 'Robyn', 'O', 'Ramos', '0', '1945-05-20', 'M', 'NULL', 'F', 'robyn13@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5979 El Pueblo', 'NULL', '1 (11) 500 555-0123', '2013-05-02', '5-10 Miles'], ['15829', '35', 'AW00015829', 'NULL', 'Devin', 'D', 'Diaz', '0', '1944-11-13', 'S', 'NULL', 'M', 'devin59@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8802 Lee Lane', 'NULL', '1 (11) 500 555-0133', '2013-05-03', '5-10 Miles'], ['15830', '8', 'AW00015830', 'NULL', 'Naomi', 'NULL', 'Alonso', '0', '1945-08-13', 'M', 'NULL', 'F', 'naomi8@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9944 Maywood Lane', 'NULL', '1 (11) 500 555-0167', '2012-12-20', '0-1 Miles'], ['15831', '12', 'AW00015831', 'NULL', 'Omar', 'NULL', 'He', '0', '1945-08-13', 'M', 'NULL', 'M', 'omar17@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1305 Willbrook Court', 'NULL', '1 (11) 500 555-0110', '2012-12-05', '5-10 Miles'], ['15832', '28', 'AW00015832', 'NULL', 'Manuel', 'J', 'Martinez', '0', '1946-10-02', 'S', 'NULL', 'M', 'manuel16@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4273 Alum Rock Drive', 'NULL', '1 (11) 500 555-0181', '2012-12-24', '5-10 Miles'], ['15833', '38', 'AW00015833', 'NULL', 'Tabitha', 'NULL', 'Kovar', '0', '1948-09-20', 'S', 'NULL', 'F', 'tabitha3@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '5476 Weber Bryan', 'NULL', '1 (11) 500 555-0118', '2012-12-10', '5-10 Miles'], ['15834', '644', 'AW00015834', 'NULL', 'Rebecca', 'NULL', 'Green', '0', '1981-09-22', 'S', 'NULL', 'F', 'rebecca16@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '224 Terrace Drive', 'NULL', '463-555-0138', '2012-10-14', '1-2 Miles'], ['15835', '315', 'AW00015835', 'NULL', 'Marcus', 'R', 'Smith', '0', '1981-10-25', 'S', 'NULL', 'M', 'marcus0@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '350 Pastel Drive', 'NULL', '632-555-0199', '2013-12-06', '5-10 Miles'], ['15836', '343', 'AW00015836', 'NULL', 'Devin', 'L', 'Jackson', '0', '1981-10-13', 'S', 'NULL', 'M', 'devin10@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4890 Heron Ct', 'NULL', '234-555-0119', '2013-10-14', '5-10 Miles'], ['15837', '611', 'AW00015837', 'NULL', 'Julia', 'NULL', 'Johnston', '0', '1981-04-19', 'S', 'NULL', 'F', 'julia23@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1906 Seaview Avenue', 'NULL', '921-555-0148', '2013-07-15', '5-10 Miles'], ['15838', '322', 'AW00015838', 'NULL', 'Julia', 'G', 'Taylor', '0', '1985-02-13', 'S', 'NULL', 'F', 'julia31@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '8396 Ruth Drive', 'NULL', '177-555-0197', '2013-04-29', '5-10 Miles'], ['15839', '369', 'AW00015839', 'NULL', 'William', 'A', 'Taylor', '0', '1979-11-18', 'S', 'NULL', 'M', 'william24@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9994 Meadowbrook Dr.', 'NULL', '735-555-0119', '2013-05-06', '5-10 Miles'], ['15840', '552', 'AW00015840', 'NULL', 'Natalie', 'M', 'Peterson', '0', '1977-08-25', 'M', 'NULL', 'F', 'natalie17@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8245 Heartwood Drive', 'NULL', '741-555-0123', '2012-10-04', '5-10 Miles'], ['15841', '338', 'AW00015841', 'NULL', 'Luis', 'NULL', 'Shan', '0', '1983-05-11', 'S', 'NULL', 'M', 'luis31@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '3993 Jabber Place', 'NULL', '716-555-0173', '2012-10-12', '1-2 Miles'], ['15842', '641', 'AW00015842', 'NULL', 'Haley', 'NULL', 'Gray', '0', '1983-01-09', 'M', 'NULL', 'F', 'haley15@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '6885 Amending Drive', 'NULL', '676-555-0155', '2012-10-14', '1-2 Miles'], ['15843', '648', 'AW00015843', 'NULL', 'Caleb', 'NULL', 'Wright', '0', '1974-05-02', 'S', 'NULL', 'M', 'caleb48@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '7624 Crawford', 'NULL', '649-555-0138', '2012-10-18', '0-1 Miles'], ['15844', '326', 'AW00015844', 'NULL', 'Megan', 'S', 'Brown', '0', '1974-06-24', 'M', 'NULL', 'F', 'megan7@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '5720 A St.', 'NULL', '194-555-0184', '2012-10-21', '1-2 Miles'], ['15845', '545', 'AW00015845', 'NULL', 'Mackenzie', 'M', 'Carter', '0', '1974-06-17', 'M', 'NULL', 'F', 'mackenzie32@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '486 Pacifica Avenue', 'NULL', '195-555-0145', '2012-10-22', '0-1 Miles'], ['15846', '53', 'AW00015846', 'NULL', 'Julian', 'NULL', 'Flores', '0', '1979-09-06', 'S', 'NULL', 'M', 'julian14@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '4194 Baywood Drive', 'NULL', '494-555-0138', '2013-07-11', '1-2 Miles'], ['15847', '70', 'AW00015847', 'NULL', 'Edward', 'J', 'White', '0', '1979-05-10', 'M', 'NULL', 'M', 'edward35@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '7393 N Ranchford Court', 'NULL', '521-555-0160', '2013-05-14', '1-2 Miles'], ['15848', '547', 'AW00015848', 'NULL', 'Gabrielle', 'A', 'Hernandez', '0', '1979-08-24', 'M', 'NULL', 'F', 'gabrielle60@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '3340 Clifford Court', 'NULL', '536-555-0121', '2013-12-27', '0-1 Miles'], ['15849', '641', 'AW00015849', 'NULL', 'Destiny', 'C', 'Kelly', '0', '1972-08-29', 'S', 'NULL', 'F', 'destiny46@adventure-works.com', '110000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '9061 Isabel', 'NULL', '849-555-0126', '2013-06-13', '5-10 Miles'], ['15850', '69', 'AW00015850', 'NULL', 'Rachel', 'NULL', 'Bradley', '0', '1978-10-04', 'S', 'NULL', 'F', 'rachel48@adventure-works.com', '110000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '1673 Buena Vista', 'NULL', '252-555-0158', '2013-07-05', '0-1 Miles'], ['15851', '616', 'AW00015851', 'NULL', 'Taylor', 'A', 'Anderson', '0', '1972-12-18', 'S', 'NULL', 'F', 'taylor57@adventure-works.com', '110000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '6727 Roux Court', 'NULL', '406-555-0162', '2012-09-28', '1-2 Miles'], ['15852', '368', 'AW00015852', 'NULL', 'Oscar', 'J', 'Henderson', '0', '1978-08-22', 'S', 'NULL', 'M', 'oscar13@adventure-works.com', '120000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '2526 Sharon Dr.', 'NULL', '827-555-0164', '2012-10-18', '0-1 Miles'], ['15853', '339', 'AW00015853', 'NULL', 'Jasmine', 'NULL', 'Brown', '0', '1972-08-21', 'M', 'NULL', 'F', 'jasmine4@adventure-works.com', '120000.00', '0', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '4979 Sweeney Road', 'NULL', '702-555-0152', '2013-06-27', '10+ Miles'], ['15854', '315', 'AW00015854', 'NULL', 'Miranda', 'NULL', 'Wood', '0', '1973-02-24', 'M', 'NULL', 'F', 'miranda2@adventure-works.com', '120000.00', '0', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '7515 Delaware Court', 'NULL', '273-555-0127', '2013-06-13', '10+ Miles'], ['15855', '368', 'AW00015855', 'NULL', 'Noah', 'NULL', 'Jones', '0', '1968-10-14', 'M', 'NULL', 'M', 'noah60@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '4550 Morello Ave.', 'NULL', '522-555-0143', '2013-09-30', '1-2 Miles'], ['15856', '51', 'AW00015856', 'NULL', 'Luis', 'NULL', 'Gonzales', '0', '1973-08-02', 'M', 'NULL', 'M', 'luis16@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '7914 Woodpine', 'NULL', '487-555-0115', '2013-01-28', '0-1 Miles'], ['15857', '307', 'AW00015857', 'NULL', 'Isabella', 'I', 'White', '0', '1964-12-03', 'S', 'NULL', 'F', 'isabella68@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9940 Northwood Dr.', 'NULL', '713-555-0136', '2013-10-23', '1-2 Miles'], ['15858', '311', 'AW00015858', 'NULL', 'Jonathan', 'D', 'Parker', '0', '1964-12-12', 'M', 'NULL', 'M', 'jonathan37@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '4209 San Carlos Ave.', 'NULL', '159-555-0195', '2013-07-22', '0-1 Miles'], ['15859', '69', 'AW00015859', 'NULL', 'Abigail', 'S', 'Ramirez', '0', '1964-09-01', 'S', 'NULL', 'F', 'abigail20@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8840 D Crane Ct', 'NULL', '807-555-0134', '2013-04-22', '1-2 Miles'], ['15860', '609', 'AW00015860', 'NULL', 'Joe', 'NULL', 'Moreno', '0', '1978-04-19', 'S', 'NULL', 'M', 'joe30@adventure-works.com', '40000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7512 Sanford Street', 'NULL', '630-555-0181', '2012-10-01', '1-2 Miles'], ['15861', '299', 'AW00015861', 'NULL', 'Damien', 'S', 'Zhao', '0', '1977-11-23', 'S', 'NULL', 'M', 'damien8@adventure-works.com', '40000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6398 Haviland Place', 'NULL', '498-555-0115', '2013-02-01', '0-1 Miles'], ['15862', '301', 'AW00015862', 'NULL', 'Sriniwa', 'J', 'Narayanan', '0', '1978-06-06', 'S', 'NULL', 'F', 'sriniwa0@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7455 Wellington Ave.', 'NULL', '854-555-0182', '2012-10-15', '1-2 Miles'], ['15863', '53', 'AW00015863', 'NULL', 'Adam', 'NULL', 'Scott', '0', '1979-01-31', 'M', 'NULL', 'M', 'adam44@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '4214 Northwood Dr.', 'NULL', '645-555-0141', '2013-04-06', '0-1 Miles'], ['15864', '68', 'AW00015864', 'NULL', 'Lauren', 'NULL', 'Bailey', '0', '1984-10-16', 'S', 'NULL', 'F', 'lauren7@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '8080 Lancelot Dr.', 'NULL', '797-555-0172', '2013-05-08', '0-1 Miles'], ['15865', '352', 'AW00015865', 'NULL', 'Isabel', 'M', 'Price', '0', '1976-10-11', 'S', 'NULL', 'F', 'isabel0@adventure-works.com', '40000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '2807 Charlotte Court', 'NULL', '806-555-0193', '2012-10-22', '10+ Miles'], ['15866', '54', 'AW00015866', 'NULL', 'Abigail', 'T', 'White', '0', '1981-12-30', 'S', 'NULL', 'F', 'abigail53@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2506 Almaden Dr.', 'NULL', '215-555-0122', '2013-03-14', '0-1 Miles'], ['15867', '633', 'AW00015867', 'NULL', 'Victoria', 'J', 'White', '0', '1976-08-07', 'S', 'NULL', 'F', 'victoria14@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8311 Foxhill Dr.', 'NULL', '530-555-0117', '2013-12-13', '0-1 Miles'], ['15868', '66', 'AW00015868', 'NULL', 'Caleb', 'R', 'Lal', '0', '1976-12-10', 'S', 'NULL', 'M', 'caleb25@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4037 San View Way', 'NULL', '392-555-0153', '2013-05-19', '1-2 Miles'], ['15869', '632', 'AW00015869', 'NULL', 'Alexandra', 'NULL', 'Hall', '0', '1977-06-20', 'S', 'NULL', 'F', 'alexandra88@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6060 Sanford Street', 'NULL', '758-555-0169', '2013-03-05', '1-2 Miles'], ['15870', '539', 'AW00015870', 'NULL', 'Zoe', 'NULL', 'Howard', '0', '1976-11-29', 'S', 'NULL', 'F', 'zoe10@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5024 Valley Oak Plaza', 'NULL', '164-555-0174', '2013-05-18', '1-2 Miles'], ['15871', '633', 'AW00015871', 'NULL', 'Ryan', 'NULL', 'Jai', '0', '1977-06-22', 'M', 'NULL', 'M', 'ryan35@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3962 Camel Place', 'NULL', '212-555-0119', '2013-03-29', '1-2 Miles'], ['15872', '69', 'AW00015872', 'NULL', 'Gabriella', 'Z', 'Gonzalez', '0', '1983-09-29', 'M', 'NULL', 'F', 'gabriella31@adventure-works.com', '50000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5828 E. 102nd Street', 'NULL', '305-555-0149', '2013-11-02', '1-2 Miles'], ['15873', '326', 'AW00015873', 'NULL', 'Hailey', 'W', 'Richardson', '0', '1983-10-16', 'M', 'NULL', 'F', 'hailey10@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8417 Estudello St.', 'NULL', '261-555-0118', '2012-10-24', '0-1 Miles'], ['15874', '66', 'AW00015874', 'NULL', 'Samuel', 'NULL', 'Martin', '0', '1949-12-10', 'M', 'NULL', 'M', 'samuel53@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '6791 Creekside Drive', 'NULL', '223-555-0161', '2013-02-27', '1-2 Miles'], ['15875', '369', 'AW00015875', 'NULL', 'Devin', 'NULL', 'Morris', '0', '1949-08-16', 'M', 'NULL', 'M', 'devin84@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2972 Hamiliton Ave.', 'NULL', '585-555-0177', '2013-04-08', '1-2 Miles'], ['15876', '53', 'AW00015876', 'NULL', 'Eduardo', 'NULL', 'Turner', '0', '1950-04-17', 'M', 'NULL', 'M', 'eduardo38@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5345 Willow Avenue', 'NULL', '500-555-0170', '2013-07-10', '1-2 Miles'], ['15877', '299', 'AW00015877', 'NULL', 'Jordan', 'S', 'Perez', '0', '1956-10-07', 'M', 'NULL', 'M', 'jordan57@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2804 Alderwood Lane', 'NULL', '138-555-0152', '2013-12-26', '10+ Miles'], ['15878', '59', 'AW00015878', 'NULL', 'Kevin', 'NULL', 'Flores', '0', '1950-10-21', 'M', 'NULL', 'M', 'kevin15@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5901 May Rd', 'NULL', '682-555-0114', '2013-03-11', '10+ Miles'], ['15879', '66', 'AW00015879', 'NULL', 'Tyler', 'L', 'Wilson', '0', '1950-11-18', 'M', 'NULL', 'M', 'tyler13@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2942 Berkhire Court', 'NULL', '777-555-0150', '2013-04-06', '2-5 Miles'], ['15880', '641', 'AW00015880', 'NULL', 'Patrick', 'J', 'Bailey', '0', '1951-05-13', 'M', 'NULL', 'M', 'patrick21@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '5301 Loeffler Lane', 'NULL', '578-555-0114', '2013-03-16', '2-5 Miles'], ['15881', '55', 'AW00015881', 'NULL', 'Destiny', 'S', 'Williams', '0', '1951-02-17', 'M', 'NULL', 'F', 'destiny2@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4090 Woodbury Place', 'NULL', '882-555-0116', '2013-03-08', '10+ Miles'], ['15882', '536', 'AW00015882', 'NULL', 'Maurice', 'NULL', 'Xie', '0', '1951-05-01', 'S', 'NULL', 'M', 'maurice3@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9645 Prancing Drive', 'NULL', '424-555-0166', '2012-09-28', '10+ Miles'], ['15883', '312', 'AW00015883', 'NULL', 'Tristan', 'NULL', 'Coleman', '0', '1951-05-13', 'M', 'NULL', 'M', 'tristan6@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '308 Daffodil Dr.', 'NULL', '154-555-0191', '2013-04-04', '2-5 Miles'], ['15884', '314', 'AW00015884', 'NULL', 'Dakota', 'D', 'Bradley', '0', '1951-01-04', 'M', 'NULL', 'M', 'dakota0@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '9955 Auburn', 'NULL', '340-555-0119', '2013-05-07', '2-5 Miles'], ['15885', '638', 'AW00015885', 'NULL', 'Garrett', 'E', 'Sanchez', '0', '1951-11-15', 'S', 'NULL', 'M', 'garrett22@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '7106 Roland Dr.', 'NULL', '139-555-0131', '2012-10-30', '10+ Miles'], ['15886', '335', 'AW00015886', 'NULL', 'Matthew', 'W', 'Brown', '0', '1951-10-16', 'S', 'NULL', 'M', 'matthew10@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '7126 Edie Ct.', 'NULL', '963-555-0113', '2012-11-24', '10+ Miles'], ['15887', '611', 'AW00015887', 'NULL', 'Deanna', 'R', 'Vazquez', '0', '1952-02-09', 'M', 'NULL', 'F', 'deanna41@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '1229 Harness Circle', 'NULL', '117-555-0116', '2013-12-25', '10+ Miles'], ['15888', '627', 'AW00015888', 'NULL', 'Amanda', 'NULL', 'Richardson', '0', '1951-11-02', 'M', 'NULL', 'F', 'amanda9@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3766 Gumwood Dr.', 'NULL', '899-555-0199', '2012-11-27', '10+ Miles'], ['15889', '50', 'AW00015889', 'NULL', 'Robert', 'C', 'Wright', '0', '1952-05-17', 'M', 'NULL', 'M', 'robert63@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '361 Olivera Rd.', 'NULL', '676-555-0147', '2013-07-19', '10+ Miles'], ['15890', '315', 'AW00015890', 'NULL', 'James', 'D', 'Russell', '0', '1952-08-26', 'S', 'NULL', 'M', 'james35@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '6787 Terra Calitina', 'NULL', '503-555-0179', '2012-11-20', '10+ Miles'], ['15891', '331', 'AW00015891', 'NULL', 'Jordan', 'NULL', 'Lopez', '0', '1952-12-08', 'M', 'NULL', 'M', 'jordan66@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '626 Bentley Street', 'NULL', '463-555-0181', '2013-12-26', '1-2 Miles'], ['15892', '607', 'AW00015892', 'NULL', 'Pamela', 'NULL', 'Srini', '0', '1964-07-05', 'S', 'NULL', 'F', 'pamela11@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3770 Dos Encinas', 'NULL', '618-555-0136', '2012-10-28', '10+ Miles'], ['15893', '609', 'AW00015893', 'NULL', 'Yolanda', 'E', 'Xu', '0', '1954-05-15', 'M', 'NULL', 'F', 'yolanda4@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6220 Boxer Blvd', 'NULL', '742-555-0176', '2012-11-10', '10+ Miles'], ['15894', '609', 'AW00015894', 'NULL', 'Joanna', 'M', 'Gutierrez', '0', '1970-05-06', 'M', 'NULL', 'F', 'joanna9@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4444 Buckingham Dr.', 'NULL', '984-555-0124', '2013-04-05', '2-5 Miles'], ['15895', '316', 'AW00015895', 'NULL', 'Sophia', 'E', 'Parker', '0', '1970-05-06', 'S', 'NULL', 'F', 'sophia6@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '2585 San Vincente Drive', 'NULL', '159-555-0110', '2013-06-24', '10+ Miles'], ['15896', '352', 'AW00015896', 'NULL', 'Samuel', 'P', 'Jones', '0', '1953-12-15', 'M', 'NULL', 'M', 'samuel61@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '5728 Benedict Ct.', 'NULL', '688-555-0118', '2013-09-04', '10+ Miles'], ['15897', '385', 'AW00015897', 'NULL', 'Haley', 'NULL', 'Cooper', '0', '1953-09-14', 'S', 'NULL', 'F', 'haley9@adventure-works.com', '70000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3507 Olive Dr.', 'NULL', '188-555-0123', '2012-11-04', '10+ Miles'], ['15898', '648', 'AW00015898', 'NULL', 'Isaiah', 'NULL', 'Gonzalez', '0', '1954-10-29', 'M', 'NULL', 'M', 'isaiah32@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '4208 Seal Way', 'NULL', '301-555-0163', '2013-11-05', '2-5 Miles'], ['15899', '369', 'AW00015899', 'NULL', 'Ian', 'A', 'James', '0', '1954-12-29', 'M', 'NULL', 'M', 'ian64@adventure-works.com', '70000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4522 N. 227th St.', 'NULL', '427-555-0147', '2012-11-20', '10+ Miles'], ['15900', '50', 'AW00015900', 'NULL', 'Wyatt', 'NULL', 'Roberts', '0', '1961-03-24', 'S', 'NULL', 'M', 'wyatt42@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3166 Rosemarie Place', 'NULL', '712-555-0117', '2013-03-08', '10+ Miles'], ['15901', '616', 'AW00015901', 'NULL', 'Taylor', 'D', 'Bryant', '0', '1955-08-27', 'S', 'NULL', 'F', 'taylor42@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '2812 Mazatlan', 'NULL', '804-555-0174', '2012-11-02', '2-5 Miles'], ['15902', '632', 'AW00015902', 'NULL', 'Robert', 'J', 'Diaz', '0', '1955-10-23', 'M', 'NULL', 'M', 'robert33@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6161 Sanders St.', 'NULL', '694-555-0162', '2012-11-02', '2-5 Miles'], ['15903', '299', 'AW00015903', 'NULL', 'Abigail', 'NULL', 'Barnes', '0', '1956-01-06', 'M', 'NULL', 'F', 'abigail28@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '2275 Valley Blvd.', 'NULL', '431-555-0118', '2012-11-27', '2-5 Miles'], ['15904', '307', 'AW00015904', 'NULL', 'Janice', 'NULL', 'Bennett', '0', '1955-07-25', 'M', 'NULL', 'F', 'janice4@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '811 Mcneil Place', 'NULL', '627-555-0176', '2012-11-15', '10+ Miles'], ['15905', '52', 'AW00015905', 'NULL', 'Taylor', 'NULL', 'Taylor', '0', '1956-10-15', 'S', 'NULL', 'F', 'taylor56@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '613 Lakehurst Dr.', 'NULL', '187-555-0152', '2013-07-12', '2-5 Miles'], ['15906', '66', 'AW00015906', 'NULL', 'Kaitlyn', 'NULL', 'Lewis', '0', '1956-09-02', 'S', 'NULL', 'F', 'kaitlyn44@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3192 Shore Rd.', 'NULL', '982-555-0123', '2013-07-11', '10+ Miles'], ['15907', '648', 'AW00015907', 'NULL', 'Steven', 'NULL', 'Bailey', '0', '1956-10-15', 'M', 'NULL', 'M', 'steven25@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '5652 Dianda Dr.', 'NULL', '848-555-0180', '2013-10-01', '2-5 Miles'], ['15908', '329', 'AW00015908', 'NULL', 'David', 'M', 'Wilson', '0', '1973-09-12', 'M', 'NULL', 'M', 'david65@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3627 Creekside Drive', 'NULL', '280-555-0123', '2012-11-26', '10+ Miles'], ['15909', '334', 'AW00015909', 'NULL', 'Cassidy', 'W', 'Ross', '0', '1957-03-06', 'M', 'NULL', 'F', 'cassidy4@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5339 Eagle Peak Avenue', 'NULL', '612-555-0162', '2012-11-21', '10+ Miles'], ['15910', '358', 'AW00015910', 'NULL', 'Caleb', 'M', 'Hughes', '0', '1956-12-05', 'M', 'NULL', 'M', 'caleb8@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '4887 Benthill Ct', 'NULL', '230-555-0192', '2013-03-22', '2-5 Miles'], ['15911', '611', 'AW00015911', 'NULL', 'Maria', 'K', 'Baker', '0', '1963-04-23', 'M', 'NULL', 'F', 'maria58@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3600 F Street', 'NULL', '447-555-0163', '2013-10-07', '10+ Miles'], ['15912', '369', 'AW00015912', 'NULL', 'Mya', 'C', 'Simmons', '0', '1957-09-04', 'S', 'NULL', 'F', 'mya15@adventure-works.com', '60000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '7799 Reality Dr', 'NULL', '891-555-0191', '2013-06-06', '10+ Miles'], ['15913', '55', 'AW00015913', 'NULL', 'Antonio', 'P', 'Hughes', '0', '1957-12-14', 'M', 'NULL', 'M', 'antonio11@adventure-works.com', '60000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5305 Cowell Road', 'NULL', '955-555-0118', '2013-03-27', '2-5 Miles'], ['15914', '633', 'AW00015914', 'NULL', 'Logan', 'A', 'Bryant', '0', '1963-08-19', 'S', 'NULL', 'M', 'logan19@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4569 La Salle Ct.', 'NULL', '206-555-0173', '2012-11-16', '10+ Miles'], ['15915', '331', 'AW00015915', 'NULL', 'Alex', 'NULL', 'Cox', '0', '1958-01-08', 'S', 'NULL', 'M', 'alex14@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4184 Lee Lane', 'NULL', '222-555-0195', '2012-10-28', '10+ Miles'], ['15916', '62', 'AW00015916', 'NULL', 'Brandon', 'J', 'Walker', '0', '1958-01-11', 'M', 'NULL', 'M', 'brandon53@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '9093 Kirker Pass Road', 'NULL', '180-555-0147', '2013-08-04', '2-5 Miles'], ['15917', '49', 'AW00015917', 'NULL', 'Emily', 'M', 'White', '0', '1958-03-20', 'M', 'NULL', 'F', 'emily13@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8781 Valley Crest Drive', 'NULL', '619-555-0125', '2013-08-18', '10+ Miles'], ['15918', '612', 'AW00015918', 'NULL', 'Roberto', 'NULL', 'Ruiz', '0', '1957-08-02', 'S', 'NULL', 'M', 'roberto1@adventure-works.com', '70000.00', '5', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2866 Reisling Court', 'NULL', '157-555-0190', '2012-11-02', '10+ Miles'], ['15919', '241', 'AW00015919', 'NULL', 'Rebekah', 'A', 'Prasad', '0', '1963-11-04', 'M', 'NULL', 'F', 'rebekah9@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7791 Running Springs Road', 'NULL', '1 (11) 500 555-0176', '2013-08-03', '0-1 Miles'], ['15920', '207', 'AW00015920', 'NULL', 'Colin', 'T', 'Wu', '0', '1963-02-11', 'S', 'NULL', 'M', 'colin7@adventure-works.com', '100000.00', '2', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '252, rue Jean Mermoz', 'NULL', '1 (11) 500 555-0133', '2012-09-26', '5-10 Miles'], ['15921', '207', 'AW00015921', 'NULL', 'Donald', 'M', 'Patel', '0', '1968-11-22', 'S', 'NULL', 'M', 'donald5@adventure-works.com', '100000.00', '2', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '34, rue Surcouf', 'NULL', '1 (11) 500 555-0129', '2012-09-02', '5-10 Miles'], ['15922', '240', 'AW00015922', 'NULL', 'Roger', 'C', 'Kumar', '0', '1968-10-12', 'M', 'NULL', 'M', 'roger35@adventure-works.com', '150000.00', '2', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '3575 Chisholm Way', 'NULL', '1 (11) 500 555-0122', '2013-02-16', '0-1 Miles'], ['15923', '205', 'AW00015923', 'NULL', 'Ricardo', 'NULL', 'Raje', '0', '1967-10-04', 'S', 'NULL', 'M', 'ricardo14@adventure-works.com', '100000.00', '2', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '7, rue des Ecoles', 'NULL', '1 (11) 500 555-0170', '2012-08-31', '5-10 Miles'], ['15924', '183', 'AW00015924', 'NULL', 'Omar', 'D', 'Wang', '0', '1961-12-18', 'M', 'NULL', 'M', 'omar1@adventure-works.com', '100000.00', '2', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '755, avenue Foch', 'NULL', '1 (11) 500 555-0198', '2012-09-14', '5-10 Miles'], ['15925', '209', 'AW00015925', 'NULL', 'Stanley', 'W', 'Subram', '0', '1961-12-25', 'M', 'NULL', 'M', 'stanley14@adventure-works.com', '110000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '11, rue Descartes', 'NULL', '1 (11) 500 555-0119', '2012-09-14', '5-10 Miles'], ['15926', '153', 'AW00015926', 'NULL', 'Donna', 'B', 'Deng', '0', '1961-08-11', 'S', 'NULL', 'F', 'donna2@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Nollendorfplatz 5118', 'NULL', '1 (11) 500 555-0169', '2012-03-01', '5-10 Miles'], ['15927', '164', 'AW00015927', 'NULL', 'Gilbert', 'N', 'Huang', '0', '1962-06-03', 'S', 'NULL', 'M', 'gilbert5@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Pflugstr 8515', 'NULL', '1 (11) 500 555-0147', '2012-03-07', '5-10 Miles'], ['15928', '171', 'AW00015928', 'NULL', 'Priscilla', 'J', 'Pal', '0', '1961-11-05', 'S', 'NULL', 'F', 'priscilla10@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Erftplatz 7', 'NULL', '1 (11) 500 555-0191', '2012-03-22', '5-10 Miles'], ['15929', '258', 'AW00015929', 'NULL', 'Karla', 'V', 'Raji', '0', '1962-02-07', 'M', 'NULL', 'F', 'karla22@adventure-works.com', '150000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '2328 California Street', 'NULL', '1 (11) 500 555-0117', '2012-01-10', '5-10 Miles'], ['15930', '200', 'AW00015930', 'NULL', 'Tiffany', 'C', 'He', '0', '1960-09-29', 'M', 'NULL', 'F', 'tiffany19@adventure-works.com', '100000.00', '2', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '56, route de Marseille', 'NULL', '1 (11) 500 555-0115', '2013-09-06', '10+ Miles'], ['15931', '213', 'AW00015931', 'NULL', 'Micah', 'M', 'Xu', '0', '1960-07-07', 'M', 'NULL', 'M', 'micah23@adventure-works.com', '110000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '2112, avenue de Villiers', 'NULL', '1 (11) 500 555-0121', '2012-09-26', '5-10 Miles'], ['15932', '178', 'AW00015932', 'NULL', 'Tabitha', 'NULL', 'Jimenez', '0', '1961-03-10', 'M', 'NULL', 'F', 'tabitha25@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', 'Helsenbergbogen 6', 'NULL', '1 (11) 500 555-0146', '2012-03-06', '0-1 Miles'], ['15933', '260', 'AW00015933', 'NULL', 'Clinton', 'NULL', 'Dominguez', '0', '1966-01-30', 'S', 'NULL', 'M', 'clinton9@adventure-works.com', '160000.00', '2', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '9889 Loveridge Circle', 'NULL', '1 (11) 500 555-0183', '2012-01-23', '0-1 Miles'], ['15934', '609', 'AW00015934', 'NULL', 'Nichole', 'C', 'Raji', '0', '1961-09-25', 'S', 'NULL', 'F', 'nichole21@adventure-works.com', '70000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6345 St Paul Way', 'NULL', '788-555-0178', '2012-11-20', '5-10 Miles'], ['15935', '536', 'AW00015935', 'Ms.', 'Amber', 'S', 'King', '0', '1944-10-24', 'M', 'NULL', 'F', 'amber19@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '3864 Citrus Avenue', 'NULL', '217-555-0152', '2013-04-18', '0-1 Miles'], ['15936', '553', 'AW00015936', 'NULL', 'Abigail', 'NULL', 'Johnson', '0', '1939-01-12', 'M', 'NULL', 'F', 'abigail48@adventure-works.com', '90000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '7241 Scenic Avenue', 'NULL', '779-555-0116', '2013-11-01', '5-10 Miles'], ['15937', '609', 'AW00015937', 'NULL', 'Grace', 'R', 'Lewis', '0', '1970-11-09', 'M', 'NULL', 'F', 'grace20@adventure-works.com', '90000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '3353 Teixeira Way', 'NULL', '187-555-0156', '2012-10-29', '2-5 Miles'], ['15938', '634', 'AW00015938', 'NULL', 'Sean', 'A', 'Collins', '0', '1976-07-05', 'M', 'NULL', 'M', 'sean33@adventure-works.com', '100000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '8861 Flamingo Dr', 'NULL', '350-555-0138', '2013-10-25', '0-1 Miles'], ['15939', '642', 'AW00015939', 'NULL', 'Jennifer', 'A', 'Brown', '0', '1970-08-11', 'M', 'NULL', 'F', 'jennifer32@adventure-works.com', '100000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '7074 Crown Court', 'NULL', '185-555-0173', '2013-07-02', '0-1 Miles'], ['15940', '553', 'AW00015940', 'NULL', 'Jack', 'D', 'Bryant', '0', '1971-05-27', 'M', 'NULL', 'M', 'jack18@adventure-works.com', '100000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '4124 Escobar St', 'NULL', '120-555-0141', '2013-02-27', '0-1 Miles'], ['15941', '322', 'AW00015941', 'NULL', 'Bailey', 'M', 'Brooks', '0', '1970-08-26', 'S', 'NULL', 'F', 'bailey0@adventure-works.com', '120000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '1613 Cotton Ct', 'NULL', '933-555-0130', '2012-11-24', '1-2 Miles'], ['15942', '66', 'AW00015942', 'NULL', 'Lucas', 'P', 'Rodriguez', '0', '1975-08-06', 'M', 'NULL', 'M', 'lucas34@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '4036 Elk Dr', 'NULL', '303-555-0198', '2013-07-08', '2-5 Miles'], ['15943', '69', 'AW00015943', 'NULL', 'Richard', 'NULL', 'Watson', '0', '1969-07-17', 'M', 'NULL', 'M', 'richard80@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '428 Silverado Dr.', 'NULL', '860-555-0189', '2013-03-20', '0-1 Miles'], ['15944', '611', 'AW00015944', 'NULL', 'Damien', 'M', 'Lu', '0', '1969-11-09', 'M', 'NULL', 'M', 'damien9@adventure-works.com', '90000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '8625 Olive Ave.', 'NULL', '610-555-0128', '2012-11-05', '0-1 Miles'], ['15945', '633', 'AW00015945', 'NULL', 'Alexandria', 'I', 'Kelly', '0', '1975-06-21', 'M', 'NULL', 'F', 'alexandria26@adventure-works.com', '100000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '4094 Ampersand Drive', 'NULL', '875-555-0169', '2013-07-31', '0-1 Miles'], ['15946', '298', 'AW00015946', 'NULL', 'Wyatt', 'L', 'Wilson', '0', '1970-01-17', 'S', 'NULL', 'M', 'wyatt7@adventure-works.com', '110000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '8634 Sunshine', 'NULL', '764-555-0112', '2013-04-22', '1-2 Miles'], ['15947', '307', 'AW00015947', 'NULL', 'Michelle', 'J', 'Blue', '0', '1970-04-11', 'M', 'NULL', 'F', 'michelle14@adventure-works.com', '120000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '8519 Star Dr', 'NULL', '394-555-0114', '2013-08-30', '2-5 Miles'], ['15948', '335', 'AW00015948', 'NULL', 'Angela', 'NULL', 'Hughes', '0', '1970-05-20', 'S', 'NULL', 'F', 'angela14@adventure-works.com', '130000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '9844 Green Tea Drive', 'NULL', '945-555-0170', '2012-10-30', '0-1 Miles'], ['15949', '339', 'AW00015949', 'NULL', 'Katherine', 'J', 'Green', '0', '1975-09-07', 'M', 'NULL', 'F', 'katherine62@adventure-works.com', '130000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '6247 Aspen Drive', 'NULL', '572-555-0184', '2012-12-23', '1-2 Miles'], ['15950', '543', 'AW00015950', 'NULL', 'Erin', 'N', 'Peterson', '0', '1961-07-14', 'M', 'NULL', 'F', 'erin9@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '1754 Polk Street', 'NULL', '195-555-0190', '2013-10-09', '0-1 Miles'], ['15951', '637', 'AW00015951', 'NULL', 'Jenna', 'J', 'Baker', '0', '1962-04-12', 'M', 'NULL', 'F', 'jenna16@adventure-works.com', '70000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '8259 Heavenly Drive', 'NULL', '179-555-0198', '2013-04-21', '5-10 Miles'], ['15952', '638', 'AW00015952', 'NULL', 'Evan', 'J', 'Cooper', '0', '1961-12-18', 'M', 'NULL', 'M', 'evan9@adventure-works.com', '90000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '0', '2944 Shuey Ave.', 'NULL', '558-555-0127', '2012-12-16', '2-5 Miles'], ['15953', '298', 'AW00015953', 'NULL', 'Julio', 'C', 'Moreno', '0', '1939-10-09', 'M', 'NULL', 'M', 'julio6@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4800 Quiz Street', 'NULL', '157-555-0165', '2012-12-05', '5-10 Miles'], ['15954', '298', 'AW00015954', 'NULL', 'Marshall', 'L', 'Deng', '0', '1980-02-20', 'M', 'NULL', 'M', 'marshall22@adventure-works.com', '100000.00', '0', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '903 West I St', 'NULL', '612-555-0175', '2012-12-16', '0-1 Miles'], ['15955', '302', 'AW00015955', 'NULL', 'Neil', 'M', 'Ortega', '0', '1974-11-13', 'M', 'NULL', 'M', 'neil21@adventure-works.com', '110000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '3498 Santa Maria', 'NULL', '908-555-0133', '2013-06-09', '5-10 Miles'], ['15956', '348', 'AW00015956', 'NULL', 'Ryan', 'NULL', 'Li', '0', '1974-05-13', 'M', 'NULL', 'M', 'ryan30@adventure-works.com', '130000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '3027 W 69th St', 'NULL', '160-555-0172', '2013-11-27', '1-2 Miles'], ['15957', '355', 'AW00015957', 'NULL', 'Samuel', 'T', 'Ross', '0', '1969-05-14', 'S', 'NULL', 'M', 'samuel2@adventure-works.com', '130000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '3300 Blenheim Way', 'NULL', '222-555-0153', '2013-07-22', '0-1 Miles'], ['15958', '612', 'AW00015958', 'NULL', 'Nicole', 'NULL', 'Ross', '0', '1967-10-04', 'M', 'NULL', 'F', 'nicole52@adventure-works.com', '90000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '674 Woodchuck Pl.', 'NULL', '961-555-0120', '2013-05-23', '5-10 Miles'], ['15959', '634', 'AW00015959', 'NULL', 'Logan', 'N', 'Rodriguez', '0', '1967-08-30', 'M', 'NULL', 'M', 'logan72@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '1699 Meadowbrook Court', 'NULL', '878-555-0188', '2012-12-27', '5-10 Miles'], ['15960', '314', 'AW00015960', 'NULL', 'Brianna', 'R', 'Bryant', '0', '1968-04-06', 'M', 'NULL', 'F', 'brianna63@adventure-works.com', '120000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '8277 Pinole Valley Rd.', 'NULL', '714-555-0193', '2013-12-25', '2-5 Miles'], ['15961', '368', 'AW00015961', 'NULL', 'Ashley', 'D', 'Walker', '0', '1978-10-17', 'S', 'NULL', 'F', 'ashley24@adventure-works.com', '150000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '585 Charlotte Ave.', 'NULL', '599-555-0178', '2012-12-04', '0-1 Miles'], ['15962', '547', 'AW00015962', 'NULL', 'Benjamin', 'C', 'Winter', '0', '1972-01-08', 'S', 'NULL', 'M', 'benjamin49@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '7514 Laguna St.', 'NULL', '233-555-0162', '2013-11-23', '5-10 Miles'], ['15963', '633', 'AW00015963', 'NULL', 'Madison', 'M', 'Smith', '0', '1978-01-30', 'S', 'NULL', 'F', 'madison0@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '3057 Rapallo Lane', 'NULL', '764-555-0173', '2013-04-03', '1-2 Miles'], ['15964', '331', 'AW00015964', 'NULL', 'Steven', 'E', 'Cox', '0', '1972-09-29', 'S', 'NULL', 'M', 'steven20@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '9993 Oak Grove Rd.', 'NULL', '882-555-0169', '2012-12-07', '0-1 Miles'], ['15965', '361', 'AW00015965', 'NULL', 'Jennifer', 'H', 'Watson', '0', '1966-12-16', 'S', 'NULL', 'F', 'jennifer71@adventure-works.com', '150000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '4911 Dubhe Court', 'NULL', '124-555-0196', '2012-12-16', '0-1 Miles'], ['15966', '548', 'AW00015966', 'NULL', 'Natalie', 'NULL', 'Foster', '0', '1961-02-11', 'M', 'NULL', 'F', 'natalie38@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '2697 Hobby Court', 'NULL', '453-555-0172', '2013-08-30', '1-2 Miles'], ['15967', '612', 'AW00015967', 'NULL', 'Dakota', 'NULL', 'Diaz', '0', '1960-12-13', 'M', 'NULL', 'M', 'dakota18@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '8997 Clark Creek Rd.', 'NULL', '753-555-0164', '2013-05-15', '1-2 Miles'], ['15968', '385', 'AW00015968', 'NULL', 'Edward', 'NULL', 'Gonzalez', '0', '1966-04-17', 'S', 'NULL', 'M', 'edward10@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '390 Ridgewood Ct.', 'NULL', '366-555-0119', '2012-12-16', '5-10 Miles'], ['15969', '545', 'AW00015969', 'NULL', 'Sean', 'NULL', 'Murphy', '0', '1977-05-24', 'S', 'NULL', 'M', 'sean22@adventure-works.com', '90000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '6300 Pinewood Court', 'NULL', '321-555-0165', '2012-11-30', '10+ Miles'], ['15970', '300', 'AW00015970', 'NULL', 'Samuel', 'S', 'Thompson', '0', '1965-09-02', 'S', 'NULL', 'M', 'samuel54@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9527 Onley Dr.', 'NULL', '386-555-0180', '2013-05-28', '1-2 Miles'], ['15971', '623', 'AW00015971', 'NULL', 'Ryan', 'C', 'Jenkins', '0', '1941-02-22', 'M', 'NULL', 'M', 'ryan9@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1902 E. 42nd Street', 'NULL', '618-555-0116', '2013-06-19', '1-2 Miles'], ['15972', '301', 'AW00015972', 'NULL', 'Caitlin', 'NULL', 'Bailey', '0', '1941-03-31', 'M', 'NULL', 'F', 'caitlin13@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4632 Pleasant Hill Rd', 'NULL', '836-555-0185', '2012-11-30', '1-2 Miles'], ['15973', '638', 'AW00015973', 'NULL', 'Christopher', 'NULL', 'Garcia', '0', '1942-05-23', 'M', 'NULL', 'M', 'christopher16@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8714 Minert Rd', 'NULL', '171-555-0119', '2013-12-03', '1-2 Miles'], ['15974', '52', 'AW00015974', 'NULL', 'Marcus', 'C', 'Green', '0', '1965-12-10', 'M', 'NULL', 'M', 'marcus33@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '9459 Amhurst Way', 'NULL', '340-555-0137', '2013-02-21', '5-10 Miles'], ['15975', '609', 'AW00015975', 'NULL', 'Gabrielle', 'NULL', 'Collins', '0', '1971-09-21', 'S', 'NULL', 'F', 'gabrielle47@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '3473 Flagstone Way', 'NULL', '695-555-0119', '2013-09-18', '1-2 Miles'], ['15976', '611', 'AW00015976', 'NULL', 'Kristopher', 'NULL', 'Patel', '0', '1965-11-21', 'S', 'NULL', 'M', 'kristopher3@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '5665 Las Lomas Way', 'NULL', '632-555-0157', '2012-12-09', '5-10 Miles'], ['15977', '612', 'AW00015977', 'NULL', 'Julia', 'T', 'Harris', '0', '1965-09-12', 'M', 'NULL', 'F', 'julia35@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '6820 Montego', 'NULL', '851-555-0121', '2013-10-28', '1-2 Miles'], ['15978', '614', 'AW00015978', 'NULL', 'Xavier', 'NULL', 'Walker', '0', '1966-05-18', 'M', 'NULL', 'M', 'xavier20@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '7743 Ham Dr', 'Unit 2b', '359-555-0138', '2013-11-23', '5-10 Miles'], ['15979', '626', 'AW00015979', 'NULL', 'Nicole', 'NULL', 'Cook', '0', '1965-12-12', 'M', 'NULL', 'F', 'nicole30@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '7600 Yosemite Circle', 'NULL', '961-555-0186', '2013-06-26', '5-10 Miles'], ['15980', '632', 'AW00015980', 'NULL', 'Gabrielle', 'NULL', 'Morgan', '0', '1965-11-19', 'S', 'NULL', 'F', 'gabrielle5@adventure-works.com', '100000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '7445 Meaham Drive', 'NULL', '642-555-0110', '2012-12-13', '5-10 Miles'], ['15981', '552', 'AW00015981', 'NULL', 'Gabriel', 'M', 'Powell', '0', '1965-09-11', 'S', 'NULL', 'M', 'gabriel5@adventure-works.com', '100000.00', '0', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '7015 Riverview Place', 'NULL', '636-555-0111', '2013-05-04', '1-2 Miles'], ['15982', '300', 'AW00015982', 'NULL', 'Jose', 'NULL', 'Evans', '0', '1965-11-19', 'M', 'NULL', 'M', 'jose38@adventure-works.com', '110000.00', '5', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '2922 Vista Way', 'NULL', '959-555-0164', '2013-10-01', '2-5 Miles'], ['15983', '358', 'AW00015983', 'NULL', 'Alexis', 'L', 'Ross', '0', '1966-03-15', 'M', 'NULL', 'F', 'alexis26@adventure-works.com', '160000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '6112 Mt. Etna Drive', 'NULL', '641-555-0118', '2012-12-10', '0-1 Miles'], ['15984', '369', 'AW00015984', 'NULL', 'Nathan', 'D', 'Wright', '0', '1965-12-20', 'M', 'NULL', 'M', 'nathan50@adventure-works.com', '170000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7370 Mission Drive', 'NULL', '296-555-0140', '2012-12-12', '0-1 Miles'], ['15985', '372', 'AW00015985', 'NULL', 'Devin', 'NULL', 'Johnson', '0', '1965-12-16', 'M', 'NULL', 'M', 'devin1@adventure-works.com', '170000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '4167 Deercreek Ln', 'NULL', '548-555-0150', '2012-12-25', '2-5 Miles'], ['15986', '307', 'AW00015986', 'NULL', 'Dalton', 'C', 'Sanchez', '0', '1960-03-10', 'S', 'NULL', 'M', 'dalton89@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5530 Melrose Pl.', 'NULL', '344-555-0169', '2012-12-05', '5-10 Miles'], ['15987', '642', 'AW00015987', 'NULL', 'Nicole', 'V', 'Kelly', '0', '1971-03-21', 'M', 'NULL', 'F', 'nicole46@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '500 Rockledge Lane', 'NULL', '921-555-0165', '2012-12-21', '5-10 Miles'], ['15988', '547', 'AW00015988', 'NULL', 'Edward', 'A', 'Moore', '0', '1959-11-09', 'M', 'NULL', 'M', 'edward30@adventure-works.com', '70000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '4789 Estrada', 'NULL', '351-555-0176', '2013-10-26', '5-10 Miles'], ['15989', '302', 'AW00015989', 'NULL', 'Savannah', 'NULL', 'Campbell', '0', '1965-11-15', 'M', 'NULL', 'F', 'savannah29@adventure-works.com', '70000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '1927 Striped Maple Court', 'NULL', '480-555-0149', '2012-12-01', '1-2 Miles'], ['15990', '331', 'AW00015990', 'NULL', 'Eduardo', 'E', 'Richardson', '0', '1964-05-21', 'S', 'NULL', 'M', 'eduardo78@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2822 Bluejay Dr.', 'NULL', '783-555-0169', '2012-12-20', '5-10 Miles'], ['15991', '635', 'AW00015991', 'NULL', 'David', 'NULL', 'Taylor', '0', '1958-07-19', 'M', 'NULL', 'M', 'david67@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5792 Gloria Terr.', 'NULL', '574-555-0168', '2012-12-07', '1-2 Miles'], ['15992', '358', 'AW00015992', 'NULL', 'Isabelle', 'L', 'Alexander', '0', '1958-10-20', 'S', 'NULL', 'F', 'isabelle17@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1394 Firestone', 'NULL', '967-555-0152', '2012-12-26', '5-10 Miles'], ['15993', '55', 'AW00015993', 'NULL', 'Spencer', 'NULL', 'Coleman', '0', '1958-11-19', 'M', 'NULL', 'M', 'spencer7@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2137 Carlotta', 'NULL', '157-555-0172', '2013-05-23', '5-10 Miles'], ['15994', '612', 'AW00015994', 'NULL', 'Olivia', 'R', 'Blue', '0', '1958-05-01', 'M', 'NULL', 'F', 'olivia49@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '1019 Mt. Davidson Court', 'NULL', '390-555-0139', '2012-12-15', '5-10 Miles'], ['15995', '315', 'AW00015995', 'NULL', 'Kaitlyn', 'L', 'Johnson', '0', '1957-11-23', 'M', 'NULL', 'F', 'kaitlyn24@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '6432 Maywood Ln.', 'NULL', '747-555-0147', '2013-08-14', '1-2 Miles'], ['15996', '60', 'AW00015996', 'NULL', 'Emily', 'G', 'Barnes', '0', '1963-02-23', 'M', 'NULL', 'F', 'emily28@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '4766 L St.', 'NULL', '185-555-0133', '2013-05-15', '1-2 Miles'], ['15997', '59', 'AW00015997', 'NULL', 'Melissa', 'R', 'Jenkins', '0', '1948-09-07', 'M', 'NULL', 'F', 'melissa1@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8750 Union St', 'NULL', '321-555-0186', '2013-08-09', '10+ Miles'], ['15998', '307', 'AW00015998', 'NULL', 'Marissa', 'NULL', 'Flores', '0', '1942-11-06', 'M', 'NULL', 'F', 'marissa9@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6699 Premier Place', 'NULL', '126-555-0191', '2013-09-08', '1-2 Miles'], ['15999', '632', 'AW00015999', 'NULL', 'Maria', 'C', 'Hill', '0', '1943-01-20', 'M', 'NULL', 'F', 'maria63@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '501 Arcadia Place', 'NULL', '176-555-0167', '2013-09-06', '1-2 Miles'], ['16000', '70', 'AW00016000', 'NULL', 'Gabrielle', 'H', 'Ramirez', '0', '1943-03-27', 'M', 'NULL', 'F', 'gabrielle16@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9564 Pennsylvania Blvd.', 'NULL', '122-555-0129', '2013-08-09', '10+ Miles'], ['16001', '301', 'AW00016001', 'NULL', 'Ricardo', 'J', 'Pal', '0', '1943-04-24', 'M', 'NULL', 'M', 'ricardo12@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '288 Almaden Dr.', 'NULL', '182-555-0115', '2013-03-08', '5-10 Miles'], ['16002', '552', 'AW00016002', 'NULL', 'Paige', 'NULL', 'Hayes', '0', '1942-08-10', 'M', 'NULL', 'F', 'paige22@adventure-works.com', '110000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '3613 Eastgate Lane', 'NULL', '516-555-0155', '2013-03-03', '5-10 Miles'], ['16003', '348', 'AW00016003', 'NULL', 'Carol', 'NULL', 'Robinson', '0', '1943-04-26', 'M', 'NULL', 'F', 'carol17@adventure-works.com', '130000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '6692 Lindell Dr', 'NULL', '504-555-0158', '2013-04-03', '2-5 Miles'], ['16004', '611', 'AW00016004', 'NULL', 'Joe', 'NULL', 'Martinez', '0', '1944-05-18', 'M', 'NULL', 'M', 'joe20@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1927 Striped Maple Court', 'NULL', '882-555-0199', '2013-09-11', '1-2 Miles'], ['16005', '50', 'AW00016005', 'NULL', 'Jordan', 'J', 'Hill', '0', '1944-04-05', 'S', 'NULL', 'M', 'jordan67@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '330 Camino Verde', 'NULL', '190-555-0193', '2013-02-09', '5-10 Miles'], ['16006', '372', 'AW00016006', 'NULL', 'Angelica', 'M', 'Henderson', '0', '1944-01-11', 'M', 'NULL', 'F', 'angelica4@adventure-works.com', '110000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '5208 Poppy Circle', 'NULL', '779-555-0162', '2013-05-27', '5-10 Miles'], ['16007', '611', 'AW00016007', 'NULL', 'Janelle', 'S', 'Gonzalez', '0', '1945-03-30', 'M', 'NULL', 'F', 'janelle15@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1526 Courthouse Drive', 'NULL', '926-555-0137', '2013-08-29', '1-2 Miles'], ['16008', '623', 'AW00016008', 'NULL', 'Morgan', 'D', 'Allen', '0', '1945-01-12', 'M', 'NULL', 'F', 'morgan21@adventure-works.com', '110000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '1694 Pinole Valley Rd.', 'NULL', '908-555-0127', '2014-01-11', '5-10 Miles'], ['16009', '68', 'AW00016009', 'NULL', 'Matthew', 'L', 'Martinez', '0', '1945-03-14', 'S', 'NULL', 'M', 'matthew22@adventure-works.com', '170000.00', '1', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '4', '6954 Garcia Ranch Road', 'NULL', '657-555-0138', '2013-08-01', '0-1 Miles'], ['16010', '326', 'AW00016010', 'NULL', 'Nicole', 'NULL', 'Wood', '0', '1945-08-13', 'M', 'NULL', 'F', 'nicole50@adventure-works.com', '120000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '9899 Geary Court', 'NULL', '117-555-0155', '2013-07-29', '5-10 Miles'], ['16011', '62', 'AW00016011', 'NULL', 'Maria', 'NULL', 'Murphy', '0', '1946-03-06', 'M', 'NULL', 'F', 'maria8@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '3469 Relief Valley Ct.', '# 22', '459-555-0122', '2013-08-28', '0-1 Miles'], ['16012', '65', 'AW00016012', 'NULL', 'Grace', 'C', 'Cooper', '0', '1974-01-29', 'S', 'NULL', 'F', 'grace34@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '8163 S. Forest Hill', 'NULL', '701-555-0138', '2013-04-27', '1-2 Miles'], ['16013', '536', 'AW00016013', 'NULL', 'Xavier', 'A', 'Williams', '0', '1974-01-18', 'S', 'NULL', 'M', 'xavier2@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '3390 Candle Drive', 'NULL', '846-555-0131', '2013-02-17', '1-2 Miles'], ['16014', '301', 'AW00016014', 'NULL', 'Christopher', 'E', 'Wilson', '0', '1979-03-05', 'M', 'NULL', 'M', 'christopher7@adventure-works.com', '120000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '9692 San Jose Dr.', 'NULL', '708-555-0128', '2013-08-02', '2-5 Miles'], ['16015', '335', 'AW00016015', 'NULL', 'Jessica', 'NULL', 'Cooper', '0', '1984-08-02', 'S', 'NULL', 'F', 'jessica11@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9152 Rogers Ave.', 'NULL', '438-555-0125', '2013-01-21', '1-2 Miles'], ['16016', '37', 'AW00016016', 'NULL', 'Bradley', 'L', 'She', '0', '1950-02-09', 'M', 'NULL', 'M', 'bradley3@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8728 Argyll Ave.', 'NULL', '1 (11) 500 555-0130', '2013-07-03', '5-10 Miles'], ['16017', '347', 'AW00016017', 'NULL', 'Jeremy', 'Y', 'Ramirez', '0', '1984-11-08', 'M', 'NULL', 'M', 'jeremy36@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '5479 Glen Court', 'NULL', '468-555-0149', '2013-07-31', '1-2 Miles'], ['16018', '358', 'AW00016018', 'NULL', 'Emma', 'A', 'Henderson', '0', '1984-10-29', 'S', 'NULL', 'F', 'emma51@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '8452 Dewing Avenue', 'NULL', '418-555-0175', '2013-02-04', '1-2 Miles'], ['16019', '374', 'AW00016019', 'NULL', 'Amber', 'NULL', 'Hernandez', '0', '1984-08-01', 'S', 'NULL', 'F', 'amber18@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4021 Rosemarie Place', 'NULL', '833-555-0127', '2013-08-10', '5-10 Miles'], ['16020', '51', 'AW00016020', 'NULL', 'Thomas', 'O', 'Diaz', '0', '1984-02-23', 'M', 'NULL', 'M', 'thomas24@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9965 V. Street', 'NULL', '425-555-0117', '2013-05-06', '5-10 Miles'], ['16021', '54', 'AW00016021', 'NULL', 'Shelby', 'NULL', 'Sanchez', '0', '1984-04-24', 'S', 'NULL', 'F', 'shelby24@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9123 James Donlon Blvd', 'Unit C', '967-555-0129', '2013-06-27', '1-2 Miles'], ['16022', '607', 'AW00016022', 'NULL', 'Devin', 'S', 'Hernandez', '0', '1984-01-17', 'S', 'NULL', 'M', 'devin24@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5144 Via Bonita', 'NULL', '139-555-0150', '2013-08-06', '1-2 Miles'], ['16023', '32', 'AW00016023', 'NULL', 'Willie', 'T', 'Zhang', '0', '1953-01-13', 'S', 'NULL', 'M', 'willie1@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6596 Chestnut', 'NULL', '1 (11) 500 555-0162', '2013-04-12', '5-10 Miles'], ['16024', '627', 'AW00016024', 'NULL', 'Isaac', 'NULL', 'Hill', '0', '1984-02-14', 'M', 'NULL', 'M', 'isaac35@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5457 Woodcrest Dr.', 'NULL', '972-555-0195', '2014-01-09', '5-10 Miles'], ['16025', '6', 'AW00016025', 'NULL', 'Jorge', 'NULL', 'Sun', '0', '1950-09-04', 'M', 'NULL', 'M', 'jorge15@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2631 Dalis Dr.', 'NULL', '1 (11) 500 555-0132', '2012-12-03', '1-2 Miles'], ['16026', '17', 'AW00016026', 'NULL', 'Byron', 'NULL', 'Jiménez', '0', '1952-01-07', 'M', 'NULL', 'M', 'byron4@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3630 Second Avenue', 'NULL', '1 (11) 500 555-0199', '2012-12-05', '5-10 Miles'], ['16027', '21', 'AW00016027', 'NULL', 'Anne', 'NULL', 'Vazquez', '0', '1957-08-11', 'M', 'NULL', 'F', 'anne16@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3971 Confir Court', 'NULL', '1 (11) 500 555-0182', '2012-12-07', '1-2 Miles'], ['16028', '18', 'AW00016028', 'NULL', 'Cody', 'A', 'Cooper', '0', '1951-07-28', 'M', 'NULL', 'M', 'cody9@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6459 North Park Court', 'NULL', '1 (11) 500 555-0193', '2012-12-09', '5-10 Miles'], ['16029', '16', 'AW00016029', 'NULL', 'Abby', 'NULL', 'Patel', '0', '1952-05-07', 'M', 'NULL', 'F', 'abby2@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '4696 Silver Oaks Place', 'NULL', '1 (11) 500 555-0114', '2012-12-20', '1-2 Miles'], ['16030', '25', 'AW00016030', 'NULL', 'Max', 'A', 'Martin', '0', '1952-11-17', 'M', 'NULL', 'M', 'max1@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9278 San Francisco', 'NULL', '1 (11) 500 555-0116', '2013-10-29', '5-10 Miles'], ['16031', '27', 'AW00016031', 'NULL', 'Ian', 'A', 'Allen', '0', '1953-04-08', 'M', 'NULL', 'M', 'ian23@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '1550 Cordoba', 'NULL', '1 (11) 500 555-0183', '2012-12-03', '1-2 Miles'], ['16032', '2', 'AW00016032', 'NULL', 'Colin', 'NULL', 'Chavez', '0', '1959-01-11', 'M', 'NULL', 'M', 'colin38@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4596 West St.', 'NULL', '1 (11) 500 555-0155', '2013-02-23', '1-2 Miles'], ['16033', '248', 'AW00016033', 'NULL', 'Erica', 'E', 'Lin', '0', '1977-04-13', 'M', 'NULL', 'F', 'erica7@adventure-works.com', '10000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '240 Rapallo Lane', 'NULL', '1 (11) 500 555-0174', '2012-01-08', '0-1 Miles'], ['16034', '146', 'AW00016034', 'NULL', 'Pamela', 'NULL', 'Suri', '0', '1968-06-09', 'M', 'NULL', 'F', 'pamela3@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Platz des Landtags 22', 'NULL', '1 (11) 500 555-0194', '2013-11-25', '0-1 Miles'], ['16035', '237', 'AW00016035', 'NULL', 'Sebastian', 'C', 'Morgan', '0', '1978-12-12', 'M', 'NULL', 'M', 'sebastian13@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '7236 Tanager Circle', 'NULL', '1 (11) 500 555-0175', '2014-01-14', '0-1 Miles'], ['16036', '279', 'AW00016036', 'NULL', 'Maria', 'NULL', 'Long', '0', '1967-06-02', 'M', 'NULL', 'F', 'maria32@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '7053 Laurel Dr.', 'NULL', '1 (11) 500 555-0175', '2013-04-18', '0-1 Miles'], ['16037', '162', 'AW00016037', 'NULL', 'Melissa', 'NULL', 'Kelly', '0', '1966-11-05', 'M', 'NULL', 'F', 'melissa25@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Heiderplatz 268', 'NULL', '1 (11) 500 555-0192', '2013-06-13', '0-1 Miles'], ['16038', '243', 'AW00016038', 'NULL', 'Roy', 'J', 'Sai', '0', '1978-01-02', 'M', 'NULL', 'M', 'roy6@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '8012 Dalis Dr.', 'NULL', '1 (11) 500 555-0182', '2013-08-22', '0-1 Miles'], ['16039', '143', 'AW00016039', 'NULL', 'Steve', 'L', 'Yang', '0', '1966-11-03', 'M', 'NULL', 'M', 'steve9@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Am Karlshof 368', 'NULL', '1 (11) 500 555-0116', '2013-02-18', '0-1 Miles'], ['16040', '197', 'AW00016040', 'NULL', 'Casey', 'NULL', 'Gill', '0', '1979-04-02', 'M', 'NULL', 'M', 'casey37@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '172, rue Basse-du-Rocher', 'NULL', '1 (11) 500 555-0154', '2013-03-03', '0-1 Miles'], ['16041', '208', 'AW00016041', 'NULL', 'Pedro', 'C', 'Raman', '0', '1966-11-05', 'S', 'NULL', 'M', 'pedro12@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '66, avenue du Québec', 'NULL', '1 (11) 500 555-0160', '2013-01-29', '0-1 Miles'], ['16042', '209', 'AW00016042', 'NULL', 'Ian', 'A', 'Hall', '0', '1942-01-18', 'S', 'NULL', 'M', 'ian22@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '22, rue Léo Delibes', 'NULL', '1 (11) 500 555-0162', '2013-06-29', '0-1 Miles'], ['16043', '233', 'AW00016043', 'NULL', 'Mathew', 'L', 'Romero', '0', '1980-03-05', 'S', 'NULL', 'M', 'mathew5@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '3598 Walnut Place', 'NULL', '1 (11) 500 555-0142', '2013-05-13', '0-1 Miles'], ['16044', '124', 'AW00016044', 'NULL', 'Connie', 'NULL', 'Rai', '0', '1964-03-08', 'M', 'NULL', 'F', 'connie4@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Reiherweg 7450', 'Einkaufsabteilung', '1 (11) 500 555-0175', '2013-03-17', '0-1 Miles'], ['16045', '260', 'AW00016045', 'NULL', 'Evelyn', 'NULL', 'Sara', '0', '1969-06-30', 'M', 'NULL', 'F', 'evelyn11@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6316 Glaze Ct.', 'NULL', '1 (11) 500 555-0176', '2012-01-20', '0-1 Miles'], ['16046', '275', 'AW00016046', 'NULL', 'Robyn', 'NULL', 'Gomez', '0', '1969-08-16', 'S', 'NULL', 'F', 'robyn0@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4313 Atherton Circle', 'NULL', '1 (11) 500 555-0167', '2012-01-03', '0-1 Miles'], ['16047', '175', 'AW00016047', 'NULL', 'Taylor', 'H', 'Johnson', '0', '1968-07-05', 'M', 'NULL', 'F', 'taylor48@adventure-works.com', '10000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Brunnenstr 64', 'NULL', '1 (11) 500 555-0135', '2013-11-28', '0-1 Miles'], ['16048', '147', 'AW00016048', 'NULL', 'Kelli', 'M', 'Yang', '0', '1979-05-04', 'S', 'NULL', 'F', 'kelli5@adventure-works.com', '10000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Erlenweg 94', 'NULL', '1 (11) 500 555-0116', '2013-04-16', '0-1 Miles'], ['16049', '119', 'AW00016049', 'NULL', 'Ashlee', 'A', 'Nara', '0', '1968-05-08', 'M', 'NULL', 'F', 'ashlee1@adventure-works.com', '10000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Altendorfer Straße 123', 'NULL', '1 (11) 500 555-0116', '2013-07-05', '0-1 Miles'], ['16050', '271', 'AW00016050', 'NULL', 'Reginald', 'H', 'Moreno', '0', '1962-09-08', 'M', 'NULL', 'M', 'reginald13@adventure-works.com', '10000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '6498 Pasa Del Rio', 'NULL', '1 (11) 500 555-0160', '2013-03-07', '0-1 Miles'], ['16051', '187', 'AW00016051', 'NULL', 'Leonard', 'D', 'Xu', '0', '1973-03-14', 'M', 'NULL', 'M', 'leonard6@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '964, rue des Grands Champs', 'NULL', '1 (11) 500 555-0184', '2012-09-12', '0-1 Miles'], ['16052', '193', 'AW00016052', 'NULL', 'Danny', 'L', 'Gutierrez', '0', '1962-05-06', 'M', 'NULL', 'M', 'danny12@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '758, avenue du Québec', 'NULL', '1 (11) 500 555-0123', '2012-09-04', '0-1 Miles'], ['16053', '267', 'AW00016053', 'NULL', 'Frederick', 'NULL', 'Perez', '0', '1967-06-15', 'M', 'NULL', 'M', 'frederick18@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4485 Laurel', 'NULL', '1 (11) 500 555-0113', '2012-01-26', '0-1 Miles'], ['16054', '275', 'AW00016054', 'NULL', 'Hector', 'E', 'Ortega', '0', '1961-12-17', 'S', 'NULL', 'M', 'hector19@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3601 Stinson', 'NULL', '1 (11) 500 555-0172', '2012-01-07', '0-1 Miles'], ['16055', '171', 'AW00016055', 'NULL', 'Ryan', 'NULL', 'Lee', '0', '1961-06-17', 'M', 'NULL', 'M', 'ryan58@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Heiderplatz 772', 'NULL', '1 (11) 500 555-0126', '2013-04-13', '1-2 Miles'], ['16056', '212', 'AW00016056', 'NULL', 'Alison', 'NULL', 'Shan', '0', '1966-09-17', 'M', 'NULL', 'F', 'alison10@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '66, rue du Départ', 'NULL', '1 (11) 500 555-0111', '2013-09-25', '0-1 Miles'], ['16057', '159', 'AW00016057', 'NULL', 'Michele', 'NULL', 'Gomez', '0', '1966-12-10', 'M', 'NULL', 'F', 'michele36@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Zur Lindung 787', 'NULL', '1 (11) 500 555-0133', '2013-02-12', '1-2 Miles'], ['16058', '251', 'AW00016058', 'NULL', 'Margaret', 'G', 'Zhang', '0', '1965-05-31', 'M', 'NULL', 'F', 'margaret7@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '4616 Cordova Way', 'NULL', '1 (11) 500 555-0112', '2013-05-01', '0-1 Miles'], ['16059', '119', 'AW00016059', 'NULL', 'Jésus', 'NULL', 'Carlson', '0', '1944-04-09', 'M', 'NULL', 'M', 'jésus17@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Marienplatz 222', 'NULL', '1 (11) 500 555-0192', '2013-03-18', '0-1 Miles'], ['16060', '383', 'AW00016060', 'NULL', 'Antonio', 'J', 'Griffin', '0', '1976-04-25', 'M', 'NULL', 'M', 'antonio21@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8550 Placer Dr.', 'NULL', '718-555-0137', '2014-01-23', '0-1 Miles'], ['16061', '311', 'AW00016061', 'NULL', 'Miguel', 'L', 'Butler', '0', '1981-07-02', 'M', 'NULL', 'M', 'miguel60@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7696 Ready Road', 'NULL', '293-555-0151', '2013-08-12', '2-5 Miles'], ['16062', '642', 'AW00016062', 'NULL', 'Katherine', 'C', 'Johnson', '0', '1981-06-05', 'M', 'NULL', 'F', 'katherine72@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9430 La Vista Avenue', 'NULL', '445-555-0150', '2013-12-17', '0-1 Miles'], ['16063', '299', 'AW00016063', 'NULL', 'Francisco', 'M', 'Kapoor', '0', '1981-07-12', 'M', 'NULL', 'M', 'francisco2@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7567 Blackwood Drive', 'NULL', '765-555-0128', '2013-07-19', '0-1 Miles'], ['16064', '368', 'AW00016064', 'NULL', 'Isabella', 'J', 'Griffin', '0', '1974-08-29', 'M', 'NULL', 'F', 'isabella31@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7086 C Wharton Way', 'NULL', '994-555-0112', '2013-08-28', '0-1 Miles'], ['16065', '343', 'AW00016065', 'NULL', 'Makayla', 'W', 'Torres', '0', '1975-01-18', 'S', 'NULL', 'F', 'makayla4@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9595 Zion Avenue', 'NULL', '707-555-0112', '2013-09-10', '2-5 Miles'], ['16066', '337', 'AW00016066', 'NULL', 'Alex', 'J', 'Ramirez', '0', '1980-07-19', 'M', 'NULL', 'M', 'alex10@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '347 San Simeon Dr.', 'NULL', '402-555-0173', '2013-09-12', '2-5 Miles'], ['16067', '641', 'AW00016067', 'NULL', 'Maria', 'NULL', 'Butler', '0', '1980-04-16', 'S', 'NULL', 'F', 'maria36@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '1158 Roundtree Place', 'NULL', '323-555-0119', '2013-09-01', '0-1 Miles'], ['16068', '607', 'AW00016068', 'NULL', 'Jerry', 'M', 'Shen', '0', '1974-08-31', 'S', 'NULL', 'M', 'jerry2@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '4167 Whitehall Drive', 'NULL', '569-555-0145', '2013-09-18', '0-1 Miles'], ['16069', '339', 'AW00016069', 'NULL', 'Brianna', 'NULL', 'Hall', '0', '1975-03-04', 'S', 'NULL', 'F', 'brianna23@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3069 Courthouse Dr.', 'NULL', '479-555-0146', '2013-09-12', '2-5 Miles'], ['16070', '343', 'AW00016070', 'NULL', 'Sierra', 'J', 'Phillips', '0', '1975-06-21', 'S', 'NULL', 'F', 'sierra5@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9075 Ingersoll Terrace', 'NULL', '702-555-0155', '2014-01-05', '2-5 Miles'], ['16071', '50', 'AW00016071', 'NULL', 'Taylor', 'NULL', 'Rodriguez', '0', '1976-07-09', 'M', 'NULL', 'F', 'taylor66@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5877 Providence Dr.', 'NULL', '205-555-0111', '2013-09-10', '0-1 Miles'], ['16072', '536', 'AW00016072', 'NULL', 'Caleb', 'S', 'Evans', '0', '1982-10-08', 'M', 'NULL', 'M', 'caleb29@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6864 Oakleaf Ct.', 'NULL', '729-555-0171', '2013-10-12', '2-5 Miles'], ['16073', '623', 'AW00016073', 'NULL', 'Miranda', 'C', 'Bryant', '0', '1977-06-10', 'S', 'NULL', 'F', 'miranda18@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '790 South St', 'NULL', '486-555-0195', '2013-12-12', '2-5 Miles'], ['16074', '633', 'AW00016074', 'NULL', 'Caleb', 'NULL', 'Roberts', '0', '1977-05-11', 'M', 'NULL', 'M', 'caleb33@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1903 Vista Place', 'NULL', '384-555-0173', '2013-05-16', '2-5 Miles'], ['16075', '644', 'AW00016075', 'NULL', 'Alexis', 'J', 'Johnson', '0', '1977-01-22', 'S', 'NULL', 'F', 'alexis1@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4898 Hillview Dr.', 'NULL', '192-555-0131', '2013-10-26', '2-5 Miles'], ['16076', '648', 'AW00016076', 'NULL', 'Catherine', 'A', 'Rogers', '0', '1982-06-12', 'M', 'NULL', 'F', 'catherine17@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9201 Lexington Rd.', 'NULL', '190-555-0182', '2014-01-15', '0-1 Miles'], ['16077', '301', 'AW00016077', 'NULL', 'Stephanie', 'W', 'Rogers', '0', '1982-05-28', 'M', 'NULL', 'F', 'stephanie6@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '648 Los Angeles', 'NULL', '236-555-0147', '2013-09-19', '0-1 Miles'], ['16078', '326', 'AW00016078', 'NULL', 'Nicole', 'C', 'James', '0', '1977-03-05', 'M', 'NULL', 'F', 'nicole43@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9177 Concord Royale', 'NULL', '509-555-0114', '2013-09-11', '0-1 Miles'], ['16079', '368', 'AW00016079', 'NULL', 'Natalie', 'NULL', 'Carter', '0', '1977-03-06', 'M', 'NULL', 'F', 'natalie53@adventure-works.com', '80000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '843 Muy Verde Cr.', 'NULL', '472-555-0132', '2013-09-09', '0-1 Miles'], ['16080', '337', 'AW00016080', 'NULL', 'Oscar', 'A', 'Patterson', '0', '1974-01-29', 'S', 'NULL', 'M', 'oscar18@adventure-works.com', '40000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '3691 Macalvey Drive', 'NULL', '115-555-0140', '2013-09-08', '10+ Miles'], ['16081', '298', 'AW00016081', 'NULL', 'Arturo', 'M', 'Cai', '0', '1973-09-18', 'M', 'NULL', 'M', 'arturo23@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1349 Palm Ave.', 'NULL', '784-555-0163', '2013-10-26', '2-5 Miles'], ['16082', '609', 'AW00016082', 'NULL', 'Autumn', 'NULL', 'Zeng', '0', '1979-05-19', 'S', 'NULL', 'F', 'autumn21@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3884 Beauty Street', 'NULL', '716-555-0157', '2013-06-27', '0-1 Miles'], ['16083', '43', 'AW00016083', 'NULL', 'Mindy', 'A', 'Raje', '0', '1972-12-30', 'M', 'NULL', 'F', 'mindy18@adventure-works.com', '40000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6191 Story Lane', 'NULL', '403-555-0147', '2013-06-18', '0-1 Miles'], ['16084', '542', 'AW00016084', 'NULL', 'Allison', 'R', 'Wright', '0', '1973-05-16', 'S', 'NULL', 'F', 'allison43@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4463 Temple Court', 'NULL', '567-555-0119', '2013-12-15', '0-1 Miles'], ['16085', '50', 'AW00016085', 'NULL', 'Trevor', 'K', 'Gonzales', '0', '1975-07-10', 'M', 'NULL', 'M', 'trevor17@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3085 Curtis Drive', 'NULL', '678-555-0197', '2013-02-07', '2-5 Miles'], ['16086', '298', 'AW00016086', 'NULL', 'Charles', 'W', 'Watson', '0', '1975-11-08', 'M', 'NULL', 'M', 'charles47@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4487 San Miguel Court', 'NULL', '939-555-0158', '2013-10-28', '2-5 Miles'], ['16087', '299', 'AW00016087', 'NULL', 'Micah', 'NULL', 'Chen', '0', '1975-12-11', 'S', 'NULL', 'M', 'micah12@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1343 Granola Dr.', 'NULL', '442-555-0172', '2013-10-14', '2-5 Miles'], ['16088', '536', 'AW00016088', 'NULL', 'Bryce', 'A', 'Sanders', '0', '1973-01-06', 'S', 'NULL', 'M', 'bryce3@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1870 Blue Ridge Dr.', 'NULL', '449-555-0174', '2013-05-21', '2-5 Miles'], ['16089', '62', 'AW00016089', 'NULL', 'Lucas', 'S', 'Brooks', '0', '1973-01-30', 'M', 'NULL', 'M', 'lucas72@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1200 Rosemarie Pl', 'NULL', '352-555-0117', '2013-05-20', '0-1 Miles'], ['16090', '60', 'AW00016090', 'NULL', 'Emma', 'N', 'White', '0', '1972-12-31', 'S', 'NULL', 'F', 'emma12@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5204 Marlesta Rd.', 'NULL', '182-555-0176', '2013-10-15', '2-5 Miles'], ['16091', '315', 'AW00016091', 'NULL', 'Alyssa', 'K', 'Lewis', '0', '1983-10-19', 'S', 'NULL', 'F', 'alyssa21@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1490 Marina Hill Pkwy.', 'NULL', '128-555-0183', '2013-06-26', '0-1 Miles'], ['16092', '616', 'AW00016092', 'NULL', 'Jessica', 'NULL', 'Bryant', '0', '1971-07-02', 'M', 'NULL', 'F', 'jessica42@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8037 Fruitwood St.', 'NULL', '319-555-0171', '2013-09-24', '2-5 Miles'], ['16093', '347', 'AW00016093', 'NULL', 'Kaitlyn', 'NULL', 'Morris', '0', '1971-08-30', 'S', 'NULL', 'F', 'kaitlyn48@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4622 Andrea Lane', 'NULL', '203-555-0137', '2013-09-28', '2-5 Miles'], ['16094', '368', 'AW00016094', 'NULL', 'Kayla', 'NULL', 'Brown', '0', '1977-11-08', 'S', 'NULL', 'F', 'kayla4@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3230 Buchanan Rd.', 'NULL', '265-555-0129', '2013-09-14', '2-5 Miles'], ['16095', '316', 'AW00016095', 'NULL', 'Marcus', 'NULL', 'Garcia', '0', '1971-08-11', 'M', 'NULL', 'M', 'marcus17@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '137 Mazatlan', 'NULL', '582-555-0192', '2013-10-07', '0-1 Miles'], ['16096', '43', 'AW00016096', 'NULL', 'Kenneth', 'NULL', 'She', '0', '1974-07-25', 'M', 'NULL', 'M', 'kenneth1@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6595 Trailview Circle', 'NULL', '870-555-0120', '2013-03-01', '0-1 Miles'], ['16097', '49', 'AW00016097', 'NULL', 'Jessica', 'NULL', 'Stewart', '0', '1975-05-05', 'S', 'NULL', 'F', 'jessica0@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8084 Sunnyvale Avenue', 'NULL', '608-555-0126', '2013-01-30', '2-5 Miles'], ['16098', '69', 'AW00016098', 'NULL', 'Jasmine', 'A', 'Diaz', '0', '1975-03-06', 'M', 'NULL', 'F', 'jasmine61@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7427 Terra Catalina', 'NULL', '253-555-0162', '2013-01-23', '0-1 Miles'], ['16099', '637', 'AW00016099', 'NULL', 'Julian', 'NULL', 'Jenkins', '0', '1980-08-05', 'M', 'NULL', 'M', 'julian8@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '3513 Dorset Way', 'NULL', '444-555-0124', '2013-11-29', '0-1 Miles'], ['16100', '310', 'AW00016100', 'NULL', 'Jose', 'L', 'Johnson', '0', '1980-03-30', 'S', 'NULL', 'M', 'jose57@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '3', '9077 Windsor Drive', 'NULL', '681-555-0175', '2013-10-06', '10+ Miles'], ['16101', '322', 'AW00016101', 'NULL', 'Mary', 'R', 'Lopez', '0', '1975-03-19', 'M', 'NULL', 'F', 'mary34@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4641 Brown St.', 'NULL', '416-555-0152', '2013-10-14', '0-1 Miles'], ['16102', '310', 'AW00016102', 'NULL', 'Marcus', 'M', 'Alexander', '0', '1971-02-11', 'S', 'NULL', 'M', 'marcus68@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '212 Pheasant Circle', 'NULL', '905-555-0127', '2013-09-20', '0-1 Miles'], ['16103', '62', 'AW00016103', 'NULL', 'Haley', 'J', 'Hill', '0', '1982-04-06', 'S', 'NULL', 'F', 'haley56@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5200 Woodchuck Pl.', 'NULL', '547-555-0187', '2013-02-27', '0-1 Miles'], ['16104', '627', 'AW00016104', 'NULL', 'Jordan', 'NULL', 'Hernandez', '0', '1971-05-04', 'S', 'NULL', 'F', 'jordan47@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6798 Roosevelt Avenue', 'NULL', '134-555-0196', '2013-10-28', '2-5 Miles'], ['16105', '536', 'AW00016105', 'NULL', 'Kristy', 'A', 'Diaz', '0', '1970-08-04', 'S', 'NULL', 'F', 'kristy3@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '7503 Hill Drive', 'NULL', '124-555-0148', '2013-09-29', '10+ Miles'], ['16106', '62', 'AW00016106', 'NULL', 'Ian', 'M', 'Barnes', '0', '1970-09-18', 'M', 'NULL', 'M', 'ian43@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '5339 Longview Road', 'NULL', '734-555-0118', '2013-06-04', '2-5 Miles'], ['16107', '644', 'AW00016107', 'NULL', 'Jordan', 'R', 'Edwards', '0', '1980-10-14', 'S', 'NULL', 'F', 'jordan30@adventure-works.com', '50000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8982 Ricardo Drive', 'NULL', '189-555-0154', '2013-05-14', '2-5 Miles'], ['16108', '614', 'AW00016108', 'NULL', 'Bryce', 'E', 'Howard', '0', '1975-06-21', 'S', 'NULL', 'M', 'bryce10@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6632 Johnson Road', 'NULL', '383-555-0134', '2013-10-19', '0-1 Miles'], ['16109', '54', 'AW00016109', 'NULL', 'Adam', 'K', 'Turner', '0', '1970-01-02', 'S', 'NULL', 'M', 'adam35@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9800 American Beauty Dr.', 'NULL', '222-555-0116', '2013-10-25', '2-5 Miles'], ['16110', '69', 'AW00016110', 'NULL', 'Brandon', 'M', 'Long', '0', '1969-12-29', 'M', 'NULL', 'M', 'brandon7@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5338 Moccasin Ct', 'NULL', '407-555-0119', '2013-10-24', '0-1 Miles'], ['16111', '542', 'AW00016111', 'NULL', 'Allison', 'NULL', 'Green', '0', '1980-02-02', 'S', 'NULL', 'F', 'allison37@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1465 Dover Drive', 'NULL', '512-555-0126', '2013-10-05', '0-1 Miles'], ['16112', '299', 'AW00016112', 'NULL', 'Frank', 'NULL', 'Munoz', '0', '1968-09-01', 'S', 'NULL', 'M', 'frank15@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '6943 Patterson Blvd.', 'NULL', '565-555-0189', '2013-10-01', '2-5 Miles'], ['16113', '302', 'AW00016113', 'NULL', 'Roger', 'NULL', 'Lal', '0', '1979-08-09', 'S', 'NULL', 'M', 'roger36@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '3478 Glenwood Dr', 'NULL', '300-555-0158', '2013-10-12', '0-1 Miles'], ['16114', '325', 'AW00016114', 'NULL', 'Gavin', 'NULL', 'Ross', '0', '1968-09-10', 'M', 'NULL', 'M', 'gavin3@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '142 Mt. Trinity Court', 'NULL', '626-555-0177', '2013-10-17', '2-5 Miles'], ['16115', '339', 'AW00016115', 'NULL', 'Jennifer', 'M', 'Diaz', '0', '1973-12-11', 'S', 'NULL', 'F', 'jennifer95@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '2099 San Jose', 'NULL', '117-555-0118', '2013-03-28', '0-1 Miles'], ['16116', '343', 'AW00016116', 'NULL', 'Begoña', 'M', 'Hurtado', '0', '1973-12-04', 'S', 'NULL', 'M', 'begoña0@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3945 Cedar St.', 'NULL', '233-555-0116', '2013-10-25', '2-5 Miles'], ['16117', '609', 'AW00016117', 'NULL', 'Brad', 'NULL', 'Lal', '0', '1968-05-01', 'M', 'NULL', 'M', 'brad8@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4255 Willow Pass Dr', 'NULL', '463-555-0111', '2013-11-21', '0-1 Miles'], ['16118', '348', 'AW00016118', 'NULL', 'James', 'A', 'Wright', '0', '1968-03-02', 'M', 'NULL', 'M', 'james70@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '8478 Eastgate Ave.', 'NULL', '726-555-0143', '2013-10-21', '0-1 Miles'], ['16119', '539', 'AW00016119', 'NULL', 'Hailey', 'I', 'Watson', '0', '1967-03-12', 'M', 'NULL', 'F', 'hailey18@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9658 Guadalupe Dr.', 'NULL', '333-555-0115', '2013-02-08', '2-5 Miles'], ['16120', '314', 'AW00016120', 'NULL', 'Bryce', 'H', 'Ramirez', '0', '1977-10-08', 'M', 'NULL', 'M', 'bryce6@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '387 Glenside Court', 'NULL', '765-555-0164', '2013-10-30', '10+ Miles'], ['16121', '53', 'AW00016121', 'NULL', 'Kaitlyn', 'NULL', 'Ross', '0', '1966-11-01', 'M', 'NULL', 'F', 'kaitlyn71@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8391 Olivera', 'NULL', '683-555-0152', '2013-11-23', '0-1 Miles'], ['16122', '300', 'AW00016122', 'NULL', 'Jason', 'NULL', 'Phillips', '0', '1967-06-15', 'M', 'NULL', 'M', 'jason35@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2369 Whitehaven Dr.', 'NULL', '808-555-0157', '2013-10-06', '0-1 Miles'], ['16123', '50', 'AW00016123', 'NULL', 'Natalie', 'NULL', 'Patterson', '0', '1967-01-05', 'M', 'NULL', 'F', 'natalie33@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2777 Spring Hill Drive', 'NULL', '858-555-0113', '2013-11-05', '2-5 Miles'], ['16124', '59', 'AW00016124', 'NULL', 'Eduardo', 'S', 'Murphy', '0', '1967-05-03', 'M', 'NULL', 'M', 'eduardo82@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3032 Smoking Tree Court', 'NULL', '595-555-0145', '2013-11-18', '0-1 Miles'], ['16125', '60', 'AW00016125', 'NULL', 'Victoria', 'NULL', 'Watson', '0', '1966-09-03', 'M', 'NULL', 'F', 'victoria45@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6780 Ware Ct.', 'NULL', '796-555-0146', '2013-12-03', '2-5 Miles'], ['16126', '347', 'AW00016126', 'NULL', 'Faith', 'NULL', 'Kelly', '0', '1967-01-14', 'M', 'NULL', 'F', 'faith24@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '879 Panoramic Ave', 'NULL', '170-555-0175', '2013-09-29', '2-5 Miles'], ['16127', '302', 'AW00016127', 'NULL', 'Amanda', 'NULL', 'Edwards', '0', '1983-03-10', 'M', 'NULL', 'F', 'amanda45@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8041 Erie Dr.', 'NULL', '600-555-0173', '2013-10-14', '0-1 Miles'], ['16128', '51', 'AW00016128', 'NULL', 'Destiny', 'NULL', 'Ward', '0', '1977-12-18', 'M', 'NULL', 'F', 'destiny38@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3935 Hawkins Street', 'NULL', '141-555-0193', '2013-12-13', '2-5 Miles'], ['16129', '547', 'AW00016129', 'NULL', 'Jordyn', 'NULL', 'Russell', '0', '1966-04-10', 'S', 'NULL', 'F', 'jordyn18@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7682 Palm Avenue', 'NULL', '171-555-0187', '2013-11-12', '2-5 Miles'], ['16130', '300', 'AW00016130', 'Mr.', 'Mike', 'NULL', 'Seamans', '0', '1971-12-21', 'S', 'NULL', 'F', 'mike5@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4678 Cardinal Dr.', 'NULL', '210-555-0100', '2013-09-11', '2-5 Miles'], ['16131', '301', 'AW00016131', 'NULL', 'Albert', 'NULL', 'Romero', '0', '1965-11-11', 'S', 'NULL', 'M', 'albert11@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '45 Linton Terr.', 'NULL', '444-555-0178', '2013-11-05', '2-5 Miles'], ['16132', '62', 'AW00016132', 'NULL', 'Sierra', 'NULL', 'Nelson', '0', '1971-11-30', 'M', 'NULL', 'F', 'sierra9@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '12, avenue Foch', 'NULL', '183-555-0117', '2013-01-18', '0-1 Miles'], ['16133', '51', 'AW00016133', 'NULL', 'Dylan', 'NULL', 'Simmons', '0', '1978-08-09', 'S', 'NULL', 'M', 'dylan14@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3831 Frigate Ct', 'NULL', '308-555-0179', '2013-02-07', '0-1 Miles'], ['16134', '536', 'AW00016134', 'NULL', 'Roy', 'R', 'Hernandez', '0', '1972-12-03', 'S', 'NULL', 'M', 'roy24@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9363 Vista Bonita', 'NULL', '878-555-0124', '2013-04-26', '2-5 Miles'], ['16135', '536', 'AW00016135', 'NULL', 'Chelsea', 'C', 'Raman', '0', '1972-12-28', 'S', 'NULL', 'F', 'chelsea13@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9 Serrana Ct.', 'NULL', '773-555-0130', '2013-11-04', '2-5 Miles'], ['16136', '611', 'AW00016136', 'NULL', 'George', 'NULL', 'Srini', '0', '1972-12-01', 'S', 'NULL', 'M', 'george14@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6214 Piedra Dr.', 'NULL', '241-555-0183', '2013-11-27', '2-5 Miles'], ['16137', '631', 'AW00016137', 'NULL', 'Timothy', 'A', 'King', '0', '1972-09-11', 'S', 'NULL', 'M', 'timothy45@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3774 Napa Court', 'NULL', '939-555-0124', '2013-11-09', '2-5 Miles'], ['16138', '315', 'AW00016138', 'NULL', 'David', 'H', 'Butler', '0', '1972-08-08', 'S', 'NULL', 'M', 'david47@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '620 Trasher Road', 'NULL', '236-555-0154', '2013-11-05', '2-5 Miles'], ['16139', '383', 'AW00016139', 'NULL', 'Jacqueline', 'J', 'Alexander', '0', '1971-08-22', 'M', 'NULL', 'F', 'jacqueline19@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3181 Hacienda', 'NULL', '443-555-0198', '2013-11-09', '0-1 Miles'], ['16140', '59', 'AW00016140', 'NULL', 'Seth', 'M', 'Harris', '0', '1971-04-01', 'M', 'NULL', 'M', 'seth14@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1487 Santa Fe', 'NULL', '778-555-0114', '2013-03-25', '0-1 Miles'], ['16141', '369', 'AW00016141', 'NULL', 'Shelby', 'NULL', 'Ramirez', '0', '1966-05-01', 'M', 'NULL', 'F', 'shelby7@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2236 Buena Vista Ave', 'NULL', '942-555-0151', '2013-10-30', '2-5 Miles'], ['16142', '642', 'AW00016142', 'NULL', 'Sophia', 'NULL', 'King', '0', '1964-07-10', 'S', 'NULL', 'F', 'sophia17@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '2837 Thissen Court', 'NULL', '249-555-0119', '2013-11-06', '2-5 Miles'], ['16143', '329', 'AW00016143', 'NULL', 'Sara', 'A', 'Evans', '0', '1964-09-15', 'M', 'NULL', 'F', 'sara25@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '7747 Bell Drive', 'NULL', '646-555-0173', '2013-04-15', '2-5 Miles'], ['16144', '623', 'AW00016144', 'NULL', 'Patrick', 'NULL', 'Kelly', '0', '1970-11-30', 'M', 'NULL', 'M', 'patrick8@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '6540 Park Glen Ct.', 'NULL', '448-555-0184', '2013-10-15', '0-1 Miles'], ['16145', '633', 'AW00016145', 'NULL', 'Sydney', 'NULL', 'Anderson', '0', '1965-04-23', 'S', 'NULL', 'F', 'sydney73@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '3', '38 First Ave.', 'NULL', '203-555-0113', '2013-10-04', '10+ Miles'], ['16146', '609', 'AW00016146', 'NULL', 'Jacquelyn', 'NULL', 'Saunders', '0', '1964-08-20', 'M', 'NULL', 'F', 'jacquelyn21@adventure-works.com', '80000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1694 All Dr.', 'NULL', '574-555-0154', '2013-10-17', '0-1 Miles'], ['16147', '335', 'AW00016147', 'NULL', 'Nathan', 'NULL', 'Griffin', '0', '1964-05-23', 'M', 'NULL', 'M', 'nathan17@adventure-works.com', '80000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1343 Apple Drive', 'NULL', '712-555-0192', '2013-10-26', '0-1 Miles'], ['16148', '337', 'AW00016148', 'NULL', 'Karen', 'NULL', 'Walker', '0', '1963-09-23', 'M', 'NULL', 'F', 'karen9@adventure-works.com', '80000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4474 San Jose Dr.', 'NULL', '461-555-0150', '2013-09-29', '0-1 Miles'], ['16149', '52', 'AW00016149', 'NULL', 'Dalton', 'A', 'Perry', '0', '1963-08-29', 'S', 'NULL', 'M', 'dalton53@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4401 Keller Ridge Dr.', 'NULL', '192-555-0115', '2013-05-30', '2-5 Miles'], ['16150', '331', 'AW00016150', 'NULL', 'Nicole', 'NULL', 'Thompson', '0', '1974-08-09', 'M', 'NULL', 'F', 'nicole16@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6907 Mepham Dr.', 'NULL', '820-555-0169', '2013-11-11', '0-1 Miles'], ['16151', '648', 'AW00016151', 'NULL', 'Chloe', 'NULL', 'Sanchez', '0', '1968-12-30', 'M', 'NULL', 'F', 'chloe46@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4786 Salvio St.', 'NULL', '782-555-0126', '2013-11-01', '2-5 Miles'], ['16152', '361', 'AW00016152', 'NULL', 'Katherine', 'E', 'Evans', '0', '1969-11-12', 'M', 'NULL', 'F', 'katherine49@adventure-works.com', '70000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '560 Nottingham Place', 'NULL', '465-555-0186', '2013-10-20', '2-5 Miles'], ['16153', '626', 'AW00016153', 'NULL', 'Eric', 'NULL', 'Jai', '0', '1963-10-09', 'M', 'NULL', 'M', 'eric40@adventure-works.com', '70000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '1101, rue Lauriston', 'NULL', '102-555-0131', '2013-08-12', '2-5 Miles'], ['16154', '360', 'AW00016154', 'NULL', 'Jennifer', 'M', 'Scott', '0', '1964-06-04', 'M', 'NULL', 'F', 'jennifer16@adventure-works.com', '70000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '5682 Leslie Avenue', 'NULL', '128-555-0198', '2013-07-11', '2-5 Miles'], ['16155', '33', 'AW00016155', 'NULL', 'Joan', 'NULL', 'Jenkins', '0', '1974-10-08', 'M', 'NULL', 'F', 'joan6@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '2719 Court Lane', 'NULL', '1 (11) 500 555-0114', '2012-12-05', '0-1 Miles'], ['16156', '15', 'AW00016156', 'NULL', 'Javier', 'A', 'Hernandez', '0', '1975-03-11', 'M', 'NULL', 'M', 'javier0@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '5046 Queens Road', 'NULL', '1 (11) 500 555-0137', '2012-12-27', '0-1 Miles'], ['16157', '18', 'AW00016157', 'NULL', 'Cindy', 'NULL', 'Raman', '0', '1985-10-21', 'M', 'NULL', 'F', 'cindy12@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '0', '7947 Stillman Court', 'NULL', '1 (11) 500 555-0182', '2012-12-17', '0-1 Miles'], ['16158', '30', 'AW00016158', 'NULL', 'Kathleen', 'J', 'Gomez', '0', '1975-01-18', 'M', 'NULL', 'F', 'kathleen3@adventure-works.com', '100000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '4769 Detroit Avenue', 'NULL', '1 (11) 500 555-0157', '2012-12-06', '2-5 Miles'], ['16159', '28', 'AW00016159', 'NULL', 'Mindy', 'NULL', 'Goldberg', '0', '1980-06-17', 'M', 'NULL', 'F', 'mindy24@adventure-works.com', '100000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '9152 St. Patricia', 'NULL', '1 (11) 500 555-0153', '2012-12-21', '0-1 Miles'], ['16160', '7', 'AW00016160', 'NULL', 'Erika', 'NULL', 'Hernandez', '0', '1973-12-18', 'M', 'NULL', 'F', 'erika3@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3752 Colorado Dr.', 'NULL', '1 (11) 500 555-0124', '2012-12-09', '2-5 Miles'], ['16161', '31', 'AW00016161', 'NULL', 'Jodi', 'NULL', 'Deng', '0', '1974-02-21', 'M', 'NULL', 'F', 'jodi1@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3570 Book Ct', 'NULL', '1 (11) 500 555-0117', '2012-12-15', '2-5 Miles'], ['16162', '13', 'AW00016162', 'NULL', 'Mackenzie', 'E', 'Morgan', '0', '1974-03-26', 'S', 'NULL', 'F', 'mackenzie21@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '2707 Blocking Circle', 'NULL', '1 (11) 500 555-0122', '2013-07-20', '10+ Miles'], ['16163', '34', 'AW00016163', 'NULL', 'Willie', 'B', 'Chande', '0', '1973-06-13', 'S', 'NULL', 'M', 'willie34@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4998 Clayburn Road', 'NULL', '1 (11) 500 555-0181', '2012-12-06', '2-5 Miles'], ['16164', '36', 'AW00016164', 'NULL', 'Amy', 'NULL', 'Liang', '0', '1978-01-29', 'S', 'NULL', 'F', 'amy23@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5090 Pepperidge Way', 'NULL', '1 (11) 500 555-0194', '2012-12-18', '2-5 Miles'], ['16165', '8', 'AW00016165', 'NULL', 'Jenny', 'NULL', 'Liu', '0', '1978-01-30', 'M', 'NULL', 'F', 'jenny6@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '8225 Northridge Road', 'NULL', '1 (11) 500 555-0166', '2013-07-09', '10+ Miles'], ['16166', '5', 'AW00016166', 'NULL', 'April', 'C', 'Goel', '0', '1984-02-03', 'M', 'NULL', 'F', 'april15@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '7723 Sun View Terrace', 'NULL', '1 (11) 500 555-0121', '2013-02-12', '10+ Miles'], ['16167', '39', 'AW00016167', 'NULL', 'Devin', 'J', 'Moore', '0', '1978-01-02', 'M', 'NULL', 'M', 'devin6@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '9162 Gem Court', 'NULL', '1 (11) 500 555-0110', '2013-08-16', '10+ Miles'], ['16168', '2', 'AW00016168', 'NULL', 'Kathryn', 'NULL', 'Ashe', '0', '1973-03-07', 'M', 'NULL', 'F', 'kathryn20@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '8042 Dantley Way', 'NULL', '1 (11) 500 555-0198', '2013-02-21', '10+ Miles'], ['16169', '19', 'AW00016169', 'NULL', 'Dennis', 'NULL', 'Lin', '0', '1978-03-13', 'S', 'NULL', 'M', 'dennis9@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '6337 Hillsborough Dr', 'NULL', '1 (11) 500 555-0125', '2012-12-14', '10+ Miles'], ['16170', '25', 'AW00016170', 'NULL', 'Juan', 'NULL', 'Rubio', '0', '1972-03-07', 'S', 'NULL', 'M', 'juan8@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '9481 Laguna Street', 'NULL', '1 (11) 500 555-0186', '2013-08-18', '0-1 Miles'], ['16171', '37', 'AW00016171', 'NULL', 'Bruce', 'W', 'Ruiz', '0', '1971-10-04', 'M', 'NULL', 'M', 'bruce24@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '6774 Alier Drive', 'NULL', '1 (11) 500 555-0193', '2013-04-06', '0-1 Miles'], ['16172', '21', 'AW00016172', 'NULL', 'Janelle', 'NULL', 'Perez', '0', '1983-04-06', 'S', 'NULL', 'F', 'janelle18@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '7682 Palm Avenue', 'NULL', '1 (11) 500 555-0112', '2013-08-02', '1-2 Miles'], ['16173', '15', 'AW00016173', 'NULL', 'Cory', 'E', 'Rana', '0', '1981-07-02', 'M', 'NULL', 'M', 'cory9@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2034 Rose Dr.', 'NULL', '1 (11) 500 555-0151', '2013-02-24', '2-5 Miles'], ['16174', '5', 'AW00016174', 'NULL', 'Melinda', 'NULL', 'Hernandez', '0', '1970-09-21', 'S', 'NULL', 'F', 'melinda0@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1752 Atrice Lane', 'NULL', '1 (11) 500 555-0120', '2013-04-03', '0-1 Miles'], ['16175', '15', 'AW00016175', 'NULL', 'Tony', 'M', 'Shan', '0', '1976-09-01', 'S', 'NULL', 'M', 'tony13@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1657 Almond Avenue', 'NULL', '1 (11) 500 555-0139', '2013-08-11', '0-1 Miles'], ['16176', '34', 'AW00016176', 'NULL', 'Michele', 'A', 'Torres', '0', '1974-02-16', 'S', 'NULL', 'F', 'michele45@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7583 Green Hill Rd', 'NULL', '1 (11) 500 555-0193', '2012-11-28', '5-10 Miles'], ['16177', '31', 'AW00016177', 'NULL', 'Bethany', 'NULL', 'Nath', '0', '1979-09-07', 'S', 'NULL', 'F', 'bethany22@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5377 Pine Creek Way', 'NULL', '1 (11) 500 555-0173', '2013-06-03', '5-10 Miles'], ['16178', '18', 'AW00016178', 'NULL', 'Alfredo', 'NULL', 'Carlson', '0', '1974-05-16', 'M', 'NULL', 'M', 'alfredo19@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '1318 Nottingham Pl.', 'NULL', '1 (11) 500 555-0164', '2013-04-19', '0-1 Miles'], ['16179', '27', 'AW00016179', 'NULL', 'Jamie', 'NULL', 'Zhao', '0', '1974-02-19', 'S', 'NULL', 'F', 'jamie13@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '9761 Fox Way', 'NULL', '1 (11) 500 555-0177', '2013-09-15', '1-2 Miles'], ['16180', '2', 'AW00016180', 'NULL', 'Kyle', 'J', 'Perez', '0', '1976-08-18', 'S', 'NULL', 'M', 'kyle33@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '68 Sunset Way', 'NULL', '1 (11) 500 555-0110', '2012-12-26', '0-1 Miles'], ['16181', '30', 'AW00016181', 'NULL', 'Daisy', 'A', 'Rubio', '0', '1970-12-21', 'S', 'NULL', 'F', 'daisy16@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9021 Terrace Drive', 'NULL', '1 (11) 500 555-0114', '2013-10-06', '5-10 Miles'], ['16182', '29', 'AW00016182', 'NULL', 'Louis', 'E', 'Sun', '0', '1969-10-19', 'M', 'NULL', 'M', 'louis7@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '4795 Hawthorne Dr.', 'NULL', '1 (11) 500 555-0166', '2013-05-22', '0-1 Miles'], ['16183', '17', 'AW00016183', 'NULL', 'Tanya', 'NULL', 'Carlson', '0', '1975-11-01', 'S', 'NULL', 'F', 'tanya15@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '9435 Vine Hill Way', 'NULL', '1 (11) 500 555-0136', '2013-05-09', '5-10 Miles'], ['16184', '20', 'AW00016184', 'NULL', 'Christine', 'NULL', 'She', '0', '1969-12-04', 'M', 'NULL', 'F', 'christine0@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4164 Kenneth Ct.', 'NULL', '1 (11) 500 555-0198', '2013-09-28', '0-1 Miles'], ['16185', '16', 'AW00016185', 'NULL', 'Grant', 'R', 'Raji', '0', '1975-12-10', 'S', 'NULL', 'M', 'grant23@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '3736 Woodbridge Way', 'NULL', '1 (11) 500 555-0116', '2013-04-27', '10+ Miles'], ['16186', '222', 'AW00016186', 'NULL', 'Bethany', 'J', 'Raji', '0', '1980-01-22', 'S', 'NULL', 'F', 'bethany2@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '140, quai Paul Doumer', 'NULL', '1 (11) 500 555-0180', '2013-06-29', '2-5 Miles'], ['16187', '257', 'AW00016187', 'NULL', 'Louis', 'NULL', 'Hu', '0', '1986-02-14', 'S', 'NULL', 'M', 'louis15@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '5307 Wildberry Court', 'NULL', '1 (11) 500 555-0122', '2013-08-08', '1-2 Miles'], ['16188', '255', 'AW00016188', 'NULL', 'Teresa', 'M', 'Torres', '0', '1985-10-03', 'S', 'NULL', 'F', 'teresa12@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '1724 The Trees Drive', 'NULL', '1 (11) 500 555-0117', '2013-11-28', '1-2 Miles'], ['16189', '265', 'AW00016189', 'NULL', 'Amanda', 'NULL', 'Hughes', '0', '1984-09-29', 'M', 'NULL', 'F', 'amanda32@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '3598 Teakwood Drive', 'NULL', '1 (11) 500 555-0182', '2013-06-16', '1-2 Miles'], ['16190', '247', 'AW00016190', 'NULL', 'Lance', 'J', 'Alvarez', '0', '1984-07-07', 'S', 'NULL', 'M', 'lance4@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '5979 Leisure Lane', 'NULL', '1 (11) 500 555-0168', '2013-03-18', '2-5 Miles'], ['16191', '266', 'AW00016191', 'NULL', 'Margaret', 'M', 'Zeng', '0', '1983-09-15', 'S', 'NULL', 'F', 'margaret27@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '3352 Alicante Court', 'NULL', '1 (11) 500 555-0196', '2013-10-21', '2-5 Miles'], ['16192', '230', 'AW00016192', 'NULL', 'Marie', 'NULL', 'Lopez', '0', '1983-12-02', 'S', 'NULL', 'F', 'marie18@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '5444 Flamingo Dr.', 'NULL', '1 (11) 500 555-0167', '2013-01-28', '2-5 Miles'], ['16193', '237', 'AW00016193', 'NULL', 'Victor', 'S', 'Rubio', '0', '1983-12-18', 'S', 'NULL', 'M', 'victor21@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '2588 San Vincente Drive', 'NULL', '1 (11) 500 555-0154', '2013-02-19', '1-2 Miles'], ['16194', '216', 'AW00016194', 'NULL', 'Katie', 'NULL', 'Deng', '0', '1979-03-16', 'S', 'NULL', 'F', 'katie4@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '8858, avenue de Villiers', 'NULL', '1 (11) 500 555-0170', '2013-03-24', '2-5 Miles'], ['16195', '222', 'AW00016195', 'NULL', 'Abby', 'NULL', 'Perez', '0', '1978-10-10', 'M', 'NULL', 'F', 'abby18@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Attaché de Presse', 'NULL', '1 (11) 500 555-0186', '2013-05-22', '1-2 Miles'], ['16196', '145', 'AW00016196', 'NULL', 'Kurt', 'NULL', 'Raheem', '0', '1979-04-20', 'M', 'NULL', 'M', 'kurt18@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Pascalstr 4', 'NULL', '1 (11) 500 555-0153', '2012-03-07', '0-1 Miles'], ['16197', '153', 'AW00016197', 'NULL', 'Heidi', 'M', 'Prasad', '0', '1983-08-16', 'S', 'NULL', 'F', 'heidi11@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Kurfürstenstr 9450', 'NULL', '1 (11) 500 555-0194', '2012-03-18', '1-2 Miles'], ['16198', '236', 'AW00016198', 'NULL', 'Arthur', 'NULL', 'Navarro', '0', '1978-04-12', 'S', 'NULL', 'M', 'arthur34@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '6607 Panoramic Avenue', 'NULL', '1 (11) 500 555-0117', '2013-05-06', '2-5 Miles'], ['16199', '128', 'AW00016199', 'NULL', 'Terrence', 'NULL', 'Xie', '0', '1978-02-15', 'S', 'NULL', 'M', 'terrence3@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Husemann Straße 9514', 'NULL', '1 (11) 500 555-0125', '2012-03-20', '1-2 Miles'], ['16200', '271', 'AW00016200', 'NULL', 'Julia', 'M', 'Edwards', '0', '1976-10-15', 'S', 'NULL', 'F', 'julia3@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '2874 Turning View', 'NULL', '1 (11) 500 555-0116', '2013-03-23', '0-1 Miles'], ['16201', '247', 'AW00016201', 'NULL', 'Ross', 'NULL', 'Martin', '0', '1977-03-05', 'S', 'NULL', 'M', 'ross21@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '1817 Hilltop Rd', 'NULL', '1 (11) 500 555-0193', '2012-01-18', '1-2 Miles'], ['16202', '196', 'AW00016202', 'NULL', 'Kenneth', 'D', 'Jai', '0', '1976-10-18', 'S', 'NULL', 'M', 'kenneth9@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '89, avenue des Ternes', 'NULL', '1 (11) 500 555-0120', '2013-10-09', '2-5 Miles'], ['16203', '225', 'AW00016203', 'NULL', 'Warren', 'N', 'Raje', '0', '1975-11-01', 'S', 'NULL', 'M', 'warren3@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '19, rue de l´Esplanade', 'NULL', '1 (11) 500 555-0112', '2012-09-01', '1-2 Miles'], ['16204', '211', 'AW00016204', 'NULL', 'Terrence', 'J', 'Anand', '0', '1982-04-09', 'S', 'NULL', 'M', 'terrence23@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9215, rue Léo Delibes', 'NULL', '1 (11) 500 555-0160', '2012-09-15', '1-2 Miles'], ['16205', '196', 'AW00016205', 'NULL', 'Melanie', 'NULL', 'Sanders', '0', '1982-03-28', 'S', 'NULL', 'F', 'melanie14@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '911bis, rue des Peupliers', 'NULL', '1 (11) 500 555-0157', '2012-09-12', '1-2 Miles'], ['16206', '127', 'AW00016206', 'NULL', 'Cindy', 'C', 'Lewis', '0', '1976-11-15', 'S', 'NULL', 'F', 'cindy21@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Holzstr 1333', 'NULL', '1 (11) 500 555-0195', '2012-04-15', '1-2 Miles'], ['16207', '117', 'AW00016207', 'NULL', 'Jordan', 'C', 'Shan', '0', '1982-03-09', 'S', 'NULL', 'M', 'jordan27@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Lieblingsweg 543', 'Verkaufsabteilung', '1 (11) 500 555-0165', '2012-04-09', '1-2 Miles'], ['16208', '174', 'AW00016208', 'NULL', 'Ruth', 'NULL', 'Chandra', '0', '1977-01-17', 'S', 'NULL', 'F', 'ruth7@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Werftstr 44', 'NULL', '1 (11) 500 555-0151', '2013-03-04', '0-1 Miles'], ['16209', '215', 'AW00016209', 'NULL', 'Carolyn', 'C', 'Alvarez', '0', '1975-09-15', 'S', 'NULL', 'F', 'carolyn26@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '40, rue Georges-Clémenceau', 'NULL', '1 (11) 500 555-0138', '2013-02-03', '1-2 Miles'], ['16210', '302', 'AW00016210', 'NULL', 'Olivia', 'NULL', 'Cooper', '0', '1979-09-09', 'S', 'NULL', 'F', 'olivia34@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8531 Bayter Court', 'NULL', '315-555-0113', '2013-12-16', '1-2 Miles'], ['16211', '611', 'AW00016211', 'NULL', 'Jesse', 'NULL', 'Roberts', '0', '1980-05-22', 'S', 'NULL', 'M', 'jesse28@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6780 Bonari Court', 'NULL', '338-555-0115', '2013-12-02', '1-2 Miles'], ['16212', '307', 'AW00016212', 'NULL', 'Jacqueline', 'NULL', 'Rivera', '0', '1935-07-03', 'M', 'NULL', 'F', 'jacqueline41@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2317 Woodruff Lane', 'NULL', '264-555-0125', '2013-12-16', '0-1 Miles'], ['16213', '63', 'AW00016213', 'NULL', 'Kaylee', 'M', 'Turner', '0', '1971-11-13', 'S', 'NULL', 'F', 'kaylee26@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2396 Anchor Ct.', 'NULL', '697-555-0113', '2013-07-05', '0-1 Miles'], ['16214', '609', 'AW00016214', 'NULL', 'Brett', 'L', 'Fernandez', '0', '1977-01-30', 'M', 'NULL', 'M', 'brett15@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6051 Mepham Dr.', 'NULL', '343-555-0171', '2013-03-31', '0-1 Miles'], ['16215', '626', 'AW00016215', 'NULL', 'Thomas', 'M', 'Turner', '0', '1971-11-09', 'M', 'NULL', 'M', 'thomas42@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8143 Creekridge Lane', 'NULL', '972-555-0110', '2013-12-22', '1-2 Miles'], ['16216', '632', 'AW00016216', 'NULL', 'Charles', 'L', 'Mitchell', '0', '1983-03-23', 'S', 'NULL', 'M', 'charles39@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3099 Corte Segundo', 'NULL', '217-555-0178', '2013-12-05', '1-2 Miles'], ['16217', '553', 'AW00016217', 'NULL', 'Amanda', 'C', 'Gonzales', '0', '1972-03-24', 'S', 'NULL', 'F', 'amanda38@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '607 B Way', 'NULL', '270-555-0140', '2013-08-29', '0-1 Miles'], ['16218', '634', 'AW00016218', 'NULL', 'Julia', 'NULL', 'Simmons', '0', '1964-09-30', 'M', 'NULL', 'F', 'julia81@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2701 Sierra Rd', 'NULL', '237-555-0151', '2013-01-12', '5-10 Miles'], ['16219', '52', 'AW00016219', 'NULL', 'Angel', 'NULL', 'Sanders', '0', '1964-11-18', 'M', 'NULL', 'M', 'angel2@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7384 Diokmo Ct.', 'NULL', '351-555-0112', '2013-06-09', '1-2 Miles'], ['16220', '68', 'AW00016220', 'NULL', 'Megan', 'NULL', 'Russell', '0', '1959-01-03', 'M', 'NULL', 'F', 'megan67@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7256 St. Paul Circle', 'NULL', '998-555-0116', '2013-07-24', '1-2 Miles'], ['16221', '612', 'AW00016221', 'NULL', 'Darren', 'A', 'Saunders', '0', '1964-05-10', 'M', 'NULL', 'M', 'darren13@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7682 Fern Leaf Lane', 'NULL', '487-555-0115', '2013-02-15', '1-2 Miles'], ['16222', '299', 'AW00016222', 'NULL', 'Brandon', 'S', 'Anderson', '0', '1959-06-17', 'M', 'NULL', 'M', 'brandon30@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7859 Live Oak Avenue', 'NULL', '156-555-0150', '2013-02-14', '2-5 Miles'], ['16223', '338', 'AW00016223', 'NULL', 'Carlos', 'B', 'Collins', '0', '1958-11-15', 'M', 'NULL', 'M', 'carlos28@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6553 San Miguel Rd.', 'NULL', '880-555-0193', '2013-02-14', '1-2 Miles'], ['16224', '348', 'AW00016224', 'NULL', 'Jacob', 'NULL', 'Martinez', '0', '1959-01-17', 'M', 'NULL', 'M', 'jacob13@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '551 Rainier Dr', 'NULL', '983-555-0120', '2013-02-26', '2-5 Miles'], ['16225', '336', 'AW00016225', 'NULL', 'Wyatt', 'J', 'Nelson', '0', '1970-04-07', 'M', 'NULL', 'M', 'wyatt38@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6930 Lake Place', 'NULL', '621-555-0163', '2013-03-03', '2-5 Miles'], ['16226', '638', 'AW00016226', 'NULL', 'Maria', 'M', 'Blue', '0', '1958-11-20', 'M', 'NULL', 'F', 'maria7@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4190 Trujillo', 'NULL', '917-555-0110', '2013-03-03', '5-10 Miles'], ['16227', '314', 'AW00016227', 'NULL', 'Eric', 'NULL', 'Lopez', '0', '1959-12-16', 'M', 'NULL', 'M', 'eric53@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4471 Willcrest Circle', 'NULL', '484-555-0182', '2013-01-30', '10+ Miles'], ['16228', '302', 'AW00016228', 'NULL', 'Rafael', 'NULL', 'Zhu', '0', '1966-12-23', 'M', 'NULL', 'M', 'rafael15@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6393 Tuolumne Way', 'NULL', '949-555-0122', '2013-12-11', '0-1 Miles'], ['16229', '607', 'AW00016229', 'NULL', 'Wayne', 'G', 'Chande', '0', '1971-11-13', 'M', 'NULL', 'M', 'wayne17@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '630 Plymouth Drive', 'NULL', '116-555-0178', '2013-12-07', '1-2 Miles'], ['16230', '298', 'AW00016230', 'NULL', 'Craig', 'NULL', 'Blanco', '0', '1960-10-31', 'M', 'NULL', 'M', 'craig15@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6180 Ryan Court', 'NULL', '460-555-0177', '2013-12-18', '0-1 Miles'], ['16231', '609', 'AW00016231', 'NULL', 'Dana', 'K', 'Martin', '0', '1961-05-08', 'M', 'NULL', 'F', 'dana16@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '92 Glazier Ct.', 'NULL', '576-555-0138', '2013-01-11', '0-1 Miles'], ['16232', '623', 'AW00016232', 'NULL', 'Chase', 'A', 'Richardson', '0', '1961-04-04', 'M', 'NULL', 'M', 'chase9@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2869 Highland Dr.', 'NULL', '804-555-0126', '2013-02-17', '1-2 Miles'], ['16233', '335', 'AW00016233', 'NULL', 'Rebecca', 'NULL', 'King', '0', '1971-09-18', 'S', 'NULL', 'F', 'rebecca20@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4973 Twinview Drive', 'NULL', '695-555-0184', '2014-01-14', '1-2 Miles'], ['16234', '360', 'AW00016234', 'NULL', 'Wyatt', 'NULL', 'Martin', '0', '1961-11-04', 'M', 'NULL', 'M', 'wyatt15@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7433 San Simeon Ct.', 'NULL', '570-555-0116', '2013-06-02', '0-1 Miles'], ['16235', '336', 'AW00016235', 'NULL', 'Sebastian', 'NULL', 'Morris', '0', '1967-02-13', 'M', 'NULL', 'M', 'sebastian17@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1730 D Reliez Valley Ct.', 'NULL', '153-555-0190', '2013-02-18', '1-2 Miles'], ['16236', '543', 'AW00016236', 'NULL', 'Nicholas', 'L', 'Martinez', '0', '1967-12-13', 'M', 'NULL', 'M', 'nicholas18@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5203 Virginia Lane', 'NULL', '158-555-0182', '2013-09-25', '1-2 Miles'], ['16237', '638', 'AW00016237', 'NULL', 'Erin', 'NULL', 'James', '0', '1962-07-12', 'M', 'NULL', 'F', 'erin12@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9691 Ironwood Way', 'NULL', '782-555-0199', '2013-03-02', '1-2 Miles'], ['16238', '300', 'AW00016238', 'NULL', 'Ann', 'NULL', 'Arun', '0', '1963-06-01', 'M', 'NULL', 'F', 'ann12@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1909 N Jackson Way', 'NULL', '545-555-0123', '2013-04-09', '0-1 Miles'], ['16239', '339', 'AW00016239', 'NULL', 'Gabriel', 'A', 'Nelson', '0', '1963-05-31', 'M', 'NULL', 'M', 'gabriel40@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7764 Juliet Court', 'NULL', '569-555-0150', '2014-01-05', '0-1 Miles'], ['16240', '301', 'AW00016240', 'NULL', 'Madeline', 'NULL', 'Green', '0', '1974-08-11', 'S', 'NULL', 'F', 'madeline14@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8555 Napa Court', 'NULL', '747-555-0146', '2014-01-02', '0-1 Miles'], ['16241', '68', 'AW00016241', 'NULL', 'Isabel', 'NULL', 'Butler', '0', '1975-04-03', 'S', 'NULL', 'F', 'isabel13@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '804 Skycrest Drive', '#19', '252-555-0172', '2013-04-26', '0-1 Miles'], ['16242', '310', 'AW00016242', 'NULL', 'Megan', 'F', 'Garcia', '0', '1963-08-24', 'S', 'NULL', 'F', 'megan19@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5853 Peachwillow', 'NULL', '883-555-0181', '2013-06-23', '0-1 Miles'], ['16243', '57', 'AW00016243', 'NULL', 'Maria', 'NULL', 'James', '0', '1963-12-23', 'S', 'NULL', 'F', 'maria18@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '258 Bluejay Dr.', 'Unit A', '774-555-0124', '2013-02-27', '1-2 Miles'], ['16244', '298', 'AW00016244', 'NULL', 'Gregory', 'NULL', 'Kumar', '0', '1969-12-15', 'M', 'NULL', 'M', 'gregory12@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5048 Hawthorne Dr', 'NULL', '167-555-0126', '2013-10-14', '1-2 Miles'], ['16245', '369', 'AW00016245', 'NULL', 'Alexandra', 'NULL', 'Griffin', '0', '1969-09-21', 'S', 'NULL', 'F', 'alexandra42@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3723 Mt. Sequoia Ct.', 'NULL', '218-555-0114', '2014-01-23', '1-2 Miles'], ['16246', '638', 'AW00016246', 'NULL', 'Lucas', 'B', 'Simmons', '0', '1964-05-25', 'S', 'NULL', 'M', 'lucas63@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9045 N St.', 'NULL', '325-555-0175', '2013-06-07', '1-2 Miles'], ['16247', '66', 'AW00016247', 'NULL', 'Anna', 'NULL', 'Brown', '0', '1964-10-30', 'S', 'NULL', 'F', 'anna65@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7627 Hidden Oak Ct.', 'NULL', '272-555-0111', '2013-07-12', '1-2 Miles'], ['16248', '618', 'AW00016248', 'NULL', 'Alyssa', 'NULL', 'Ross', '0', '1964-08-27', 'S', 'NULL', 'F', 'alyssa50@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1121 Boynton Avenue', 'NULL', '132-555-0144', '2013-05-02', '1-2 Miles'], ['16249', '316', 'AW00016249', 'NULL', 'Jesse', 'NULL', 'Rivera', '0', '1970-12-01', 'M', 'NULL', 'M', 'jesse17@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '9711 Contra Costa Blvd.', 'NULL', '609-555-0135', '2013-04-29', '0-1 Miles'], ['16250', '241', 'AW00016250', 'NULL', 'Brendan', 'NULL', 'Raje', '0', '1979-05-18', 'S', 'NULL', 'M', 'brendan12@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4171 Miller Avenue', 'NULL', '1 (11) 500 555-0192', '2012-02-17', '0-1 Miles'], ['16251', '261', 'AW00016251', 'NULL', 'Makayla', 'NULL', 'Howard', '0', '1978-03-08', 'S', 'NULL', 'F', 'makayla10@adventure-works.com', '10000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '6709 Brush Creek Drive', 'NULL', '1 (11) 500 555-0159', '2013-05-01', '0-1 Miles'], ['16252', '175', 'AW00016252', 'NULL', 'Danny', 'NULL', 'Jiménez', '0', '1973-03-21', 'S', 'NULL', 'M', 'danny6@adventure-works.com', '10000.00', '3', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Kurfürstenstr 4164', 'NULL', '1 (11) 500 555-0192', '2012-04-11', '0-1 Miles'], ['16253', '147', 'AW00016253', 'NULL', 'Bethany', 'A', 'Lal', '0', '1973-03-02', 'S', 'NULL', 'F', 'bethany12@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Auf der Krone 49', 'NULL', '1 (11) 500 555-0196', '2012-04-01', '1-2 Miles'], ['16254', '207', 'AW00016254', 'NULL', 'Maria', 'K', 'Morris', '0', '1973-02-17', 'S', 'NULL', 'F', 'maria2@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '3, rue Surcouf', 'NULL', '1 (11) 500 555-0190', '2013-02-21', '2-5 Miles'], ['16255', '224', 'AW00016255', 'NULL', 'Taylor', 'E', 'Russell', '0', '1973-02-18', 'S', 'NULL', 'F', 'taylor44@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '34, rue des Pyrenees', 'NULL', '1 (11) 500 555-0165', '2013-04-17', '0-1 Miles'], ['16256', '243', 'AW00016256', 'NULL', 'Richard', 'S', 'Collins', '0', '1973-01-13', 'M', 'NULL', 'M', 'richard39@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5436 Via Del Verdes', 'NULL', '1 (11) 500 555-0132', '2013-06-10', '2-5 Miles'], ['16257', '216', 'AW00016257', 'NULL', 'Michele', 'E', 'Chandra', '0', '1978-10-14', 'M', 'NULL', 'F', 'michele57@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '2, avenue des Laurentides', 'NULL', '1 (11) 500 555-0182', '2014-01-15', '2-5 Miles'], ['16258', '183', 'AW00016258', 'NULL', 'Deanna', 'M', 'Malhotra', '0', '1973-05-02', 'S', 'NULL', 'F', 'deanna8@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '9967, rue Marbeuf', 'NULL', '1 (11) 500 555-0142', '2013-12-19', '1-2 Miles'], ['16259', '190', 'AW00016259', 'NULL', 'Ebony', 'C', 'Sai', '0', '1971-10-19', 'S', 'NULL', 'F', 'ebony5@adventure-works.com', '10000.00', '4', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '8818, avenue de Villiers', 'NULL', '1 (11) 500 555-0113', '2012-09-10', '0-1 Miles'], ['16260', '262', 'AW00016260', 'NULL', 'Gina', 'NULL', 'Schmidt', '0', '1977-02-16', 'S', 'NULL', 'F', 'gina20@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '7319 Snyder Lane', 'NULL', '1 (11) 500 555-0117', '2012-02-02', '1-2 Miles'], ['16261', '186', 'AW00016261', 'NULL', 'Diana', 'A', 'Navarro', '0', '1984-02-03', 'M', 'NULL', 'F', 'diana9@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9, rue de l´Avenir', 'NULL', '1 (11) 500 555-0186', '2012-09-25', '0-1 Miles'], ['16262', '192', 'AW00016262', 'NULL', 'Kathryn', 'M', 'Xie', '0', '1984-05-14', 'M', 'NULL', 'F', 'kathryn3@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '14, rue de Cambrai', 'NULL', '1 (11) 500 555-0135', '2012-08-30', '0-1 Miles'], ['16263', '121', 'AW00016263', 'NULL', 'Eduardo', 'NULL', 'Robinson', '0', '1972-12-08', 'M', 'NULL', 'M', 'eduardo17@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Conesweg 1234', 'NULL', '1 (11) 500 555-0112', '2012-04-20', '0-1 Miles'], ['16264', '271', 'AW00016264', 'NULL', 'Jennifer', 'NULL', 'Howard', '0', '1933-10-20', 'M', 'NULL', 'F', 'jennifer65@adventure-works.com', '10000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '6915 Golden Leaf Way', 'NULL', '1 (11) 500 555-0162', '2013-11-18', '0-1 Miles'], ['16265', '220', 'AW00016265', 'NULL', 'Julie', 'NULL', 'Goel', '0', '1982-12-13', 'M', 'NULL', 'F', 'julie21@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', '48, rue Montcalm', 'NULL', '1 (11) 500 555-0151', '2013-10-02', '2-5 Miles'], ['16266', '212', 'AW00016266', 'NULL', 'Alisha', 'NULL', 'Yang', '0', '1971-10-16', 'M', 'NULL', 'F', 'alisha5@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9, rue Villedo', 'NULL', '1 (11) 500 555-0152', '2013-07-05', '2-5 Miles'], ['16267', '119', 'AW00016267', 'NULL', 'Edwin', 'NULL', 'Chen', '0', '1972-04-21', 'M', 'NULL', 'M', 'edwin2@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', 'Höhenstr 9429', 'NULL', '1 (11) 500 555-0111', '2012-04-12', '0-1 Miles'], ['16268', '206', 'AW00016268', 'NULL', 'Lindsey', 'NULL', 'Kumar', '0', '1972-05-19', 'M', 'NULL', 'F', 'lindsey8@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '14, rue de Cambrai', 'NULL', '1 (11) 500 555-0110', '2012-10-20', '0-1 Miles'], ['16269', '163', 'AW00016269', 'NULL', 'Tara', 'NULL', 'Nath', '0', '1971-08-25', 'M', 'NULL', 'F', 'tara19@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', 'Roßstr 3899', 'NULL', '1 (11) 500 555-0175', '2012-04-06', '0-1 Miles'], ['16270', '126', 'AW00016270', 'NULL', 'Jerome', 'NULL', 'Hernandez', '0', '1971-12-08', 'M', 'NULL', 'M', 'jerome4@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', 'Hansaallee 5989', 'NULL', '1 (11) 500 555-0193', '2012-04-26', '0-1 Miles'], ['16271', '138', 'AW00016271', 'NULL', 'Michele', 'K', 'Gutierrez', '0', '1970-12-11', 'S', 'NULL', 'F', 'michele44@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Potsdamer Straße 23439', 'NULL', '1 (11) 500 555-0131', '2012-04-29', '0-1 Miles'], ['16272', '260', 'AW00016272', 'NULL', 'Raul', 'D', 'Deng', '0', '1971-02-04', 'S', 'NULL', 'M', 'raul2@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '3751 Anchor Dr.', 'NULL', '1 (11) 500 555-0118', '2012-02-24', '0-1 Miles'], ['16273', '220', 'AW00016273', 'NULL', 'Marie', 'NULL', 'Martinez', '0', '1976-05-10', 'M', 'NULL', 'F', 'marie19@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '309, route de Marseille', 'NULL', '1 (11) 500 555-0166', '2012-10-26', '0-1 Miles'], ['16274', '115', 'AW00016274', 'NULL', 'Ross', 'E', 'Diaz', '0', '1969-09-13', 'M', 'NULL', 'M', 'ross23@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Holzstr 1333', 'NULL', '1 (11) 500 555-0132', '2014-01-02', '0-1 Miles'], ['16275', '272', 'AW00016275', 'NULL', 'Deborah', 'R', 'McDonald', '0', '1969-06-30', 'M', 'NULL', 'F', 'deborah10@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '6516 Pine Tree Drive', 'NULL', '1 (11) 500 555-0167', '2012-02-04', '0-1 Miles'], ['16276', '154', 'AW00016276', 'NULL', 'Brandi', 'W', 'Carlson', '0', '1980-08-29', 'S', 'NULL', 'F', 'brandi17@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Buergermeister-ulrich-str 5', 'NULL', '1 (11) 500 555-0120', '2013-12-12', '0-1 Miles'], ['16277', '274', 'AW00016277', 'NULL', 'Christy', 'NULL', 'Luo', '0', '1970-03-28', 'M', 'NULL', 'F', 'christy24@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5805 Churchill Dr.', 'NULL', '1 (11) 500 555-0191', '2012-02-28', '0-1 Miles'], ['16278', '120', 'AW00016278', 'NULL', 'Angel', 'L', 'Turner', '0', '1969-12-21', 'M', 'NULL', 'M', 'angel27@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Essener Straße 8209', 'NULL', '1 (11) 500 555-0138', '2012-04-15', '0-1 Miles'], ['16279', '117', 'AW00016279', 'NULL', 'Victoria', 'NULL', 'Patterson', '0', '1968-12-22', 'S', 'NULL', 'F', 'victoria58@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Alderstr 3981', 'NULL', '1 (11) 500 555-0143', '2013-09-27', '0-1 Miles'], ['16280', '170', 'AW00016280', 'NULL', 'Glenn', 'M', 'Ma', '0', '1969-02-15', 'S', 'NULL', 'M', 'glenn17@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Lützowplatz 5752', 'NULL', '1 (11) 500 555-0151', '2013-11-04', '0-1 Miles'], ['16281', '198', 'AW00016281', 'NULL', 'Gilbert', 'NULL', 'Luo', '0', '1968-07-05', 'S', 'NULL', 'M', 'gilbert27@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '22, rue des Grands Champs', 'NULL', '1 (11) 500 555-0193', '2013-06-27', '0-1 Miles'], ['16282', '254', 'AW00016282', 'NULL', 'Kristine', 'NULL', 'Suarez', '0', '1969-02-28', 'S', 'NULL', 'F', 'kristine20@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '9875 Pheasant Drive', 'NULL', '1 (11) 500 555-0187', '2013-05-13', '0-1 Miles'], ['16283', '202', 'AW00016283', 'NULL', 'Clayton', 'NULL', 'Raji', '0', '1974-09-09', 'S', 'NULL', 'M', 'clayton39@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '88bis, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0113', '2013-10-03', '0-1 Miles'], ['16284', '120', 'AW00016284', 'NULL', 'Troy', 'D', 'Perez', '0', '1968-12-08', 'S', 'NULL', 'M', 'troy23@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Unter Linden 94', 'NULL', '1 (11) 500 555-0119', '2013-06-12', '0-1 Miles'], ['16285', '205', 'AW00016285', 'NULL', 'Mindy', 'J', 'Xie', '0', '1972-05-01', 'M', 'NULL', 'F', 'mindy7@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '8498 Mcneil Pl.', 'NULL', '1 (11) 500 555-0155', '2014-01-16', '0-1 Miles'], ['16286', '195', 'AW00016286', 'NULL', 'Billy', 'F', 'Torres', '0', '1977-11-20', 'M', 'NULL', 'M', 'billy13@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '343, avenue de la Gare', 'NULL', '1 (11) 500 555-0176', '2012-09-28', '0-1 Miles'], ['16287', '249', 'AW00016287', 'NULL', 'Laura', 'D', 'Xu', '0', '1972-05-02', 'M', 'NULL', 'F', 'laura18@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '8138 Golf Club Road', 'NULL', '1 (11) 500 555-0170', '2012-02-15', '0-1 Miles'], ['16288', '219', 'AW00016288', 'NULL', 'Edwin', 'C', 'Shen', '0', '1985-08-16', 'M', 'NULL', 'M', 'edwin24@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '0', '2, cours Mirabeau', 'NULL', '1 (11) 500 555-0141', '2012-10-26', '0-1 Miles'], ['16289', '179', 'AW00016289', 'NULL', 'Julie', 'NULL', 'Pal', '0', '1971-03-24', 'S', 'NULL', 'F', 'julie17@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2, rue des Vendangeurs', 'NULL', '1 (11) 500 555-0110', '2012-10-12', '0-1 Miles'], ['16290', '146', 'AW00016290', 'NULL', 'Russell', 'NULL', 'Nath', '0', '1971-04-22', 'S', 'NULL', 'M', 'russell21@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Holzstr 2222', 'NULL', '1 (11) 500 555-0188', '2012-04-20', '0-1 Miles'], ['16291', '204', 'AW00016291', 'NULL', 'Lindsey', 'H', 'Lal', '0', '1969-07-05', 'S', 'NULL', 'F', 'lindsey9@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '81, place de Fontenoy', 'NULL', '1 (11) 500 555-0116', '2012-10-06', '0-1 Miles'], ['16292', '149', 'AW00016292', 'NULL', 'Carly', 'L', 'Lal', '0', '1975-05-01', 'M', 'NULL', 'F', 'carly8@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Königstr 284', 'NULL', '1 (11) 500 555-0150', '2013-03-25', '0-1 Miles'], ['16293', '238', 'AW00016293', 'NULL', 'Sean', 'J', 'Adams', '0', '1970-05-12', 'M', 'NULL', 'M', 'sean47@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7245 Roslyn Road', 'NULL', '1 (11) 500 555-0127', '2013-07-01', '0-1 Miles'], ['16294', '253', 'AW00016294', 'NULL', 'Steve', 'A', 'Hu', '0', '1975-06-21', 'M', 'NULL', 'M', 'steve23@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '560 Highland Drive', 'NULL', '1 (11) 500 555-0134', '2013-07-05', '0-1 Miles'], ['16295', '184', 'AW00016295', 'NULL', 'Roger', 'A', 'Xu', '0', '1974-11-10', 'S', 'NULL', 'M', 'roger17@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '88, rue Montcalm', 'NULL', '1 (11) 500 555-0152', '2013-03-17', '0-1 Miles'], ['16296', '190', 'AW00016296', 'NULL', 'Sydney', 'M', 'White', '0', '1969-06-19', 'M', 'NULL', 'F', 'sydney75@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '0', '57, rue Montcalm', 'NULL', '1 (11) 500 555-0159', '2013-12-02', '0-1 Miles'], ['16297', '131', 'AW00016297', 'NULL', 'Deanna', 'S', 'Garcia', '0', '1974-09-08', 'M', 'NULL', 'F', 'deanna18@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Zollstr 68', 'NULL', '1 (11) 500 555-0190', '2012-05-16', '0-1 Miles'], ['16298', '147', 'AW00016298', 'NULL', 'Adrienne', 'NULL', 'Sanz', '0', '1968-11-12', 'M', 'NULL', 'F', 'adrienne16@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Kulmer Straße 242', 'NULL', '1 (11) 500 555-0140', '2012-05-10', '0-1 Miles'], ['16299', '161', 'AW00016299', 'NULL', 'Alison', 'NULL', 'Tang', '0', '1983-05-24', 'S', 'NULL', 'F', 'alison3@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Nonnendamm 6999', 'NULL', '1 (11) 500 555-0131', '2013-04-24', '2-5 Miles'], ['16300', '269', 'AW00016300', 'NULL', 'Orlando', 'C', 'Martin', '0', '1983-05-10', 'S', 'NULL', 'M', 'orlando1@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '7064 Alpha Way', 'NULL', '1 (11) 500 555-0138', '2013-07-01', '1-2 Miles'], ['16301', '191', 'AW00016301', 'NULL', 'Omar', 'M', 'Cai', '0', '1982-08-06', 'S', 'NULL', 'M', 'omar20@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '2, avenue de Norvege', 'NULL', '1 (11) 500 555-0136', '2013-03-16', '2-5 Miles'], ['16302', '185', 'AW00016302', 'NULL', 'Rosa', 'NULL', 'Zeng', '0', '1985-05-11', 'S', 'NULL', 'F', 'rosa22@adventure-works.com', '20000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '905, boulevard d´Albi', 'NULL', '1 (11) 500 555-0129', '2013-04-23', '0-1 Miles'], ['16303', '127', 'AW00016303', 'NULL', 'Tracy', 'L', 'Yuan', '0', '1985-03-06', 'S', 'NULL', 'F', 'tracy6@adventure-works.com', '20000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Rehstr 1235', 'NULL', '1 (11) 500 555-0188', '2014-01-26', '0-1 Miles'], ['16304', '127', 'AW00016304', 'NULL', 'Justin', 'L', 'Moore', '0', '1985-04-14', 'S', 'NULL', 'M', 'justin39@adventure-works.com', '20000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Welt Platz 9', 'NULL', '1 (11) 500 555-0176', '2013-04-30', '0-1 Miles'], ['16305', '121', 'AW00016305', 'NULL', 'Stanley', 'NULL', 'Gonzalez', '0', '1985-03-22', 'S', 'NULL', 'M', 'stanley20@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Am Karlshof 75', 'NULL', '1 (11) 500 555-0130', '2012-05-29', '0-1 Miles'], ['16306', '270', 'AW00016306', 'NULL', 'Kristine', 'W', 'Romero', '0', '1984-08-17', 'M', 'NULL', 'F', 'kristine10@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9779 Shuey Ave.', 'NULL', '1 (11) 500 555-0179', '2013-03-29', '0-1 Miles'], ['16307', '135', 'AW00016307', 'NULL', 'Kelli', 'R', 'Sun', '0', '1974-06-03', 'M', 'NULL', 'F', 'kelli14@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Haberstr 46', 'NULL', '1 (11) 500 555-0123', '2012-05-04', '0-1 Miles'], ['16308', '268', 'AW00016308', 'NULL', 'Sheena', 'L', 'Chander', '0', '1974-04-23', 'M', 'NULL', 'F', 'sheena14@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '165 Showtime Court', 'NULL', '1 (11) 500 555-0145', '2012-02-06', '0-1 Miles'], ['16309', '128', 'AW00016309', 'NULL', 'Desiree', 'A', 'Ortega', '0', '1968-03-20', 'M', 'NULL', 'F', 'desiree18@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Postfach 11 09 00', 'NULL', '1 (11) 500 555-0163', '2012-05-05', '0-1 Miles'], ['16310', '186', 'AW00016310', 'NULL', 'Diana', 'NULL', 'Rubio', '0', '1973-02-28', 'M', 'NULL', 'F', 'diana20@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '48, rue de la Comédie', 'NULL', '1 (11) 500 555-0116', '2012-10-19', '0-1 Miles'], ['16311', '250', 'AW00016311', 'NULL', 'Carl', 'M', 'Beck', '0', '1973-10-06', 'M', 'NULL', 'M', 'carl19@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5925 Rain Drop Circle', 'NULL', '1 (11) 500 555-0116', '2012-01-31', '0-1 Miles'], ['16312', '217', 'AW00016312', 'NULL', 'Bethany', 'H', 'Beck', '0', '1983-07-20', 'S', 'NULL', 'F', 'bethany1@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '11, avenue du Président-Kennedy', 'NULL', '1 (11) 500 555-0155', '2013-11-22', '0-1 Miles'], ['16313', '160', 'AW00016313', 'NULL', 'Hailey', 'P', 'Russell', '0', '1983-09-23', 'S', 'NULL', 'F', 'hailey40@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Husemann Straße 7574', 'NULL', '1 (11) 500 555-0191', '2012-05-13', '0-1 Miles'], ['16314', '269', 'AW00016314', 'NULL', 'Gabriel', 'K', 'Ross', '0', '1983-10-22', 'S', 'NULL', 'M', 'gabriel1@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '3', '9746 Hill Ct', 'NULL', '1 (11) 500 555-0144', '2013-03-10', '0-1 Miles'], ['16315', '196', 'AW00016315', 'NULL', 'Garrett', 'NULL', 'Richardson', '0', '1983-01-19', 'S', 'NULL', 'M', 'garrett14@adventure-works.com', '30000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '3', '84, rue Philibert-Delorme', 'NULL', '1 (11) 500 555-0164', '2013-10-22', '0-1 Miles'], ['16316', '164', 'AW00016316', 'NULL', 'Kelli', 'M', 'Hu', '0', '1983-04-23', 'S', 'NULL', 'F', 'kelli20@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Königsteiner Straße 990', 'NULL', '1 (11) 500 555-0137', '2012-05-15', '0-1 Miles'], ['16317', '263', 'AW00016317', 'NULL', 'Joel', 'NULL', 'Raman', '0', '1983-03-23', 'S', 'NULL', 'M', 'joel11@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '9546 Cardinal Ct.', 'NULL', '1 (11) 500 555-0178', '2012-02-17', '0-1 Miles'], ['16318', '272', 'AW00016318', 'NULL', 'Kellie', 'T', 'Moreno', '0', '1982-12-06', 'S', 'NULL', 'F', 'kellie5@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '5399 Red Maple Ct.', 'NULL', '1 (11) 500 555-0135', '2012-02-23', '0-1 Miles'], ['16319', '220', 'AW00016319', 'NULL', 'Joy', 'A', 'Ortega', '0', '1982-05-21', 'S', 'NULL', 'F', 'joy19@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '222, rue des Pyrenees', 'NULL', '1 (11) 500 555-0173', '2013-03-24', '2-5 Miles'], ['16320', '186', 'AW00016320', 'NULL', 'Rachel', 'E', 'Simmons', '0', '1981-09-01', 'S', 'NULL', 'F', 'rachel63@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '87, cours Mirabeau', 'NULL', '1 (11) 500 555-0140', '2013-03-01', '5-10 Miles'], ['16321', '231', 'AW00016321', 'NULL', 'Ruth', 'D', 'Malhotra', '0', '1985-10-21', 'M', 'NULL', 'F', 'ruth9@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '7058 Crestwood Circle', 'NULL', '1 (11) 500 555-0191', '2013-07-27', '0-1 Miles'], ['16322', '217', 'AW00016322', 'NULL', 'Gloria', 'A', 'Dominguez', '0', '1980-03-16', 'S', 'NULL', 'F', 'gloria13@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Midi-Couleurs', 'NULL', '1 (11) 500 555-0170', '2013-08-16', '0-1 Miles'], ['16323', '209', 'AW00016323', 'NULL', 'Dustin', 'NULL', 'Raje', '0', '1980-10-02', 'S', 'NULL', 'M', 'dustin14@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '211bis, rue des Peupliers', 'NULL', '1 (11) 500 555-0180', '2013-08-19', '2-5 Miles'], ['16324', '231', 'AW00016324', 'NULL', 'Juan', 'A', 'Romero', '0', '1986-03-15', 'M', 'NULL', 'M', 'juan1@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4264 Oak Creek Ct.', 'NULL', '1 (11) 500 555-0158', '2012-02-27', '0-1 Miles'], ['16325', '267', 'AW00016325', 'NULL', 'Emma', 'K', 'Williams', '0', '1919-03-10', 'S', 'NULL', 'F', 'emma1@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2427 Marvello Lane', 'NULL', '1 (11) 500 555-0182', '2013-10-10', '2-5 Miles'], ['16326', '142', 'AW00016326', 'NULL', 'Jésus', 'R', 'Romero', '0', '1978-07-17', 'S', 'NULL', 'M', 'jésus8@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Helsenbergbogen 65', 'NULL', '1 (11) 500 555-0116', '2013-04-09', '0-1 Miles'], ['16327', '135', 'AW00016327', 'NULL', 'Darren', 'NULL', 'Diaz', '0', '1984-03-02', 'S', 'NULL', 'M', 'darren24@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Kampstr 6246', 'NULL', '1 (11) 500 555-0120', '2012-05-12', '0-1 Miles'], ['16328', '274', 'AW00016328', 'NULL', 'Maurice', 'S', 'Rai', '0', '1978-08-15', 'S', 'NULL', 'M', 'maurice18@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '6671 Del Rey St.', 'NULL', '1 (11) 500 555-0191', '2012-02-12', '1-2 Miles'], ['16329', '247', 'AW00016329', 'NULL', 'Jamie', 'C', 'Ye', '0', '1984-12-09', 'S', 'NULL', 'F', 'jamie12@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '2423 Brookview Dr.', 'NULL', '1 (11) 500 555-0165', '2012-01-30', '1-2 Miles'], ['16330', '207', 'AW00016330', 'NULL', 'Luke', 'J', 'Simmons', '0', '1979-01-03', 'S', 'NULL', 'M', 'luke4@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '783, cours Mirabeau', 'NULL', '1 (11) 500 555-0132', '2013-05-20', '2-5 Miles'], ['16331', '56', 'AW00016331', 'NULL', 'Erin', 'R', 'Richardson', '0', '1982-09-09', 'S', 'NULL', 'F', 'erin14@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9684 Rahn Court', 'NULL', '994-555-0111', '2013-03-09', '1-2 Miles'], ['16332', '8', 'AW00016332', 'NULL', 'Joan', 'B', 'Vazquez', '0', '1954-04-03', 'M', 'NULL', 'F', 'joan17@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5736 Monument Blvd', 'NULL', '1 (11) 500 555-0135', '2013-09-23', '1-2 Miles'], ['16333', '616', 'AW00016333', 'NULL', 'Caleb', 'W', 'Hill', '0', '1982-08-21', 'M', 'NULL', 'M', 'caleb43@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1439 N. Michell Canyon Rd.', 'NULL', '490-555-0125', '2013-06-04', '1-2 Miles'], ['16334', '546', 'AW00016334', 'NULL', 'Natalie', 'J', 'Bailey', '0', '1983-06-11', 'S', 'NULL', 'F', 'natalie9@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6790 Loma Linda', 'NULL', '170-555-0110', '2013-01-30', '1-2 Miles'], ['16335', '298', 'AW00016335', 'NULL', 'Kristen', 'NULL', 'Lu', '0', '1983-02-22', 'S', 'NULL', 'F', 'kristen10@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6521 D Bel Air Dr', 'NULL', '175-555-0145', '2013-09-23', '5-10 Miles'], ['16336', '315', 'AW00016336', 'NULL', 'Jonathan', 'A', 'Wright', '0', '1982-12-06', 'M', 'NULL', 'M', 'jonathan51@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5101 Camino Peral', 'NULL', '164-555-0112', '2013-10-01', '5-10 Miles'], ['16337', '316', 'AW00016337', 'NULL', 'Jose', 'NULL', 'White', '0', '1983-01-03', 'M', 'NULL', 'M', 'jose74@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8371 Shenandoah Drive', 'NULL', '123-555-0138', '2013-11-26', '1-2 Miles'], ['16338', '23', 'AW00016338', 'NULL', 'Barbara', 'NULL', 'Zhang', '0', '1954-09-15', 'M', 'NULL', 'F', 'barbara10@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '39 Southbrook Drive', 'NULL', '1 (11) 500 555-0134', '2013-01-28', '1-2 Miles'], ['16339', '27', 'AW00016339', 'NULL', 'Seth', 'A', 'Davis', '0', '1955-10-30', 'M', 'NULL', 'M', 'seth5@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5118 Colorado Dr', 'NULL', '1 (11) 500 555-0192', '2012-12-23', '1-2 Miles'], ['16340', '329', 'AW00016340', 'NULL', 'Sean', 'L', 'Mitchell', '0', '1986-06-23', 'S', 'NULL', 'M', 'sean43@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8489 Barbie Dr.', 'NULL', '849-555-0141', '2013-03-28', '1-2 Miles'], ['16341', '25', 'AW00016341', 'NULL', 'Lacey', 'E', 'Raji', '0', '1957-05-25', 'M', 'NULL', 'F', 'lacey10@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2965 Liscome Way', 'NULL', '1 (11) 500 555-0153', '2013-09-17', '1-2 Miles'], ['16342', '33', 'AW00016342', 'NULL', 'Gregory', 'NULL', 'Jai', '0', '1962-04-05', 'M', 'NULL', 'M', 'gregory14@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3445 Fine Drive', 'NULL', '1 (11) 500 555-0142', '2013-11-26', '1-2 Miles'], ['16343', '17', 'AW00016343', 'NULL', 'Joel', 'E', 'Malhotra', '0', '1968-02-17', 'M', 'NULL', 'M', 'joel4@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3711 Cambridge Drive', 'NULL', '1 (11) 500 555-0113', '2013-06-07', '1-2 Miles'], ['16344', '368', 'AW00016344', 'NULL', 'Xavier', 'K', 'King', '0', '1985-11-15', 'S', 'NULL', 'M', 'xavier25@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7020 Mayette Avenue', 'NULL', '569-555-0134', '2013-10-21', '0-1 Miles'], ['16345', '19', 'AW00016345', 'NULL', 'Francis', 'NULL', 'Ramos', '0', '1959-04-23', 'M', 'NULL', 'M', 'francis15@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1725 La Salle Ave.', 'NULL', '1 (11) 500 555-0169', '2011-01-20', '5-10 Miles'], ['16346', '9', 'AW00016346', 'NULL', 'Marc', 'NULL', 'Navarro', '0', '1964-06-10', 'M', 'NULL', 'M', 'marc14@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2324 Cherry Street', 'NULL', '1 (11) 500 555-0116', '2013-04-16', '1-2 Miles'], ['16347', '14', 'AW00016347', 'NULL', 'Raul', 'E', 'Sharma', '0', '1958-12-01', 'M', 'NULL', 'M', 'raul8@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8335 Elm Rd.', 'NULL', '1 (11) 500 555-0164', '2011-01-26', '1-2 Miles'], ['16348', '4', 'AW00016348', 'NULL', 'Roy', 'NULL', 'Raman', '0', '1960-01-01', 'M', 'NULL', 'M', 'roy12@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5246 Premier Place', 'NULL', '1 (11) 500 555-0136', '2011-01-16', '5-10 Miles'], ['16349', '32', 'AW00016349', 'NULL', 'Levi', 'NULL', 'Sai', '0', '1959-10-13', 'S', 'NULL', 'M', 'levi5@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2702 Alan Dr.', 'NULL', '1 (11) 500 555-0175', '2011-01-25', '1-2 Miles'], ['16350', '18', 'AW00016350', 'NULL', 'Fernando', 'NULL', 'Thompson', '0', '1965-02-10', 'S', 'NULL', 'M', 'fernando14@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5891 Quail Court', 'Unit C', '1 (11) 500 555-0144', '2011-01-23', '5-10 Miles'], ['16351', '26', 'AW00016351', 'NULL', 'Martha', 'C', 'Xu', '0', '1960-01-04', 'S', 'NULL', 'F', 'martha12@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7418 Jumping St.', 'NULL', '1 (11) 500 555-0118', '2010-12-31', '1-2 Miles'], ['16352', '4', 'AW00016352', 'NULL', 'Tiffany', 'E', 'Gao', '0', '1965-08-02', 'S', 'NULL', 'F', 'tiffany15@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3549 Peachwillow St.', 'NULL', '1 (11) 500 555-0199', '2011-01-13', '5-10 Miles'], ['16353', '611', 'AW00016353', 'NULL', 'Alejandro', 'J', 'Xu', '0', '1981-05-06', 'M', 'NULL', 'M', 'alejandro31@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8782 Palisade Court', 'NULL', '993-555-0143', '2013-06-09', '5-10 Miles'], ['16354', '627', 'AW00016354', 'NULL', 'Janet', 'A', 'Torres', '0', '1980-08-06', 'S', 'NULL', 'F', 'janet30@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8981 Stafford Ave', 'NULL', '499-555-0191', '2013-03-09', '1-2 Miles'], ['16355', '307', 'AW00016355', 'NULL', 'Sam', 'J', 'Foster', '0', '1980-12-24', 'S', 'NULL', 'F', 'sam2@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4037 Kiska Court', 'NULL', '461-555-0156', '2013-03-20', '5-10 Miles'], ['16356', '352', 'AW00016356', 'NULL', 'Sophia', 'F', 'Baker', '0', '1981-06-16', 'M', 'NULL', 'F', 'sophia15@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2532 Jacqueline Drive', 'NULL', '199-555-0115', '2013-07-15', '5-10 Miles'], ['16357', '336', 'AW00016357', 'NULL', 'Margaret', 'NULL', 'Russell', '0', '1980-03-15', 'S', 'NULL', 'F', 'margaret5@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5498 Treat Blvd.', 'NULL', '268-555-0160', '2013-08-26', '5-10 Miles'], ['16358', '69', 'AW00016358', 'NULL', 'Samuel', 'L', 'Jai', '0', '1979-07-08', 'M', 'NULL', 'M', 'samuel29@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3011 Normal Avenue', 'NULL', '441-555-0132', '2013-03-08', '5-10 Miles'], ['16359', '553', 'AW00016359', 'NULL', 'Shelby', 'NULL', 'Richardson', '0', '1959-09-08', 'M', 'NULL', 'F', 'shelby10@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8403 Reality Drive', 'NULL', '927-555-0154', '2013-08-13', '5-10 Miles'], ['16360', '648', 'AW00016360', 'NULL', 'Justin', 'NULL', 'Garcia', '0', '1960-01-30', 'M', 'NULL', 'M', 'justin44@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4860 Charlotte Court', 'NULL', '961-555-0125', '2013-03-01', '2-5 Miles'], ['16361', '372', 'AW00016361', 'NULL', 'Wyatt', 'NULL', 'White', '0', '1960-11-06', 'M', 'NULL', 'M', 'wyatt13@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2479 Killdeer Court', '# 120', '698-555-0113', '2013-03-11', '0-1 Miles'], ['16362', '348', 'AW00016362', 'NULL', 'Joshua', 'C', 'Smith', '0', '1960-10-29', 'M', 'NULL', 'M', 'joshua2@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7616 Honey Court', 'NULL', '431-555-0199', '2013-04-18', '0-1 Miles'], ['16363', '52', 'AW00016363', 'NULL', 'Melanie', 'V', 'Ramirez', '0', '1960-08-30', 'M', 'NULL', 'F', 'melanie32@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3131 San Miguel Circle', 'NULL', '328-555-0112', '2013-03-19', '0-1 Miles'], ['16364', '307', 'AW00016364', 'NULL', 'Shawna', 'D', 'Yuan', '0', '1960-11-07', 'M', 'NULL', 'F', 'shawna7@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4683 Joseph Ave', 'NULL', '159-555-0133', '2013-04-23', '0-1 Miles'], ['16365', '59', 'AW00016365', 'NULL', 'Jenna', 'W', 'Young', '0', '1961-01-15', 'M', 'NULL', 'F', 'jenna23@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '24 Jennifer Way', 'NULL', '296-555-0190', '2013-11-16', '1-2 Miles'], ['16366', '49', 'AW00016366', 'NULL', 'Isabelle', 'K', 'Henderson', '0', '1972-01-02', 'M', 'NULL', 'F', 'isabelle5@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5799 Abbey Court', 'NULL', '112-555-0156', '2013-11-11', '1-2 Miles'], ['16367', '536', 'AW00016367', 'NULL', 'Emily', 'NULL', 'Williams', '0', '1977-05-24', 'S', 'NULL', 'F', 'emily2@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6512 Cypress Ave', 'NULL', '394-555-0153', '2013-10-28', '1-2 Miles'], ['16368', '635', 'AW00016368', 'NULL', 'Lauren', 'NULL', 'Williams', '0', '1966-11-04', 'S', 'NULL', 'F', 'lauren20@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7545 Stanford Way', 'NULL', '150-555-0146', '2014-01-01', '1-2 Miles'], ['16369', '616', 'AW00016369', 'NULL', 'Isabel', 'NULL', 'Powell', '0', '1967-08-23', 'M', 'NULL', 'F', 'isabel9@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3794 Trees Drive', 'NULL', '795-555-0110', '2013-09-02', '1-2 Miles'], ['16370', '49', 'AW00016370', 'NULL', 'Molly', 'NULL', 'Gonzalez', '0', '1967-01-22', 'M', 'NULL', 'F', 'molly17@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9297 Mauna Kea Court', 'NULL', '158-555-0153', '2013-12-09', '0-1 Miles'], ['16371', '311', 'AW00016371', 'NULL', 'Caleb', 'S', 'Diaz', '0', '1961-09-11', 'M', 'NULL', 'M', 'caleb18@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5238 MountainAire Parkway', 'NULL', '604-555-0176', '2013-06-15', '1-2 Miles'], ['16372', '336', 'AW00016372', 'NULL', 'Vanessa', 'NULL', 'Foster', '0', '1974-01-29', 'M', 'NULL', 'F', 'vanessa17@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '205 Park Blvd.', 'NULL', '545-555-0122', '2013-04-04', '1-2 Miles'], ['16373', '623', 'AW00016373', 'NULL', 'Sara', 'E', 'Cook', '0', '1962-10-20', 'M', 'NULL', 'F', 'sara23@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3178 Fieldbrook Pl.', 'NULL', '155-555-0127', '2013-04-16', '1-2 Miles'], ['16374', '553', 'AW00016374', 'NULL', 'Edward', 'NULL', 'Phillips', '0', '1963-06-14', 'M', 'NULL', 'M', 'edward17@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8501 Boatwright Ln.', 'NULL', '624-555-0184', '2013-12-20', '0-1 Miles'], ['16375', '372', 'AW00016375', 'NULL', 'Gabriella', 'NULL', 'Hernandez', '0', '1968-08-19', 'M', 'NULL', 'F', 'gabriella42@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5689 Almondtree Circle', 'NULL', '165-555-0161', '2013-05-15', '1-2 Miles'], ['16376', '609', 'AW00016376', 'NULL', 'Maria', 'D', 'Wright', '0', '1963-06-06', 'M', 'NULL', 'F', 'maria61@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1416 Melody Drive', 'NULL', '160-555-0196', '2013-11-02', '0-1 Miles'], ['16377', '338', 'AW00016377', 'NULL', 'Jordan', 'F', 'Adams', '0', '1969-09-21', 'S', 'NULL', 'F', 'jordan44@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '7370 Rolling Green Circle', 'NULL', '354-555-0139', '2013-02-23', '0-1 Miles'], ['16378', '553', 'AW00016378', 'NULL', 'Hailey', 'NULL', 'Baker', '0', '1963-09-15', 'S', 'NULL', 'F', 'hailey56@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '2359 Virgil St.', 'NULL', '285-555-0164', '2013-12-14', '0-1 Miles'], ['16379', '310', 'AW00016379', 'NULL', 'Marc', 'F', 'Jimenez', '0', '1969-09-21', 'M', 'NULL', 'M', 'marc9@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '7370 Rolling Green Circle', 'NULL', '729-555-0114', '2013-12-03', '0-1 Miles'], ['16380', '64', 'AW00016380', 'NULL', 'Mariah', 'NULL', 'Torres', '0', '1975-04-19', 'S', 'NULL', 'F', 'mariah28@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1483 Browse Street', 'NULL', '726-555-0143', '2013-07-25', '1-2 Miles'], ['16381', '612', 'AW00016381', 'NULL', 'Kayla', 'NULL', 'Davis', '0', '1963-12-01', 'S', 'NULL', 'F', 'kayla5@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7888 Creed Ave.', 'NULL', '772-555-0193', '2013-02-28', '1-2 Miles'], ['16382', '642', 'AW00016382', 'NULL', 'Jennifer', 'A', 'Davis', '0', '1963-12-01', 'S', 'NULL', 'F', 'jennifer33@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '8569 W St.', 'NULL', '318-555-0180', '2013-04-07', '0-1 Miles'], ['16383', '355', 'AW00016383', 'NULL', 'Brian', 'A', 'Kelly', '0', '1963-10-25', 'S', 'NULL', 'M', 'brian14@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1454 Hillridge Way', 'NULL', '312-555-0112', '2013-03-03', '1-2 Miles'], ['16384', '345', 'AW00016384', 'NULL', 'Jada', 'NULL', 'Reed', '0', '1964-11-19', 'S', 'NULL', 'F', 'jada12@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2544 Ashley Way', 'NULL', '878-555-0124', '2013-01-31', '0-1 Miles'], ['16385', '368', 'AW00016385', 'NULL', 'James', 'L', 'Perez', '0', '1965-06-15', 'M', 'NULL', 'M', 'james62@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9771 Amador Ct.', 'NULL', '365-555-0177', '2013-06-05', '1-2 Miles'], ['16386', '279', 'AW00016386', 'NULL', 'Philip', 'M', 'Moyer', '0', '1974-03-15', 'S', 'NULL', 'M', 'philip7@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '4200 Mayda Way', 'NULL', '1 (11) 500 555-0198', '2013-08-13', '0-1 Miles'], ['16387', '229', 'AW00016387', 'NULL', 'Douglas', 'NULL', 'Vance', '0', '1974-04-24', 'M', 'NULL', 'M', 'douglas7@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '1183 Royal Links Circle', 'NULL', '1 (11) 500 555-0185', '2013-09-13', '2-5 Miles'], ['16388', '196', 'AW00016388', 'NULL', 'Jay', 'M', 'Torres', '0', '1979-11-23', 'M', 'NULL', 'M', 'jay41@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8, rue de la Comédie', 'NULL', '1 (11) 500 555-0155', '2012-09-28', '0-1 Miles'], ['16389', '164', 'AW00016389', 'NULL', 'Arturo', 'NULL', 'Shen', '0', '1979-10-01', 'S', 'NULL', 'M', 'arturo26@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Erftplatz 99', 'NULL', '1 (11) 500 555-0140', '2012-05-02', '1-2 Miles'], ['16390', '172', 'AW00016390', 'NULL', 'Mario', 'A', 'Nath', '0', '1973-08-25', 'S', 'NULL', 'M', 'mario17@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Lützowplatz 5700', 'NULL', '1 (11) 500 555-0156', '2012-05-25', '0-1 Miles'], ['16391', '213', 'AW00016391', 'NULL', 'Sergio', 'C', 'Suri', '0', '1979-11-01', 'S', 'NULL', 'M', 'sergio0@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '212, rue de Berri', 'NULL', '1 (11) 500 555-0114', '2012-10-01', '1-2 Miles'], ['16392', '180', 'AW00016392', 'NULL', 'Kari', 'NULL', 'Raman', '0', '1974-04-08', 'M', 'NULL', 'F', 'kari12@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '54, rue de Fontfroide', 'NULL', '1 (11) 500 555-0127', '2012-09-28', '0-1 Miles'], ['16393', '224', 'AW00016393', 'NULL', 'Xavier', 'NULL', 'Edwards', '0', '1985-01-06', 'M', 'NULL', 'M', 'xavier41@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '48, rue Montcalm', 'NULL', '1 (11) 500 555-0141', '2012-10-17', '0-1 Miles'], ['16394', '187', 'AW00016394', 'NULL', 'Bryan', 'C', 'Bell', '0', '1978-06-03', 'S', 'NULL', 'M', 'bryan14@adventure-works.com', '10000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '34, place Beaubernard', 'NULL', '1 (11) 500 555-0171', '2012-10-05', '0-1 Miles'], ['16395', '192', 'AW00016395', 'NULL', 'Tara', 'NULL', 'Pal', '0', '1973-06-06', 'M', 'NULL', 'F', 'tara12@adventure-works.com', '10000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '92, rue de Linois', 'NULL', '1 (11) 500 555-0132', '2013-02-27', '0-1 Miles'], ['16396', '149', 'AW00016396', 'NULL', 'Keith', 'W', 'Rai', '0', '1972-10-14', 'S', 'NULL', 'M', 'keith21@adventure-works.com', '10000.00', '4', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Alderstr 8429', 'NULL', '1 (11) 500 555-0122', '2013-04-04', '0-1 Miles'], ['16397', '153', 'AW00016397', 'NULL', 'Andy', 'H', 'Navarro', '0', '1978-04-10', 'M', 'NULL', 'M', 'andy14@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Königstr 387', 'NULL', '1 (11) 500 555-0115', '2013-07-31', '2-5 Miles'], ['16398', '189', 'AW00016398', 'NULL', 'Emmanuel', 'J', 'Rana', '0', '1973-06-12', 'S', 'NULL', 'M', 'emmanuel10@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '45, rue Pierre-Demoulin', 'NULL', '1 (11) 500 555-0166', '2013-03-11', '2-5 Miles'], ['16399', '131', 'AW00016399', 'NULL', 'Arturo', 'R', 'Xu', '0', '1973-04-15', 'S', 'NULL', 'M', 'arturo29@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Hunzinger Allee 193', 'NULL', '1 (11) 500 555-0196', '2013-03-16', '0-1 Miles'], ['16400', '222', 'AW00016400', 'NULL', 'Theodore', 'I', 'Ramos', '0', '1978-03-06', 'M', 'NULL', 'M', 'theodore18@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', "22, rue de l'Espace De Schengen", 'NULL', '1 (11) 500 555-0146', '2012-10-01', '2-5 Miles'], ['16401', '250', 'AW00016401', 'NULL', 'Margaret', 'NULL', 'Gao', '0', '1973-03-08', 'S', 'NULL', 'F', 'margaret21@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '1', '9828 Larch Ct', 'NULL', '1 (11) 500 555-0122', '2013-10-24', '0-1 Miles'], ['16402', '262', 'AW00016402', 'NULL', 'Alexander', 'K', 'Martin', '0', '1973-04-01', 'S', 'NULL', 'M', 'alexander18@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '1', '469 Robinson St.', 'NULL', '1 (11) 500 555-0169', '2013-12-06', '1-2 Miles'], ['16403', '217', 'AW00016403', 'NULL', 'Byron', 'R', 'Suarez', '0', '1972-04-17', 'M', 'NULL', 'M', 'byron13@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '255, avenue Foch', 'NULL', '1 (11) 500 555-0168', '2013-12-10', '2-5 Miles'], ['16404', '198', 'AW00016404', 'NULL', 'Raul', 'T', 'Nara', '0', '1973-01-02', 'M', 'NULL', 'M', 'raul14@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '710, rue Surcouf', 'NULL', '1 (11) 500 555-0146', '2012-10-13', '0-1 Miles'], ['16405', '229', 'AW00016405', 'NULL', 'Adriana', 'A', 'Sai', '0', '1972-10-05', 'M', 'NULL', 'F', 'adriana6@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2467 Clearland Circle', 'NULL', '1 (11) 500 555-0150', '2012-02-17', '0-1 Miles'], ['16406', '262', 'AW00016406', 'NULL', 'Dakota', 'M', 'Henderson', '0', '1978-11-10', 'M', 'NULL', 'M', 'dakota4@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '8847 Gill Ct.', 'NULL', '1 (11) 500 555-0159', '2012-02-05', '0-1 Miles'], ['16407', '260', 'AW00016407', 'NULL', 'Colleen', 'L', 'Zhao', '0', '1971-09-01', 'M', 'NULL', 'F', 'colleen10@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3082 Cowell Rd.', 'NULL', '1 (11) 500 555-0196', '2012-02-21', '0-1 Miles'], ['16408', '201', 'AW00016408', 'NULL', 'Arthur', 'D', 'Madan', '0', '1970-08-08', 'M', 'NULL', 'M', 'arthur9@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4024, rue Surcouf', 'NULL', '1 (11) 500 555-0192', '2012-10-13', '0-1 Miles'], ['16409', '164', 'AW00016409', 'NULL', 'Ebony', 'J', 'Moreno', '0', '1976-10-13', 'M', 'NULL', 'F', 'ebony29@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', 'Reiherweg 5074', 'NULL', '1 (11) 500 555-0176', '2012-05-20', '0-1 Miles'], ['16410', '272', 'AW00016410', 'NULL', 'Joy', 'NULL', 'Navarro', '0', '1970-04-18', 'S', 'NULL', 'F', 'joy11@adventure-works.com', '10000.00', '4', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '1512 Orangewood Ave.', 'NULL', '1 (11) 500 555-0164', '2012-02-20', '0-1 Miles'], ['16411', '172', 'AW00016411', 'NULL', 'Stanley', 'NULL', 'Sanchez', '0', '1970-02-18', 'S', 'NULL', 'M', 'stanley22@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Herzogstr 5772', 'NULL', '1 (11) 500 555-0134', '2012-06-10', '0-1 Miles'], ['16412', '185', 'AW00016412', 'NULL', 'Leah', 'NULL', 'Liang', '0', '1980-12-05', 'S', 'NULL', 'F', 'leah13@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '99, avenue Reille', 'NULL', '1 (11) 500 555-0139', '2012-10-14', '0-1 Miles'], ['16413', '155', 'AW00016413', 'NULL', 'Julia', 'W', 'Gonzalez', '0', '1936-11-03', 'M', 'NULL', 'F', 'julia14@adventure-works.com', '10000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Postenweg 3138', 'NULL', '1 (11) 500 555-0124', '2013-03-05', '0-1 Miles'], ['16414', '127', 'AW00016414', 'NULL', 'Kelly', 'R', 'Flores', '0', '1969-12-15', 'S', 'NULL', 'F', 'kelly17@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Curieweg 3', 'NULL', '1 (11) 500 555-0140', '2012-06-12', '0-1 Miles'], ['16415', '224', 'AW00016415', 'NULL', 'Andre', 'R', 'Patel', '0', '1969-12-15', 'S', 'NULL', 'M', 'andre3@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '3963, rue Lamarck', 'NULL', '1 (11) 500 555-0177', '2012-11-14', '0-1 Miles'], ['16416', '190', 'AW00016416', 'NULL', 'Brian', 'A', 'Rivera', '0', '1975-05-14', 'S', 'NULL', 'M', 'brian28@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '44, rue du Départ', 'NULL', '1 (11) 500 555-0195', '2012-11-08', '0-1 Miles'], ['16417', '234', 'AW00016417', 'NULL', 'Noah', 'NULL', 'Bryant', '0', '1975-08-29', 'S', 'NULL', 'M', 'noah15@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '9875 Pheasant Drive', 'NULL', '1 (11) 500 555-0182', '2012-02-19', '0-1 Miles'], ['16418', '202', 'AW00016418', 'NULL', 'Katrina', 'W', 'Rai', '0', '1974-08-22', 'S', 'NULL', 'F', 'katrina16@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '25, rue des Berges', 'NULL', '1 (11) 500 555-0159', '2013-02-13', '0-1 Miles'], ['16419', '118', 'AW00016419', 'NULL', 'Lacey', 'L', 'Simpson', '0', '1968-12-20', 'M', 'NULL', 'F', 'lacey38@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Auf Der Steige 2999', 'NULL', '1 (11) 500 555-0183', '2013-10-29', '0-1 Miles'], ['16420', '266', 'AW00016420', 'NULL', 'Eddie', 'L', 'Alonso', '0', '1974-11-15', 'S', 'NULL', 'M', 'eddie8@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '8394 Summertime Dr.', 'NULL', '1 (11) 500 555-0168', '2012-02-18', '0-1 Miles'], ['16421', '219', 'AW00016421', 'NULL', 'Natasha', 'G', 'Diaz', '0', '1974-10-06', 'S', 'NULL', 'F', 'natasha3@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '2, rue de Maubeuge', 'NULL', '1 (11) 500 555-0116', '2013-10-30', '0-1 Miles'], ['16422', '174', 'AW00016422', 'NULL', 'Kurt', 'S', 'Xu', '0', '1979-09-20', 'S', 'NULL', 'M', 'kurt4@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Welt Platz 6', 'NULL', '1 (11) 500 555-0111', '2012-06-10', '0-1 Miles'], ['16423', '211', 'AW00016423', 'NULL', 'Sergio', 'NULL', 'Madan', '0', '1938-11-20', 'S', 'NULL', 'M', 'sergio8@adventure-works.com', '10000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '71, rue Faubourg St Antoine', 'NULL', '1 (11) 500 555-0182', '2013-10-01', '0-1 Miles'], ['16424', '200', 'AW00016424', 'NULL', 'Brandi', 'NULL', 'Diaz', '0', '1972-01-15', 'M', 'NULL', 'F', 'brandi3@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '1001, rue des Bouchers', 'NULL', '1 (11) 500 555-0189', '2012-10-29', '0-1 Miles'], ['16425', '206', 'AW00016425', 'NULL', 'Lisa', 'S', 'Lu', '0', '1971-08-15', 'M', 'NULL', 'F', 'lisa15@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '70, rue Georges-Clémenceau', 'NULL', '1 (11) 500 555-0196', '2012-11-13', '0-1 Miles'], ['16426', '210', 'AW00016426', 'NULL', 'Jorge', 'R', 'Ye', '0', '1972-01-08', 'M', 'NULL', 'M', 'jorge11@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '8, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0111', '2012-11-26', '0-1 Miles'], ['16427', '273', 'AW00016427', 'NULL', 'Kendra', 'C', 'Alonso', '0', '1977-03-11', 'S', 'NULL', 'F', 'kendra8@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6886 Berry Dr.', 'NULL', '1 (11) 500 555-0116', '2012-03-05', '0-1 Miles'], ['16428', '234', 'AW00016428', 'NULL', 'Ryan', 'NULL', 'Ross', '0', '1968-09-24', 'S', 'NULL', 'M', 'ryan6@adventure-works.com', '20000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '1088 Ash Lane', 'NULL', '1 (11) 500 555-0110', '2012-03-19', '0-1 Miles'], ['16429', '175', 'AW00016429', 'NULL', 'Jaclyn', 'NULL', 'Luo', '0', '1973-10-12', 'M', 'NULL', 'F', 'jaclyn29@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Königstr 426', 'NULL', '1 (11) 500 555-0162', '2012-06-27', '2-5 Miles'], ['16430', '196', 'AW00016430', 'NULL', 'Franklin', 'M', 'Rai', '0', '1971-02-04', 'S', 'NULL', 'M', 'franklin34@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '195, rue de Varenne', 'NULL', '1 (11) 500 555-0177', '2012-11-19', '0-1 Miles'], ['16431', '199', 'AW00016431', 'NULL', 'Jermaine', 'NULL', 'Rodriguez', '0', '1976-08-30', 'S', 'NULL', 'M', 'jermaine18@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5151, rue Saint-Lazare', 'NULL', '1 (11) 500 555-0189', '2012-11-01', '0-1 Miles'], ['16432', '207', 'AW00016432', 'NULL', 'John', 'M', 'Garcia', '0', '1975-08-05', 'S', 'NULL', 'M', 'john35@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2, avenue de la Gare', 'NULL', '1 (11) 500 555-0118', '2012-11-12', '0-1 Miles'], ['16433', '202', 'AW00016433', 'NULL', 'Mathew', 'G', 'Dominguez', '0', '1975-05-24', 'M', 'NULL', 'M', 'mathew8@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '11, place de la République', 'NULL', '1 (11) 500 555-0171', '2012-11-05', '0-1 Miles'], ['16434', '171', 'AW00016434', 'NULL', 'Taylor', 'A', 'Bailey', '0', '1970-04-03', 'M', 'NULL', 'F', 'taylor9@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Postfach 66 07 00', 'NULL', '1 (11) 500 555-0127', '2013-06-02', '0-1 Miles'], ['16435', '261', 'AW00016435', 'NULL', 'Steven', 'NULL', 'Cooper', '0', '1975-07-06', 'M', 'NULL', 'M', 'steven18@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7349 Macalven Dr.', 'NULL', '1 (11) 500 555-0187', '2013-12-17', '0-1 Miles'], ['16436', '189', 'AW00016436', 'NULL', 'Ethan', 'NULL', 'Henderson', '0', '1974-08-11', 'S', 'NULL', 'M', 'ethan1@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '3', '534, rue Mazagran', 'NULL', '1 (11) 500 555-0176', '2012-12-05', '0-1 Miles'], ['16437', '244', 'AW00016437', 'NULL', 'Jésus', 'E', 'Gutierrez', '0', '1983-04-23', 'S', 'NULL', 'M', 'jésus10@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '5284 Dumbarton Dr.', 'NULL', '1 (11) 500 555-0112', '2013-03-20', '2-5 Miles'], ['16438', '193', 'AW00016438', 'NULL', 'Kaitlin', 'NULL', 'Arthur', '0', '1982-01-14', 'M', 'NULL', 'F', 'kaitlin6@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '34, rue des Rosiers', 'NULL', '1 (11) 500 555-0116', '2013-04-26', '0-1 Miles'], ['16439', '193', 'AW00016439', 'NULL', 'Dawn', 'L', 'Deng', '0', '1985-04-24', 'S', 'NULL', 'F', 'dawn25@adventure-works.com', '20000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '1, rue de Fontfroide', 'NULL', '1 (11) 500 555-0194', '2013-08-29', '0-1 Miles'], ['16440', '202', 'AW00016440', 'NULL', 'Jimmy', 'NULL', 'Martin', '0', '1985-06-02', 'S', 'NULL', 'M', 'jimmy2@adventure-works.com', '20000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '34, rue Philibert-Delorme', 'NULL', '1 (11) 500 555-0151', '2013-02-26', '0-1 Miles'], ['16441', '127', 'AW00016441', 'NULL', 'Jason', 'NULL', 'Young', '0', '1984-09-08', 'M', 'NULL', 'M', 'jason45@adventure-works.com', '20000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Reiherweg 54', 'NULL', '1 (11) 500 555-0171', '2013-02-15', '0-1 Miles'], ['16442', '131', 'AW00016442', 'NULL', 'Luke', 'P', 'Gonzalez', '0', '1985-02-23', 'S', 'NULL', 'M', 'luke40@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Winterfeldtstr 2529', 'NULL', '1 (11) 500 555-0167', '2012-06-10', '0-1 Miles'], ['16443', '239', 'AW00016443', 'NULL', 'Dawn', 'C', 'Gao', '0', '1984-09-04', 'S', 'NULL', 'F', 'dawn17@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3930 Sony Hill Circle', 'NULL', '1 (11) 500 555-0144', '2014-01-03', '0-1 Miles'], ['16444', '267', 'AW00016444', 'NULL', 'Erika', 'NULL', 'Carlson', '0', '1969-04-21', 'M', 'NULL', 'F', 'erika15@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6275 Bel Air Drive', 'NULL', '1 (11) 500 555-0137', '2012-03-25', '0-1 Miles'], ['16445', '234', 'AW00016445', 'NULL', 'Caitlin', 'NULL', 'Ward', '0', '1967-12-11', 'S', 'NULL', 'F', 'caitlin10@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3296 Tri-state Ave', 'NULL', '1 (11) 500 555-0188', '2012-03-10', '2-5 Miles'], ['16446', '266', 'AW00016446', 'NULL', 'Kristine', 'NULL', 'Munoz', '0', '1967-11-09', 'M', 'NULL', 'F', 'kristine8@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3970 Falcon Dr', 'NULL', '1 (11) 500 555-0146', '2012-03-09', '2-5 Miles'], ['16447', '267', 'AW00016447', 'NULL', 'Kate', 'NULL', 'Becker', '0', '1973-12-05', 'M', 'NULL', 'F', 'kate17@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9032 Santa Fe', 'NULL', '1 (11) 500 555-0141', '2012-03-29', '0-1 Miles'], ['16448', '168', 'AW00016448', 'NULL', 'Cheryl', 'C', 'Martin', '0', '1967-08-02', 'M', 'NULL', 'F', 'cheryl2@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Haberstr 328', 'NULL', '1 (11) 500 555-0143', '2012-06-11', '0-1 Miles'], ['16449', '233', 'AW00016449', 'NULL', 'Casey', 'NULL', 'Browning', '0', '1983-08-14', 'S', 'NULL', 'M', 'casey39@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2599 Vine Hill Way', 'NULL', '1 (11) 500 555-0178', '2013-03-25', '0-1 Miles'], ['16450', '187', 'AW00016450', 'NULL', 'Rebekah', 'P', 'Gutierrez', '0', '1983-02-12', 'S', 'NULL', 'F', 'rebekah31@adventure-works.com', '30000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9529 Oonegal Court', 'NULL', '1 (11) 500 555-0128', '2013-10-12', '0-1 Miles'], ['16451', '149', 'AW00016451', 'NULL', 'Karl', 'L', 'Stone', '0', '1983-03-05', 'S', 'NULL', 'M', 'karl0@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Berliner Platz 1', 'NULL', '1 (11) 500 555-0174', '2012-05-30', '0-1 Miles'], ['16452', '232', 'AW00016452', 'NULL', 'Cassie', 'NULL', 'Luo', '0', '1983-05-21', 'S', 'NULL', 'F', 'cassie4@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '9428 Mehaffey Way', 'NULL', '1 (11) 500 555-0196', '2012-03-04', '0-1 Miles'], ['16453', '271', 'AW00016453', 'NULL', 'Mayra', 'NULL', 'Chandra', '0', '1982-10-07', 'S', 'NULL', 'F', 'mayra1@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '8614 Lagoon Court', 'NULL', '1 (11) 500 555-0133', '2013-04-10', '2-5 Miles'], ['16454', '274', 'AW00016454', 'NULL', 'Marco', 'NULL', 'Suri', '0', '1982-12-03', 'M', 'NULL', 'M', 'marco0@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '8510 G St.', 'NULL', '1 (11) 500 555-0165', '2013-02-12', '0-1 Miles'], ['16455', '208', 'AW00016455', 'NULL', 'Deb', 'A', 'Moreno', '0', '1917-02-09', 'M', 'NULL', 'F', 'deb3@adventure-works.com', '10000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '99, rue du Départ', 'NULL', '1 (11) 500 555-0144', '2013-03-27', '0-1 Miles'], ['16456', '147', 'AW00016456', 'NULL', 'Larry', 'NULL', 'Navarro', '0', '1981-01-09', 'S', 'NULL', 'M', 'larry12@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Kapellstr 4924', 'NULL', '1 (11) 500 555-0117', '2013-09-06', '5-10 Miles'], ['16457', '156', 'AW00016457', 'NULL', 'Kathleen', 'NULL', 'Martin', '0', '1981-08-18', 'S', 'NULL', 'F', 'kathleen2@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Lindenalle 1854', 'NULL', '1 (11) 500 555-0188', '2013-08-13', '2-5 Miles'], ['16458', '132', 'AW00016458', 'NULL', 'Michele', 'NULL', 'Ruiz', '0', '1982-06-18', 'S', 'NULL', 'F', 'michele37@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Pascalstr 24', 'NULL', '1 (11) 500 555-0158', '2013-03-27', '2-5 Miles'], ['16459', '236', 'AW00016459', 'NULL', 'Carolyn', 'M', 'Kapoor', '0', '1981-10-15', 'M', 'NULL', 'F', 'carolyn2@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '9210 Camino Peral', 'NULL', '1 (11) 500 555-0154', '2013-02-14', '0-1 Miles'], ['16460', '277', 'AW00016460', 'NULL', 'Jodi', 'NULL', 'Xu', '0', '1982-05-17', 'S', 'NULL', 'F', 'jodi5@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '6594 Bent Tree Lane', 'NULL', '1 (11) 500 555-0139', '2013-06-15', '2-5 Miles'], ['16461', '279', 'AW00016461', 'NULL', 'Rosa', 'NULL', 'Wu', '0', '1981-08-05', 'S', 'NULL', 'F', 'rosa7@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '939 Vista Del Diablo', 'NULL', '1 (11) 500 555-0155', '2012-03-01', '0-1 Miles'], ['16462', '147', 'AW00016462', 'NULL', 'Marissa', 'NULL', 'Gonzales', '0', '1980-10-14', 'S', 'NULL', 'F', 'marissa14@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Höhenstr 9449', 'NULL', '1 (11) 500 555-0147', '2014-01-10', '2-5 Miles'], ['16463', '155', 'AW00016463', 'NULL', 'Anna', 'L', 'Murphy', '0', '1981-04-20', 'S', 'NULL', 'F', 'anna10@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Kappellweg 613', 'NULL', '1 (11) 500 555-0182', '2013-06-11', '5-10 Miles'], ['16464', '260', 'AW00016464', 'NULL', 'Alan', 'V', 'Liu', '0', '1979-11-15', 'S', 'NULL', 'M', 'alan8@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '6885 Auburn', 'NULL', '1 (11) 500 555-0111', '2013-05-01', '0-1 Miles'], ['16465', '231', 'AW00016465', 'NULL', 'Kara', 'NULL', 'Goel', '0', '1980-04-30', 'S', 'NULL', 'F', 'kara17@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '4511 L St.', 'NULL', '1 (11) 500 555-0143', '2012-03-23', '0-1 Miles'], ['16466', '127', 'AW00016466', 'NULL', 'Alisha', 'I', 'Kumar', '0', '1979-12-13', 'S', 'NULL', 'F', 'alisha32@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Heiderweg 4983', 'NULL', '1 (11) 500 555-0112', '2012-06-27', '0-1 Miles'], ['16467', '242', 'AW00016467', 'NULL', 'Ronald', 'E', 'Srini', '0', '1980-03-07', 'S', 'NULL', 'M', 'ronald10@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '8459 Leed Court West', 'NULL', '1 (11) 500 555-0159', '2013-10-14', '1-2 Miles'], ['16468', '198', 'AW00016468', 'NULL', 'Orlando', 'A', 'Dominguez', '0', '1981-05-17', 'S', 'NULL', 'M', 'orlando12@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '95, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0169', '2013-09-08', '2-5 Miles'], ['16469', '188', 'AW00016469', 'NULL', 'Michele', 'NULL', 'Tang', '0', '1981-05-18', 'S', 'NULL', 'F', 'michele4@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '70, place du Tertre', 'NULL', '1 (11) 500 555-0161', '2013-04-16', '2-5 Miles'], ['16470', '269', 'AW00016470', 'NULL', 'Wesley', 'NULL', 'Guo', '0', '1981-05-08', 'M', 'NULL', 'M', 'wesley17@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9353 Kirkwood Dr.', 'NULL', '1 (11) 500 555-0164', '2012-03-07', '1-2 Miles'], ['16471', '207', 'AW00016471', 'NULL', 'Vanessa', 'NULL', 'Hayes', '0', '1919-02-14', 'M', 'NULL', 'F', 'vanessa23@adventure-works.com', '10000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '84, avenue des Ternes', 'NULL', '1 (11) 500 555-0118', '2013-12-03', '0-1 Miles'], ['16472', '196', 'AW00016472', 'NULL', 'Olivia', 'A', 'Robinson', '0', '1985-03-10', 'S', 'NULL', 'F', 'olivia17@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '32, rue Lafayette', 'NULL', '1 (11) 500 555-0130', '2013-11-01', '1-2 Miles'], ['16473', '138', 'AW00016473', 'NULL', 'Dawn', 'NULL', 'Andersen', '0', '1978-08-31', 'S', 'NULL', 'F', 'dawn37@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Nonnendamm 19', 'NULL', '1 (11) 500 555-0181', '2013-10-05', '0-1 Miles'], ['16474', '133', 'AW00016474', 'NULL', 'Jay', 'NULL', 'Serrano', '0', '1978-10-19', 'M', 'NULL', 'M', 'jay46@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Alte Landstr 414', 'NULL', '1 (11) 500 555-0173', '2013-03-28', '0-1 Miles'], ['16475', '144', 'AW00016475', 'NULL', 'Kurt', 'L', 'Anand', '0', '1984-12-09', 'S', 'NULL', 'M', 'kurt21@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Heiderweg 4983', 'NULL', '1 (11) 500 555-0115', '2012-06-01', '1-2 Miles'], ['16476', '200', 'AW00016476', 'NULL', 'Shawn', 'J', 'Xie', '0', '1979-06-10', 'S', 'NULL', 'M', 'shawn5@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '5, avenue de Norvege', 'NULL', '1 (11) 500 555-0145', '2012-12-04', '0-1 Miles'], ['16477', '611', 'AW00016477', 'NULL', 'Anna', 'E', 'Gonzales', '0', '1982-11-01', 'S', 'NULL', 'F', 'anna42@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '4657 Roundhouse Place', 'NULL', '101-555-0173', '2013-02-15', '1-2 Miles'], ['16478', '348', 'AW00016478', 'NULL', 'Adrian', 'L', 'Gray', '0', '1982-07-21', 'S', 'NULL', 'M', 'adrian8@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1502 Marion Ct.', 'NULL', '379-555-0152', '2013-10-12', '0-1 Miles'], ['16479', '65', 'AW00016479', 'NULL', 'Victoria', 'H', 'Brooks', '0', '1981-11-06', 'S', 'NULL', 'F', 'victoria46@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6313 Collins Drive', 'NULL', '127-555-0139', '2013-05-26', '5-10 Miles'], ['16480', '23', 'AW00016480', 'NULL', 'Alan', 'NULL', 'Zhou', '0', '1960-02-05', 'M', 'NULL', 'M', 'alan12@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '265 Maria Vega Court', 'NULL', '1 (11) 500 555-0128', '2013-06-28', '1-2 Miles'], ['16481', '35', 'AW00016481', 'NULL', 'Madison', 'J', 'Bryant', '0', '1954-12-15', 'S', 'NULL', 'F', 'madison30@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4008 Tosca Way', 'NULL', '1 (11) 500 555-0114', '2013-09-30', '5-10 Miles'], ['16482', '32', 'AW00016482', 'NULL', 'Tabitha', 'E', 'Arthur', '0', '1955-11-12', 'M', 'NULL', 'F', 'tabitha5@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6992 Mt. View Drive', 'NULL', '1 (11) 500 555-0169', '2011-01-11', '5-10 Miles'], ['16483', '35', 'AW00016483', 'NULL', 'Warren', 'S', 'Jai', '0', '1961-10-13', 'M', 'NULL', 'M', 'warren42@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9276 Blackwood Drive', 'NULL', '1 (11) 500 555-0119', '2011-01-02', '5-10 Miles'], ['16484', '16', 'AW00016484', 'NULL', 'Dustin', 'A', 'Lal', '0', '1955-08-07', 'M', 'NULL', 'M', 'dustin8@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3193 Mehaffey Way', 'NULL', '1 (11) 500 555-0119', '2011-01-19', '5-10 Miles'], ['16485', '301', 'AW00016485', 'NULL', 'Ian', 'A', 'Foster', '0', '1985-10-21', 'S', 'NULL', 'M', 'ian56@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1008 Lydia Lane', 'NULL', '924-555-0118', '2013-10-12', '5-10 Miles'], ['16486', '12', 'AW00016486', 'NULL', 'Rachael', 'R', 'Madan', '0', '1956-11-12', 'M', 'NULL', 'F', 'rachael7@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8193 Scenic Ct.', 'NULL', '1 (11) 500 555-0131', '2013-03-01', '1-2 Miles'], ['16487', '36', 'AW00016487', 'NULL', 'Brianna', 'K', 'Griffin', '0', '1956-11-13', 'S', 'NULL', 'F', 'brianna66@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8144 Ryan Court', 'NULL', '1 (11) 500 555-0118', '2013-06-08', '5-10 Miles'], ['16488', '31', 'AW00016488', 'NULL', 'Joel', 'C', 'Rodriguez', '0', '1956-10-25', 'M', 'NULL', 'M', 'joel18@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7059 Garrow Dr.', 'NULL', '1 (11) 500 555-0113', '2013-03-19', '5-10 Miles'], ['16489', '5', 'AW00016489', 'NULL', 'Frederick', 'J', 'Garcia', '0', '1957-01-02', 'M', 'NULL', 'M', 'frederick13@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2966 St. George Dr.', 'NULL', '1 (11) 500 555-0137', '2013-03-16', '5-10 Miles'], ['16490', '361', 'AW00016490', 'NULL', 'Megan', 'G', 'Robinson', '0', '1985-11-14', 'M', 'NULL', 'F', 'megan21@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6003 San Vincente Drive', 'NULL', '506-555-0188', '2013-05-19', '5-10 Miles'], ['16491', '51', 'AW00016491', 'NULL', 'Christian', 'J', 'Garcia', '0', '1984-10-16', 'S', 'NULL', 'M', 'christian52@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2860 Brentwood Circle', 'NULL', '172-555-0164', '2013-01-29', '5-10 Miles'], ['16492', '19', 'AW00016492', 'NULL', 'Theodore', 'M', 'Sanz', '0', '1957-09-21', 'M', 'NULL', 'M', 'theodore21@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '4682 Birch Bark Rd.', 'NULL', '1 (11) 500 555-0186', '2013-10-30', '5-10 Miles'], ['16493', '37', 'AW00016493', 'NULL', 'Brenda', 'L', 'Fernandez', '0', '1959-05-05', 'M', 'NULL', 'F', 'brenda19@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6908 Laguna Circle', 'NULL', '1 (11) 500 555-0111', '2011-01-13', '5-10 Miles'], ['16494', '40', 'AW00016494', 'NULL', 'Jordyn', 'NULL', 'Simmons', '0', '1965-11-21', 'S', 'NULL', 'F', 'jordyn15@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1915 Standing Grove Dr.', 'NULL', '1 (11) 500 555-0126', '2011-01-24', '1-2 Miles'], ['16495', '40', 'AW00016495', 'NULL', 'Monique', 'NULL', 'Ramos', '0', '1960-02-05', 'S', 'NULL', 'F', 'monique14@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3207 Mario Way', 'NULL', '1 (11) 500 555-0111', '2011-01-18', '1-2 Miles'], ['16496', '3', 'AW00016496', 'NULL', 'Dawn', 'R', 'Tang', '0', '1965-05-14', 'S', 'NULL', 'F', 'dawn28@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6345 Katharyn Drive', 'NULL', '1 (11) 500 555-0130', '2011-01-24', '5-10 Miles'], ['16497', '66', 'AW00016497', 'NULL', 'Julia', 'P', 'Peterson', '0', '1981-01-03', 'S', 'NULL', 'F', 'julia59@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7089 Monti Circle', 'NULL', '391-555-0176', '2013-05-31', '5-10 Miles'], ['16498', '618', 'AW00016498', 'NULL', 'Hunter', 'NULL', 'Jones', '0', '1981-05-08', 'S', 'NULL', 'M', 'hunter62@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9353 Kirkwood Dr.', 'NULL', '812-555-0171', '2013-09-07', '5-10 Miles'], ['16499', '626', 'AW00016499', 'NULL', 'Danielle', 'NULL', 'Kelly', '0', '1981-04-15', 'S', 'NULL', 'F', 'danielle5@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3840 Gold Crest Ct', 'NULL', '808-555-0114', '2013-12-23', '5-10 Miles'], ['16500', '635', 'AW00016500', 'NULL', 'Chloe', 'NULL', 'Perry', '0', '1980-08-19', 'S', 'NULL', 'F', 'chloe74@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9196 Landana Dr.', 'NULL', '393-555-0113', '2013-04-20', '1-2 Miles'], ['16501', '637', 'AW00016501', 'NULL', 'Vanessa', 'V', 'Wood', '0', '1981-01-23', 'S', 'NULL', 'F', 'vanessa2@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '962 Gonzalez Court', 'NULL', '737-555-0151', '2013-09-02', '5-10 Miles'], ['16502', '553', 'AW00016502', 'NULL', 'Jackson', 'M', 'Parker', '0', '1980-08-12', 'S', 'NULL', 'M', 'jackson29@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5018 Bloching Circle', 'NULL', '361-555-0129', '2014-01-12', '5-10 Miles'], ['16503', '339', 'AW00016503', 'NULL', 'Christian', 'NULL', 'Anderson', '0', '1980-08-29', 'M', 'NULL', 'M', 'christian45@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6019 Ironwood Way', 'NULL', '367-555-0132', '2013-05-17', '5-10 Miles'], ['16504', '359', 'AW00016504', 'NULL', 'Justin', 'NULL', 'Russell', '0', '1980-02-02', 'S', 'NULL', 'M', 'justin17@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1687 Rose Drive', 'NULL', '455-555-0186', '2013-04-05', '1-2 Miles'], ['16505', '322', 'AW00016505', 'NULL', 'Erin', 'NULL', 'Gray', '0', '1985-08-03', 'S', 'NULL', 'F', 'erin10@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8801 Lee Lane', 'NULL', '131-555-0192', '2013-12-11', '5-10 Miles'], ['16506', '53', 'AW00016506', 'NULL', 'Catherine', 'L', 'Murphy', '0', '1984-12-09', 'M', 'NULL', 'F', 'catherine13@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2399 Stafford Ave', 'NULL', '399-555-0117', '2013-04-06', '5-10 Miles'], ['16507', '183', 'AW00016507', 'NULL', 'Tracy', 'B', 'Nath', '0', '1945-05-18', 'M', 'NULL', 'F', 'tracy17@adventure-works.com', '10000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', '40, rue de Terre Neuve', 'NULL', '1 (11) 500 555-0186', '2013-07-14', '2-5 Miles'], ['16508', '222', 'AW00016508', 'NULL', 'Brent', 'NULL', 'Zhu', '0', '1945-02-10', 'M', 'NULL', 'M', 'brent13@adventure-works.com', '10000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8, rue des Vendangeurs', 'NULL', '1 (11) 500 555-0151', '2013-08-23', '2-5 Miles'], ['16509', '246', 'AW00016509', 'NULL', 'Veronica', 'NULL', 'Sai', '0', '1946-10-30', 'M', 'NULL', 'F', 'veronica6@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3061 Arcadia Pl.', 'NULL', '1 (11) 500 555-0158', '2012-03-25', '0-1 Miles'], ['16510', '203', 'AW00016510', 'NULL', 'Brad', 'G', 'Nara', '0', '1948-06-03', 'M', 'NULL', 'M', 'brad17@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '33, allée des Princes', 'NULL', '1 (11) 500 555-0132', '2013-04-08', '0-1 Miles'], ['16511', '235', 'AW00016511', 'NULL', 'Joe', 'G', 'Raman', '0', '1947-12-18', 'M', 'NULL', 'M', 'joe15@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3870 Gonzalez Court', 'NULL', '1 (11) 500 555-0169', '2013-02-02', '0-1 Miles'], ['16512', '279', 'AW00016512', 'NULL', 'Ricardo', 'NULL', 'Sharma', '0', '1947-10-05', 'S', 'NULL', 'M', 'ricardo9@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7765 Sunsine Drive', 'NULL', '1 (11) 500 555-0115', '2012-03-29', '0-1 Miles'], ['16513', '205', 'AW00016513', 'NULL', 'Ronnie', 'NULL', 'Wagner', '0', '1948-11-10', 'S', 'NULL', 'M', 'ronnie1@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '49, rue Royale', 'NULL', '1 (11) 500 555-0152', '2012-11-28', '1-2 Miles'], ['16514', '7', 'AW00016514', 'NULL', 'Manuel', 'A', 'Fernandez', '0', '1985-07-10', 'S', 'NULL', 'M', 'manuel14@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '251 Ravenwood Dr.', 'NULL', '1 (11) 500 555-0117', '2011-01-10', '1-2 Miles'], ['16515', '31', 'AW00016515', 'NULL', 'Troy', 'NULL', 'Sai', '0', '1985-08-03', 'M', 'NULL', 'M', 'troy6@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '458 Union St', 'NULL', '1 (11) 500 555-0126', '2011-01-17', '0-1 Miles'], ['16516', '27', 'AW00016516', 'NULL', 'Melvin', 'NULL', 'She', '0', '1986-01-24', 'M', 'NULL', 'M', 'melvin0@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2551 Damascus Loop', 'NULL', '1 (11) 500 555-0113', '2011-01-18', '0-1 Miles'], ['16517', '19', 'AW00016517', 'NULL', 'Katrina', 'M', 'Raji', '0', '1981-09-16', 'M', 'NULL', 'F', 'katrina20@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '3196 Peachwillow', 'NULL', '1 (11) 500 555-0113', '2010-12-31', '2-5 Miles'], ['16518', '33', 'AW00016518', 'NULL', 'Krystal', 'NULL', 'Holt', '0', '1981-12-17', 'S', 'NULL', 'F', 'krystal6@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '6119 Grasswood Circle', 'NULL', '1 (11) 500 555-0163', '2011-01-15', '1-2 Miles'], ['16519', '25', 'AW00016519', 'NULL', 'Yolanda', 'NULL', 'Chander', '0', '1982-02-11', 'S', 'NULL', 'F', 'yolanda14@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '4409 North Ranchford', 'NULL', '1 (11) 500 555-0143', '2011-01-24', '2-5 Miles'], ['16520', '32', 'AW00016520', 'NULL', 'Misty', 'NULL', 'Raji', '0', '1982-04-22', 'M', 'NULL', 'F', 'misty23@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '3511 B Eagle Peak Rd.', 'NULL', '1 (11) 500 555-0195', '2011-01-04', '2-5 Miles'], ['16521', '24', 'AW00016521', 'NULL', 'Tonya', 'L', 'She', '0', '1985-02-07', 'S', 'NULL', 'F', 'tonya0@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '8534 Willow Pass Road', 'NULL', '1 (11) 500 555-0172', '2011-01-20', '2-5 Miles'], ['16522', '21', 'AW00016522', 'NULL', 'Casey', 'NULL', 'Pal', '0', '1985-01-01', 'M', 'NULL', 'F', 'casey13@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '2190 Rock Creek Way', 'NULL', '1 (11) 500 555-0137', '2011-01-07', '2-5 Miles'], ['16523', '25', 'AW00016523', 'NULL', 'Sandra', 'C', 'Huang', '0', '1984-07-10', 'M', 'NULL', 'F', 'sandra12@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6513 Beauer Lane', 'NULL', '1 (11) 500 555-0173', '2011-01-22', '0-1 Miles'], ['16524', '24', 'AW00016524', 'NULL', 'Damien', 'NULL', 'Huang', '0', '1985-01-20', 'M', 'NULL', 'M', 'damien4@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5484 Viking Dr', 'NULL', '1 (11) 500 555-0114', '2011-01-16', '0-1 Miles'], ['16525', '4', 'AW00016525', 'NULL', 'Martha', 'NULL', 'Liang', '0', '1983-11-22', 'M', 'NULL', 'F', 'martha16@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '2987 Wiget Lane', 'NULL', '1 (11) 500 555-0131', '2011-01-14', '0-1 Miles'], ['16526', '39', 'AW00016526', 'NULL', 'Arthur', 'L', 'Perez', '0', '1984-04-23', 'S', 'NULL', 'M', 'arthur22@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5972 Donegal Court', 'NULL', '1 (11) 500 555-0111', '2011-01-16', '0-1 Miles'], ['16527', '9', 'AW00016527', 'NULL', 'Cory', 'O', 'Arun', '0', '1983-12-18', 'S', 'NULL', 'M', 'cory5@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5455 Grenola Dr', 'NULL', '1 (11) 500 555-0118', '2011-01-08', '0-1 Miles'], ['16528', '36', 'AW00016528', 'NULL', 'Dominique', 'NULL', 'Garcia', '0', '1984-02-22', 'S', 'NULL', 'F', 'dominique12@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2020 Bell Dr.', 'NULL', '1 (11) 500 555-0163', '2011-01-24', '0-1 Miles'], ['16529', '4', 'AW00016529', 'NULL', 'Jonathon', 'R', 'Gutierrez', '0', '1983-01-25', 'M', 'NULL', 'M', 'jonathon8@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3571 N St.', 'NULL', '1 (11) 500 555-0161', '2011-01-02', '0-1 Miles'], ['16530', '249', 'AW00016530', 'NULL', 'Priscilla', 'NULL', 'Chander', '0', '1949-04-16', 'M', 'NULL', 'F', 'priscilla14@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6140 Scenic Drive', 'NULL', '1 (11) 500 555-0114', '2012-04-02', '0-1 Miles'], ['16531', '251', 'AW00016531', 'NULL', 'Lacey', 'C', 'Gao', '0', '1948-12-22', 'S', 'NULL', 'F', 'lacey27@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '621 Brandywine Way', 'NULL', '1 (11) 500 555-0118', '2012-04-26', '0-1 Miles'], ['16532', '226', 'AW00016532', 'NULL', 'Tommy', 'NULL', 'Sharma', '0', '1977-12-18', 'S', 'NULL', 'M', 'tommy6@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '740, allée des Princes', 'NULL', '1 (11) 500 555-0151', '2012-12-22', '1-2 Miles'], ['16533', '221', 'AW00016533', 'NULL', 'Kristen', 'NULL', 'Cai', '0', '1966-11-21', 'M', 'NULL', 'F', 'kristen18@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '7, place Beaubernard', 'NULL', '1 (11) 500 555-0143', '2012-12-12', '1-2 Miles'], ['16534', '134', 'AW00016534', 'NULL', 'Claudia', 'NULL', 'Holt', '0', '1966-08-05', 'M', 'NULL', 'F', 'claudia18@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Im Himmelsweg 27', 'NULL', '1 (11) 500 555-0156', '2012-06-25', '0-1 Miles'], ['16535', '201', 'AW00016535', 'NULL', 'Colin', 'F', 'Chen', '0', '1971-05-09', 'S', 'NULL', 'M', 'colin2@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '5, avenue de la Gare', 'NULL', '1 (11) 500 555-0119', '2013-06-03', '1-2 Miles'], ['16536', '223', 'AW00016536', 'NULL', 'Meghan', 'A', 'Jimenez', '0', '1966-01-19', 'S', 'NULL', 'F', 'meghan5@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '10257, avenue de l´Europe', 'NULL', '1 (11) 500 555-0140', '2013-05-31', '1-2 Miles'], ['16537', '174', 'AW00016537', 'NULL', 'Arthur', 'NULL', 'Dominguez', '0', '1966-04-12', 'S', 'NULL', 'M', 'arthur37@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Winter der Böck 2441', 'NULL', '1 (11) 500 555-0115', '2013-05-26', '0-1 Miles'], ['16538', '146', 'AW00016538', 'NULL', 'Stacey', 'NULL', 'Liang', '0', '1965-07-12', 'S', 'NULL', 'F', 'stacey18@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Krönerweg 9229', 'NULL', '1 (11) 500 555-0145', '2012-06-30', '1-2 Miles'], ['16539', '120', 'AW00016539', 'NULL', 'Christy', 'NULL', 'Li', '0', '1971-01-07', 'S', 'NULL', 'F', 'christy3@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Pascalstr 1', 'NULL', '1 (11) 500 555-0170', '2013-02-06', '0-1 Miles'], ['16540', '135', 'AW00016540', 'NULL', 'Theodore', 'L', 'Browning', '0', '1966-03-15', 'M', 'NULL', 'M', 'theodore16@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Heidestieg Straße 2664', 'NULL', '1 (11) 500 555-0196', '2012-07-12', '1-2 Miles'], ['16541', '231', 'AW00016541', 'NULL', 'Micah', 'A', 'Hu', '0', '1966-06-27', 'S', 'NULL', 'M', 'micah8@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '3504 Tossing Way', 'NULL', '1 (11) 500 555-0176', '2012-04-20', '1-2 Miles'], ['16542', '239', 'AW00016542', 'NULL', 'Jésus', 'L', 'Ortega', '0', '1965-12-07', 'M', 'NULL', 'M', 'jésus21@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '1217 Mariposa', 'NULL', '1 (11) 500 555-0125', '2013-07-09', '2-5 Miles'], ['16543', '257', 'AW00016543', 'NULL', 'Jenny', 'NULL', 'McDonald', '0', '1976-12-04', 'M', 'NULL', 'F', 'jenny17@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '8992 E. 32nd St.', 'NULL', '1 (11) 500 555-0113', '2013-07-17', '2-5 Miles'], ['16544', '208', 'AW00016544', 'NULL', 'Eduardo', 'M', 'Morgan', '0', '1970-04-04', 'M', 'NULL', 'M', 'eduardo80@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '40, rue Royale', 'NULL', '1 (11) 500 555-0157', '2013-08-01', '2-5 Miles'], ['16545', '201', 'AW00016545', 'NULL', 'Alicia', 'NULL', 'Pal', '0', '1964-07-11', 'M', 'NULL', 'F', 'alicia10@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '882, rue Villedo', 'NULL', '1 (11) 500 555-0162', '2013-10-12', '2-5 Miles'], ['16546', '246', 'AW00016546', 'NULL', 'Terrance', 'B', 'Jordan', '0', '1965-02-24', 'M', 'NULL', 'M', 'terrance1@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '112 Kathleen Drive', 'NULL', '1 (11) 500 555-0145', '2012-04-08', '0-1 Miles'], ['16547', '217', 'AW00016547', 'NULL', 'Jake', 'L', 'Yang', '0', '1974-08-11', 'M', 'NULL', 'M', 'jake5@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '331, boulevard Tremblay', 'NULL', '1 (11) 500 555-0130', '2012-12-12', '2-5 Miles'], ['16548', '188', 'AW00016548', 'NULL', 'Darren', 'NULL', 'Rubio', '0', '1971-07-11', 'M', 'NULL', 'M', 'darren44@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '84, rue Philibert-Delorme', 'NULL', '1 (11) 500 555-0116', '2012-12-16', '0-1 Miles'], ['16549', '123', 'AW00016549', 'NULL', 'Linda', 'A', 'Moreno', '0', '1965-02-02', 'S', 'NULL', 'F', 'linda21@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Hans-Rosenthal-Platz 0841', 'NULL', '1 (11) 500 555-0194', '2012-07-29', '0-1 Miles'], ['16550', '274', 'AW00016550', 'NULL', 'Frederick', 'NULL', 'Madan', '0', '1970-02-18', 'M', 'NULL', 'M', 'frederick6@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4812 Kipling Court', 'NULL', '1 (11) 500 555-0111', '2012-04-02', '0-1 Miles'], ['16551', '189', 'AW00016551', 'NULL', 'Christy', 'M', 'Shan', '0', '1976-05-09', 'S', 'NULL', 'F', 'christy27@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '27, place de Brazaville', 'NULL', '1 (11) 500 555-0147', '2012-12-21', '0-1 Miles'], ['16552', '158', 'AW00016552', 'NULL', 'Joe', 'S', 'Sanchez', '0', '1965-01-06', 'M', 'NULL', 'M', 'joe22@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Zollstr 6666', 'NULL', '1 (11) 500 555-0134', '2012-07-01', '0-1 Miles'], ['16553', '237', 'AW00016553', 'NULL', 'Gabriella', 'J', 'Roberts', '0', '1964-09-01', 'M', 'NULL', 'F', 'gabriella26@adventure-works.com', '40000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8170 Money Dr.', 'NULL', '1 (11) 500 555-0153', '2012-04-19', '0-1 Miles'], ['16554', '272', 'AW00016554', 'NULL', 'Casey', 'C', 'Chander', '0', '1964-02-14', 'S', 'NULL', 'F', 'casey17@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1481 Marina Blvd.', 'NULL', '1 (11) 500 555-0198', '2012-04-29', '0-1 Miles'], ['16555', '211', 'AW00016555', 'NULL', 'Mathew', 'NULL', 'Vazquez', '0', '1975-12-19', 'M', 'NULL', 'M', 'mathew10@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '48bis, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0119', '2013-09-19', '5-10 Miles'], ['16556', '162', 'AW00016556', 'NULL', 'Angelica', 'NULL', 'Butler', '0', '1975-07-06', 'S', 'NULL', 'F', 'angelica14@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Heidestieg Straße 8664', 'NULL', '1 (11) 500 555-0121', '2013-06-21', '0-1 Miles'], ['16557', '197', 'AW00016557', 'NULL', 'Derek', 'NULL', 'Chander', '0', '1981-04-13', 'S', 'NULL', 'M', 'derek14@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '80, avenue des Champs-Elysées', 'NULL', '1 (11) 500 555-0190', '2013-03-26', '2-5 Miles'], ['16558', '177', 'AW00016558', 'NULL', 'Preston', 'NULL', 'Sara', '0', '1981-04-13', 'S', 'NULL', 'M', 'preston9@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Waldstr 21', 'NULL', '1 (11) 500 555-0115', '2013-03-24', '2-5 Miles'], ['16559', '226', 'AW00016559', 'NULL', 'Candace', 'G', 'Martinez', '0', '1975-04-22', 'S', 'NULL', 'F', 'candace16@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '2, rue Lamarck', 'NULL', '1 (11) 500 555-0192', '2012-12-24', '0-1 Miles'], ['16560', '223', 'AW00016560', 'NULL', 'Kelvin', 'E', 'Sun', '0', '1976-04-12', 'S', 'NULL', 'M', 'kelvin31@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '387, rue des Berges', 'NULL', '1 (11) 500 555-0167', '2012-12-16', '0-1 Miles'], ['16561', '243', 'AW00016561', 'NULL', 'Kurt', 'NULL', 'Yuan', '0', '1981-12-02', 'M', 'NULL', 'M', 'kurt6@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8869 C Olivera Rd', 'NULL', '1 (11) 500 555-0151', '2012-04-26', '0-1 Miles'], ['16562', '262', 'AW00016562', 'NULL', 'Colleen', 'L', 'Zhang', '0', '1981-09-06', 'M', 'NULL', 'F', 'colleen0@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '708 Bonifacio', 'NULL', '1 (11) 500 555-0153', '2012-04-22', '0-1 Miles'], ['16563', '261', 'AW00016563', 'NULL', 'Mackenzie', 'NULL', 'Baker', '0', '1925-02-23', 'S', 'NULL', 'F', 'mackenzie37@adventure-works.com', '20000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3987 Nuala Street', 'NULL', '1 (11) 500 555-0171', '2013-02-11', '2-5 Miles'], ['16564', '233', 'AW00016564', 'NULL', 'Susan', 'L', 'Wu', '0', '1975-02-04', 'S', 'NULL', 'F', 'susan16@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5097 Waterfall Way', 'NULL', '1 (11) 500 555-0114', '2013-05-21', '2-5 Miles'], ['16565', '127', 'AW00016565', 'NULL', 'Corey', 'E', 'Anand', '0', '1974-10-06', 'M', 'NULL', 'M', 'corey19@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Zur Lindung 199', 'NULL', '1 (11) 500 555-0145', '2012-07-23', '0-1 Miles'], ['16566', '206', 'AW00016566', 'NULL', 'Ashlee', 'C', 'Shen', '0', '1980-01-19', 'S', 'NULL', 'F', 'ashlee9@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '51, impasse Ste-Madeleine', 'NULL', '1 (11) 500 555-0155', '2012-12-24', '0-1 Miles'], ['16567', '175', 'AW00016567', 'NULL', 'Erick', 'A', 'Lopez', '0', '1975-03-10', 'S', 'NULL', 'M', 'erick16@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Erftplatz 6', 'NULL', '1 (11) 500 555-0188', '2012-07-06', '0-1 Miles'], ['16568', '133', 'AW00016568', 'NULL', 'Caroline', 'NULL', 'Coleman', '0', '1927-08-13', 'M', 'NULL', 'F', 'caroline8@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Kulmer Straße 2', 'NULL', '1 (11) 500 555-0189', '2013-02-11', '0-1 Miles'], ['16569', '215', 'AW00016569', 'NULL', 'Colleen', 'H', 'Li', '0', '1963-09-09', 'S', 'NULL', 'F', 'colleen3@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '40, rue Lauriston', 'NULL', '1 (11) 500 555-0171', '2012-12-13', '0-1 Miles'], ['16570', '209', 'AW00016570', 'NULL', 'Julie', 'G', 'She', '0', '1968-09-13', 'M', 'NULL', 'F', 'julie4@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '7, place Beaubernard', 'NULL', '1 (11) 500 555-0163', '2012-12-08', '2-5 Miles'], ['16571', '261', 'AW00016571', 'NULL', 'Audrey', 'NULL', 'Torres', '0', '1962-09-05', 'M', 'NULL', 'F', 'audrey13@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '9883 Sierra Rd', 'NULL', '1 (11) 500 555-0131', '2013-06-09', '2-5 Miles'], ['16572', '138', 'AW00016572', 'NULL', 'Jon', 'D', 'Xu', '0', '1979-05-14', 'S', 'NULL', 'M', 'jon45@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Hauptstr 639', 'NULL', '1 (11) 500 555-0112', '2012-07-27', '0-1 Miles'], ['16573', '244', 'AW00016573', 'NULL', 'Ruben', 'NULL', 'Dominguez', '0', '1973-08-09', 'S', 'NULL', 'M', 'ruben36@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '8859 Reliz Valley Road', 'NULL', '1 (11) 500 555-0126', '2012-04-21', '0-1 Miles'], ['16574', '233', 'AW00016574', 'NULL', 'Joe', 'E', 'Gomez', '0', '1979-03-09', 'S', 'NULL', 'M', 'joe25@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '9275 Westwood Way', 'NULL', '1 (11) 500 555-0116', '2013-03-05', '1-2 Miles'], ['16575', '259', 'AW00016575', 'NULL', 'Veronica', 'G', 'Vance', '0', '1950-03-03', 'S', 'NULL', 'F', 'veronica4@adventure-works.com', '170000.00', '3', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '6807 Snowberry Court', 'NULL', '1 (11) 500 555-0112', '2012-04-10', '0-1 Miles'], ['16576', '184', 'AW00016576', 'NULL', 'Corey', 'D', 'Beck', '0', '1952-04-10', 'S', 'NULL', 'M', 'corey17@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9, rue Léo Delibes', 'NULL', '1 (11) 500 555-0114', '2014-01-06', '10+ Miles'], ['16577', '217', 'AW00016577', 'NULL', 'Leah', 'E', 'Chen', '0', '1951-10-01', 'S', 'NULL', 'F', 'leah1@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '1234, rue des Pyrenees', 'NULL', '1 (11) 500 555-0149', '2013-08-02', '2-5 Miles'], ['16578', '127', 'AW00016578', 'NULL', 'Stefanie', 'NULL', 'Weber', '0', '1952-06-03', 'S', 'NULL', 'F', 'stefanie3@adventure-works.com', '100000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', 'Auf der Krone 4553', 'NULL', '1 (11) 500 555-0146', '2013-11-05', '10+ Miles'], ['16579', '236', 'AW00016579', 'NULL', 'Zachary', 'L', 'Davis', '0', '1958-12-18', 'M', 'NULL', 'M', 'zachary34@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '4008 Charlotte Court', 'NULL', '1 (11) 500 555-0161', '2013-07-10', '10+ Miles'], ['16580', '184', 'AW00016580', 'NULL', 'Dawn', 'C', 'Chen', '0', '1960-01-01', 'M', 'NULL', 'F', 'dawn3@adventure-works.com', '100000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '184, rue de Varenne', 'NULL', '1 (11) 500 555-0121', '2012-12-16', '2-5 Miles'], ['16581', '222', 'AW00016581', 'NULL', 'Kenneth', 'NULL', 'Becker', '0', '1965-07-19', 'S', 'NULL', 'M', 'kenneth17@adventure-works.com', '100000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '27, place de Brazaville', 'NULL', '1 (11) 500 555-0110', '2013-10-25', '10+ Miles'], ['16582', '163', 'AW00016582', 'NULL', 'Frank', 'M', 'Torres', '0', '1965-09-30', 'M', 'NULL', 'M', 'frank19@adventure-works.com', '100000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', 'Parkstr 4185', 'NULL', '1 (11) 500 555-0165', '2013-02-22', '10+ Miles'], ['16583', '131', 'AW00016583', 'NULL', 'Justin', 'A', 'Martinez', '0', '1959-11-02', 'M', 'NULL', 'M', 'justin45@adventure-works.com', '100000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', 'Alderstr 8229', 'NULL', '1 (11) 500 555-0185', '2014-01-08', '10+ Miles'], ['16584', '273', 'AW00016584', 'NULL', 'Devin', 'NULL', 'Gray', '0', '1959-10-31', 'S', 'NULL', 'M', 'devin73@adventure-works.com', '170000.00', '0', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '4', '3771 Concerto Circle', 'NULL', '1 (11) 500 555-0154', '2013-02-07', '0-1 Miles'], ['16585', '274', 'AW00016585', 'NULL', 'Vincent', 'F', 'Sun', '0', '1959-11-03', 'M', 'NULL', 'M', 'vincent12@adventure-works.com', '170000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '2', '3453 Wren Ave.', 'NULL', '1 (11) 500 555-0119', '2012-04-07', '10+ Miles'], ['16586', '209', 'AW00016586', 'NULL', 'Leonard', 'NULL', 'Chander', '0', '1969-12-17', 'M', 'NULL', 'M', 'leonard17@adventure-works.com', '100000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '530, rue des Berges', 'NULL', '1 (11) 500 555-0186', '2013-07-25', '10+ Miles'], ['16587', '161', 'AW00016587', 'NULL', 'Zachary', 'NULL', 'Martinez', '0', '1959-03-11', 'M', 'NULL', 'M', 'zachary48@adventure-works.com', '120000.00', '3', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', 'Herzogstr 4662', 'NULL', '1 (11) 500 555-0190', '2012-07-14', '10+ Miles'], ['16588', '252', 'AW00016588', 'NULL', 'Andre', 'NULL', 'Martinez', '0', '1958-10-01', 'M', 'NULL', 'M', 'andre17@adventure-works.com', '130000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5598 Mt. Palomar Pl.', 'NULL', '1 (11) 500 555-0154', '2012-04-30', '10+ Miles'], ['16589', '258', 'AW00016589', 'NULL', 'Martin', 'NULL', 'Suri', '0', '1958-10-08', 'M', 'NULL', 'M', 'martin6@adventure-works.com', '130000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5425 Highland Circle', 'NULL', '1 (11) 500 555-0111', '2012-05-28', '10+ Miles'], ['16590', '263', 'AW00016590', 'NULL', 'Shawn', 'C', 'Deng', '0', '1964-08-29', 'M', 'NULL', 'M', 'shawn3@adventure-works.com', '150000.00', '3', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '4678 Pelican Loop', 'NULL', '1 (11) 500 555-0164', '2013-05-31', '10+ Miles'], ['16591', '266', 'AW00016591', 'NULL', 'Clarence', 'NULL', 'He', '0', '1970-04-22', 'M', 'NULL', 'M', 'clarence11@adventure-works.com', '160000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '1082 Selena Court', 'NULL', '1 (11) 500 555-0181', '2013-06-23', '0-1 Miles'], ['16592', '208', 'AW00016592', 'NULL', 'Jacquelyn', 'R', 'Gomez', '0', '1958-05-15', 'M', 'NULL', 'F', 'jacquelyn1@adventure-works.com', '80000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '39, route de Marseille', 'NULL', '1 (11) 500 555-0115', '2013-03-14', '10+ Miles'], ['16593', '232', 'AW00016593', 'NULL', 'Suzanne', 'NULL', 'He', '0', '1957-07-04', 'M', 'NULL', 'F', 'suzanne20@adventure-works.com', '120000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '6894 Oeffler Ln.', 'NULL', '1 (11) 500 555-0114', '2013-02-15', '10+ Miles'], ['16594', '265', 'AW00016594', 'NULL', 'Andrew', 'C', 'Jones', '0', '1957-09-01', 'M', 'NULL', 'M', 'andrew12@adventure-works.com', '170000.00', '4', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '2855 Playa', 'NULL', '1 (11) 500 555-0113', '2012-05-21', '10+ Miles'], ['16595', '267', 'AW00016595', 'NULL', 'Cameron', 'L', 'Anderson', '0', '1958-01-16', 'M', 'NULL', 'M', 'cameron50@adventure-works.com', '170000.00', '4', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '37 Peachwillow Lane', 'NULL', '1 (11) 500 555-0151', '2012-05-18', '0-1 Miles'], ['16596', '208', 'AW00016596', 'NULL', 'Gabrielle', 'B', 'Carter', '0', '1956-09-24', 'S', 'NULL', 'F', 'gabrielle53@adventure-works.com', '70000.00', '5', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1, rue de Maubeuge', 'NULL', '1 (11) 500 555-0197', '2012-12-09', '10+ Miles'], ['16597', '135', 'AW00016597', 'NULL', 'Kelli', 'L', 'Xu', '0', '1956-09-11', 'S', 'NULL', 'F', 'kelli13@adventure-works.com', '100000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Curieweg 4666', 'NULL', '1 (11) 500 555-0149', '2013-03-02', '10+ Miles'], ['16598', '234', 'AW00016598', 'NULL', 'Kate', 'NULL', 'Rai', '0', '1957-05-02', 'S', 'NULL', 'F', 'kate14@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '7775 San Ysidro Court', 'NULL', '1 (11) 500 555-0136', '2012-05-23', '0-1 Miles'], ['16599', '257', 'AW00016599', 'Sr.', 'Ramón', 'S', 'Cai', '0', '1955-11-14', 'M', 'NULL', 'M', 'ramón19@adventure-works.com', '150000.00', '4', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '7922 Rancho View Drive', 'NULL', '1 (11) 500 555-0160', '2013-06-18', '10+ Miles'], ['16600', '218', 'AW00016600', 'NULL', 'Janet', 'V', 'Suarez', '0', '1953-11-13', 'S', 'NULL', 'F', 'janet25@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '112, avenue du Québec', 'NULL', '1 (11) 500 555-0168', '2013-05-16', '10+ Miles'], ['16601', '262', 'AW00016601', 'NULL', 'Tabitha', 'Y', 'Rana', '0', '1953-08-08', 'S', 'NULL', 'F', 'tabitha9@adventure-works.com', '130000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '8320 Rotherham Dr', 'NULL', '1 (11) 500 555-0156', '2013-05-12', '0-1 Miles'], ['16602', '267', 'AW00016602', 'NULL', 'Jill', 'A', 'Travers', '0', '1954-03-19', 'M', 'NULL', 'F', 'jill19@adventure-works.com', '150000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '1723 Alvarado Dr', 'NULL', '1 (11) 500 555-0152', '2013-08-22', '10+ Miles'], ['16603', '150', 'AW00016603', 'Mr.', 'Scott', 'NULL', 'Seely', '0', '1953-05-18', 'M', 'NULL', 'F', 'scott11@adventure-works.com', '110000.00', '4', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '3', 'Berliner Platz 774', 'NULL', '209-555-0100', '2012-07-08', '10+ Miles'], ['16604', '178', 'AW00016604', 'NULL', 'Roy', 'M', 'Serrano', '0', '1952-07-03', 'M', 'NULL', 'M', 'roy36@adventure-works.com', '120000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', 'Buergermeister-ulrich-str 41', 'NULL', '1 (11) 500 555-0124', '2013-10-25', '10+ Miles'], ['16605', '13', 'AW00016605', 'NULL', 'Toni', 'NULL', 'Randall', '0', '1981-05-09', 'M', 'NULL', 'F', 'toni11@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '7957 Hermosa', 'NULL', '1 (11) 500 555-0157', '2013-03-11', '10+ Miles'], ['16606', '8', 'AW00016606', 'NULL', 'Ricky', 'F', 'Blanco', '0', '1982-05-09', 'S', 'NULL', 'M', 'ricky16@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '3967 High Street', 'NULL', '1 (11) 500 555-0182', '2013-08-07', '10+ Miles'], ['16607', '20', 'AW00016607', 'NULL', 'Logan', 'NULL', 'Gonzales', '0', '1981-02-23', 'M', 'NULL', 'M', 'logan18@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '8200 Showtime Court', 'NULL', '1 (11) 500 555-0111', '2011-01-05', '10+ Miles'], ['16608', '20', 'AW00016608', 'NULL', 'Ricky', 'C', 'Martin', '0', '1981-06-11', 'S', 'NULL', 'M', 'ricky0@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '2912 Guadalupe', 'NULL', '1 (11) 500 555-0133', '2013-02-08', '10+ Miles'], ['16609', '31', 'AW00016609', 'NULL', 'Gary', 'E', 'Jimenez', '0', '1985-08-09', 'S', 'NULL', 'M', 'gary16@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '707 Willcrest Circle', 'NULL', '1 (11) 500 555-0198', '2013-01-30', '10+ Miles'], ['16610', '2', 'AW00016610', 'NULL', 'Sydney', 'NULL', 'Clark', '0', '1979-12-21', 'M', 'NULL', 'F', 'sydney81@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '9864 Bates Court', 'NULL', '1 (11) 500 555-0157', '2013-03-12', '10+ Miles'], ['16611', '13', 'AW00016611', 'NULL', 'Dylan', 'E', 'Rodriguez', '0', '1980-07-15', 'S', 'NULL', 'M', 'dylan50@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '7135 Pinehurst Court', 'NULL', '1 (11) 500 555-0184', '2013-02-17', '10+ Miles'], ['16612', '8', 'AW00016612', 'NULL', 'Ebony', 'E', 'Ashe', '0', '1981-02-18', 'S', 'NULL', 'F', 'ebony31@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '1956 Pine Drive', 'NULL', '1 (11) 500 555-0123', '2011-01-14', '10+ Miles'], ['16613', '21', 'AW00016613', 'NULL', 'Cassie', 'S', 'Sutton', '0', '1979-10-06', 'M', 'NULL', 'F', 'cassie2@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '5984 Dewing Avenue', 'NULL', '1 (11) 500 555-0139', '2013-03-21', '10+ Miles'], ['16614', '16', 'AW00016614', 'NULL', 'Alison', 'A', 'Shen', '0', '1979-03-22', 'M', 'NULL', 'F', 'alison1@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '1134 Concord Pl.', 'NULL', '1 (11) 500 555-0128', '2013-08-26', '10+ Miles'], ['16615', '30', 'AW00016615', 'NULL', 'Kaitlin', 'L', 'Patel', '0', '1978-08-08', 'S', 'NULL', 'F', 'kaitlin3@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '8117 Green View Court', 'NULL', '1 (11) 500 555-0167', '2013-04-08', '10+ Miles'], ['16616', '30', 'AW00016616', 'NULL', 'Kelvin', 'L', 'Liang', '0', '1985-06-02', 'S', 'NULL', 'M', 'kelvin35@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '6684 Galloway Drive', 'NULL', '1 (11) 500 555-0176', '2011-01-10', '10+ Miles'], ['16617', '40', 'AW00016617', 'NULL', 'Alvin', 'M', 'Xie', '0', '1979-08-06', 'M', 'NULL', 'M', 'alvin25@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '1', '8592 Camelback Ct.', 'NULL', '1 (11) 500 555-0185', '2013-02-03', '10+ Miles'], ['16618', '29', 'AW00016618', 'NULL', 'Cassandra', 'M', 'Subram', '0', '1979-12-15', 'M', 'NULL', 'F', 'cassandra14@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', '1411 Moretti Drive', 'NULL', '1 (11) 500 555-0193', '2013-08-21', '10+ Miles'], ['16619', '11', 'AW00016619', 'NULL', 'Whitney', 'NULL', 'Perez', '0', '1979-11-02', 'M', 'NULL', 'F', 'whitney20@adventure-works.com', '120000.00', '5', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '4', '4231 Highland Dr.', 'NULL', '1 (11) 500 555-0111', '2013-03-09', '10+ Miles'], ['16620', '18', 'AW00016620', 'NULL', 'Cameron', 'M', 'Thompson', '0', '1984-05-12', 'M', 'NULL', 'M', 'cameron33@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '9080 San Carlos Avenue', 'NULL', '1 (11) 500 555-0141', '2011-01-18', '10+ Miles'], ['16621', '32', 'AW00016621', 'Ms.', 'Birgit', 'NULL', 'Seidel', '0', '1984-03-12', 'M', 'NULL', 'F', 'birgit0@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '2', '543 Northwood Drive', 'NULL', '492-555-0100', '2013-08-31', '10+ Miles'], ['16622', '10', 'AW00016622', 'NULL', 'Byron', 'NULL', 'Navarro', '0', '1978-11-12', 'S', 'NULL', 'M', 'byron6@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '2', '2624 El Monte Drive', 'NULL', '1 (11) 500 555-0143', '2013-08-13', '10+ Miles'], ['16623', '13', 'AW00016623', 'NULL', 'Andres', 'L', 'Lal', '0', '1979-03-04', 'S', 'NULL', 'M', 'andres5@adventure-works.com', '150000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '4976 Singingwood Court', 'NULL', '1 (11) 500 555-0127', '2011-01-19', '0-1 Miles'], ['16624', '30', 'AW00016624', 'NULL', 'Albert', 'R', 'Alvarez', '0', '1983-07-24', 'S', 'NULL', 'M', 'albert7@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '3541 Corte Poquito', 'NULL', '1 (11) 500 555-0114', '2010-12-30', '10+ Miles'], ['16625', '25', 'AW00016625', 'NULL', 'Grant', 'C', 'Deng', '0', '1983-05-19', 'M', 'NULL', 'M', 'grant3@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '2', '8759 Pastime Dr.', 'NULL', '1 (11) 500 555-0148', '2013-04-21', '10+ Miles'], ['16626', '27', 'AW00016626', 'NULL', 'Nathaniel', 'E', 'Morgan', '0', '1978-01-15', 'S', 'NULL', 'M', 'nathaniel14@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '2496 Greendell Pl.', 'NULL', '1 (11) 500 555-0118', '2013-02-28', '10+ Miles'], ['16627', '29', 'AW00016627', 'NULL', 'Claudia', 'R', 'Chen', '0', '1982-05-23', 'M', 'NULL', 'F', 'claudia1@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '5955 Colfax Street', 'NULL', '1 (11) 500 555-0110', '2013-02-15', '10+ Miles'], ['16628', '5', 'AW00016628', 'NULL', 'Francisco', 'NULL', 'Prasad', '0', '1976-10-16', 'S', 'NULL', 'M', 'francisco10@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '1970 Napa Ct.', 'NULL', '1 (11) 500 555-0144', '2013-09-10', '10+ Miles'], ['16629', '8', 'AW00016629', 'NULL', 'Rosa', 'G', 'Zheng', '0', '1978-03-13', 'S', 'NULL', 'F', 'rosa19@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '2391 St. Peter Court', 'NULL', '1 (11) 500 555-0195', '2011-01-06', '10+ Miles'], ['16630', '39', 'AW00016630', 'NULL', 'Jaime', 'L', 'Sutton', '0', '1978-01-08', 'M', 'NULL', 'M', 'jaime28@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '7964 Gentrytown Drive', 'NULL', '1 (11) 500 555-0126', '2011-01-28', '10+ Miles'], ['16631', '26', 'AW00016631', 'NULL', 'Haley', 'J', 'Ward', '0', '1976-09-16', 'S', 'NULL', 'F', 'haley13@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '6071 Mi Casa Court', 'NULL', '1 (11) 500 555-0155', '2011-01-09', '10+ Miles'], ['16632', '3', 'AW00016632', 'NULL', 'Ruben', 'NULL', 'Romero', '0', '1976-11-13', 'S', 'NULL', 'M', 'ruben32@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '5263 Etcheverry Dr', 'NULL', '1 (11) 500 555-0130', '2013-07-25', '10+ Miles'], ['16633', '37', 'AW00016633', 'NULL', 'Kelli', 'E', 'Becker', '0', '1977-06-24', 'M', 'NULL', 'F', 'kelli43@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '6006 Hackamore Lane', 'NULL', '1 (11) 500 555-0114', '2013-07-20', '10+ Miles'], ['16634', '32', 'AW00016634', 'NULL', 'Jenny', 'A', 'Hu', '0', '1981-02-12', 'M', 'NULL', 'F', 'jenny22@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '1589 Mt. Tamalpais Place', 'NULL', '1 (11) 500 555-0180', '2013-09-02', '10+ Miles'], ['16635', '2', 'AW00016635', 'NULL', 'Erick', 'NULL', 'Suri', '0', '1975-08-14', 'M', 'NULL', 'M', 'erick0@adventure-works.com', '100000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '101 Adobe Dr', 'NULL', '1 (11) 500 555-0115', '2013-04-18', '10+ Miles'], ['16636', '38', 'AW00016636', 'NULL', 'Danny', 'V', 'Gomez', '0', '1976-02-23', 'M', 'NULL', 'M', 'danny1@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '8022 Camino Verde', 'NULL', '1 (11) 500 555-0191', '2011-01-20', '10+ Miles'], ['16637', '13', 'AW00016637', 'NULL', 'Evan', 'NULL', 'King', '0', '1977-02-15', 'M', 'NULL', 'M', 'evan44@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '7492 Duckhorn Court', 'NULL', '1 (11) 500 555-0186', '2011-02-25', '10+ Miles'], ['16638', '16', 'AW00016638', 'NULL', 'Dennis', 'M', 'Ye', '0', '1977-02-07', 'M', 'NULL', 'M', 'dennis11@adventure-works.com', '110000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '4921 St. Geemain Lane', 'NULL', '1 (11) 500 555-0118', '2011-02-12', '10+ Miles'], ['16639', '36', 'AW00016639', 'NULL', 'Renee', 'E', 'Romero', '0', '1977-01-07', 'S', 'NULL', 'F', 'renee8@adventure-works.com', '110000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '1767 Holton Court', 'NULL', '1 (11) 500 555-0188', '2011-02-04', '10+ Miles'], ['16640', '3', 'AW00016640', 'NULL', 'Colin', 'M', 'Lal', '0', '1976-11-30', 'M', 'NULL', 'M', 'colin32@adventure-works.com', '130000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Management', 'Gestión', 'Direction', '0', '4', '6309 Poplar Avenue', 'NULL', '1 (11) 500 555-0166', '2013-04-18', '10+ Miles'], ['16641', '331', 'AW00016641', 'NULL', 'Julia', 'I', 'Bailey', '0', '1946-11-14', 'S', 'NULL', 'F', 'julia52@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5634 Blue Ridge Drive', 'NULL', '855-555-0183', '2013-10-26', '10+ Miles'], ['16642', '648', 'AW00016642', 'NULL', 'Mason', 'L', 'Mitchell', '0', '1952-11-03', 'S', 'NULL', 'M', 'mason32@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '1983 Cliffside Drive', 'NULL', '857-555-0122', '2013-11-26', '0-1 Miles'], ['16643', '60', 'AW00016643', 'NULL', 'Fernando', 'NULL', 'Wilson', '0', '1947-01-16', 'S', 'NULL', 'M', 'fernando7@adventure-works.com', '170000.00', '1', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '4', '6104 Santa Maria Ct.', 'NULL', '714-555-0112', '2013-04-06', '0-1 Miles'], ['16644', '301', 'AW00016644', 'NULL', 'Leonard', 'C', 'Goel', '0', '1947-06-22', 'M', 'NULL', 'M', 'leonard21@adventure-works.com', '170000.00', '1', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3361 Crow Street', 'NULL', '122-555-0168', '2013-07-27', '0-1 Miles'], ['16645', '307', 'AW00016645', 'NULL', 'Chelsea', 'NULL', 'Subram', '0', '1948-04-16', 'M', 'NULL', 'F', 'chelsea14@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3029 Arnold Dr', 'NULL', '769-555-0116', '2013-10-10', '1-2 Miles'], ['16646', '59', 'AW00016646', 'NULL', 'Xavier', 'C', 'Collins', '0', '1948-04-23', 'M', 'NULL', 'M', 'xavier42@adventure-works.com', '100000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '3002 Carmel Drive', 'NULL', '815-555-0139', '2013-11-02', '1-2 Miles'], ['16647', '314', 'AW00016647', 'NULL', 'Anna', 'NULL', 'Alexander', '0', '1948-04-16', 'M', 'NULL', 'F', 'anna44@adventure-works.com', '120000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '3029 Pastime Dr', '# 2', '150-555-0156', '2013-09-18', '5-10 Miles'], ['16648', '325', 'AW00016648', 'NULL', 'Rachel', 'NULL', 'Coleman', '0', '1947-12-24', 'M', 'NULL', 'F', 'rachel53@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '5293 Juliet Court', 'NULL', '696-555-0172', '2013-12-10', '5-10 Miles'], ['16649', '53', 'AW00016649', 'NULL', 'Makayla', 'NULL', 'Stewart', '0', '1948-08-06', 'M', 'NULL', 'F', 'makayla18@adventure-works.com', '110000.00', '2', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '6330 Limewood Pl', 'NULL', '286-555-0118', '2013-10-02', '5-10 Miles'], ['16650', '546', 'AW00016650', 'NULL', 'Kaitlyn', 'J', 'Green', '0', '1949-03-02', 'M', 'NULL', 'F', 'kaitlyn12@adventure-works.com', '120000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '2656 Stafford Ave.', 'NULL', '370-555-0176', '2013-11-06', '5-10 Miles'], ['16651', '618', 'AW00016651', 'NULL', 'Abigail', 'NULL', 'Martinez', '0', '1949-03-25', 'M', 'NULL', 'F', 'abigail58@adventure-works.com', '120000.00', '2', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '8020 Charlotte Ave.', 'NULL', '925-555-0112', '2013-11-23', '5-10 Miles'], ['16652', '331', 'AW00016652', 'NULL', 'Nicole', 'R', 'Richardson', '0', '1984-08-02', 'M', 'NULL', 'F', 'nicole36@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2687 Gilberto', 'NULL', '302-555-0112', '2013-07-24', '5-10 Miles'], ['16653', '618', 'AW00016653', 'NULL', 'Isabella', 'NULL', 'Phillips', '0', '1978-10-14', 'M', 'NULL', 'F', 'isabella36@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '7523 Surf View Drive', 'NULL', '460-555-0164', '2013-10-09', '5-10 Miles'], ['16654', '49', 'AW00016654', 'NULL', 'Heather', 'NULL', 'Zhang', '0', '1984-03-14', 'M', 'NULL', 'F', 'heather0@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4286 NE 3rd Court', 'NULL', '302-555-0184', '2013-03-01', '5-10 Miles'], ['16655', '334', 'AW00016655', 'NULL', 'Destiny', 'M', 'Taylor', '0', '1981-09-23', 'M', 'NULL', 'F', 'destiny9@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4210 Concord Blvd.', 'NULL', '495-555-0168', '2013-09-13', '5-10 Miles'], ['16656', '14', 'AW00016656', 'NULL', 'Ronnie', 'NULL', 'Zhang', '0', '1960-11-06', 'M', 'NULL', 'M', 'ronnie0@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2479 Killdeer Court', 'NULL', '1 (11) 500 555-0161', '2011-02-28', '1-2 Miles'], ['16657', '6', 'AW00016657', 'NULL', 'Alvin', 'E', 'She', '0', '1960-09-17', 'M', 'NULL', 'M', 'alvin22@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '115 Santa Fe Street', 'NULL', '1 (11) 500 555-0130', '2011-02-08', '1-2 Miles'], ['16658', '19', 'AW00016658', 'NULL', 'Ashlee', 'E', 'Raje', '0', '1960-10-12', 'S', 'NULL', 'F', 'ashlee20@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7281 Barberry Court', 'NULL', '1 (11) 500 555-0174', '2011-02-06', '5-10 Miles'], ['16659', '4', 'AW00016659', 'NULL', 'Emily', 'NULL', 'Jones', '0', '1961-06-01', 'S', 'NULL', 'F', 'emily3@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9716 Broadmoor Drive', 'NULL', '1 (11) 500 555-0173', '2011-02-02', '5-10 Miles'], ['16660', '4', 'AW00016660', 'NULL', 'Lee', 'M', 'Blanco', '0', '1961-12-01', 'S', 'NULL', 'M', 'lee14@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6567 Pinole Valley Rd', 'NULL', '1 (11) 500 555-0190', '2011-02-12', '1-2 Miles'], ['16661', '7', 'AW00016661', 'NULL', 'Shane', 'NULL', 'Raman', '0', '1961-10-13', 'S', 'NULL', 'M', 'shane15@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7560 Franklin Canyon Road', 'NULL', '1 (11) 500 555-0128', '2011-01-30', '5-10 Miles'], ['16662', '18', 'AW00016662', 'NULL', 'Stacey', 'NULL', 'Gao', '0', '1962-09-05', 'S', 'NULL', 'F', 'stacey16@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '1825 Corte Del Prado', 'NULL', '1 (11) 500 555-0187', '2011-01-31', '1-2 Miles'], ['16663', '34', 'AW00016663', 'NULL', 'Rosa', 'A', 'Lu', '0', '1963-04-08', 'S', 'NULL', 'F', 'rosa12@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '4487 Coldwater Drive', 'NULL', '1 (11) 500 555-0190', '2011-02-19', '1-2 Miles'], ['16664', '36', 'AW00016664', 'NULL', 'Sophia', 'NULL', 'Nelson', '0', '1963-12-15', 'M', 'NULL', 'F', 'sophia8@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '88, rue Pierre-Demoulin', 'NULL', '1 (11) 500 555-0127', '2011-02-10', '5-10 Miles'], ['16665', '9', 'AW00016665', 'NULL', 'Linda', 'NULL', 'Suarez', '0', '1963-12-23', 'S', 'NULL', 'F', 'linda34@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '258 Bluejay Dr.', 'NULL', '1 (11) 500 555-0176', '2013-09-19', '0-1 Miles'], ['16666', '57', 'AW00016666', 'NULL', 'Taylor', 'NULL', 'Torres', '0', '1978-10-07', 'S', 'NULL', 'F', 'taylor16@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '8932 Condor Place', 'NULL', '634-555-0146', '2013-02-07', '2-5 Miles'], ['16667', '68', 'AW00016667', 'NULL', 'Allison', 'NULL', 'Sanchez', '0', '1980-05-04', 'S', 'NULL', 'F', 'allison25@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8228 Seal Way', 'NULL', '296-555-0123', '2013-06-19', '5-10 Miles'], ['16668', '432', 'AW00016668', 'NULL', 'Levi', 'NULL', 'Malhotra', '0', '1980-01-15', 'S', 'NULL', 'M', 'levi4@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '3005 Banyan Way', 'NULL', '201-555-0171', '2013-04-21', '1-2 Miles'], ['16669', '623', 'AW00016669', 'NULL', 'Benjamin', 'NULL', 'Martinez', '0', '1979-09-21', 'S', 'NULL', 'M', 'benjamin54@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6665 Homestead Ave.', 'NULL', '546-555-0169', '2013-11-02', '5-10 Miles'], ['16670', '641', 'AW00016670', 'NULL', 'Sarah', 'NULL', 'White', '0', '1980-01-15', 'S', 'NULL', 'F', 'sarah15@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '3754 San Ysidro Court', 'NULL', '588-555-0111', '2013-05-23', '1-2 Miles'], ['16671', '552', 'AW00016671', 'NULL', 'Megan', 'C', 'Wood', '0', '1980-02-22', 'S', 'NULL', 'F', 'megan52@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1962 Cunha Ct.', 'NULL', '130-555-0121', '2013-12-13', '5-10 Miles'], ['16672', '644', 'AW00016672', 'NULL', 'Nicole', 'A', 'Martinez', '0', '1979-12-26', 'S', 'NULL', 'F', 'nicole17@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8189 Lydia Lane', 'NULL', '281-555-0154', '2013-06-18', '5-10 Miles'], ['16673', '300', 'AW00016673', 'NULL', 'Curtis', 'O', 'Guo', '0', '1979-11-05', 'S', 'NULL', 'M', 'curtis14@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '5870 Louisiana Dr.', 'NULL', '985-555-0124', '2013-06-29', '1-2 Miles'], ['16674', '33', 'AW00016674', 'NULL', 'Ricardo', 'NULL', 'Yuan', '0', '1970-11-09', 'M', 'NULL', 'M', 'ricardo6@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '6870 D Bel Air Drive', 'NULL', '1 (11) 500 555-0113', '2013-04-26', '0-1 Miles'], ['16675', '8', 'AW00016675', 'NULL', 'Kristi', 'W', 'Arthur', '0', '1970-06-13', 'S', 'NULL', 'F', 'kristi23@adventure-works.com', '160000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '1515 Tuolumne St.', 'NULL', '1 (11) 500 555-0164', '2011-02-03', '0-1 Miles'], ['16676', '326', 'AW00016676', 'NULL', 'Amanda', 'NULL', 'Perry', '0', '1977-03-22', 'M', 'NULL', 'F', 'amanda29@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '7870 Orangewood Dr.', 'NULL', '553-555-0122', '2013-09-19', '1-2 Miles'], ['16677', '338', 'AW00016677', 'NULL', 'Jack', 'S', 'Hughes', '0', '1983-02-07', 'M', 'NULL', 'M', 'jack11@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '492 Loveridge Circle', 'NULL', '137-555-0114', '2013-07-31', '0-1 Miles'], ['16678', '52', 'AW00016678', 'NULL', 'Ian', 'NULL', 'Ramirez', '0', '1963-04-14', 'M', 'NULL', 'M', 'ian73@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5092 Almondwood Dr.', 'NULL', '406-555-0196', '2013-03-07', '5-10 Miles'], ['16679', '35', 'AW00016679', 'NULL', 'Amber', 'E', 'Carter', '0', '1980-03-30', 'S', 'NULL', 'F', 'amber10@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3731 Broadmoor Avenue', 'NULL', '1 (11) 500 555-0157', '2013-02-11', '5-10 Miles'], ['16680', '2', 'AW00016680', 'NULL', 'Carlos', 'NULL', 'Edwards', '0', '1968-09-12', 'M', 'NULL', 'M', 'carlos27@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5576 Westminster Pl.', 'NULL', '1 (11) 500 555-0181', '2013-08-09', '0-1 Miles'], ['16681', '32', 'AW00016681', 'NULL', 'Louis', 'A', 'Chande', '0', '1972-09-11', 'S', 'NULL', 'M', 'louis31@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '3774 Napa Court', 'NULL', '1 (11) 500 555-0134', '2013-06-29', '1-2 Miles'], ['16682', '9', 'AW00016682', 'NULL', 'Kristy', 'NULL', 'Ramos', '0', '1973-01-05', 'M', 'NULL', 'F', 'kristy15@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '2078 Jennifer Way', 'NULL', '1 (11) 500 555-0152', '2013-06-18', '0-1 Miles'], ['16683', '26', 'AW00016683', 'NULL', 'Christy', 'NULL', 'Rai', '0', '1972-09-01', 'M', 'NULL', 'F', 'christy35@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '4814 Ward Street', 'NULL', '1 (11) 500 555-0115', '2013-05-29', '0-1 Miles'], ['16684', '40', 'AW00016684', 'NULL', 'Joel', 'NULL', 'Perez', '0', '1968-05-17', 'M', 'NULL', 'M', 'joel20@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6566 Pinole Valley Rd.', 'NULL', '1 (11) 500 555-0138', '2011-02-08', '0-1 Miles'], ['16685', '13', 'AW00016685', 'NULL', 'Robin', 'NULL', 'Dominguez', '0', '1967-12-11', 'S', 'NULL', 'F', 'robin9@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3296 Trinity Ave', 'NULL', '1 (11) 500 555-0196', '2011-02-07', '5-10 Miles'], ['16686', '7', 'AW00016686', 'NULL', 'Kristine', 'NULL', 'Alonso', '0', '1968-01-12', 'M', 'NULL', 'F', 'kristine9@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '290 Reed Way', 'NULL', '1 (11) 500 555-0163', '2011-02-02', '5-10 Miles'], ['16687', '7', 'AW00016687', 'NULL', 'Lawrence', 'C', 'Romero', '0', '1972-04-07', 'S', 'NULL', 'M', 'lawrence7@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1386 Eastgate', 'NULL', '1 (11) 500 555-0194', '2011-02-03', '0-1 Miles'], ['16688', '29', 'AW00016688', 'NULL', 'Tabitha', 'L', 'Gomez', '0', '1967-04-03', 'S', 'NULL', 'F', 'tabitha20@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9941 Roanwood Way', 'NULL', '1 (11) 500 555-0119', '2011-02-26', '0-1 Miles'], ['16689', '2', 'AW00016689', 'NULL', 'Rafael', 'J', 'Shen', '0', '1967-03-03', 'M', 'NULL', 'M', 'rafael25@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7839 Liscome Way', 'NULL', '1 (11) 500 555-0176', '2013-08-18', '5-10 Miles'], ['16690', '11', 'AW00016690', 'NULL', 'Aimee', 'NULL', 'Wu', '0', '1972-05-01', 'M', 'NULL', 'F', 'aimee6@adventure-works.com', '110000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '5602 Dancing Road', 'NULL', '1 (11) 500 555-0125', '2013-09-12', '10+ Miles'], ['16691', '30', 'AW00016691', 'NULL', 'Paula', 'B', 'Romero', '0', '1972-05-05', 'S', 'NULL', 'F', 'paula12@adventure-works.com', '110000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '4345 Azoras Circle', 'NULL', '1 (11) 500 555-0158', '2011-02-28', '1-2 Miles'], ['16692', '2', 'AW00016692', 'NULL', 'Jay', 'NULL', 'Diaz', '0', '1976-10-11', 'M', 'NULL', 'M', 'jay32@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5612 Piedmont Dr.', 'NULL', '1 (11) 500 555-0181', '2013-04-10', '5-10 Miles'], ['16693', '21', 'AW00016693', 'NULL', 'Ethan', 'G', 'Coleman', '0', '1971-07-20', 'M', 'NULL', 'M', 'ethan2@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6705 Tweed Lane', 'NULL', '1 (11) 500 555-0118', '2011-02-21', '0-1 Miles'], ['16694', '17', 'AW00016694', 'NULL', 'Mandy', 'L', 'Sun', '0', '1965-11-07', 'M', 'NULL', 'F', 'mandy15@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8890 Lake Place', 'NULL', '1 (11) 500 555-0164', '2013-02-21', '5-10 Miles'], ['16695', '19', 'AW00016695', 'NULL', 'Dwayne', 'NULL', 'Serrano', '0', '1964-10-24', 'M', 'NULL', 'M', 'dwayne15@adventure-works.com', '90000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9335 Wilke Drive', 'NULL', '1 (11) 500 555-0139', '2013-09-03', '1-2 Miles'], ['16696', '23', 'AW00016696', 'NULL', 'Claudia', 'M', 'Zeng', '0', '1970-08-11', 'S', 'NULL', 'F', 'claudia19@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '8310 MountainAire Pkwy.', 'NULL', '1 (11) 500 555-0159', '2011-02-04', '0-1 Miles'], ['16697', '27', 'AW00016697', 'NULL', 'Wyatt', 'NULL', 'Henderson', '0', '1970-10-31', 'S', 'NULL', 'M', 'wyatt56@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '3001 Silverwood Dr.', 'NULL', '1 (11) 500 555-0179', '2013-02-25', '1-2 Miles'], ['16698', '22', 'AW00016698', 'NULL', 'Mallory', 'P', 'Gill', '0', '1975-08-06', 'S', 'NULL', 'F', 'mallory0@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4036 Elk Dr', 'NULL', '1 (11) 500 555-0150', '2013-05-17', '5-10 Miles'], ['16699', '34', 'AW00016699', 'NULL', 'Dominic', 'J', 'Kapoor', '0', '1965-02-24', 'M', 'NULL', 'M', 'dominic2@adventure-works.com', '100000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '289 D Bel Air Drive', 'NULL', '1 (11) 500 555-0111', '2013-05-09', '10+ Miles'], ['16700', '31', 'AW00016700', 'NULL', 'Billy', 'L', 'Gill', '0', '1974-06-17', 'S', 'NULL', 'M', 'billy15@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7437 Margaret Ct.', 'NULL', '1 (11) 500 555-0121', '2013-06-18', '5-10 Miles'], ['16701', '11', 'AW00016701', 'NULL', 'Laura', 'NULL', 'Zheng', '0', '1980-01-10', 'S', 'NULL', 'F', 'laura25@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '4428 Jones Rd.', 'NULL', '1 (11) 500 555-0110', '2011-02-18', '0-1 Miles'], ['16702', '33', 'AW00016702', 'NULL', 'Patricia', 'T', 'Raman', '0', '1973-03-12', 'M', 'NULL', 'F', 'patricia15@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7008 Buckingham Dr.', 'NULL', '1 (11) 500 555-0184', '2011-02-21', '0-1 Miles'], ['16703', '31', 'AW00016703', 'NULL', 'Denise', 'NULL', 'Sanchez', '0', '1967-11-02', 'M', 'NULL', 'F', 'denise21@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8679 Mt. Tamlapais Place', 'NULL', '1 (11) 500 555-0154', '2011-02-09', '5-10 Miles'], ['16704', '5', 'AW00016704', 'NULL', 'Karla', 'K', 'Chavez', '0', '1966-11-30', 'M', 'NULL', 'F', 'karla16@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '699 Hummingbird Ct.', 'NULL', '1 (11) 500 555-0178', '2013-06-25', '0-1 Miles'], ['16705', '2', 'AW00016705', 'NULL', 'Jacqueline', 'NULL', 'Wood', '0', '1964-01-08', 'M', 'NULL', 'F', 'jacqueline2@adventure-works.com', '80000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '1645 Appleton Court', 'NULL', '1 (11) 500 555-0124', '2013-08-10', '0-1 Miles'], ['16706', '3', 'AW00016706', 'NULL', 'Jenny', 'W', 'Shan', '0', '1963-11-07', 'M', 'NULL', 'F', 'jenny33@adventure-works.com', '80000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '7207 Sycamore Dr.', 'NULL', '1 (11) 500 555-0150', '2013-09-22', '1-2 Miles'], ['16707', '25', 'AW00016707', 'NULL', 'Derrick', 'NULL', 'Serrano', '0', '1963-10-05', 'S', 'NULL', 'M', 'derrick15@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1160 Camelback Road', 'NULL', '1 (11) 500 555-0149', '2011-02-21', '2-5 Miles'], ['16708', '6', 'AW00016708', 'NULL', 'Kellie', 'NULL', 'Sanz', '0', '1975-04-06', 'S', 'NULL', 'F', 'kellie17@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '3189 La Salle St.', 'NULL', '1 (11) 500 555-0137', '2011-02-19', '5-10 Miles'], ['16709', '24', 'AW00016709', 'NULL', 'Roy', 'A', 'Alvarez', '0', '1941-12-14', 'M', 'NULL', 'M', 'roy25@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2959 Freda Drive', 'NULL', '1 (11) 500 555-0116', '2013-07-21', '5-10 Miles'], ['16710', '9', 'AW00016710', 'NULL', 'Carla', 'NULL', 'Arthur', '0', '1966-03-15', 'M', 'NULL', 'F', 'carla9@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6086 Glen Wood Drive', 'NULL', '1 (11) 500 555-0154', '2013-07-03', '10+ Miles'], ['16711', '12', 'AW00016711', 'NULL', 'Jorge', 'NULL', 'Zhao', '0', '1965-08-01', 'M', 'NULL', 'M', 'jorge12@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '7527 Eola', 'NULL', '1 (11) 500 555-0144', '2013-03-07', '10+ Miles'], ['16712', '2', 'AW00016712', 'NULL', 'Suzanne', 'K', 'Lu', '0', '1962-04-23', 'S', 'NULL', 'F', 'suzanne12@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '7605 Mount Dr.', 'NULL', '1 (11) 500 555-0167', '2011-02-03', '0-1 Miles'], ['16713', '22', 'AW00016713', 'NULL', 'Tony', 'L', 'Nara', '0', '1959-05-06', 'M', 'NULL', 'M', 'tony19@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '7922 Rock Island Drive', 'NULL', '1 (11) 500 555-0115', '2011-02-23', '0-1 Miles'], ['16714', '343', 'AW00016714', 'NULL', 'Dalton', 'NULL', 'Nicholls', '0', '1982-02-07', 'M', 'NULL', 'M', 'dalton34@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8433 Kenmore', 'NULL', '157-555-0189', '2013-08-04', '5-10 Miles'], ['16715', '339', 'AW00016715', 'NULL', 'Katelyn', 'C', 'Ramirez', '0', '1982-03-21', 'M', 'NULL', 'F', 'katelyn5@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5424 Bel Air Drive', 'NULL', '731-555-0157', '2013-08-24', '5-10 Miles'], ['16716', '633', 'AW00016716', 'NULL', 'Jose', 'NULL', 'Henderson', '0', '1981-08-02', 'S', 'NULL', 'M', 'jose28@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3131 Greer Ave', 'NULL', '580-555-0119', '2013-04-08', '0-1 Miles'], ['16717', '51', 'AW00016717', 'NULL', 'Masaki', 'NULL', 'Umeda', '0', '1980-10-08', 'M', 'NULL', 'F', 'masaki0@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3505 Graham St.', 'NULL', '154-555-0148', '2013-04-11', '5-10 Miles'], ['16718', '315', 'AW00016718', 'NULL', 'Gavin', 'T', 'Stone', '0', '1981-01-22', 'S', 'NULL', 'M', 'gavin14@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4668 East Avenue', 'NULL', '651-555-0192', '2013-11-18', '5-10 Miles'], ['16719', '302', 'AW00016719', 'NULL', 'Trevor', 'NULL', 'Russell', '0', '1980-07-10', 'S', 'NULL', 'M', 'trevor20@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7063 S. 107th Street', 'NULL', '367-555-0124', '2013-10-19', '5-10 Miles'], ['16720', '301', 'AW00016720', 'NULL', 'Morgan', 'C', 'Perry', '0', '1986-05-17', 'S', 'NULL', 'F', 'morgan77@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '878 Amador Ct', 'NULL', '587-555-0176', '2013-07-01', '5-10 Miles'], ['16721', '52', 'AW00016721', 'NULL', 'Xavier', 'NULL', 'Sanders', '0', '1986-03-03', 'M', 'NULL', 'M', 'xavier69@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8589 Shannon Ln.', 'NULL', '489-555-0113', '2013-04-08', '0-1 Miles'], ['16722', '633', 'AW00016722', 'NULL', 'Sean', 'L', 'Gray', '0', '1985-12-25', 'S', 'NULL', 'M', 'sean13@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5694 C Del Rio Circle', 'NULL', '977-555-0178', '2013-11-28', '5-10 Miles'], ['16723', '302', 'AW00016723', 'NULL', 'Barbara', 'NULL', 'Zhao', '0', '1986-03-14', 'M', 'NULL', 'F', 'barbara20@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7076 Terry Lynn Lane', 'NULL', '464-555-0130', '2014-01-21', '5-10 Miles'], ['16724', '345', 'AW00016724', 'NULL', 'Gabriel', 'W', 'Yang', '0', '1985-11-13', 'S', 'NULL', 'M', 'gabriel24@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9324 Youngsdale Drive', 'NULL', '595-555-0135', '2013-11-02', '0-1 Miles'], ['16725', '618', 'AW00016725', 'NULL', 'Jacob', 'NULL', 'Williams', '0', '1985-12-19', 'M', 'NULL', 'M', 'jacob3@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7640 First Ave.', 'NULL', '370-555-0144', '2013-12-09', '5-10 Miles'], ['16726', '316', 'AW00016726', 'NULL', 'Miguel', 'NULL', 'Wood', '0', '1984-11-22', 'M', 'NULL', 'M', 'miguel48@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9666 Pinehurst Court', 'NULL', '391-555-0141', '2013-12-26', '5-10 Miles'], ['16727', '626', 'AW00016727', 'NULL', 'Charles', 'NULL', 'Johnston', '0', '1986-05-17', 'S', 'NULL', 'M', 'charles4@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '115 Pine Creek Way', 'NULL', '540-555-0148', '2013-05-31', '0-1 Miles'], ['16728', '545', 'AW00016728', 'NULL', 'Cole', 'D', 'Morris', '0', '1985-07-20', 'M', 'NULL', 'M', 'cole19@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1517 Chisholm Way', 'NULL', '843-555-0140', '2013-06-09', '5-10 Miles'], ['16729', '31', 'AW00016729', 'NULL', 'Tommy', 'NULL', 'Nara', '0', '1942-12-11', 'M', 'NULL', 'M', 'tommy13@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6306 Manila Ave.', 'NULL', '1 (11) 500 555-0140', '2013-08-16', '5-10 Miles'], ['16730', '26', 'AW00016730', 'NULL', 'Mariah', 'C', 'Long', '0', '1943-03-31', 'M', 'NULL', 'F', 'mariah14@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5543 Royal Arch Court', 'NULL', '1 (11) 500 555-0181', '2013-12-02', '0-1 Miles'], ['16731', '55', 'AW00016731', 'NULL', 'Nicole', 'NULL', 'White', '0', '1984-08-08', 'S', 'NULL', 'F', 'nicole13@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9003 C St.', 'NULL', '109-555-0165', '2013-03-03', '5-10 Miles'], ['16732', '632', 'AW00016732', 'NULL', 'Natalie', 'NULL', 'Flores', '0', '1983-12-23', 'S', 'NULL', 'F', 'natalie35@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3805 Brushcreek Court', 'NULL', '433-555-0124', '2013-07-19', '0-1 Miles'], ['16733', '16', 'AW00016733', 'NULL', 'Douglas', 'M', 'Srini', '0', '1944-03-05', 'M', 'NULL', 'M', 'douglas12@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6733 North Star Dr', 'NULL', '1 (11) 500 555-0188', '2013-08-04', '5-10 Miles'], ['16734', '18', 'AW00016734', 'NULL', 'Emma', 'NULL', 'Martinez', '0', '1943-09-20', 'S', 'NULL', 'F', 'emma16@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5337 Claudia Dr.', 'NULL', '1 (11) 500 555-0144', '2013-04-29', '5-10 Miles'], ['16735', '626', 'AW00016735', 'NULL', 'Melissa', 'NULL', 'Hayes', '0', '1982-12-04', 'S', 'NULL', 'F', 'melissa18@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9737 Oak Creek Ct', '#65', '855-555-0159', '2013-08-21', '0-1 Miles'], ['16736', '632', 'AW00016736', 'NULL', 'Kelly', 'NULL', 'Alexander', '0', '1983-03-20', 'S', 'NULL', 'F', 'kelly23@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '25 Leisure Lane', 'NULL', '779-555-0125', '2013-06-15', '0-1 Miles'], ['16737', '612', 'AW00016737', 'Mr.', 'Steven', 'NULL', 'Selikoff', '0', '1984-10-29', 'S', 'NULL', 'F', 'steven3@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8384 Golden Rain Road', 'NULL', '861-555-0100', '2013-09-17', '5-10 Miles'], ['16738', '24', 'AW00016738', 'NULL', 'Ramon', 'B', 'Lu', '0', '1945-03-02', 'M', 'NULL', 'M', 'ramon11@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7741 Morgan Ave.', 'NULL', '1 (11) 500 555-0196', '2013-03-13', '5-10 Miles'], ['16739', '15', 'AW00016739', 'NULL', 'Cory', 'NULL', 'Weber', '0', '1955-12-21', 'M', 'NULL', 'M', 'cory2@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1132 San Vincente Drive', 'NULL', '1 (11) 500 555-0193', '2013-03-07', '5-10 Miles'], ['16740', '36', 'AW00016740', 'NULL', 'Elijah', 'NULL', 'Li', '0', '1946-04-25', 'M', 'NULL', 'M', 'elijah0@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '2096 Blackwood Drive', 'NULL', '1 (11) 500 555-0147', '2011-01-31', '0-1 Miles'], ['16741', '14', 'AW00016741', 'NULL', 'Alan', 'NULL', 'Xu', '0', '1946-03-07', 'M', 'NULL', 'M', 'alan15@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '5727 Eola', 'NULL', '1 (11) 500 555-0147', '2011-02-01', '0-1 Miles'], ['16742', '19', 'AW00016742', 'NULL', 'Mitchell', 'R', 'Pal', '0', '1946-05-12', 'M', 'NULL', 'M', 'mitchell11@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '2159 Barbie Dr.', 'NULL', '1 (11) 500 555-0155', '2011-02-22', '0-1 Miles'], ['16743', '2', 'AW00016743', 'NULL', 'Ariana', 'NULL', 'Stewart', '0', '1947-11-17', 'M', 'NULL', 'F', 'ariana21@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3726 Northridge Drive', 'NULL', '1 (11) 500 555-0111', '2011-01-29', '0-1 Miles'], ['16744', '11', 'AW00016744', 'NULL', 'Lacey', 'NULL', 'Guo', '0', '1947-12-13', 'M', 'NULL', 'F', 'lacey30@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3710 Via Appia', 'NULL', '1 (11) 500 555-0163', '2011-02-16', '0-1 Miles'], ['16745', '27', 'AW00016745', 'NULL', 'Krista', 'J', 'Moreno', '0', '1948-05-23', 'S', 'NULL', 'F', 'krista7@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '3371 Thors Bay Road', 'NULL', '1 (11) 500 555-0154', '2011-02-07', '0-1 Miles'], ['16746', '542', 'AW00016746', 'NULL', 'Brianna', 'W', 'Peterson', '0', '1982-05-05', 'S', 'NULL', 'F', 'brianna41@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7647 Valencia Place', 'NULL', '471-555-0141', '2013-02-28', '1-2 Miles'], ['16747', '548', 'AW00016747', 'NULL', 'Alexander', 'S', 'Davis', '0', '1980-12-11', 'S', 'NULL', 'M', 'alexander7@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '430 Surf Drive', 'NULL', '138-555-0198', '2013-06-30', '1-2 Miles'], ['16748', '312', 'AW00016748', 'NULL', 'Patrick', 'J', 'Peterson', '0', '1980-11-28', 'S', 'NULL', 'M', 'patrick11@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1751 Joan Ave.', 'NULL', '913-555-0175', '2013-12-08', '5-10 Miles'], ['16749', '369', 'AW00016749', 'NULL', 'Aaron', 'NULL', 'Coleman', '0', '1979-11-07', 'S', 'NULL', 'M', 'aaron5@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3393 Alpha Way', 'NULL', '914-555-0128', '2013-12-05', '5-10 Miles'], ['16750', '374', 'AW00016750', 'NULL', 'Seth', 'NULL', 'Sanders', '0', '1979-11-08', 'M', 'NULL', 'M', 'seth76@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7348 Indianhead Way', 'NULL', '461-555-0176', '2013-03-21', '5-10 Miles'], ['16751', '638', 'AW00016751', 'NULL', 'Aaron', 'C', 'Scott', '0', '1984-12-09', 'M', 'NULL', 'M', 'aaron45@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '199 Clymer Ct.', 'NULL', '705-555-0178', '2013-07-20', '5-10 Miles'], ['16752', '374', 'AW00016752', 'NULL', 'Mason', 'NULL', 'Wright', '0', '1978-08-27', 'S', 'NULL', 'M', 'mason42@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1347 Palisade Court', 'NULL', '296-555-0176', '2013-08-17', '5-10 Miles'], ['16753', '542', 'AW00016753', 'NULL', 'Rachel', 'NULL', 'Harris', '0', '1977-08-22', 'S', 'NULL', 'F', 'rachel16@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8790 N. 108th St.', 'NULL', '522-555-0152', '2013-10-19', '5-10 Miles'], ['16754', '54', 'AW00016754', 'NULL', 'Alex', 'M', 'Bell', '0', '1978-06-04', 'S', 'NULL', 'M', 'alex18@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '435 Santa Barbara', 'NULL', '582-555-0181', '2013-03-17', '1-2 Miles'], ['16755', '634', 'AW00016755', 'NULL', 'Olivia', 'NULL', 'James', '0', '1978-01-23', 'M', 'NULL', 'F', 'olivia43@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '1990 Guadalajara', 'NULL', '386-555-0112', '2013-10-19', '1-2 Miles'], ['16756', '641', 'AW00016756', 'NULL', 'Richard', 'NULL', 'Allen', '0', '1974-03-18', 'M', 'NULL', 'M', 'richard18@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '281 Windsor Drive', 'NULL', '424-555-0148', '2013-10-16', '0-1 Miles'], ['16757', '547', 'AW00016757', 'NULL', 'Mackenzie', 'A', 'Cox', '0', '1972-12-30', 'M', 'NULL', 'F', 'mackenzie9@adventure-works.com', '110000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '6191 Story Lane', 'NULL', '199-555-0157', '2013-12-31', '5-10 Miles'], ['16758', '69', 'AW00016758', 'NULL', 'Justin', 'E', 'Perry', '0', '1978-11-14', 'M', 'NULL', 'M', 'justin4@adventure-works.com', '110000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '6312 Woodcrest Dr', 'NULL', '349-555-0169', '2013-06-04', '1-2 Miles'], ['16759', '360', 'AW00016759', 'NULL', 'Jasmine', 'B', 'Bell', '0', '1972-12-30', 'M', 'NULL', 'F', 'jasmine26@adventure-works.com', '110000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '5333 Adria Drive', 'NULL', '721-555-0147', '2013-10-23', '2-5 Miles'], ['16760', '369', 'AW00016760', 'NULL', 'Sydney', 'NULL', 'Alexander', '0', '1970-08-07', 'S', 'NULL', 'F', 'sydney41@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '8162 Milden Road', 'NULL', '666-555-0119', '2013-03-10', '0-1 Miles'], ['16761', '616', 'AW00016761', 'NULL', 'Angel', 'A', 'Ward', '0', '1978-06-11', 'S', 'NULL', 'M', 'angel12@adventure-works.com', '40000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6539 Hames Court', 'NULL', '175-555-0184', '2013-09-21', '1-2 Miles'], ['16762', '612', 'AW00016762', 'NULL', 'Franklin', 'NULL', 'Ferrier', '0', '1978-01-23', 'M', 'NULL', 'M', 'franklin39@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1990 Bridge', 'NULL', '944-555-0168', '2013-09-22', '1-2 Miles'], ['16763', '49', 'AW00016763', 'NULL', 'Juan', 'R', 'Suarez', '0', '1979-05-04', 'M', 'NULL', 'M', 'juan6@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1287 Youngsdale Drive', 'NULL', '344-555-0182', '2013-04-11', '1-2 Miles'], ['16764', '55', 'AW00016764', 'NULL', 'Thomas', 'NULL', 'Davis', '0', '1978-11-20', 'M', 'NULL', 'M', 'thomas65@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7811 Woodsworth Lane', 'NULL', '321-555-0139', '2013-05-21', '1-2 Miles'], ['16765', '648', 'AW00016765', 'NULL', 'Dalton', 'R', 'White', '0', '1979-01-04', 'M', 'NULL', 'M', 'dalton12@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6384 Euclid Ave.', 'NULL', '609-555-0146', '2013-07-28', '0-1 Miles'], ['16766', '300', 'AW00016766', 'NULL', 'Summer', 'G', 'Arun', '0', '1979-02-01', 'S', 'NULL', 'F', 'summer5@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3770 Viewpoint Ct', 'NULL', '185-555-0119', '2013-11-04', '1-2 Miles'], ['16767', '301', 'AW00016767', 'NULL', 'Rafael', 'M', 'Liu', '0', '1978-10-03', 'M', 'NULL', 'M', 'rafael4@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1790 Holton Court', 'NULL', '509-555-0160', '2013-03-14', '0-1 Miles'], ['16768', '311', 'AW00016768', 'NULL', 'Eduardo', 'R', 'Barnes', '0', '1979-01-07', 'M', 'NULL', 'M', 'eduardo47@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '899 Park Blvd.', 'NULL', '162-555-0149', '2014-01-20', '0-1 Miles'], ['16769', '315', 'AW00016769', 'NULL', 'Tyler', 'J', 'Walker', '0', '1977-04-22', 'M', 'NULL', 'M', 'tyler23@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1077 Pheasant Drive', 'NULL', '843-555-0171', '2013-10-17', '1-2 Miles'], ['16770', '334', 'AW00016770', 'NULL', 'Charles', 'NULL', 'Rogers', '0', '1977-03-21', 'M', 'NULL', 'M', 'charles67@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1435 Ash Lane', 'NULL', '615-555-0110', '2013-09-07', '0-1 Miles'], ['16771', '49', 'AW00016771', 'NULL', 'Ian', 'NULL', 'Walker', '0', '1978-06-23', 'M', 'NULL', 'M', 'ian21@adventure-works.com', '50000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3686 Mac Court', 'NULL', '141-555-0176', '2013-02-23', '1-2 Miles'], ['16772', '59', 'AW00016772', 'NULL', 'Morgan', 'S', 'Parker', '0', '1977-07-14', 'M', 'NULL', 'F', 'morgan6@adventure-works.com', '50000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3382 Arrowwood Circle', 'NULL', '797-555-0113', '2013-03-15', '1-2 Miles'], ['16773', '553', 'AW00016773', 'NULL', 'David', 'E', 'Lal', '0', '1978-05-06', 'M', 'NULL', 'M', 'david61@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3529 Midway Ct', 'NULL', '679-555-0111', '2013-07-08', '0-1 Miles'], ['16774', '648', 'AW00016774', 'NULL', 'Eduardo', 'R', 'Perry', '0', '1983-02-07', 'S', 'NULL', 'M', 'eduardo52@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8859 Pacheco St.', 'NULL', '119-555-0134', '2013-06-15', '2-5 Miles'], ['16775', '310', 'AW00016775', 'NULL', 'Sarah', 'L', 'Russell', '0', '1983-09-14', 'M', 'NULL', 'F', 'sarah44@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4555 Eastgate Ave.', 'NULL', '815-555-0119', '2013-09-19', '0-1 Miles'], ['16776', '609', 'AW00016776', 'NULL', 'Dalton', 'NULL', 'Lewis', '0', '1975-09-19', 'M', 'NULL', 'M', 'dalton20@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2245 Cloudview Dr', 'NULL', '165-555-0115', '2013-09-28', '2-5 Miles'], ['16777', '545', 'AW00016777', 'NULL', 'Cameron', 'J', 'Simmons', '0', '1950-03-04', 'M', 'NULL', 'M', 'cameron10@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2124 Royal Arch Court', 'NULL', '774-555-0152', '2013-02-24', '1-2 Miles'], ['16778', '301', 'AW00016778', 'NULL', 'Blake', 'G', 'Hayes', '0', '1950-03-03', 'S', 'NULL', 'M', 'blake70@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6807 Snowberry Court', 'NULL', '303-555-0111', '2013-10-27', '10+ Miles'], ['16779', '383', 'AW00016779', 'NULL', 'Morgan', 'A', 'Watson', '0', '1961-04-22', 'M', 'NULL', 'F', 'morgan66@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1941 Hacienda', 'NULL', '447-555-0120', '2013-10-24', '10+ Miles'], ['16780', '633', 'AW00016780', 'NULL', 'Carlos', 'NULL', 'Bailey', '0', '1951-03-24', 'M', 'NULL', 'M', 'carlos18@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9654 Pirate Lane', 'NULL', '117-555-0179', '2013-09-05', '2-5 Miles'], ['16781', '316', 'AW00016781', 'NULL', 'Dylan', 'NULL', 'Chen', '0', '1950-12-16', 'M', 'NULL', 'M', 'dylan25@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3444 Maywood Lane', 'NULL', '453-555-0175', '2013-01-29', '10+ Miles'], ['16782', '632', 'AW00016782', 'NULL', 'Lucas', 'NULL', 'Clark', '0', '1951-08-21', 'M', 'NULL', 'M', 'lucas33@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '832 Heights Ave.', 'NULL', '159-555-0120', '2013-10-08', '2-5 Miles'], ['16783', '642', 'AW00016783', 'NULL', 'Grace', 'R', 'Barnes', '0', '1952-06-05', 'M', 'NULL', 'F', 'grace50@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '213 Valencia Place', 'NULL', '464-555-0157', '2013-11-22', '10+ Miles'], ['16784', '50', 'AW00016784', 'NULL', 'Chloe', 'NULL', 'Long', '0', '1951-08-10', 'M', 'NULL', 'F', 'chloe76@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '225 San Miguel Rd.', 'NULL', '393-555-0132', '2013-05-02', '10+ Miles'], ['16785', '642', 'AW00016785', 'NULL', 'Christian', 'R', 'Lee', '0', '1952-02-09', 'M', 'NULL', 'M', 'christian42@adventure-works.com', '70000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '1229 Harness Circle', 'NULL', '190-555-0158', '2013-09-30', '10+ Miles'], ['16786', '338', 'AW00016786', 'NULL', 'Lucas', 'A', 'Reed', '0', '1952-03-23', 'M', 'NULL', 'M', 'lucas91@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '1566 Eagle Ct.', 'NULL', '941-555-0188', '2013-10-26', '10+ Miles'], ['16787', '298', 'AW00016787', 'NULL', 'Nicole', 'J', 'Jackson', '0', '1957-04-22', 'S', 'NULL', 'F', 'nicole12@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '3836 Mt. Davidson Court', 'NULL', '660-555-0192', '2013-11-25', '10+ Miles'], ['16788', '302', 'AW00016788', 'NULL', 'Ronnie', 'J', 'Gao', '0', '1952-10-11', 'M', 'NULL', 'M', 'ronnie13@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '5329 Notre Dame Ave', 'NULL', '318-555-0167', '2013-04-15', '2-5 Miles'], ['16789', '637', 'AW00016789', 'NULL', 'Jennifer', 'R', 'Harris', '0', '1953-03-20', 'M', 'NULL', 'F', 'jennifer42@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '665 Rishell Ct.', 'NULL', '167-555-0129', '2013-12-19', '2-5 Miles'], ['16790', '547', 'AW00016790', 'NULL', 'Hunter', 'A', 'Lopez', '0', '1958-02-06', 'M', 'NULL', 'M', 'hunter52@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '7079 Green Leaf Drive', 'NULL', '400-555-0145', '2013-12-25', '2-5 Miles'], ['16791', '49', 'AW00016791', 'NULL', 'Leonard', 'F', 'Yuan', '0', '1952-11-03', 'S', 'NULL', 'M', 'leonard8@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '8483 Wilke Drive', 'NULL', '140-555-0185', '2013-05-23', '10+ Miles'], ['16792', '337', 'AW00016792', 'NULL', 'Maria', 'NULL', 'Torres', '0', '1952-12-07', 'M', 'NULL', 'F', 'maria16@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '8202 Lion Circle', 'NULL', '662-555-0113', '2013-01-17', '2-5 Miles'], ['16793', '368', 'AW00016793', 'NULL', 'Savannah', 'F', 'Hernandez', '0', '1952-11-03', 'S', 'NULL', 'F', 'savannah41@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '8483 Wilke Drive', 'NULL', '939-555-0179', '2013-01-07', '10+ Miles'], ['16794', '634', 'AW00016794', 'NULL', 'Taylor', 'NULL', 'Cook', '0', '1952-10-17', 'M', 'NULL', 'F', 'taylor5@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '7610 Pepper Pl.', 'NULL', '862-555-0136', '2013-01-15', '10+ Miles'], ['16795', '299', 'AW00016795', 'NULL', 'Regina', 'J', 'Garcia', '0', '1952-10-31', 'M', 'NULL', 'F', 'regina14@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '4393 Rossmor Parkway', 'NULL', '397-555-0174', '2013-11-24', '1-2 Miles'], ['16796', '638', 'AW00016796', 'NULL', 'Kaitlyn', 'F', 'Martin', '0', '1953-12-03', 'S', 'NULL', 'F', 'kaitlyn37@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6396 Pueblo Dr.', 'NULL', '463-555-0176', '2013-05-17', '10+ Miles'], ['16797', '644', 'AW00016797', 'NULL', 'Evan', 'V', 'Reed', '0', '1954-05-18', 'M', 'NULL', 'M', 'evan21@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '6566 Tono Lane', 'NULL', '735-555-0111', '2013-01-08', '2-5 Miles'], ['16798', '312', 'AW00016798', 'NULL', 'Latasha', 'NULL', 'Martin', '0', '1953-11-01', 'M', 'NULL', 'F', 'latasha0@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '9613 Smiling Tree Court', 'NULL', '126-555-0160', '2013-01-16', '2-5 Miles'], ['16799', '322', 'AW00016799', 'NULL', 'Stephanie', 'NULL', 'Gonzales', '0', '1954-04-06', 'M', 'NULL', 'F', 'stephanie44@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '6119 11th', 'NULL', '605-555-0110', '2013-01-23', '2-5 Miles'], ['16800', '52', 'AW00016800', 'NULL', 'Jordan', 'M', 'Roberts', '0', '1954-12-19', 'M', 'NULL', 'F', 'jordan32@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1935 Alamo Way', 'NULL', '115-555-0134', '2013-06-17', '2-5 Miles'], ['16801', '609', 'AW00016801', 'NULL', 'Jasmine', 'NULL', 'Henderson', '0', '1960-01-19', 'S', 'NULL', 'F', 'jasmine45@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9956 Mcneil Place', 'NULL', '183-555-0118', '2013-09-10', '10+ Miles'], ['16802', '626', 'AW00016802', 'NULL', 'Lucas', 'NULL', 'Allen', '0', '1955-01-09', 'S', 'NULL', 'M', 'lucas39@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4422 Mariposa', 'NULL', '158-555-0171', '2013-02-17', '10+ Miles'], ['16803', '633', 'AW00016803', 'NULL', 'Marcus', 'L', 'Peterson', '0', '1960-07-17', 'M', 'NULL', 'M', 'marcus80@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '9360 S. Fifth St.', 'NULL', '655-555-0183', '2013-01-14', '2-5 Miles'], ['16804', '552', 'AW00016804', 'NULL', 'Adam', 'W', 'Zhang', '0', '1956-06-18', 'M', 'NULL', 'M', 'adam20@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8297 Dos Encinas', 'NULL', '988-555-0176', '2013-01-15', '2-5 Miles'], ['16805', '552', 'AW00016805', 'NULL', 'Fernando', 'H', 'Allen', '0', '1961-03-10', 'S', 'NULL', 'M', 'fernando23@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6456 Eagle Way', 'NULL', '638-555-0183', '2013-01-15', '10+ Miles'], ['16806', '302', 'AW00016806', 'NULL', 'Louis', 'NULL', 'Zhao', '0', '1956-02-01', 'M', 'NULL', 'M', 'louis4@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '1899 Hooftrail Way', 'NULL', '100-555-0146', '2013-12-07', '2-5 Miles'], ['16807', '307', 'AW00016807', 'NULL', 'Virginia', 'J', 'Suri', '0', '1956-04-03', 'M', 'NULL', 'F', 'virginia1@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6691 Brookview Dr', 'NULL', '468-555-0162', '2013-01-14', '10+ Miles'], ['16808', '336', 'AW00016808', 'NULL', 'Jessica', 'R', 'Long', '0', '1956-04-02', 'M', 'NULL', 'F', 'jessica34@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '6566 Jamie Way', 'NULL', '674-555-0195', '2013-09-16', '1-2 Miles'], ['16809', '355', 'AW00016809', 'NULL', 'Bailey', 'A', 'Sanders', '0', '1961-06-20', 'S', 'NULL', 'F', 'bailey2@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '3910 Fawn Glen Circle', 'NULL', '532-555-0181', '2013-10-16', '10+ Miles'], ['16810', '59', 'AW00016810', 'NULL', 'Michael', 'E', 'Rodriguez', '0', '1957-02-28', 'M', 'NULL', 'M', 'michael52@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '5053 Loftus Road', 'NULL', '352-555-0170', '2013-08-09', '2-5 Miles'], ['16811', '642', 'AW00016811', 'NULL', 'Luis', 'R', 'Zhang', '0', '1956-10-16', 'M', 'NULL', 'M', 'luis23@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '2538 Stafford Ave', 'NULL', '679-555-0151', '2013-02-27', '10+ Miles'], ['16812', '329', 'AW00016812', 'NULL', 'Alexa', 'NULL', 'Richardson', '0', '1962-09-09', 'M', 'NULL', 'F', 'alexa7@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6948 Midway Ct', 'NULL', '764-555-0166', '2013-02-16', '2-5 Miles'], ['16813', '334', 'AW00016813', 'NULL', 'Carson', 'NULL', 'Diaz', '0', '1956-10-11', 'M', 'NULL', 'M', 'carson21@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5050 Mt. Diablo St.', 'NULL', '925-555-0122', '2013-11-24', '10+ Miles'], ['16814', '343', 'AW00016814', 'NULL', 'Isabella', 'D', 'Collins', '0', '1962-08-08', 'S', 'NULL', 'F', 'isabella35@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '9022 East 87th Street', 'NULL', '239-555-0194', '2013-02-03', '10+ Miles'], ['16815', '347', 'AW00016815', 'NULL', 'Jacob', 'NULL', 'Brown', '0', '1956-11-06', 'M', 'NULL', 'M', 'jacob4@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '8668 Via Neruda', 'NULL', '588-555-0115', '2014-01-10', '1-2 Miles'], ['16816', '355', 'AW00016816', 'NULL', 'Julia', 'R', 'Miller', '0', '1962-03-07', 'M', 'NULL', 'F', 'julia28@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '4002 Willow Pass Dr.', 'NULL', '555-555-0194', '2014-01-04', '10+ Miles'], ['16817', '359', 'AW00016817', 'NULL', 'Evan', 'NULL', 'Peterson', '0', '1957-06-18', 'M', 'NULL', 'M', 'evan5@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '4143 Smith Lane', 'NULL', '197-555-0165', '2013-10-13', '10+ Miles'], ['16818', '372', 'AW00016818', 'NULL', 'Gabrielle', 'NULL', 'Reed', '0', '1956-08-02', 'M', 'NULL', 'F', 'gabrielle3@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6417 Del Rey St', 'NULL', '659-555-0128', '2013-10-07', '2-5 Miles'], ['16819', '618', 'AW00016819', 'NULL', 'Dalton', 'NULL', 'Cox', '0', '1957-12-31', 'M', 'NULL', 'M', 'dalton81@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '7684 Grove Way', 'NULL', '562-555-0158', '2013-10-13', '2-5 Miles'], ['16820', '60', 'AW00016820', 'NULL', 'Isabella', 'NULL', 'Gray', '0', '1957-07-12', 'M', 'NULL', 'F', 'isabella5@adventure-works.com', '70000.00', '5', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6400 St. John Lane', 'NULL', '438-555-0150', '2013-08-21', '10+ Miles'], ['16821', '161', 'AW00016821', 'NULL', 'Mary', 'NULL', 'Carter', '0', '1964-01-17', 'M', 'NULL', 'F', 'mary23@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', 'Pascalstr 36', 'NULL', '1 (11) 500 555-0143', '2012-07-03', '5-10 Miles'], ['16822', '265', 'AW00016822', 'NULL', 'Marshall', 'NULL', 'Lin', '0', '1964-05-27', 'M', 'NULL', 'M', 'marshall7@adventure-works.com', '150000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '7070 W. Watson Court', 'NULL', '1 (11) 500 555-0198', '2012-05-10', '5-10 Miles'], ['16823', '268', 'AW00016823', 'NULL', 'Stacy', 'NULL', 'Ruiz', '0', '1964-01-17', 'M', 'NULL', 'F', 'stacy3@adventure-works.com', '160000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '5399 Heron Ct.', 'NULL', '1 (11) 500 555-0123', '2012-05-09', '5-10 Miles'], ['16824', '123', 'AW00016824', 'NULL', 'Randall', 'J', 'Munoz', '0', '1962-11-14', 'M', 'NULL', 'M', 'randall8@adventure-works.com', '120000.00', '2', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Dunckerstr 3578', 'NULL', '1 (11) 500 555-0144', '2012-07-21', '5-10 Miles'], ['16825', '155', 'AW00016825', 'NULL', 'Susan', 'NULL', 'Zeng', '0', '1963-02-01', 'M', 'NULL', 'F', 'susan33@adventure-works.com', '120000.00', '2', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Helsenbergbogen 6', 'NULL', '1 (11) 500 555-0172', '2013-11-17', '5-10 Miles'], ['16826', '161', 'AW00016826', 'NULL', 'Roberto', 'A', 'Vazquez', '0', '1968-11-08', 'M', 'NULL', 'M', 'roberto15@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', 'Postfach 66 16 11', 'NULL', '1 (11) 500 555-0155', '2012-08-24', '5-10 Miles'], ['16827', '275', 'AW00016827', 'NULL', 'Jeffery', 'C', 'Chen', '0', '1973-08-14', 'M', 'NULL', 'M', 'jeffery2@adventure-works.com', '170000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '1549 Wildewood Dr', 'NULL', '1 (11) 500 555-0118', '2012-05-14', '0-1 Miles'], ['16828', '262', 'AW00016828', 'NULL', 'Logan', 'R', 'Mitchell', '0', '1967-02-06', 'M', 'NULL', 'M', 'logan37@adventure-works.com', '160000.00', '2', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1874 Virginia Hills Dr.', 'NULL', '1 (11) 500 555-0191', '2012-05-15', '0-1 Miles'], ['16829', '267', 'AW00016829', 'NULL', 'Wayne', 'C', 'Lal', '0', '1967-04-24', 'M', 'NULL', 'M', 'wayne10@adventure-works.com', '160000.00', '2', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2269 Clear St.', 'NULL', '1 (11) 500 555-0151', '2012-05-07', '5-10 Miles'], ['16830', '161', 'AW00016830', 'NULL', 'Alexandra', 'M', 'Hall', '0', '1961-04-19', 'M', 'NULL', 'F', 'alexandra89@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', 'Lieblingsweg 444', 'NULL', '1 (11) 500 555-0116', '2012-08-01', '5-10 Miles'], ['16831', '239', 'AW00016831', 'NULL', 'Theodore', 'T', 'Vazquez', '0', '1960-11-08', 'M', 'NULL', 'M', 'theodore15@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '7490 Sharon Dr', 'NULL', '1 (11) 500 555-0126', '2012-05-24', '0-1 Miles'], ['16832', '635', 'AW00016832', 'NULL', 'Isaiah', 'J', 'Parker', '0', '1937-12-10', 'S', 'NULL', 'M', 'isaiah21@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2668 E. 79th Street', 'NULL', '156-555-0115', '2013-10-22', '5-10 Miles'], ['16833', '325', 'AW00016833', 'NULL', 'Richard', 'L', 'Cooper', '0', '1938-02-21', 'M', 'NULL', 'M', 'richard90@adventure-works.com', '90000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '9023 Maryland Dr.', 'NULL', '366-555-0187', '2013-10-28', '2-5 Miles'], ['16834', '50', 'AW00016834', 'NULL', 'Morgan', 'J', 'Peterson', '0', '1939-01-18', 'S', 'NULL', 'F', 'morgan62@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9377 Detroit Ave', 'NULL', '348-555-0199', '2013-05-26', '5-10 Miles'], ['16835', '612', 'AW00016835', 'NULL', 'Noah', 'NULL', 'Nelson', '0', '1939-04-13', 'M', 'NULL', 'M', 'noah36@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7082 45th St', 'NULL', '726-555-0124', '2013-10-12', '5-10 Miles'], ['16836', '49', 'AW00016836', 'NULL', 'David', 'NULL', 'Thomas', '0', '1971-05-22', 'M', 'NULL', 'M', 'david69@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '6219 Marcia Drive', 'NULL', '278-555-0197', '2013-08-16', '2-5 Miles'], ['16837', '51', 'AW00016837', 'NULL', 'Elizabeth', 'K', 'Jackson', '0', '1971-04-22', 'M', 'NULL', 'F', 'elizabeth15@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '3494 Jamie Way', 'NULL', '363-555-0162', '2013-08-04', '2-5 Miles'], ['16838', '307', 'AW00016838', 'NULL', 'Jonathan', 'R', 'Griffin', '0', '1970-07-16', 'S', 'NULL', 'M', 'jonathan20@adventure-works.com', '110000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '3230 Market Place', 'NULL', '121-555-0113', '2013-09-30', '1-2 Miles'], ['16839', '383', 'AW00016839', 'NULL', 'Julia', 'F', 'Ross', '0', '1970-12-17', 'M', 'NULL', 'F', 'julia70@adventure-works.com', '170000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5518 San Rafael', 'NULL', '716-555-0194', '2013-10-10', '0-1 Miles'], ['16840', '49', 'AW00016840', 'NULL', 'Xavier', 'NULL', 'Torres', '0', '1969-09-11', 'M', 'NULL', 'M', 'xavier70@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '8802 Valley Manor', 'NULL', '110-555-0149', '2013-05-24', '2-5 Miles'], ['16841', '71', 'AW00016841', 'NULL', 'James', 'E', 'Turner', '0', '1970-05-16', 'M', 'NULL', 'M', 'james54@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7848 York Dr.', 'NULL', '602-555-0192', '2013-02-25', '2-5 Miles'], ['16842', '301', 'AW00016842', 'NULL', 'Jenny', 'R', 'Yang', '0', '1975-04-06', 'M', 'NULL', 'F', 'jenny7@adventure-works.com', '110000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '602 Columbia River Ct', 'NULL', '885-555-0197', '2013-10-25', '2-5 Miles'], ['16843', '311', 'AW00016843', 'NULL', 'Jimmy', 'NULL', 'Ramos', '0', '1969-08-15', 'S', 'NULL', 'M', 'jimmy21@adventure-works.com', '130000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '9817 Cook Street', 'NULL', '256-555-0148', '2013-10-27', '0-1 Miles'], ['16844', '374', 'AW00016844', 'NULL', 'Emma', 'C', 'Robinson', '0', '1975-07-22', 'M', 'NULL', 'F', 'emma17@adventure-works.com', '160000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5377 Sahara Dr.', 'NULL', '492-555-0160', '2013-10-22', '0-1 Miles'], ['16845', '383', 'AW00016845', 'NULL', 'Andrea', 'M', 'Adams', '0', '1975-09-12', 'S', 'NULL', 'F', 'andrea37@adventure-works.com', '170000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '4767 Detroit Ave.', 'NULL', '658-555-0193', '2013-10-05', '1-2 Miles'], ['16846', '52', 'AW00016846', 'NULL', 'James', 'G', 'Phillips', '0', '1968-11-05', 'S', 'NULL', 'M', 'james55@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8732 Carob Way', 'NULL', '200-555-0199', '2013-02-21', '2-5 Miles'], ['16847', '57', 'AW00016847', 'NULL', 'Eduardo', 'NULL', 'Hall', '0', '1979-09-16', 'M', 'NULL', 'M', 'eduardo23@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8128 Honey Trail Lane', 'NULL', '355-555-0111', '2013-06-14', '2-5 Miles'], ['16848', '55', 'AW00016848', 'NULL', 'Jessica', 'NULL', 'Thomas', '0', '1979-10-01', 'S', 'NULL', 'F', 'jessica58@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '544 Magda Way', 'NULL', '749-555-0195', '2013-01-31', '0-1 Miles'], ['16849', '69', 'AW00016849', 'NULL', 'Jonathan', 'NULL', 'Collins', '0', '1974-09-24', 'M', 'NULL', 'M', 'jonathan32@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9808 Holiday Hills', 'NULL', '319-555-0114', '2013-12-04', '2-5 Miles'], ['16850', '641', 'AW00016850', 'NULL', 'Jessica', 'NULL', 'Jenkins', '0', '1969-03-31', 'S', 'NULL', 'F', 'jessica31@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '3281 Ana Mile', 'NULL', '433-555-0119', '2013-10-04', '2-5 Miles'], ['16851', '298', 'AW00016851', 'NULL', 'Kevin', 'L', 'Hayes', '0', '1968-09-28', 'S', 'NULL', 'M', 'kevin25@adventure-works.com', '100000.00', '0', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5515 West Bouncing Rd', 'NULL', '980-555-0166', '2013-10-23', '2-5 Miles'], ['16852', '302', 'AW00016852', 'NULL', 'Kate', 'NULL', 'She', '0', '1974-06-03', 'S', 'NULL', 'F', 'kate0@adventure-works.com', '110000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '8713 Book Street', 'NULL', '815-555-0144', '2013-10-15', '5-10 Miles'], ['16853', '310', 'AW00016853', 'NULL', 'Christina', 'A', 'Bailey', '0', '1968-08-19', 'S', 'NULL', 'F', 'christina14@adventure-works.com', '110000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '3859 Anchor Ave', 'NULL', '394-555-0181', '2013-12-20', '5-10 Miles'], ['16854', '385', 'AW00016854', 'NULL', 'Seth', 'L', 'Adams', '0', '1980-02-20', 'M', 'NULL', 'M', 'seth33@adventure-works.com', '170000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '903 West I St', 'NULL', '472-555-0154', '2013-10-04', '1-2 Miles'], ['16855', '49', 'AW00016855', 'NULL', 'Evelyn', 'NULL', 'Srini', '0', '1968-05-12', 'M', 'NULL', 'F', 'evelyn9@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1348 Montego', 'NULL', '340-555-0163', '2013-10-16', '5-10 Miles'], ['16856', '611', 'AW00016856', 'NULL', 'Erin', 'NULL', 'Rivera', '0', '1968-06-09', 'M', 'NULL', 'F', 'erin21@adventure-works.com', '90000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '3812 Roundtree Drive', '#5', '134-555-0188', '2013-08-28', '5-10 Miles'], ['16857', '612', 'AW00016857', 'NULL', 'Lawrence', 'C', 'Munoz', '0', '1973-12-14', 'M', 'NULL', 'M', 'lawrence5@adventure-works.com', '90000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '3635 N Ridgewood Drive', 'NULL', '396-555-0163', '2013-05-04', '5-10 Miles'], ['16858', '616', 'AW00016858', 'NULL', 'Jan', 'NULL', 'Lopez', '0', '1968-02-10', 'M', 'NULL', 'F', 'jan17@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '4214 Willbrook Court', 'NULL', '950-555-0171', '2013-12-07', '5-10 Miles'], ['16859', '633', 'AW00016859', 'NULL', 'Jack', 'E', 'Kumar', '0', '1973-08-17', 'S', 'NULL', 'M', 'jack29@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '8609 Camino Peral', 'NULL', '747-555-0113', '2013-10-17', '5-10 Miles'], ['16860', '300', 'AW00016860', 'NULL', 'Haley', 'M', 'Rogers', '0', '1967-09-14', 'M', 'NULL', 'F', 'haley3@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8380 Sheppard Way', 'NULL', '101-555-0190', '2013-03-12', '1-2 Miles'], ['16861', '334', 'AW00016861', 'NULL', 'Luis', 'NULL', 'Sharma', '0', '1973-06-06', 'S', 'NULL', 'M', 'luis30@adventure-works.com', '130000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '4207 Madrid Lane', 'NULL', '630-555-0138', '2014-01-13', '0-1 Miles'], ['16862', '343', 'AW00016862', 'NULL', 'Timothy', 'A', 'Nelson', '0', '1968-06-18', 'M', 'NULL', 'M', 'timothy35@adventure-works.com', '130000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '7798 Esperanza Drive', 'NULL', '267-555-0140', '2014-01-13', '0-1 Miles'], ['16863', '536', 'AW00016863', 'NULL', 'Kaitlyn', 'W', 'Clark', '0', '1967-02-08', 'M', 'NULL', 'F', 'kaitlyn42@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '5074 Ulfinian Way', 'NULL', '261-555-0195', '2013-03-05', '1-2 Miles'], ['16864', '648', 'AW00016864', 'NULL', 'Grace', 'NULL', 'Ramirez', '0', '1966-11-03', 'S', 'NULL', 'F', 'grace42@adventure-works.com', '100000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '3290 Las Palmas', 'NULL', '414-555-0176', '2013-10-26', '5-10 Miles'], ['16865', '312', 'AW00016865', 'NULL', 'Jordyn', 'NULL', 'Diaz', '0', '1972-06-02', 'M', 'NULL', 'F', 'jordyn20@adventure-works.com', '120000.00', '1', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '6539 Greenwood Circle', 'NULL', '988-555-0154', '2013-10-22', '5-10 Miles'], ['16866', '326', 'AW00016866', 'NULL', 'Alexandra', 'G', 'Parker', '0', '1983-10-19', 'M', 'NULL', 'F', 'alexandra50@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6159 Argonne Drive', 'NULL', '974-555-0142', '2013-10-13', '2-5 Miles'], ['16867', '355', 'AW00016867', 'NULL', 'Katelyn', 'NULL', 'King', '0', '1967-02-23', 'S', 'NULL', 'F', 'katelyn43@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '6462 Wexford Drive', 'NULL', '460-555-0179', '2013-10-04', '0-1 Miles'], ['16868', '372', 'AW00016868', 'NULL', 'Xavier', 'A', 'Jackson', '0', '1972-02-01', 'M', 'NULL', 'M', 'xavier9@adventure-works.com', '160000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '53 Odin Dr', 'NULL', '161-555-0147', '2013-10-16', '2-5 Miles'], ['16869', '374', 'AW00016869', 'NULL', 'Vanessa', 'B', 'Patterson', '0', '1966-08-01', 'M', 'NULL', 'F', 'vanessa11@adventure-works.com', '170000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '1949 Bay Court', 'NULL', '953-555-0152', '2013-10-04', '2-5 Miles'], ['16870', '52', 'AW00016870', 'NULL', 'Andrea', 'M', 'Morgan', '0', '1961-03-31', 'M', 'NULL', 'F', 'andrea22@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '4162 Euclid Ave.', 'NULL', '743-555-0185', '2013-02-03', '1-2 Miles'], ['16871', '369', 'AW00016871', 'NULL', 'Anna', 'A', 'Clark', '0', '1966-02-07', 'M', 'NULL', 'F', 'anna57@adventure-works.com', '90000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '2419 Adobe St.', 'NULL', '183-555-0145', '2013-10-07', '10+ Miles'], ['16872', '355', 'AW00016872', 'NULL', 'Samuel', 'A', 'Taylor', '0', '1976-02-20', 'M', 'NULL', 'M', 'samuel65@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '498 Rockford Dr.', 'NULL', '345-555-0192', '2013-10-16', '5-10 Miles'], ['16873', '41', 'AW00016873', 'NULL', 'Damien', 'A', 'Deng', '0', '1940-09-10', 'M', 'NULL', 'M', 'damien18@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '1273 Deetmeadow Way', 'NULL', '863-555-0114', '2013-07-23', '5-10 Miles'], ['16874', '311', 'AW00016874', 'NULL', 'Leslie', 'E', 'Munoz', '0', '1941-02-28', 'S', 'NULL', 'F', 'leslie8@adventure-works.com', '90000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7748 Rose Ann Ave', 'NULL', '828-555-0180', '2013-05-16', '5-10 Miles'], ['16875', '312', 'AW00016875', 'NULL', 'Samantha', 'A', 'Diaz', '0', '1946-02-23', 'M', 'NULL', 'F', 'samantha44@adventure-works.com', '90000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3956 Stonedale', 'NULL', '125-555-0113', '2013-06-24', '5-10 Miles'], ['16876', '51', 'AW00016876', 'NULL', 'Jackson', 'NULL', 'Sharma', '0', '1941-12-03', 'M', 'NULL', 'M', 'jackson3@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '4895 Browse St', 'NULL', '487-555-0171', '2013-04-24', '1-2 Miles'], ['16877', '607', 'AW00016877', 'NULL', 'Katelyn', 'W', 'Adams', '0', '1947-08-30', 'S', 'NULL', 'F', 'katelyn39@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5875 Providence Dr.', 'NULL', '139-555-0154', '2013-02-15', '1-2 Miles'], ['16878', '539', 'AW00016878', 'NULL', 'Devin', 'NULL', 'Young', '0', '1942-05-19', 'S', 'NULL', 'M', 'devin23@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8775 Boulevard', 'NULL', '595-555-0160', '2013-02-23', '5-10 Miles'], ['16879', '545', 'AW00016879', 'NULL', 'Morgan', 'D', 'Taylor', '0', '1941-08-27', 'S', 'NULL', 'F', 'morgan31@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5542 Orchard View Ave', 'NULL', '636-555-0114', '2013-02-26', '5-10 Miles'], ['16880', '307', 'AW00016880', 'NULL', 'Edgar', 'M', 'Patel', '0', '1953-05-18', 'M', 'NULL', 'M', 'edgar3@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1639 Atchinson Stage Ct.', 'NULL', '529-555-0113', '2013-10-24', '5-10 Miles'], ['16881', '310', 'AW00016881', 'NULL', 'Ruben', 'A', 'Alonso', '0', '1941-08-10', 'M', 'NULL', 'M', 'ruben31@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2419 Adobe St.', 'NULL', '415-555-0124', '2013-10-28', '5-10 Miles'], ['16882', '545', 'AW00016882', 'NULL', 'Robert', 'G', 'Young', '0', '1965-12-13', 'S', 'NULL', 'M', 'robert59@adventure-works.com', '100000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '5149 Thissen Court', 'NULL', '980-555-0174', '2013-10-25', '5-10 Miles'], ['16883', '334', 'AW00016883', 'NULL', 'Tyler', 'A', 'Davis', '0', '1966-06-27', 'S', 'NULL', 'M', 'tyler10@adventure-works.com', '120000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '3504 Tosco Way', 'NULL', '173-555-0136', '2014-01-05', '5-10 Miles'], ['16884', '648', 'AW00016884', 'NULL', 'Richard', 'J', 'Miller', '0', '1960-02-05', 'M', 'NULL', 'M', 'richard46@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '5477 Oak Leaf Ct', 'NULL', '717-555-0188', '2013-04-06', '5-10 Miles'], ['16885', '548', 'AW00016885', 'NULL', 'Garrett', 'D', 'Cook', '0', '1970-11-30', 'M', 'NULL', 'M', 'garrett26@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4815 Lenox Ct.', 'NULL', '294-555-0154', '2013-03-16', '1-2 Miles'], ['16886', '547', 'AW00016886', 'NULL', 'Aidan', 'NULL', 'Flores', '0', '1960-04-17', 'M', 'NULL', 'M', 'aidan13@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6868 Thornhill Place', 'NULL', '417-555-0130', '2013-02-04', '5-10 Miles'], ['16887', '335', 'AW00016887', 'NULL', 'Cody', 'L', 'Rivera', '0', '1960-02-08', 'M', 'NULL', 'M', 'cody8@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8001 Pinetree Court', 'NULL', '505-555-0153', '2013-02-20', '5-10 Miles'], ['16888', '316', 'AW00016888', 'NULL', 'Arianna', 'A', 'Hughes', '0', '1959-08-18', 'S', 'NULL', 'F', 'arianna9@adventure-works.com', '60000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3788 Linden Lane', 'NULL', '816-555-0194', '2013-02-08', '5-10 Miles'], ['16889', '374', 'AW00016889', 'NULL', 'Daniel', 'R', 'Rodriguez', '0', '1965-09-02', 'S', 'NULL', 'M', 'daniel21@adventure-works.com', '60000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1371 Vancouver Way', 'NULL', '458-555-0140', '2013-03-10', '5-10 Miles'], ['16890', '633', 'AW00016890', 'NULL', 'Timothy', 'NULL', 'Reed', '0', '1959-08-31', 'M', 'NULL', 'M', 'timothy22@adventure-works.com', '60000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8662 Bailey Rd.', 'NULL', '204-555-0112', '2013-03-14', '5-10 Miles'], ['16891', '343', 'AW00016891', 'NULL', 'Natalie', 'NULL', 'Gonzales', '0', '1960-05-08', 'M', 'NULL', 'F', 'natalie39@adventure-works.com', '70000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '6155 Wilbur Drive', 'NULL', '177-555-0155', '2013-11-27', '5-10 Miles'], ['16892', '298', 'AW00016892', 'NULL', 'Rebecca', 'NULL', 'Evans', '0', '1959-08-10', 'M', 'NULL', 'F', 'rebecca4@adventure-works.com', '70000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '6154 Cleveland Rd', 'NULL', '280-555-0162', '2013-10-25', '5-10 Miles'], ['16893', '644', 'AW00016893', 'NULL', 'Isaac', 'M', 'Howard', '0', '1958-12-31', 'S', 'NULL', 'M', 'isaac11@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9369 Mt. Tamalpais Pl.', 'NULL', '446-555-0112', '2013-10-17', '5-10 Miles'], ['16894', '548', 'AW00016894', 'NULL', 'Abigail', 'NULL', 'Walker', '0', '1975-02-05', 'S', 'NULL', 'F', 'abigail63@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8193 Pine Creek Way', 'NULL', '918-555-0180', '2013-03-07', '5-10 Miles'], ['16895', '335', 'AW00016895', 'NULL', 'Chloe', 'NULL', 'Gonzales', '0', '1957-12-13', 'M', 'NULL', 'F', 'chloe82@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '5351 N. Civic Dr.', 'NULL', '853-555-0130', '2013-03-19', '1-2 Miles'], ['16896', '316', 'AW00016896', 'NULL', 'Natalie', 'NULL', 'Perez', '0', '1958-04-20', 'M', 'NULL', 'F', 'natalie55@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '867 Maria Vega Court', 'NULL', '186-555-0118', '2013-03-16', '5-10 Miles'], ['16897', '338', 'AW00016897', 'NULL', 'Lauren', 'A', 'Torres', '0', '1963-08-19', 'S', 'NULL', 'F', 'lauren14@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3421 Bouncing Road', 'NULL', '572-555-0185', '2013-03-01', '5-10 Miles'], ['16898', '383', 'AW00016898', 'NULL', 'Angel', 'W', 'Reed', '0', '1963-05-07', 'M', 'NULL', 'M', 'angel19@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '7207 Sycamore Dr.', 'NULL', '820-555-0121', '2013-03-26', '5-10 Miles'], ['16899', '612', 'AW00016899', 'NULL', 'Whitney', 'C', 'Sanchez', '0', '1943-03-31', 'M', 'NULL', 'F', 'whitney19@adventure-works.com', '110000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '4', '5543 Royal Arch Court', 'NULL', '361-555-0177', '2013-06-16', '2-5 Miles'], ['16900', '359', 'AW00016900', 'NULL', 'Miguel', 'R', 'Jones', '0', '1943-05-21', 'M', 'NULL', 'M', 'miguel2@adventure-works.com', '120000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '8352 Turning View Cricle Drive', 'NULL', '947-555-0134', '2013-08-17', '5-10 Miles'], ['16901', '311', 'AW00016901', 'NULL', 'Ricky', 'NULL', 'Munoz', '0', '1943-04-23', 'M', 'NULL', 'M', 'ricky7@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '2594 Breaker Dr', 'NULL', '291-555-0126', '2013-09-25', '2-5 Miles'], ['16902', '43', 'AW00016902', 'NULL', 'Shawn', 'J', 'She', '0', '1944-04-05', 'S', 'NULL', 'M', 'shawn2@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '330 Camino Verde', 'NULL', '118-555-0190', '2013-05-23', '5-10 Miles'], ['16903', '368', 'AW00016903', 'NULL', 'Ian', 'P', 'Wright', '0', '1944-01-30', 'S', 'NULL', 'M', 'ian26@adventure-works.com', '110000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '4113 Pershing Dr', 'NULL', '502-555-0164', '2013-11-12', '5-10 Miles'], ['16904', '326', 'AW00016904', 'NULL', 'Arianna', 'G', 'Bailey', '0', '1944-01-08', 'M', 'NULL', 'F', 'arianna38@adventure-works.com', '110000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '1671 F St.', 'NULL', '169-555-0177', '2013-10-10', '5-10 Miles'], ['16905', '329', 'AW00016905', 'NULL', 'Janet', 'R', 'Stewart', '0', '1943-10-08', 'M', 'NULL', 'F', 'janet31@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '1551 Happy Valley Road', 'NULL', '673-555-0165', '2013-08-03', '2-5 Miles'], ['16906', '59', 'AW00016906', 'NULL', 'Brittany', 'NULL', 'Flores', '0', '1944-02-09', 'M', 'NULL', 'F', 'brittany11@adventure-works.com', '170000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '6310 Jamie Way', 'NULL', '367-555-0114', '2013-08-10', '2-5 Miles'], ['16907', '343', 'AW00016907', 'NULL', 'Sarah', 'J', 'Hall', '0', '1944-09-17', 'S', 'NULL', 'F', 'sarah1@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8836 First Ave.', 'NULL', '195-555-0135', '2013-10-25', '5-10 Miles'], ['16908', '612', 'AW00016908', 'NULL', 'Kristi', 'C', 'Patel', '0', '1944-11-29', 'S', 'NULL', 'F', 'kristi19@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '507 Sahara Drive', 'NULL', '308-555-0116', '2013-10-06', '5-10 Miles'], ['16909', '337', 'AW00016909', 'NULL', 'Chloe', 'M', 'Walker', '0', '1945-05-09', 'M', 'NULL', 'F', 'chloe32@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2547 San Ramon Road', 'NULL', '607-555-0151', '2013-10-27', '5-10 Miles'], ['16910', '49', 'AW00016910', 'NULL', 'Ryan', 'J', 'Diaz', '0', '1944-12-11', 'M', 'NULL', 'M', 'ryan25@adventure-works.com', '120000.00', '2', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '6058 Foothill Way', 'NULL', '332-555-0195', '2013-02-13', '5-10 Miles'], ['16911', '616', 'AW00016911', 'NULL', 'Caleb', 'NULL', 'Patterson', '0', '1945-10-17', 'M', 'NULL', 'M', 'caleb7@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '482 ViewPoint Court', 'NULL', '757-555-0160', '2013-09-11', '5-10 Miles'], ['16912', '631', 'AW00016912', 'NULL', 'Dalton', 'A', 'Patterson', '0', '1945-09-04', 'M', 'NULL', 'M', 'dalton56@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '6670 Brook St.', 'NULL', '164-555-0118', '2013-11-26', '1-2 Miles'], ['16913', '548', 'AW00016913', 'NULL', 'Marcus', 'NULL', 'Flores', '0', '1946-05-12', 'S', 'NULL', 'M', 'marcus62@adventure-works.com', '100000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '1453 Asilomar Dr.', 'NULL', '807-555-0178', '2013-08-23', '5-10 Miles'], ['16914', '633', 'AW00016914', 'NULL', 'Alexandra', 'K', 'Campbell', '0', '1974-04-23', 'M', 'NULL', 'F', 'alexandra49@adventure-works.com', '100000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '6939 Hilltop Dr.', 'NULL', '353-555-0139', '2013-11-28', '0-1 Miles'], ['16915', '644', 'AW00016915', 'NULL', 'Mason', 'NULL', 'Phillips', '0', '1979-09-03', 'M', 'NULL', 'M', 'mason26@adventure-works.com', '100000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '5279 Glenwood Dr.', 'NULL', '124-555-0175', '2013-11-28', '0-1 Miles'], ['16916', '557', 'AW00016916', 'NULL', 'Cheryl', 'M', 'Dominguez', '0', '1973-12-21', 'S', 'NULL', 'F', 'cheryl15@adventure-works.com', '110000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '5313 Haynes Court', 'NULL', '271-555-0119', '2013-11-13', '1-2 Miles'], ['16917', '300', 'AW00016917', 'NULL', 'Brett', 'B', 'Subram', '0', '1973-08-02', 'M', 'NULL', 'M', 'brett12@adventure-works.com', '120000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '8237 Gibrix Dr.', 'NULL', '172-555-0150', '2013-12-09', '0-1 Miles'], ['16918', '642', 'AW00016918', 'NULL', 'Alexandria', 'L', 'Cox', '0', '1985-02-07', 'S', 'NULL', 'F', 'alexandria32@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8534 Willow Pass Road', 'NULL', '836-555-0131', '2014-01-16', '5-10 Miles'], ['16919', '14', 'AW00016919', 'NULL', 'Kaitlin', 'NULL', 'Sullivan', '0', '1950-04-17', 'M', 'NULL', 'F', 'kaitlin13@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5345 Willow Avenue', 'NULL', '1 (11) 500 555-0161', '2013-04-18', '1-2 Miles'], ['16920', '374', 'AW00016920', 'NULL', 'Eduardo', 'NULL', 'Stewart', '0', '1984-07-16', 'M', 'NULL', 'M', 'eduardo89@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7036 Las Quebrados Ln.', 'NULL', '276-555-0114', '2013-03-24', '1-2 Miles'], ['16921', '41', 'AW00016921', 'NULL', 'Edwin', 'NULL', 'Jai', '0', '1984-05-13', 'M', 'NULL', 'M', 'edwin34@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3962 Clyde Street', 'NULL', '198-555-0136', '2013-05-13', '5-10 Miles'], ['16922', '609', 'AW00016922', 'NULL', 'Emma', 'F', 'Jackson', '0', '1983-08-02', 'S', 'NULL', 'F', 'emma11@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8581 Paris Lane', 'NULL', '191-555-0172', '2014-01-22', '5-10 Miles'], ['16923', '623', 'AW00016923', 'NULL', 'Connor', 'M', 'Gonzales', '0', '1984-05-08', 'S', 'NULL', 'M', 'connor11@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4672 Euclid Ave', 'NULL', '187-555-0111', '2013-12-06', '5-10 Miles'], ['16924', '311', 'AW00016924', 'NULL', 'Julia', 'A', 'Price', '0', '1984-05-04', 'S', 'NULL', 'F', 'julia66@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5888 Salem St.', 'NULL', '649-555-0115', '2013-04-21', '1-2 Miles'], ['16925', '314', 'AW00016925', 'NULL', 'Spencer', 'W', 'Patterson', '0', '1984-01-18', 'S', 'NULL', 'M', 'spencer12@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1069 Ahwanee Lane', 'NULL', '394-555-0170', '2013-04-09', '1-2 Miles'], ['16926', '24', 'AW00016926', 'NULL', 'Rodney', 'NULL', 'Sanz', '0', '1950-08-26', 'M', 'NULL', 'M', 'rodney14@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '302 Via Cordona Ln.', 'NULL', '1 (11) 500 555-0191', '2013-05-13', '5-10 Miles'], ['16927', '17', 'AW00016927', 'NULL', 'Rebekah', 'A', 'Gonzalez', '0', '1950-10-19', 'M', 'NULL', 'F', 'rebekah18@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8290 Margaret Ct.', 'NULL', '1 (11) 500 555-0156', '2013-02-17', '5-10 Miles'], ['16928', '4', 'AW00016928', 'NULL', 'Bryan', 'M', 'Stewart', '0', '1963-04-16', 'S', 'NULL', 'M', 'bryan22@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7793 Kaski Ln.', 'NULL', '1 (11) 500 555-0117', '2011-02-17', '5-10 Miles'], ['16929', '31', 'AW00016929', 'NULL', 'Savannah', 'E', 'Scott', '0', '1951-12-10', 'M', 'NULL', 'F', 'savannah36@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7061 Eaker Way', 'NULL', '1 (11) 500 555-0128', '2011-02-14', '5-10 Miles'], ['16930', '10', 'AW00016930', 'NULL', 'Kristen', 'NULL', 'Zhao', '0', '1953-01-05', 'S', 'NULL', 'F', 'kristen9@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7232 Mulberry', 'NULL', '1 (11) 500 555-0147', '2013-04-02', '5-10 Miles'], ['16931', '20', 'AW00016931', 'NULL', 'Dalton', 'J', 'Lee', '0', '1953-03-13', 'S', 'NULL', 'M', 'dalton21@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5957 Hill Drive', 'NULL', '1 (11) 500 555-0145', '2011-02-18', '5-10 Miles'], ['16932', '231', 'AW00016932', 'NULL', 'Adam', 'M', 'King', '0', '1968-01-07', 'M', 'NULL', 'M', 'adam49@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '5274 Harvey Way', 'NULL', '1 (11) 500 555-0160', '2013-06-29', '0-1 Miles'], ['16933', '231', 'AW00016933', 'NULL', 'Donald', 'B', 'Arun', '0', '1973-07-18', 'S', 'NULL', 'M', 'donald8@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '2461 Stephine Way', 'NULL', '1 (11) 500 555-0140', '2013-09-20', '0-1 Miles'], ['16934', '247', 'AW00016934', 'NULL', 'Michele', 'NULL', 'Vazquez', '0', '1973-06-06', 'S', 'NULL', 'F', 'michele48@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '4207 Madrid Lane', 'NULL', '1 (11) 500 555-0113', '2013-09-25', '0-1 Miles'], ['16935', '258', 'AW00016935', 'NULL', 'Bruce', 'R', 'Perez', '0', '1967-08-29', 'S', 'NULL', 'M', 'bruce21@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4203 Wildcat Circle', 'NULL', '1 (11) 500 555-0175', '2013-07-09', '0-1 Miles'], ['16936', '217', 'AW00016936', 'Ms.', 'Alice', 'J.', 'Serventi', '0', '1942-01-31', 'M', 'NULL', 'F', 'alice3@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '103, avenue des Champs-Elysées', 'NULL', '116-555-0100', '2013-02-18', '0-1 Miles'], ['16937', '185', 'AW00016937', 'NULL', 'Craig', 'NULL', 'Rubio', '0', '1973-08-24', 'M', 'NULL', 'M', 'craig20@adventure-works.com', '30000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '66, avenue de Malakoff', 'NULL', '1 (11) 500 555-0137', '2012-12-16', '0-1 Miles'], ['16938', '261', 'AW00016938', 'NULL', 'Abigail', 'M', 'Williams', '0', '1963-11-08', 'S', 'NULL', 'F', 'abigail49@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '6520 Hazelnut Lane', 'NULL', '1 (11) 500 555-0175', '2012-05-11', '0-1 Miles'], ['16939', '117', 'AW00016939', 'NULL', 'Bailey', 'NULL', 'Evans', '0', '1968-12-06', 'M', 'NULL', 'F', 'bailey21@adventure-works.com', '10000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Hauptstr 6039', 'NULL', '1 (11) 500 555-0153', '2013-08-22', '0-1 Miles'], ['16940', '160', 'AW00016940', 'NULL', 'Jenny', 'J', 'Zeng', '0', '1968-10-28', 'S', 'NULL', 'F', 'jenny24@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Welt Platz 7', 'NULL', '1 (11) 500 555-0134', '2012-08-12', '0-1 Miles'], ['16941', '178', 'AW00016941', 'NULL', 'Amy', 'NULL', 'Yang', '0', '1973-03-15', 'M', 'NULL', 'F', 'amy12@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Hauptstr 6142', 'NULL', '1 (11) 500 555-0128', '2013-12-07', '0-1 Miles'], ['16942', '220', 'AW00016942', 'NULL', 'Kaitlyn', 'L', 'Bennett', '0', '1959-10-02', 'M', 'NULL', 'F', 'kaitlyn69@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '4, allée des Princes', 'NULL', '1 (11) 500 555-0153', '2012-01-01', '0-1 Miles'], ['16943', '127', 'AW00016943', 'NULL', 'Veronica', 'R', 'Garcia', '0', '1949-08-24', 'M', 'NULL', 'F', 'veronica16@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Wertheimer Straße 895', 'NULL', '1 (11) 500 555-0155', '2013-07-02', '0-1 Miles'], ['16944', '160', 'AW00016944', 'NULL', 'Alejandro', 'E', 'Raji', '0', '1943-11-04', 'S', 'NULL', 'M', 'alejandro46@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Wertheimer Straße 277', 'NULL', '1 (11) 500 555-0182', '2012-08-01', '0-1 Miles'], ['16945', '238', 'AW00016945', 'NULL', 'Brianna', 'C', 'Kelly', '0', '1943-11-11', 'S', 'NULL', 'F', 'brianna46@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8075 Shangri-la Rd.', 'NULL', '1 (11) 500 555-0189', '2012-05-27', '0-1 Miles'], ['16946', '278', 'AW00016946', 'NULL', 'Teresa', 'L', 'Diaz', '0', '1944-01-23', 'M', 'NULL', 'F', 'teresa4@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5975 Grove Way', 'NULL', '1 (11) 500 555-0129', '2012-06-01', '0-1 Miles'], ['16947', '368', 'AW00016947', 'NULL', 'Savannah', 'K', 'Stewart', '0', '1981-03-31', 'M', 'NULL', 'F', 'savannah24@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7357 Scramble Road', 'NULL', '924-555-0117', '2013-04-16', '2-5 Miles'], ['16948', '63', 'AW00016948', 'NULL', 'Emma', 'NULL', 'Lee', '0', '1981-09-11', 'M', 'NULL', 'F', 'emma21@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1105 O St.', 'NULL', '329-555-0193', '2013-04-04', '0-1 Miles'], ['16949', '335', 'AW00016949', 'NULL', 'Luis', 'NULL', 'Flores', '0', '1981-04-12', 'M', 'NULL', 'M', 'luis11@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7781 Santa Barbara Rd', 'NULL', '821-555-0180', '2013-04-20', '2-5 Miles'], ['16950', '53', 'AW00016950', 'NULL', 'Connor', 'NULL', 'Edwards', '0', '1976-05-14', 'M', 'NULL', 'M', 'connor30@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8526 Krueger Drive', 'NULL', '119-555-0182', '2013-04-30', '0-1 Miles'], ['16951', '616', 'AW00016951', 'NULL', 'Cassidy', 'A', 'Bennett', '0', '1976-03-31', 'M', 'NULL', 'F', 'cassidy1@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7689 Gumwood', 'NULL', '233-555-0188', '2013-04-03', '2-5 Miles'], ['16952', '55', 'AW00016952', 'NULL', 'Thomas', 'A', 'Martin', '0', '1981-10-18', 'M', 'NULL', 'M', 'thomas76@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8348 Holiday Hill Dr.', 'NULL', '211-555-0119', '2013-05-29', '2-5 Miles'], ['16953', '316', 'AW00016953', 'NULL', 'Paige', 'NULL', 'Ward', '0', '1976-04-02', 'M', 'NULL', 'F', 'paige36@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6673 Eola', 'NULL', '225-555-0121', '2013-02-02', '2-5 Miles'], ['16954', '609', 'AW00016954', 'NULL', 'Fernando', 'NULL', 'Davis', '0', '1975-11-24', 'S', 'NULL', 'M', 'fernando5@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7986 Terra Calitina', 'NULL', '651-555-0165', '2014-01-12', '2-5 Miles'], ['16955', '53', 'AW00016955', 'NULL', 'Nathaniel', 'NULL', 'Bradley', '0', '1975-02-15', 'M', 'NULL', 'M', 'nathaniel15@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3679 Diablo View Road', 'NULL', '145-555-0167', '2013-06-28', '2-5 Miles'], ['16956', '648', 'AW00016956', 'NULL', 'Austin', 'J', 'Flores', '0', '1980-01-06', 'M', 'NULL', 'M', 'austin8@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6940 Hilltop Dr', 'NULL', '690-555-0141', '2013-04-11', '2-5 Miles'], ['16957', '642', 'AW00016957', 'NULL', 'Seth', 'E', 'Wilson', '0', '1975-05-20', 'M', 'NULL', 'M', 'seth7@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9563 Lani Kai Drive', 'NULL', '619-555-0115', '2013-12-21', '0-1 Miles'], ['16958', '49', 'AW00016958', 'NULL', 'Pedro', 'E', 'Torres', '0', '1982-10-29', 'M', 'NULL', 'M', 'pedro32@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1409 Coachman Pl.', 'NULL', '580-555-0194', '2013-02-11', '2-5 Miles'], ['16959', '62', 'AW00016959', 'NULL', 'Carson', 'L', 'Foster', '0', '1976-08-07', 'M', 'NULL', 'M', 'carson15@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1713 Alvarado', 'NULL', '527-555-0115', '2013-03-07', '2-5 Miles'], ['16960', '543', 'AW00016960', 'NULL', 'Paige', 'NULL', 'Gray', '0', '1977-03-06', 'M', 'NULL', 'F', 'paige29@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3929 Fern Street', 'NULL', '630-555-0145', '2013-10-01', '2-5 Miles'], ['16961', '310', 'AW00016961', 'NULL', 'Faith', 'NULL', 'Perry', '0', '1982-06-12', 'M', 'NULL', 'F', 'faith7@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2290 Mt. Hood Circle', 'NULL', '224-555-0119', '2013-10-30', '0-1 Miles'], ['16962', '322', 'AW00016962', 'NULL', 'Zachary', 'NULL', 'Coleman', '0', '1975-02-22', 'M', 'NULL', 'M', 'zachary4@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4263 San Ysidro Court', 'NULL', '579-555-0134', '2014-01-19', '0-1 Miles'], ['16963', '339', 'AW00016963', 'NULL', 'Faith', 'S', 'Hughes', '0', '1980-01-24', 'M', 'NULL', 'F', 'faith10@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8017 Roanoke Drive', 'NULL', '279-555-0196', '2013-04-02', '0-1 Miles'], ['16964', '51', 'AW00016964', 'NULL', 'Gavin', 'NULL', 'Wood', '0', '1974-11-17', 'M', 'NULL', 'M', 'gavin2@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5696 Morgan Territory Rd.', 'NULL', '696-555-0114', '2013-02-01', '0-1 Miles'], ['16965', '307', 'AW00016965', 'NULL', 'Kristi', 'D', 'Romero', '0', '1973-08-30', 'S', 'NULL', 'F', 'kristi4@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4485 Mt. Orange Place', 'NULL', '375-555-0175', '2013-03-18', '0-1 Miles'], ['16966', '336', 'AW00016966', 'NULL', 'Amanda', 'S', 'Diaz', '0', '1972-12-08', 'M', 'NULL', 'F', 'amanda43@adventure-works.com', '40000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '8083 Ridgewood Drive', 'NULL', '931-555-0154', '2013-12-17', '10+ Miles'], ['16967', '546', 'AW00016967', 'NULL', 'Noah', 'NULL', 'Hernandez', '0', '1975-08-15', 'S', 'NULL', 'M', 'noah45@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3648 Hedaro Court', 'NULL', '180-555-0137', '2013-11-10', '2-5 Miles'], ['16968', '359', 'AW00016968', 'NULL', 'Ian', 'NULL', 'Griffin', '0', '1975-08-15', 'S', 'NULL', 'M', 'ian61@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6522 Panoramic Dr.', 'NULL', '849-555-0119', '2013-11-18', '0-1 Miles'], ['16969', '369', 'AW00016969', 'NULL', 'Jackson', 'NULL', 'Turner', '0', '1976-03-01', 'M', 'NULL', 'M', 'jackson35@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4246 Falls Ct.', 'NULL', '618-555-0131', '2013-11-17', '0-1 Miles'], ['16970', '634', 'AW00016970', 'NULL', 'Katherine', 'NULL', 'Foster', '0', '1978-08-12', 'S', 'NULL', 'F', 'katherine42@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7479 Ellis Street', 'NULL', '554-555-0116', '2013-04-12', '2-5 Miles'], ['16971', '618', 'AW00016971', 'NULL', 'Alexia', 'L', 'Bryant', '0', '1973-03-16', 'S', 'NULL', 'F', 'alexia14@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1947 El Mundo Dr', 'NULL', '863-555-0120', '2013-06-25', '0-1 Miles'], ['16972', '542', 'AW00016972', 'NULL', 'Lucas', 'NULL', 'Hernandez', '0', '1983-10-04', 'S', 'NULL', 'M', 'lucas41@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5958 Cross Road', 'NULL', '205-555-0120', '2013-04-12', '2-5 Miles'], ['16973', '298', 'AW00016973', 'NULL', 'Katherine', 'NULL', 'Collins', '0', '1972-09-23', 'S', 'NULL', 'F', 'katherine51@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8422 Castle Rock', 'NULL', '610-555-0182', '2013-04-16', '2-5 Miles'], ['16974', '612', 'AW00016974', 'NULL', 'Paige', 'NULL', 'Rivera', '0', '1978-06-24', 'S', 'NULL', 'F', 'paige41@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5267 Counting Drive', 'NULL', '411-555-0124', '2013-04-09', '2-5 Miles'], ['16975', '548', 'AW00016975', 'NULL', 'Benjamin', 'NULL', 'Lee', '0', '1971-12-08', 'M', 'NULL', 'M', 'benjamin37@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3656 N. Michell Canyon Rd.', 'NULL', '463-555-0118', '2013-09-06', '2-5 Miles'], ['16976', '299', 'AW00016976', 'NULL', 'Sandra', 'A', 'Xu', '0', '1971-09-07', 'S', 'NULL', 'F', 'sandra19@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '8039 Westcliffe Pl.', 'NULL', '851-555-0174', '2013-03-31', '0-1 Miles'], ['16977', '316', 'AW00016977', 'NULL', 'Noah', 'B', 'Adams', '0', '1972-04-04', 'S', 'NULL', 'M', 'noah41@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6738 Wallace Dr.', 'NULL', '780-555-0167', '2013-05-08', '2-5 Miles'], ['16978', '642', 'AW00016978', 'NULL', 'Jeremy', 'NULL', 'Rivera', '0', '1971-10-02', 'M', 'NULL', 'M', 'jeremy37@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7176 A St.', 'NULL', '990-555-0185', '2013-03-12', '0-1 Miles'], ['16979', '336', 'AW00016979', 'NULL', 'Kaitlyn', 'J', 'Rogers', '0', '1972-01-31', 'S', 'NULL', 'F', 'kaitlyn49@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7826 W. Hookston Road', 'NULL', '597-555-0139', '2013-11-13', '2-5 Miles'], ['16980', '642', 'AW00016980', 'NULL', 'Jill', 'NULL', 'Moore', '0', '1971-10-06', 'M', 'NULL', 'F', 'jill5@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4379 Lakeside Court', 'NULL', '126-555-0139', '2013-04-11', '2-5 Miles'], ['16981', '542', 'AW00016981', 'NULL', 'Hunter', 'NULL', 'Simmons', '0', '1975-01-13', 'M', 'NULL', 'M', 'hunter12@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3397 C Olivera Rd', 'NULL', '898-555-0192', '2013-11-17', '0-1 Miles'], ['16982', '300', 'AW00016982', 'NULL', 'Jillian', 'NULL', 'Lopez', '0', '1980-03-03', 'M', 'NULL', 'F', 'jillian17@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '1706 Vallejo', 'NULL', '887-555-0150', '2013-01-28', '0-1 Miles'], ['16983', '385', 'AW00016983', 'NULL', 'Gabriel', 'L', 'Collins', '0', '1974-09-02', 'M', 'NULL', 'M', 'gabriel32@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1040 Northridge Road', 'NULL', '562-555-0115', '2013-11-23', '0-1 Miles'], ['16984', '311', 'AW00016984', 'NULL', 'Rodney', 'I', 'Moreno', '0', '1976-01-01', 'S', 'NULL', 'M', 'rodney2@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7585 St. George Dr', 'NULL', '265-555-0159', '2013-05-15', '2-5 Miles'], ['16985', '546', 'AW00016985', 'NULL', 'Adam', 'NULL', 'Li', '0', '1976-09-30', 'S', 'NULL', 'M', 'adam23@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2022 Highridge Court', 'NULL', '497-555-0140', '2013-08-25', '2-5 Miles'], ['16986', '545', 'AW00016986', 'NULL', 'Sara', 'A', 'Adams', '0', '1970-08-04', 'S', 'NULL', 'F', 'sara42@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7503 Hill Drive', 'NULL', '516-555-0113', '2013-07-03', '2-5 Miles'], ['16987', '60', 'AW00016987', 'NULL', 'Miguel', 'D', 'Clark', '0', '1970-10-07', 'S', 'NULL', 'M', 'miguel19@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3244 E Eagle Peak Rd.', 'NULL', '188-555-0182', '2013-08-13', '2-5 Miles'], ['16988', '348', 'AW00016988', 'NULL', 'Brian', 'R', 'Bailey', '0', '1976-04-15', 'S', 'NULL', 'M', 'brian27@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9013 Ramsay Circle', 'NULL', '621-555-0190', '2013-12-01', '0-1 Miles'], ['16989', '616', 'AW00016989', 'NULL', 'Emma', 'NULL', 'Richardson', '0', '1976-09-16', 'S', 'NULL', 'F', 'emma36@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3499 Parkway Drive', 'NULL', '849-555-0148', '2013-11-26', '2-5 Miles'], ['16990', '359', 'AW00016990', 'NULL', 'Zachary', 'NULL', 'Griffin', '0', '1971-01-18', 'M', 'NULL', 'M', 'zachary19@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7173 Oak Creek Ct', 'NULL', '914-555-0183', '2013-06-27', '0-1 Miles'], ['16991', '614', 'AW00016991', 'NULL', 'Brianna', 'C', 'Henderson', '0', '1970-03-21', 'S', 'NULL', 'F', 'brianna51@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1961 Marfargoa Drive', 'NULL', '808-555-0149', '2013-03-21', '2-5 Miles'], ['16992', '307', 'AW00016992', 'NULL', 'Lucas', 'NULL', 'Watson', '0', '1981-03-12', 'S', 'NULL', 'M', 'lucas71@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '595 Clayton Rd.', 'NULL', '947-555-0187', '2013-03-31', '2-5 Miles'], ['16993', '536', 'AW00016993', 'NULL', 'Russell', 'A', 'Rai', '0', '1975-08-15', 'M', 'NULL', 'M', 'russell20@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '1442 Hill Top Rd', 'NULL', '146-555-0117', '2013-06-25', '5-10 Miles'], ['16994', '311', 'AW00016994', 'NULL', 'Deanna', 'E', 'Torres', '0', '1969-12-14', 'S', 'NULL', 'F', 'deanna38@adventure-works.com', '60000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2383 Pepper Drive', 'NULL', '199-555-0158', '2013-08-31', '2-5 Miles'], ['16995', '63', 'AW00016995', 'NULL', 'Taylor', 'J', 'Hall', '0', '1970-01-18', 'S', 'NULL', 'F', 'taylor70@adventure-works.com', '60000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '4769 Detroit Avenue', 'NULL', '765-555-0160', '2013-06-11', '5-10 Miles'], ['16996', '62', 'AW00016996', 'NULL', 'Destiny', 'M', 'Walker', '0', '1970-01-11', 'S', 'NULL', 'F', 'destiny21@adventure-works.com', '60000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '5878 East L Street', 'NULL', '923-555-0167', '2013-06-15', '2-5 Miles'], ['16997', '369', 'AW00016997', 'NULL', 'Natalie', 'NULL', 'Allen', '0', '1969-10-22', 'S', 'NULL', 'F', 'natalie66@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6647 McDandy St.', 'NULL', '318-555-0118', '2013-05-19', '0-1 Miles'], ['16998', '611', 'AW00016998', 'NULL', 'Jennifer', 'D', 'Lopez', '0', '1975-07-08', 'S', 'NULL', 'F', 'jennifer24@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3355 Carpetta Circle', 'NULL', '774-555-0126', '2013-05-18', '0-1 Miles'], ['16999', '383', 'AW00016999', 'NULL', 'Chloe', 'M', 'Kelly', '0', '1975-04-15', 'S', 'NULL', 'F', 'chloe64@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6206 Heavenly Drive', 'NULL', '135-555-0183', '2013-05-12', '0-1 Miles'], ['17000', '307', 'AW00017000', 'NULL', 'Miranda', 'M', 'Henderson', '0', '1968-12-30', 'S', 'NULL', 'F', 'miranda5@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '39 Mt. Etna Drive', 'NULL', '796-555-0155', '2013-11-12', '2-5 Miles'], ['17001', '638', 'AW00017001', 'NULL', 'Ashley', 'F', 'Moore', '0', '1969-03-01', 'S', 'NULL', 'F', 'ashley8@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7675 Marcia Drive', 'NULL', '947-555-0143', '2013-11-07', '0-1 Miles'], ['17002', '546', 'AW00017002', 'NULL', 'Dylan', 'NULL', 'Martin', '0', '1974-12-11', 'S', 'NULL', 'M', 'dylan44@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '9444 Warmcastle Ct.', 'NULL', '489-555-0118', '2013-11-18', '2-5 Miles'], ['17003', '299', 'AW00017003', 'NULL', 'Joanna', 'M', 'Dominguez', '0', '1969-04-26', 'S', 'NULL', 'F', 'joanna11@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '757 Ptarmigan Drive', 'NULL', '625-555-0168', '2013-10-29', '0-1 Miles'], ['17004', '300', 'AW00017004', 'NULL', 'Krista', 'L', 'Torres', '0', '1979-11-01', 'S', 'NULL', 'F', 'krista12@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '2603 Brenda Circle', 'NULL', '494-555-0118', '2013-11-01', '2-5 Miles'], ['17005', '307', 'AW00017005', 'NULL', 'Priscilla', 'R', 'Anand', '0', '1968-07-18', 'S', 'NULL', 'F', 'priscilla21@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '8623 Merry Circle', 'NULL', '861-555-0153', '2013-11-21', '0-1 Miles'], ['17006', '553', 'AW00017006', 'NULL', 'Hunter', 'J', 'Williams', '0', '1968-08-06', 'M', 'NULL', 'M', 'hunter61@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '4908 Chickpea Ct.', 'NULL', '457-555-0119', '2013-11-22', '0-1 Miles'], ['17007', '314', 'AW00017007', 'NULL', 'Samuel', 'NULL', 'Hayes', '0', '1973-12-19', 'S', 'NULL', 'M', 'samuel22@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '2446 Farm Bureau Rd', 'NULL', '673-555-0152', '2013-11-11', '2-5 Miles'], ['17008', '343', 'AW00017008', 'NULL', 'Connor', 'NULL', 'Turner', '0', '1973-10-26', 'S', 'NULL', 'M', 'connor34@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '401 Jomar', 'NULL', '691-555-0182', '2013-11-15', '2-5 Miles'], ['17009', '343', 'AW00017009', 'NULL', 'Wyatt', 'NULL', 'Butler', '0', '1974-04-25', 'S', 'NULL', 'M', 'wyatt64@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2066 Napa Court', 'NULL', '361-555-0116', '2013-11-08', '2-5 Miles'], ['17010', '361', 'AW00017010', 'NULL', 'Brianna', 'NULL', 'James', '0', '1973-10-25', 'S', 'NULL', 'F', 'brianna43@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1880 Birchwood', 'NULL', '564-555-0115', '2013-11-15', '2-5 Miles'], ['17011', '372', 'AW00017011', 'NULL', 'Sara', 'K', 'Hill', '0', '1979-04-17', 'M', 'NULL', 'F', 'sara39@adventure-works.com', '60000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8805 Wiget Lane', 'NULL', '398-555-0151', '2013-05-08', '2-5 Miles'], ['17012', '334', 'AW00017012', 'NULL', 'Joan', 'NULL', 'Collins', '0', '1969-04-17', 'M', 'NULL', 'F', 'joan12@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9841 Marsh Meadow Way', 'NULL', '633-555-0185', '2013-05-25', '2-5 Miles'], ['17013', '548', 'AW00017013', 'NULL', 'Gabriella', 'L', 'Mitchell', '0', '1967-09-06', 'S', 'NULL', 'F', 'gabriella34@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7459 Rolando Avenue', 'NULL', '150-555-0182', '2013-11-18', '0-1 Miles'], ['17014', '368', 'AW00017014', 'NULL', 'Michael', 'NULL', 'Harris', '0', '1973-10-23', 'S', 'NULL', 'M', 'michael45@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '475 Santa Maria', 'NULL', '833-555-0154', '2013-02-11', '2-5 Miles'], ['17015', '642', 'AW00017015', 'NULL', 'Kelly', 'NULL', 'Patterson', '0', '1967-11-02', 'S', 'NULL', 'F', 'kelly15@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '238 Montego', 'NULL', '445-555-0121', '2013-05-03', '2-5 Miles'], ['17016', '360', 'AW00017016', 'NULL', 'Hailey', 'R', 'Hughes', '0', '1968-02-21', 'S', 'NULL', 'F', 'hailey31@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1159 LaCrosse Ave', 'NULL', '843-555-0191', '2013-02-16', '2-5 Miles'], ['17017', '633', 'AW00017017', 'NULL', 'Jeremiah', 'NULL', 'Jones', '0', '1967-11-01', 'M', 'NULL', 'M', 'jeremiah26@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6938 Hilltop Dr', 'NULL', '789-555-0110', '2013-11-28', '0-1 Miles'], ['17018', '575', 'AW00017018', 'NULL', 'Mandy', 'NULL', 'Guo', '0', '1972-06-10', 'M', 'NULL', 'F', 'mandy19@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '3987 Spring Water St.', 'NULL', '780-555-0110', '2013-05-09', '2-5 Miles'], ['17019', '536', 'AW00017019', 'NULL', 'Andrea', 'C', 'Hall', '0', '1977-11-20', 'M', 'NULL', 'F', 'andrea44@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '4', '3270 Temple Drive', 'NULL', '570-555-0155', '2013-11-30', '2-5 Miles'], ['17020', '614', 'AW00017020', 'NULL', 'Ashley', 'J', 'Bryant', '0', '1967-02-18', 'M', 'NULL', 'F', 'ashley45@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4642 Canyon Creek Drive', 'NULL', '640-555-0110', '2013-05-02', '2-5 Miles'], ['17021', '331', 'AW00017021', 'NULL', 'Nicole', 'NULL', 'Reed', '0', '1967-01-03', 'M', 'NULL', 'F', 'nicole29@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4904 Hillview Drive', 'NULL', '110-555-0150', '2013-05-21', '2-5 Miles'], ['17022', '361', 'AW00017022', 'NULL', 'Karen', 'NULL', 'Morgan', '0', '1972-04-07', 'M', 'NULL', 'F', 'karen34@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7185 Westcliffe Place', 'NULL', '134-555-0150', '2013-05-29', '2-5 Miles'], ['17023', '69', 'AW00017023', 'NULL', 'Jeremiah', 'B', 'Harris', '0', '1971-07-13', 'M', 'NULL', 'M', 'jeremiah5@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7400 Robinson Street', 'NULL', '711-555-0113', '2013-06-12', '0-1 Miles'], ['17024', '335', 'AW00017024', 'NULL', 'Jacqueline', 'C', 'Diaz', '0', '1966-05-11', 'M', 'NULL', 'F', 'jacqueline22@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9121 Pinnacle Drive', 'NULL', '185-555-0142', '2013-05-09', '0-1 Miles'], ['17025', '50', 'AW00017025', 'NULL', 'Ryan', 'NULL', 'Taylor', '0', '1972-10-29', 'S', 'NULL', 'M', 'ryan48@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4434 Yosemite Circle', 'NULL', '156-555-0110', '2013-07-15', '2-5 Miles'], ['17026', '60', 'AW00017026', 'NULL', 'Jordan', 'NULL', 'Li', '0', '1973-01-09', 'S', 'NULL', 'M', 'jordan22@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6122 Orange St', 'NULL', '179-555-0120', '2013-02-28', '0-1 Miles'], ['17027', '71', 'AW00017027', 'NULL', 'Brianna', 'NULL', 'Taylor', '0', '1972-12-24', 'S', 'NULL', 'F', 'brianna7@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6257 Jennifer Way', 'NULL', '107-555-0171', '2013-02-02', '0-1 Miles'], ['17028', '635', 'AW00017028', 'NULL', 'Grace', 'A', 'Richardson', '0', '1977-04-22', 'M', 'NULL', 'F', 'grace35@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1368 Palms Drive', 'NULL', '723-555-0160', '2013-05-20', '2-5 Miles'], ['17029', '301', 'AW00017029', 'NULL', 'Suzanne', 'E', 'Xu', '0', '1977-06-20', 'M', 'NULL', 'F', 'suzanne13@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9681 VistaView Way', 'NULL', '739-555-0198', '2013-05-27', '0-1 Miles'], ['17030', '338', 'AW00017030', 'NULL', 'Emily', 'NULL', 'Russell', '0', '1970-02-21', 'M', 'NULL', 'F', 'emily45@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2630 Deermeadow Way', 'NULL', '107-555-0193', '2013-05-06', '2-5 Miles'], ['17031', '322', 'AW00017031', 'NULL', 'Grace', 'L', 'Thomas', '0', '1965-05-24', 'M', 'NULL', 'F', 'grace10@adventure-works.com', '60000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3994 Sucamore Drive', 'NULL', '958-555-0194', '2013-04-09', '2-5 Miles'], ['17032', '301', 'AW00017032', 'NULL', 'Alexandria', 'NULL', 'Flores', '0', '1965-05-05', 'M', 'NULL', 'F', 'alexandria12@adventure-works.com', '60000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3448 Concord', 'NULL', '111-555-0183', '2013-10-13', '2-5 Miles'], ['17033', '307', 'AW00017033', 'NULL', 'Carson', 'NULL', 'Long', '0', '1970-08-18', 'S', 'NULL', 'M', 'carson8@adventure-works.com', '60000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4917 Violet Ct.', 'NULL', '474-555-0183', '2013-04-13', '2-5 Miles'], ['17034', '53', 'AW00017034', 'NULL', 'Lauren', 'NULL', 'Clark', '0', '1964-10-09', 'S', 'NULL', 'F', 'lauren37@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '2221 Teak Court', 'NULL', '819-555-0134', '2013-07-28', '2-5 Miles'], ['17035', '648', 'AW00017035', 'NULL', 'Jordan', 'NULL', 'Flores', '0', '1965-04-20', 'M', 'NULL', 'M', 'jordan9@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1290 Arguello Blvd.', 'NULL', '192-555-0177', '2013-02-15', '2-5 Miles'], ['17036', '49', 'AW00017036', 'NULL', 'Savannah', 'J', 'Perez', '0', '1970-07-16', 'M', 'NULL', 'F', 'savannah34@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '3', '445 Bishop Drive', 'NULL', '554-555-0191', '2013-02-20', '10+ Miles'], ['17037', '49', 'AW00017037', 'NULL', 'Kenneth', 'W', 'Nath', '0', '1965-05-10', 'M', 'NULL', 'M', 'kenneth15@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1872 Chance Drive', 'NULL', '155-555-0111', '2013-09-04', '0-1 Miles'], ['17038', '312', 'AW00017038', 'NULL', 'Ernest', 'NULL', 'Wang', '0', '1964-08-06', 'S', 'NULL', 'M', 'ernest1@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '673 Hawes St.', '# 119 A', '212-555-0184', '2013-11-02', '0-1 Miles'], ['17039', '337', 'AW00017039', 'NULL', 'Ariana', 'NULL', 'Watson', '0', '1963-10-14', 'M', 'NULL', 'F', 'ariana0@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2468 Alexander Pl', 'NULL', '582-555-0147', '2013-05-06', '2-5 Miles'], ['17040', '616', 'AW00017040', 'NULL', 'Adam', 'NULL', 'Henderson', '0', '1969-08-23', 'M', 'NULL', 'M', 'adam3@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9152 L St.', 'NULL', '200-555-0144', '2013-05-26', '0-1 Miles'], ['17041', '631', 'AW00017041', 'NULL', 'Connor', 'NULL', 'Perry', '0', '1963-11-11', 'M', 'NULL', 'M', 'connor4@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5492 Dartmouth Way', 'NULL', '753-555-0111', '2013-05-21', '2-5 Miles'], ['17042', '642', 'AW00017042', 'NULL', 'Tyler', 'L', 'Jackson', '0', '1975-04-19', 'M', 'NULL', 'M', 'tyler0@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7720 Breaker Dr.', 'NULL', '753-555-0111', '2013-05-27', '2-5 Miles'], ['17043', '627', 'AW00017043', 'NULL', 'Isabella', 'K', 'Bennett', '0', '1974-09-22', 'M', 'NULL', 'F', 'isabella12@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6445 Cashew Street', 'NULL', '952-555-0130', '2013-05-02', '2-5 Miles'], ['17044', '635', 'AW00017044', 'NULL', 'Ana', 'NULL', 'Hayes', '0', '1964-05-25', 'M', 'NULL', 'F', 'ana21@adventure-works.com', '80000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '7893 Carson Street', 'NULL', '620-555-0195', '2013-09-14', '0-1 Miles'], ['17045', '35', 'AW00017045', 'NULL', 'Derek', 'NULL', 'Goel', '0', '1980-07-05', 'S', 'NULL', 'M', 'derek17@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '6550 Mallard Dr', 'NULL', '1 (11) 500 555-0114', '2011-02-19', '0-1 Miles'], ['17046', '10', 'AW00017046', 'NULL', 'Preston', 'D', 'Sai', '0', '1975-03-06', 'M', 'NULL', 'M', 'preston4@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '4091 Hill Meadow Pl.', 'NULL', '1 (11) 500 555-0186', '2011-02-21', '0-1 Miles'], ['17047', '21', 'AW00017047', 'NULL', 'Kendra', 'NULL', 'Rubio', '0', '1980-08-12', 'M', 'NULL', 'F', 'kendra21@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '7921 Detroit Ave.', 'NULL', '1 (11) 500 555-0195', '2011-02-02', '0-1 Miles'], ['17048', '3', 'AW00017048', 'NULL', 'Natasha', 'NULL', 'Gutierrez', '0', '1986-03-14', 'S', 'NULL', 'F', 'natasha10@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '7065 Rock Creek Way', 'NULL', '1 (11) 500 555-0188', '2011-02-20', '0-1 Miles'], ['17049', '4', 'AW00017049', 'NULL', 'Krystal', 'NULL', 'Lu', '0', '1974-10-05', 'M', 'NULL', 'F', 'krystal11@adventure-works.com', '100000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '0', '6029 Camelback Road', 'NULL', '1 (11) 500 555-0152', '2011-02-27', '0-1 Miles'], ['17050', '38', 'AW00017050', 'NULL', 'Cristina', 'C', 'Xie', '0', '1976-05-23', 'M', 'NULL', 'F', 'cristina3@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '342 San Simeon', 'NULL', '1 (11) 500 555-0129', '2011-02-24', '0-1 Miles'], ['17051', '20', 'AW00017051', 'NULL', 'Jessie', 'J', 'Ortega', '0', '1973-08-25', 'M', 'NULL', 'F', 'jessie41@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '230 Daisy Way', 'NULL', '1 (11) 500 555-0131', '2011-02-03', '0-1 Miles'], ['17052', '3', 'AW00017052', 'NULL', 'Rafael', 'J', 'Nara', '0', '1979-04-18', 'M', 'NULL', 'M', 'rafael40@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '7288 Corrie Lane', 'NULL', '1 (11) 500 555-0179', '2013-04-20', '10+ Miles'], ['17053', '38', 'AW00017053', 'NULL', 'Deanna', 'H', 'Raman', '0', '1974-01-25', 'M', 'NULL', 'F', 'deanna15@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '2739 Sandy Road', 'NULL', '1 (11) 500 555-0132', '2013-05-23', '10+ Miles'], ['17054', '10', 'AW00017054', 'NULL', 'Shawn', 'NULL', 'Raje', '0', '1978-08-22', 'M', 'NULL', 'M', 'shawn16@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '1259 Ygnacio Valley Road', 'NULL', '1 (11) 500 555-0183', '2013-05-28', '10+ Miles'], ['17055', '3', 'AW00017055', 'NULL', 'Willie', 'NULL', 'She', '0', '1986-05-05', 'S', 'NULL', 'M', 'willie20@adventure-works.com', '110000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '5742 Curtis Drive', 'NULL', '1 (11) 500 555-0147', '2011-03-04', '1-2 Miles'], ['17056', '6', 'AW00017056', 'NULL', 'Shaun', 'H', 'Lal', '0', '1975-03-16', 'S', 'NULL', 'M', 'shaun9@adventure-works.com', '110000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '7754 Lafayette Street', 'NULL', '1 (11) 500 555-0146', '2011-03-22', '2-5 Miles'], ['17057', '7', 'AW00017057', 'NULL', 'Tasha', 'T', 'Raji', '0', '1975-02-24', 'M', 'NULL', 'F', 'tasha21@adventure-works.com', '110000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '4896 Village Pl.', 'NULL', '1 (11) 500 555-0194', '2013-04-17', '5-10 Miles'], ['17058', '25', 'AW00017058', 'NULL', 'Destiny', 'NULL', 'Lee', '0', '1973-01-07', 'M', 'NULL', 'F', 'destiny20@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '2928 Antone Court', 'NULL', '1 (11) 500 555-0185', '2013-08-12', '10+ Miles'], ['17059', '13', 'AW00017059', 'NULL', 'Louis', 'J', 'Chen', '0', '1978-01-02', 'M', 'NULL', 'M', 'louis40@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '9162 Jemco Court', 'NULL', '1 (11) 500 555-0122', '2013-06-11', '10+ Miles'], ['17060', '20', 'AW00017060', 'NULL', 'Gerald', 'J', 'Sanz', '0', '1972-09-16', 'M', 'NULL', 'M', 'gerald27@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6866 Concord Blvd.', 'NULL', '1 (11) 500 555-0110', '2013-07-14', '0-1 Miles'], ['17061', '15', 'AW00017061', 'NULL', 'Brandi', 'NULL', 'Alonso', '0', '1978-10-07', 'M', 'NULL', 'F', 'brandi8@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '9442 Thors Bay Road', 'NULL', '1 (11) 500 555-0138', '2013-07-13', '0-1 Miles'], ['17062', '4', 'AW00017062', 'NULL', 'Christy', 'NULL', 'Lu', '0', '1973-05-26', 'M', 'NULL', 'F', 'christy10@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '4000 Krueger Drive', 'NULL', '1 (11) 500 555-0173', '2013-01-29', '0-1 Miles'], ['17063', '15', 'AW00017063', 'NULL', 'Jaclyn', 'M', 'Wang', '0', '1971-12-15', 'M', 'NULL', 'F', 'jaclyn1@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '5973 Willow Pass Road', 'NULL', '1 (11) 500 555-0155', '2013-02-21', '0-1 Miles'], ['17064', '13', 'AW00017064', 'NULL', 'Stephanie', 'NULL', 'Gray', '0', '1977-05-20', 'M', 'NULL', 'F', 'stephanie21@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '8250 11th Avenue', 'NULL', '1 (11) 500 555-0130', '2011-03-14', '2-5 Miles'], ['17065', '23', 'AW00017065', 'NULL', 'Cedric', 'R', 'Chen', '0', '1982-10-21', 'M', 'NULL', 'M', 'cedric2@adventure-works.com', '100000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '7154 Broadway', 'NULL', '1 (11) 500 555-0167', '2011-03-06', '2-5 Miles'], ['17066', '26', 'AW00017066', 'NULL', 'Lori', 'NULL', 'Serrano', '0', '1970-10-06', 'M', 'NULL', 'F', 'lori17@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '8905 Candlestick Dr.', 'NULL', '1 (11) 500 555-0151', '2013-08-05', '0-1 Miles'], ['17067', '39', 'AW00017067', 'NULL', 'Adrienne', 'L', 'Alvarez', '0', '1976-03-19', 'S', 'NULL', 'F', 'adrienne4@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9713 Pome Court', 'NULL', '1 (11) 500 555-0178', '2013-08-26', '5-10 Miles'], ['17068', '25', 'AW00017068', 'NULL', 'Thomas', 'NULL', 'Smith', '0', '1974-03-02', 'S', 'NULL', 'M', 'thomas60@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1830 Granada Drive', 'NULL', '1 (11) 500 555-0114', '2013-06-29', '5-10 Miles'], ['17069', '13', 'AW00017069', 'NULL', 'Christy', 'NULL', 'Zheng', '0', '1979-12-12', 'S', 'NULL', 'F', 'christy17@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7254 Buchanan Road', 'NULL', '1 (11) 500 555-0176', '2011-03-12', '0-1 Miles'], ['17070', '18', 'AW00017070', 'NULL', 'Margaret', 'H', 'Huang', '0', '1979-11-02', 'M', 'NULL', 'F', 'margaret12@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '5234 Shirley Dr.', 'NULL', '1 (11) 500 555-0173', '2013-02-12', '0-1 Miles'], ['17071', '12', 'AW00017071', 'NULL', 'Tammy', 'K', 'Raji', '0', '1970-08-18', 'S', 'NULL', 'F', 'tammy22@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2781 Cresent Dr.', 'NULL', '1 (11) 500 555-0117', '2011-03-02', '5-10 Miles'], ['17072', '6', 'AW00017072', 'NULL', 'Kaitlin', 'M', 'Kapoor', '0', '1969-11-07', 'M', 'NULL', 'F', 'kaitlin1@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '9682 Morello Court', 'NULL', '1 (11) 500 555-0161', '2013-10-21', '0-1 Miles'], ['17073', '31', 'AW00017073', 'NULL', 'Jonathon', 'N', 'Carlson', '0', '1969-09-12', 'M', 'NULL', 'M', 'jonathon14@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '6305 Waterview Place', 'NULL', '1 (11) 500 555-0143', '2013-08-03', '5-10 Miles'], ['17074', '37', 'AW00017074', 'NULL', 'Ruben', 'M', 'Malhotra', '0', '1969-08-23', 'M', 'NULL', 'M', 'ruben5@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '4199 Del Rey St', 'NULL', '1 (11) 500 555-0164', '2013-01-30', '0-1 Miles'], ['17075', '2', 'AW00017075', 'NULL', 'Aimee', 'NULL', 'Guo', '0', '1970-01-10', 'M', 'NULL', 'F', 'aimee12@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '7439 Laguna Niguel', 'NULL', '1 (11) 500 555-0117', '2013-08-18', '10+ Miles'], ['17076', '33', 'AW00017076', 'NULL', 'Neil', 'L', 'Serrano', '0', '1974-11-18', 'M', 'NULL', 'M', 'neil15@adventure-works.com', '60000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '4880 Viewpoint Ct.', 'NULL', '1 (11) 500 555-0164', '2013-08-10', '5-10 Miles'], ['17077', '5', 'AW00017077', 'NULL', 'Ronald', 'M', 'Raman', '0', '1968-08-27', 'S', 'NULL', 'M', 'ronald14@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '5703 Donald Dr.', 'NULL', '1 (11) 500 555-0186', '2013-03-02', '0-1 Miles'], ['17078', '3', 'AW00017078', 'NULL', 'Jenny', 'J', 'Zhu', '0', '1969-02-01', 'S', 'NULL', 'F', 'jenny16@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3171 Jeanne Circle', 'NULL', '1 (11) 500 555-0195', '2013-02-04', '5-10 Miles'], ['17079', '39', 'AW00017079', 'NULL', 'Tracy', 'K', 'Rai', '0', '1968-08-13', 'S', 'NULL', 'F', 'tracy16@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6886 Melody Drive', 'NULL', '1 (11) 500 555-0130', '2011-03-22', '0-1 Miles'], ['17080', '209', 'AW00017080', 'NULL', 'Katelyn', 'W', 'Peterson', '0', '1984-01-17', 'S', 'NULL', 'F', 'katelyn3@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '332, boulevard d´Albi', 'NULL', '1 (11) 500 555-0137', '2012-01-26', '2-5 Miles'], ['17081', '187', 'AW00017081', 'NULL', 'Jennifer', 'J', 'Murphy', '0', '1985-02-04', 'S', 'NULL', 'F', 'jennifer60@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '99, rue Maillard', 'NULL', '1 (11) 500 555-0121', '2013-07-07', '0-1 Miles'], ['17082', '147', 'AW00017082', 'NULL', 'Morgan', 'W', 'Smith', '0', '1979-11-20', 'S', 'NULL', 'F', 'morgan23@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Moritzstr 32', 'NULL', '1 (11) 500 555-0129', '2012-08-18', '2-5 Miles'], ['17083', '151', 'AW00017083', 'NULL', 'Priscilla', 'N', 'Raje', '0', '1985-08-13', 'S', 'NULL', 'F', 'priscilla12@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Erlenweg 456', 'NULL', '1 (11) 500 555-0199', '2013-03-27', '2-5 Miles'], ['17084', '187', 'AW00017084', 'NULL', 'Byron', 'G', 'Serrano', '0', '1986-05-14', 'S', 'NULL', 'M', 'byron10@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '1, place de Brazaville', 'NULL', '1 (11) 500 555-0129', '2013-10-08', '1-2 Miles'], ['17085', '269', 'AW00017085', 'NULL', 'Edwin', 'A', 'Deng', '0', '1979-10-06', 'M', 'NULL', 'M', 'edwin23@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3801 Roundhouse Place', 'NULL', '1 (11) 500 555-0156', '2012-06-13', '0-1 Miles'], ['17086', '155', 'AW00017086', 'NULL', 'Xavier', 'NULL', 'Anderson', '0', '1979-04-08', 'S', 'NULL', 'M', 'xavier7@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Krönerweg 5615', 'NULL', '1 (11) 500 555-0112', '2012-08-14', '1-2 Miles'], ['17087', '244', 'AW00017087', 'NULL', 'Jésus', 'NULL', 'Dominguez', '0', '1977-12-21', 'M', 'NULL', 'M', 'jésus11@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '9864 Bates Court', 'NULL', '1 (11) 500 555-0115', '2013-07-20', '0-1 Miles'], ['17088', '204', 'AW00017088', 'NULL', 'Wayne', 'V', 'Yuan', '0', '1978-01-29', 'S', 'NULL', 'M', 'wayne8@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '19, rue de l´Esplanade', 'NULL', '1 (11) 500 555-0137', '2013-07-20', '1-2 Miles'], ['17089', '147', 'AW00017089', 'NULL', 'Crystal', 'C', 'Zhu', '0', '1978-05-03', 'M', 'NULL', 'F', 'crystal15@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Westheimer Straße 292', 'NULL', '1 (11) 500 555-0180', '2013-06-08', '0-1 Miles'], ['17090', '154', 'AW00017090', 'NULL', 'Leslie', 'NULL', 'Alvarez', '0', '1978-02-13', 'S', 'NULL', 'F', 'leslie5@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Unter Linden 439', 'NULL', '1 (11) 500 555-0134', '2013-10-15', '1-2 Miles'], ['17091', '130', 'AW00017091', 'NULL', 'Tammy', 'L', 'Patel', '0', '1977-10-20', 'M', 'NULL', 'F', 'tammy3@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Lützowplatz 58', 'NULL', '1 (11) 500 555-0132', '2013-12-19', '0-1 Miles'], ['17092', '153', 'AW00017092', 'NULL', 'Devon', 'NULL', 'Beck', '0', '1979-06-11', 'M', 'NULL', 'M', 'devon17@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Postfach 11 00 99', 'Verkaufsabteilung', '1 (11) 500 555-0117', '2013-02-09', '1-2 Miles'], ['17093', '160', 'AW00017093', 'NULL', 'Seth', 'NULL', 'Sanchez', '0', '1979-02-15', 'M', 'NULL', 'M', 'seth88@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Heiderweg 4725', 'NULL', '1 (11) 500 555-0152', '2012-08-21', '0-1 Miles'], ['17094', '248', 'AW00017094', 'NULL', 'Julio', 'E', 'Dominguez', '0', '1979-01-03', 'S', 'NULL', 'M', 'julio13@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6082 Trafalgar Circle', 'NULL', '1 (11) 500 555-0189', '2012-06-22', '1-2 Miles'], ['17095', '209', 'AW00017095', 'NULL', 'Logan', 'D', 'Garcia', '0', '1977-08-05', 'S', 'NULL', 'M', 'logan68@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '199, boulevard Beau Marchais', 'NULL', '1 (11) 500 555-0145', '2012-01-03', '0-1 Miles'], ['17096', '120', 'AW00017096', 'NULL', 'Samantha', 'S', 'Bennett', '0', '1978-04-19', 'M', 'NULL', 'F', 'samantha26@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Hauptstr 2929', 'NULL', '1 (11) 500 555-0155', '2012-08-24', '0-1 Miles'], ['17097', '273', 'AW00017097', 'NULL', 'Deanna', 'D', 'Kapoor', '0', '1977-08-05', 'S', 'NULL', 'F', 'deanna4@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '8921 Meier Road', 'NULL', '1 (11) 500 555-0142', '2012-06-05', '1-2 Miles'], ['17098', '275', 'AW00017098', 'NULL', 'Willie', 'NULL', 'Shan', '0', '1977-07-15', 'S', 'NULL', 'M', 'willie29@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '7845 Arcadia Place', 'NULL', '1 (11) 500 555-0114', '2012-06-05', '1-2 Miles'], ['17099', '218', 'AW00017099', 'NULL', 'Joel', 'A', 'Fernandez', '0', '1978-05-17', 'S', 'NULL', 'M', 'joel15@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '98, quai de Grenelle', 'NULL', '1 (11) 500 555-0159', '2012-02-22', '1-2 Miles'], ['17100', '151', 'AW00017100', 'NULL', 'Vincent', 'M', 'Wang', '0', '1977-08-02', 'S', 'NULL', 'M', 'vincent2@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Carlsplatz 4652', 'NULL', '1 (11) 500 555-0163', '2013-09-23', '2-5 Miles'], ['17101', '254', 'AW00017101', 'NULL', 'Shannon', 'L', 'Gutierrez', '0', '1978-05-03', 'S', 'NULL', 'M', 'shannon32@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '6518 Wilke Drive', 'NULL', '1 (11) 500 555-0175', '2013-03-19', '2-5 Miles'], ['17102', '178', 'AW00017102', 'NULL', 'Andres', 'B', 'Goel', '0', '1978-01-11', 'S', 'NULL', 'M', 'andres16@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Wolfgangstraße 68', 'NULL', '1 (11) 500 555-0123', '2013-03-12', '2-5 Miles'], ['17103', '141', 'AW00017103', 'NULL', 'Franklin', 'D', 'Xu', '0', '1978-03-14', 'M', 'NULL', 'M', 'franklin23@adventure-works.com', '40000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Heideweg 1459', 'NULL', '1 (11) 500 555-0127', '2012-08-13', '1-2 Miles'], ['17104', '159', 'AW00017104', 'NULL', 'Clifford', 'NULL', 'Rodriguez', '0', '1983-03-04', 'S', 'NULL', 'M', 'clifford18@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Hauptstr 6057', 'NULL', '1 (11) 500 555-0130', '2013-03-29', '0-1 Miles'], ['17105', '267', 'AW00017105', 'NULL', 'Madison', 'NULL', 'Walker', '0', '1977-05-25', 'S', 'NULL', 'F', 'madison23@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '1095 Collins Drive', 'NULL', '1 (11) 500 555-0115', '2013-02-09', '1-2 Miles'], ['17106', '222', 'AW00017106', 'NULL', 'Gina', 'NULL', 'Jiménez', '0', '1976-09-18', 'S', 'NULL', 'F', 'gina6@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '191, rue de la Centenaire', 'NULL', '1 (11) 500 555-0112', '2013-10-03', '1-2 Miles'], ['17107', '162', 'AW00017107', 'NULL', 'Priscilla', 'L', 'Yuan', '0', '1976-08-01', 'S', 'NULL', 'F', 'priscilla6@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Kalkweg 4444', 'NULL', '1 (11) 500 555-0120', '2012-08-24', '1-2 Miles'], ['17108', '213', 'AW00017108', 'NULL', 'Susan', 'NULL', 'Xu', '0', '1977-03-08', 'S', 'NULL', 'F', 'susan22@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '5407, rue Lauriston', 'NULL', '1 (11) 500 555-0118', '2013-09-04', '0-1 Miles'], ['17109', '209', 'AW00017109', 'NULL', 'Sydney', 'L', 'Wilson', '0', '1976-11-16', 'S', 'NULL', 'F', 'sydney71@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '3, place Beaubernard', 'NULL', '1 (11) 500 555-0113', '2012-03-28', '2-5 Miles'], ['17110', '264', 'AW00017110', 'NULL', 'Meredith', 'NULL', 'Garcia', '0', '1977-05-03', 'S', 'NULL', 'F', 'meredith14@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '1579 Plaza Rosa', 'NULL', '1 (11) 500 555-0125', '2013-03-31', '2-5 Miles'], ['17111', '126', 'AW00017111', 'NULL', 'Jenny', 'B', 'Chande', '0', '1975-11-15', 'M', 'NULL', 'F', 'jenny37@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Moritzstr 12', 'NULL', '1 (11) 500 555-0118', '2013-02-23', '0-1 Miles'], ['17112', '238', 'AW00017112', 'NULL', 'Janet', 'P', 'Jimenez', '0', '1976-01-18', 'M', 'NULL', 'F', 'janet10@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '0', '8459 Live Oak Avenue', 'NULL', '1 (11) 500 555-0119', '2013-07-18', '0-1 Miles'], ['17113', '172', 'AW00017113', 'NULL', 'Clarence', 'NULL', 'Pal', '0', '1976-10-19', 'S', 'NULL', 'M', 'clarence27@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Dunckerstr 72', 'NULL', '1 (11) 500 555-0184', '2013-08-19', '0-1 Miles'], ['17114', '178', 'AW00017114', 'NULL', 'Jarrod', 'S', 'Mehta', '0', '1982-10-08', 'S', 'NULL', 'M', 'jarrod14@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Wallstr 844', 'NULL', '1 (11) 500 555-0113', '2012-08-21', '1-2 Miles'], ['17115', '237', 'AW00017115', 'NULL', 'Karen', 'E', 'Xu', '0', '1976-08-11', 'M', 'NULL', 'F', 'karen22@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5 View Dr.', 'NULL', '1 (11) 500 555-0188', '2012-06-27', '0-1 Miles'], ['17116', '49', 'AW00017116', 'NULL', 'Alison', 'J', 'Nath', '0', '1985-07-20', 'S', 'NULL', 'F', 'alison19@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6014 La Vista Circle', 'NULL', '214-555-0174', '2013-07-10', '1-2 Miles'], ['17117', '310', 'AW00017117', 'NULL', 'Lydia', 'NULL', 'Prasad', '0', '1979-11-24', 'M', 'NULL', 'F', 'lydia8@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6812 Sands Circle', '# 163', '261-555-0151', '2013-11-09', '0-1 Miles'], ['17118', '611', 'AW00017118', 'NULL', 'Sara', 'NULL', 'Blue', '0', '1980-01-04', 'S', 'NULL', 'F', 'sara15@adventure-works.com', '30000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1719 S St.', 'NULL', '261-555-0178', '2013-05-23', '1-2 Miles'], ['17119', '63', 'AW00017119', 'NULL', 'Isabella', 'NULL', 'Harris', '0', '1980-11-02', 'S', 'NULL', 'F', 'isabella69@adventure-works.com', '40000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9473 Camino Solano', 'NULL', '893-555-0187', '2013-02-24', '0-1 Miles'], ['17120', '515', 'AW00017120', 'NULL', 'Michele', 'E', 'Raje', '0', '1971-11-13', 'S', 'NULL', 'F', 'michele14@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6837 Pirate Lane', 'NULL', '941-555-0124', '2013-05-22', '1-2 Miles'], ['17121', '637', 'AW00017121', 'NULL', 'Lucas', 'NULL', 'Bryant', '0', '1977-08-16', 'S', 'NULL', 'M', 'lucas66@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6949 Miguel Dr.', 'NULL', '980-555-0166', '2013-05-28', '1-2 Miles'], ['17122', '298', 'AW00017122', 'NULL', 'Gabrielle', 'NULL', 'Gonzalez', '0', '1971-09-15', 'S', 'NULL', 'F', 'gabrielle52@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4334 Coastal Blvd.', 'NULL', '970-555-0178', '2013-04-05', '0-1 Miles'], ['17123', '310', 'AW00017123', 'NULL', 'Pedro', 'NULL', 'Romero', '0', '1959-03-26', 'M', 'NULL', 'M', 'pedro29@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7943 C. Mounthood', 'NULL', '742-555-0172', '2013-06-16', '2-5 Miles'], ['17124', '612', 'AW00017124', 'NULL', 'Kaitlin', 'NULL', 'Madan', '0', '1959-02-09', 'M', 'NULL', 'F', 'kaitlin7@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7887 Twinview Place', 'NULL', '732-555-0156', '2013-06-13', '2-5 Miles'], ['17125', '69', 'AW00017125', 'NULL', 'Paige', 'H', 'Rogers', '0', '1965-11-15', 'M', 'NULL', 'F', 'paige44@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '3515 Bishop Drive', 'NULL', '636-555-0182', '2013-10-08', '0-1 Miles'], ['17126', '64', 'AW00017126', 'NULL', 'Natalie', 'NULL', 'Perry', '0', '1950-04-07', 'S', 'NULL', 'F', 'natalie30@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '9746 Valley Blvd.', 'NULL', '903-555-0191', '2013-08-14', '1-2 Miles'], ['17127', '633', 'AW00017127', 'NULL', 'Makayla', 'A', 'Gray', '0', '1950-11-30', 'S', 'NULL', 'F', 'makayla6@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '9442 Lacanda', 'NULL', '133-555-0124', '2013-05-22', '10+ Miles'], ['17128', '374', 'AW00017128', 'NULL', 'Fernando', 'NULL', 'Alexander', '0', '1951-06-05', 'S', 'NULL', 'M', 'fernando60@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8158 Granada Dr.', 'NULL', '545-555-0189', '2013-05-22', '10+ Miles'], ['17129', '312', 'AW00017129', 'NULL', 'Gabrielle', 'F', 'Powell', '0', '1950-12-09', 'S', 'NULL', 'F', 'gabrielle31@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '36 Sand Pointe Lane', 'NULL', '259-555-0129', '2013-05-23', '10+ Miles'], ['17130', '343', 'AW00017130', 'NULL', 'Janet', 'M', 'Turner', '0', '1956-11-04', 'S', 'NULL', 'F', 'janet32@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9618 Fall Creek Road', 'NULL', '490-555-0119', '2013-03-05', '10+ Miles'], ['17131', '637', 'AW00017131', 'NULL', 'Lauren', 'E', 'Henderson', '0', '1950-08-31', 'S', 'NULL', 'F', 'lauren52@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5415 San Gabriel Dr.', 'NULL', '232-555-0161', '2013-12-10', '2-5 Miles'], ['17132', '642', 'AW00017132', 'NULL', 'Isabella', 'R', 'James', '0', '1951-06-05', 'S', 'NULL', 'F', 'isabella6@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1354 Catnip Court', 'NULL', '527-555-0196', '2013-12-05', '10+ Miles'], ['17133', '627', 'AW00017133', 'NULL', 'Lucas', 'A', 'Kelly', '0', '1952-05-14', 'S', 'NULL', 'M', 'lucas73@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '3539 Harris Circle', 'NULL', '112-555-0153', '2013-11-02', '10+ Miles'], ['17134', '609', 'AW00017134', 'NULL', 'Tabitha', 'I', 'Mehta', '0', '1952-05-22', 'S', 'NULL', 'F', 'tabitha11@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '2609 Amarillo', 'NULL', '447-555-0117', '2013-11-13', '2-5 Miles'], ['17135', '553', 'AW00017135', 'NULL', 'Richard', 'P', 'Edwards', '0', '1952-04-10', 'S', 'NULL', 'M', 'richard38@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '8814 Fieldbrook Pl', 'NULL', '736-555-0187', '2013-11-20', '10+ Miles'], ['17136', '536', 'AW00017136', 'NULL', 'Glenn', 'L', 'Ye', '0', '1952-02-24', 'S', 'NULL', 'M', 'glenn10@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '661 Cardinal Dr', 'NULL', '599-555-0144', '2013-11-06', '10+ Miles'], ['17137', '618', 'AW00017137', 'NULL', 'Jason', 'NULL', 'Washington', '0', '1952-06-03', 'S', 'NULL', 'M', 'jason10@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5784 Holiday Hill Dr', 'NULL', '863-555-0165', '2013-02-21', '10+ Miles'], ['17138', '316', 'AW00017138', 'NULL', 'Melanie', 'NULL', 'Jenkins', '0', '1957-07-04', 'S', 'NULL', 'F', 'melanie22@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8741 Crow Street', 'NULL', '314-555-0174', '2013-03-23', '10+ Miles'], ['17139', '358', 'AW00017139', 'NULL', 'Jade', 'NULL', 'Rivera', '0', '1952-11-22', 'S', 'NULL', 'F', 'jade14@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '8725 San Benito Drive', 'NULL', '942-555-0154', '2013-11-07', '2-5 Miles'], ['17140', '634', 'AW00017140', 'NULL', 'Sean', 'R', 'Peterson', '0', '1952-11-05', 'M', 'NULL', 'M', 'sean12@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '216 Smoking Tree Court', 'NULL', '732-555-0124', '2013-11-17', '10+ Miles'], ['17141', '548', 'AW00017141', 'NULL', 'Makayla', 'NULL', 'Rogers', '0', '1952-11-07', 'S', 'NULL', 'F', 'makayla15@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '5610 Easley Drive', 'NULL', '112-555-0173', '2013-11-28', '2-5 Miles'], ['17142', '325', 'AW00017142', 'NULL', 'Seth', 'NULL', 'Flores', '0', '1952-10-15', 'M', 'NULL', 'M', 'seth60@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '3629 Warren St.', 'NULL', '426-555-0128', '2013-05-26', '10+ Miles'], ['17143', '59', 'AW00017143', 'NULL', 'David', 'M', 'Ross', '0', '1959-08-31', 'M', 'NULL', 'M', 'david36@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '405 Scenic Avenue', 'NULL', '553-555-0132', '2013-07-06', '10+ Miles'], ['17144', '612', 'AW00017144', 'NULL', 'Luis', 'NULL', 'Griffin', '0', '1953-08-19', 'M', 'NULL', 'M', 'luis20@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '478 Grant St', 'NULL', '541-555-0186', '2013-05-27', '10+ Miles'], ['17145', '311', 'AW00017145', 'NULL', 'Sarah', 'NULL', 'Bennett', '0', '1964-10-09', 'S', 'NULL', 'F', 'sarah26@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9474 Rose Street', 'NULL', '996-555-0117', '2013-11-13', '10+ Miles'], ['17146', '325', 'AW00017146', 'NULL', 'Juan', 'NULL', 'Cook', '0', '1953-08-12', 'S', 'NULL', 'M', 'juan31@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '8055 Corrinne Court', 'NULL', '297-555-0123', '2013-11-05', '10+ Miles'], ['17147', '52', 'AW00017147', 'NULL', 'Jennifer', 'NULL', 'Nelson', '0', '1954-11-21', 'S', 'NULL', 'F', 'jennifer11@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '9072 Roland Drive', 'NULL', '144-555-0150', '2013-08-04', '10+ Miles'], ['17148', '59', 'AW00017148', 'NULL', 'Hailey', 'C', 'Henderson', '0', '1955-01-14', 'S', 'NULL', 'F', 'hailey26@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6535 Warmcastle Ct.', 'NULL', '321-555-0174', '2013-08-26', '10+ Miles'], ['17149', '627', 'AW00017149', 'NULL', 'Steven', 'NULL', 'Richardson', '0', '1960-04-18', 'M', 'NULL', 'M', 'steven19@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9270 Lakewood Court', 'NULL', '678-555-0118', '2013-06-10', '2-5 Miles'], ['17150', '545', 'AW00017150', 'NULL', 'Wyatt', 'R', 'Wright', '0', '1960-08-01', 'M', 'NULL', 'M', 'wyatt30@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1803 Olive Hill', 'NULL', '142-555-0117', '2013-06-18', '2-5 Miles'], ['17151', '633', 'AW00017151', 'NULL', 'Jasmine', 'A', 'Alexander', '0', '1960-07-17', 'S', 'NULL', 'F', 'jasmine58@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9777 Mozden Lane', 'NULL', '617-555-0190', '2014-01-28', '10+ Miles'], ['17152', '553', 'AW00017152', 'NULL', 'Jack', 'L', 'Wang', '0', '1955-05-07', 'S', 'NULL', 'M', 'jack25@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6046 Dale Pl', 'NULL', '387-555-0167', '2013-08-01', '10+ Miles'], ['17153', '301', 'AW00017153', 'NULL', 'Devin', 'M', 'Butler', '0', '1954-08-20', 'M', 'NULL', 'M', 'devin52@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '3676 Palms Dr.', 'NULL', '536-555-0145', '2013-06-17', '2-5 Miles'], ['17154', '301', 'AW00017154', 'NULL', 'Geoffrey', 'L', 'Martinez', '0', '1955-02-17', 'M', 'NULL', 'M', 'geoffrey15@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '1305 Rain Drop Circle', 'NULL', '368-555-0168', '2013-06-15', '2-5 Miles'], ['17155', '316', 'AW00017155', 'NULL', 'Samuel', 'H', 'Lewis', '0', '1954-10-19', 'M', 'NULL', 'M', 'samuel71@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '2172 Almond Drive', 'NULL', '116-555-0112', '2013-08-02', '10+ Miles'], ['17156', '347', 'AW00017156', 'NULL', 'Hailey', 'N', 'Gonzales', '0', '1971-08-08', 'S', 'NULL', 'F', 'hailey37@adventure-works.com', '70000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5004 Mazatlan', 'NULL', '162-555-0192', '2013-11-06', '10+ Miles'], ['17157', '385', 'AW00017157', 'NULL', 'Wyatt', 'NULL', 'Johnson', '0', '1955-06-16', 'M', 'NULL', 'M', 'wyatt1@adventure-works.com', '70000.00', '5', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5297 Algiers Drive', 'NULL', '582-555-0166', '2013-10-29', '10+ Miles'], ['17158', '609', 'AW00017158', 'NULL', 'Mitchell', 'NULL', 'Nara', '0', '1955-11-13', 'M', 'NULL', 'M', 'mitchell14@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '21 Redhead Way', 'NULL', '313-555-0112', '2013-03-22', '10+ Miles'], ['17159', '609', 'AW00017159', 'NULL', 'Kellie', 'NULL', 'Ruiz', '0', '1956-04-02', 'S', 'NULL', 'F', 'kellie2@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9905 North 29th St.', 'NULL', '183-555-0136', '2013-06-05', '2-5 Miles'], ['17160', '611', 'AW00017160', 'NULL', 'Louis', 'NULL', 'Andersen', '0', '1955-07-04', 'M', 'NULL', 'M', 'louis29@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1061 Delta Fair Blvd.', 'NULL', '735-555-0182', '2013-11-12', '10+ Miles'], ['17161', '623', 'AW00017161', 'NULL', 'Katherine', 'NULL', 'Lopez', '0', '1956-04-14', 'S', 'NULL', 'F', 'katherine69@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6986 Countrywood Ct.', 'NULL', '640-555-0134', '2013-03-27', '10+ Miles'], ['17162', '545', 'AW00017162', 'NULL', 'Rachel', 'NULL', 'Blue', '0', '1955-07-04', 'S', 'NULL', 'F', 'rachel50@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1061 Delta Fair Blvd.', 'NULL', '296-555-0134', '2013-05-01', '10+ Miles'], ['17163', '299', 'AW00017163', 'NULL', 'Edward', 'NULL', 'Adams', '0', '1956-02-20', 'M', 'NULL', 'M', 'edward8@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '9108 San Miguel Drive', 'NULL', '947-555-0187', '2013-06-27', '2-5 Miles'], ['17164', '302', 'AW00017164', 'NULL', 'Ryan', 'S', 'Clark', '0', '1955-10-06', 'M', 'NULL', 'M', 'ryan55@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '156 Ulfinian Way', 'NULL', '502-555-0183', '2013-11-15', '2-5 Miles'], ['17165', '334', 'AW00017165', 'NULL', 'Isaac', 'E', 'Gonzalez', '0', '1956-01-11', 'S', 'NULL', 'M', 'isaac30@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7509 Sanford St.', 'NULL', '110-555-0177', '2013-02-13', '10+ Miles'], ['17166', '536', 'AW00017166', 'Mr.', 'Joshua', 'R.', 'Several', '0', '1956-12-20', 'M', 'NULL', 'M', 'joshua1@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3880 95th St.', 'NULL', '194-555-0100', '2013-10-26', '2-5 Miles'], ['17167', '611', 'AW00017167', 'NULL', 'Thomas', 'R', 'Jenkins', '0', '1962-08-12', 'M', 'NULL', 'M', 'thomas8@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5023 Scenic Avenue', 'NULL', '342-555-0170', '2013-06-16', '2-5 Miles'], ['17168', '632', 'AW00017168', 'NULL', 'Jada', 'NULL', 'Perez', '0', '1962-07-23', 'S', 'NULL', 'F', 'jada24@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '9162 California Street', 'NULL', '527-555-0162', '2013-06-09', '10+ Miles'], ['17169', '302', 'AW00017169', 'NULL', 'Emily', 'NULL', 'Taylor', '0', '1957-01-03', 'M', 'NULL', 'F', 'emily9@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6725 Arata Way', 'NULL', '226-555-0120', '2013-03-19', '10+ Miles'], ['17170', '322', 'AW00017170', 'NULL', 'Jasmine', 'NULL', 'James', '0', '1957-01-02', 'M', 'NULL', 'F', 'jasmine36@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '385 Joan Ave', 'NULL', '494-555-0154', '2013-04-14', '10+ Miles'], ['17171', '372', 'AW00017171', 'NULL', 'Katherine', 'NULL', 'Clark', '0', '1957-05-26', 'S', 'NULL', 'F', 'katherine90@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1700 C Street', 'NULL', '436-555-0189', '2013-11-03', '10+ Miles'], ['17172', '335', 'AW00017172', 'NULL', 'Jesse', 'M', 'Adams', '0', '1957-09-21', 'M', 'NULL', 'M', 'jesse39@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4682 Birch Bark Rd.', 'NULL', '626-555-0110', '2013-08-07', '10+ Miles'], ['17173', '299', 'AW00017173', 'NULL', 'David', 'A', 'Bryant', '0', '1958-05-23', 'S', 'NULL', 'M', 'david51@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6347 Brookview Drive', 'NULL', '313-555-0193', '2013-11-12', '10+ Miles'], ['17174', '312', 'AW00017174', 'NULL', 'Angelica', 'M', 'Wood', '0', '1958-03-25', 'S', 'NULL', 'F', 'angelica1@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7073 Boxer Blvd', 'NULL', '803-555-0126', '2013-06-18', '10+ Miles'], ['17175', '66', 'AW00017175', 'NULL', 'Amanda', 'NULL', 'Roberts', '0', '1957-11-15', 'S', 'NULL', 'F', 'amanda47@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6929 Citrus Ave.', 'NULL', '233-555-0116', '2013-09-09', '10+ Miles'], ['17176', '312', 'AW00017176', 'NULL', 'Isaac', 'M', 'Ward', '0', '1957-11-09', 'S', 'NULL', 'M', 'isaac12@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '8380 Toyon Dr.', 'NULL', '272-555-0189', '2013-11-05', '10+ Miles'], ['17177', '336', 'AW00017177', 'NULL', 'Richard', 'NULL', 'Hayes', '0', '1957-12-09', 'M', 'NULL', 'M', 'richard78@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5805 West 46th St', 'NULL', '858-555-0127', '2013-06-24', '10+ Miles'], ['17178', '300', 'AW00017178', 'NULL', 'Trisha', 'L', 'Liang', '0', '1958-01-16', 'M', 'NULL', 'F', 'trisha11@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '37 Peachwillow Lane', 'NULL', '757-555-0197', '2013-12-16', '10+ Miles'], ['17179', '316', 'AW00017179', 'NULL', 'James', 'NULL', 'Henderson', '0', '1974-07-15', 'S', 'NULL', 'M', 'james20@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2631 Springer Court', 'NULL', '174-555-0123', '2013-07-16', '10+ Miles'], ['17180', '618', 'AW00017180', 'NULL', 'Timothy', 'S', 'Rogers', '0', '1959-06-18', 'M', 'NULL', 'M', 'timothy21@adventure-works.com', '70000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '3184 Roskelley Dr.', 'NULL', '458-555-0158', '2013-11-10', '2-5 Miles'], ['17181', '177', 'AW00017181', 'NULL', 'Jenny', 'C', 'Lal', '0', '1969-03-16', 'M', 'NULL', 'F', 'jenny32@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', 'Heiderweg 4284', 'NULL', '1 (11) 500 555-0197', '2012-08-27', '5-10 Miles'], ['17182', '279', 'AW00017182', 'NULL', 'Jessica', 'NULL', 'Patterson', '0', '1963-11-07', 'S', 'NULL', 'F', 'jessica35@adventure-works.com', '170000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '2681 Woodside Way', 'NULL', '1 (11) 500 555-0117', '2012-05-31', '0-1 Miles'], ['17183', '129', 'AW00017183', 'NULL', 'Shane', 'A', 'Sanchez', '0', '1968-11-05', 'M', 'NULL', 'M', 'shane23@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Conesweg 10', 'NULL', '1 (11) 500 555-0190', '2012-08-17', '0-1 Miles'], ['17184', '174', 'AW00017184', 'NULL', 'Eddie', 'O', 'Dominguez', '0', '1962-08-02', 'M', 'NULL', 'M', 'eddie13@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Räuscherweg 345', 'NULL', '1 (11) 500 555-0188', '2012-08-24', '0-1 Miles'], ['17185', '279', 'AW00017185', 'NULL', 'Karla', 'NULL', 'Anand', '0', '1963-03-21', 'M', 'NULL', 'F', 'karla23@adventure-works.com', '170000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '9355 Armstrong Road', 'NULL', '1 (11) 500 555-0114', '2012-06-20', '5-10 Miles'], ['17186', '231', 'AW00017186', 'NULL', 'Isaac', 'A', 'Evans', '0', '1978-01-16', 'M', 'NULL', 'M', 'isaac23@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '5583 Peterson Pl.', 'NULL', '1 (11) 500 555-0149', '2013-06-19', '5-10 Miles'], ['17187', '183', 'AW00017187', 'NULL', 'Alejandro', 'L', 'Ma', '0', '1960-09-28', 'S', 'NULL', 'M', 'alejandro19@adventure-works.com', '90000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1010, impasse Notre-Dame', 'NULL', '1 (11) 500 555-0117', '2012-03-22', '10+ Miles'], ['17188', '209', 'AW00017188', 'NULL', 'Alexa', 'NULL', 'Peterson', '0', '1966-09-17', 'M', 'NULL', 'F', 'alexa4@adventure-works.com', '110000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '203, rue des Berges', 'NULL', '1 (11) 500 555-0188', '2012-03-21', '5-10 Miles'], ['17189', '126', 'AW00017189', 'NULL', 'Clarence', 'NULL', 'Goel', '0', '1966-11-12', 'M', 'NULL', 'M', 'clarence34@adventure-works.com', '110000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Kappellweg 673', 'NULL', '1 (11) 500 555-0128', '2013-03-09', '10+ Miles'], ['17190', '168', 'AW00017190', 'NULL', 'Ebony', 'J', 'Rana', '0', '1966-10-03', 'S', 'NULL', 'F', 'ebony11@adventure-works.com', '120000.00', '2', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Kampstr 9859', 'NULL', '1 (11) 500 555-0145', '2014-01-14', '10+ Miles'], ['17191', '134', 'AW00017191', 'NULL', 'Gilbert', 'H', 'Guo', '0', '1961-02-10', 'S', 'NULL', 'M', 'gilbert15@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', 'Zollhof 766', 'NULL', '1 (11) 500 555-0118', '2012-08-05', '0-1 Miles'], ['17192', '261', 'AW00017192', 'NULL', 'Warren', 'L', 'He', '0', '1966-09-19', 'S', 'NULL', 'M', 'warren31@adventure-works.com', '160000.00', '2', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '8841 Thornwood Dr.', 'NULL', '1 (11) 500 555-0176', '2012-06-20', '0-1 Miles'], ['17193', '265', 'AW00017193', 'NULL', 'Haley', 'S', 'Brooks', '0', '1959-12-18', 'M', 'NULL', 'F', 'haley17@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '9563 Wicker Ave.', 'NULL', '1 (11) 500 555-0171', '2013-03-13', '10+ Miles'], ['17194', '162', 'AW00017194', 'NULL', 'Wyatt', 'NULL', 'Thompson', '0', '1960-02-16', 'M', 'NULL', 'M', 'wyatt16@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', 'Hellweg 4244', 'NULL', '1 (11) 500 555-0182', '2013-07-23', '10+ Miles'], ['17195', '215', 'AW00017195', 'NULL', 'Franklin', 'L', 'Sharma', '0', '1949-11-19', 'M', 'NULL', 'M', 'franklin27@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '12, route de Marseille', 'NULL', '1 (11) 500 555-0191', '2012-04-02', '10+ Miles'], ['17196', '204', 'AW00017196', 'NULL', 'Douglas', 'NULL', 'Fernandez', '0', '1950-01-24', 'S', 'NULL', 'M', 'douglas20@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '61, rue de Linois', 'NULL', '1 (11) 500 555-0143', '2012-04-28', '10+ Miles'], ['17197', '127', 'AW00017197', 'NULL', 'Mindy', 'NULL', 'Nara', '0', '1949-07-16', 'S', 'NULL', 'F', 'mindy21@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Auf den Kuhlen Straße 19', 'NULL', '1 (11) 500 555-0118', '2013-12-25', '10+ Miles'], ['17198', '147', 'AW00017198', 'NULL', 'Cheryl', 'NULL', 'Jiménez', '0', '1950-04-17', 'S', 'NULL', 'F', 'cheryl7@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Hochstr 8444', 'NULL', '1 (11) 500 555-0165', '2012-09-24', '2-5 Miles'], ['17199', '163', 'AW00017199', 'NULL', 'Dennis', 'R', 'Zhou', '0', '1956-11-04', 'M', 'NULL', 'M', 'dennis10@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', 'Auf der Krone 9349', 'NULL', '1 (11) 500 555-0150', '2012-09-10', '2-5 Miles'], ['17200', '128', 'AW00017200', 'NULL', 'Russell', 'NULL', 'She', '0', '1951-04-02', 'S', 'NULL', 'M', 'russell4@adventure-works.com', '80000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Helsenbergbogen 6', 'NULL', '1 (11) 500 555-0139', '2013-04-24', '10+ Miles'], ['17201', '166', 'AW00017201', 'NULL', 'Vincent', 'R', 'Yang', '0', '1951-05-21', 'S', 'NULL', 'M', 'vincent5@adventure-works.com', '80000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Heiderplatz 928', 'NULL', '1 (11) 500 555-0153', '2013-12-24', '10+ Miles'], ['17202', '241', 'AW00017202', 'NULL', 'Deanna', 'NULL', 'Martinez', '0', '1950-10-15', 'M', 'NULL', 'F', 'deanna21@adventure-works.com', '110000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '9555 Wheel Ave..', 'NULL', '1 (11) 500 555-0144', '2012-06-29', '5-10 Miles'], ['17203', '261', 'AW00017203', 'NULL', 'Christine', 'W', 'Raje', '0', '1950-08-18', 'M', 'NULL', 'F', 'christine9@adventure-works.com', '130000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '9601 Santa Fe Dr.', 'NULL', '1 (11) 500 555-0133', '2012-06-10', '5-10 Miles'], ['17204', '262', 'AW00017204', 'NULL', 'Evelyn', 'J', 'Martinez', '0', '1950-11-24', 'S', 'NULL', 'F', 'evelyn18@adventure-works.com', '130000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '1023 Riviera Way', 'NULL', '1 (11) 500 555-0143', '2013-05-10', '0-1 Miles'], ['17205', '275', 'AW00017205', 'NULL', 'Lisa', 'J', 'Wang', '0', '1962-02-08', 'S', 'NULL', 'F', 'lisa4@adventure-works.com', '150000.00', '3', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '4', '2530 Seeno St', 'NULL', '1 (11) 500 555-0152', '2013-09-16', '0-1 Miles'], ['17206', '224', 'AW00017206', 'NULL', 'Spencer', 'NULL', 'Gonzales', '0', '1959-07-12', 'M', 'NULL', 'M', 'spencer19@adventure-works.com', '90000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '2121, quai de l´ Iton', 'NULL', '1 (11) 500 555-0130', '2012-04-21', '2-5 Miles'], ['17207', '279', 'AW00017207', 'NULL', 'Ian', 'V', 'Torres', '0', '1958-11-13', 'S', 'NULL', 'M', 'ian70@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '4316 Atrice Lane', 'NULL', '1 (11) 500 555-0111', '2012-06-15', '10+ Miles'], ['17208', '121', 'AW00017208', 'NULL', 'Jacob', 'NULL', 'Miller', '0', '1958-09-24', 'M', 'NULL', 'M', 'jacob6@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Wertheimer Straße 899', 'NULL', '1 (11) 500 555-0177', '2013-07-19', '10+ Miles'], ['17209', '120', 'AW00017209', 'NULL', 'Jacqueline', 'L', 'James', '0', '1959-02-17', 'M', 'NULL', 'F', 'jacqueline32@adventure-works.com', '90000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', 'Husemann Straße 4444', 'NULL', '1 (11) 500 555-0128', '2012-09-24', '2-5 Miles'], ['17210', '151', 'AW00017210', 'NULL', 'Karl', 'L', 'Deng', '0', '1976-08-05', 'S', 'NULL', 'M', 'karl1@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', 'Pascalstr 756', 'NULL', '1 (11) 500 555-0155', '2014-01-12', '0-1 Miles'], ['17211', '184', 'AW00017211', 'NULL', 'Virginia', 'NULL', 'Rodriguez', '0', '1959-03-11', 'M', 'NULL', 'F', 'virginia22@adventure-works.com', '100000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '88, rue des Berges', 'NULL', '1 (11) 500 555-0136', '2013-02-14', '10+ Miles'], ['17212', '190', 'AW00017212', 'NULL', 'Jacqueline', 'A', 'Coleman', '0', '1963-06-14', 'S', 'NULL', 'F', 'jacqueline6@adventure-works.com', '80000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '811bis, rue des Peupliers', 'NULL', '1 (11) 500 555-0182', '2013-11-27', '10+ Miles'], ['17213', '229', 'AW00017213', 'NULL', 'Calvin', 'J', 'Goel', '0', '1957-09-03', 'M', 'NULL', 'M', 'calvin18@adventure-works.com', '120000.00', '4', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '2545 Boxer Blvd', 'NULL', '1 (11) 500 555-0168', '2013-06-19', '10+ Miles'], ['17214', '251', 'AW00017214', 'NULL', 'Damien', 'M', 'Liu', '0', '1958-03-20', 'M', 'NULL', 'M', 'damien3@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '8781 Valley Crest Drive', 'NULL', '1 (11) 500 555-0189', '2012-06-06', '0-1 Miles'], ['17215', '147', 'AW00017215', 'NULL', 'Juan', 'L', 'Bell', '0', '1962-04-09', 'S', 'NULL', 'M', 'juan24@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Postfach 55 99 99', 'NULL', '1 (11) 500 555-0164', '2013-09-08', '10+ Miles'], ['17216', '189', 'AW00017216', 'NULL', 'Kathleen', 'NULL', 'Ramos', '0', '1955-12-08', 'M', 'NULL', 'F', 'kathleen18@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '6, avenue de Norvege', 'NULL', '1 (11) 500 555-0138', '2012-04-24', '5-10 Miles'], ['17217', '141', 'AW00017217', 'NULL', 'Raquel', 'T', 'Gill', '0', '1955-12-02', 'M', 'NULL', 'F', 'raquel10@adventure-works.com', '100000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '4', 'Carlsplatz 5', 'NULL', '1 (11) 500 555-0182', '2013-04-27', '10+ Miles'], ['17218', '233', 'AW00017218', 'NULL', 'Craig', 'G', 'Carlson', '0', '1955-09-17', 'M', 'NULL', 'M', 'craig17@adventure-works.com', '110000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '2', '2204 Terry Lynn Lane', 'NULL', '1 (11) 500 555-0113', '2012-06-13', '10+ Miles'], ['17219', '215', 'AW00017219', 'NULL', 'Kelsey', 'L', 'Sharma', '0', '1955-04-24', 'M', 'NULL', 'F', 'kelsey9@adventure-works.com', '80000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '27, place Beaubernard', 'NULL', '1 (11) 500 555-0177', '2013-08-27', '10+ Miles'], ['17220', '165', 'AW00017220', 'NULL', 'Glenn', 'R', 'Wang', '0', '1954-08-30', 'M', 'NULL', 'M', 'glenn2@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '3', 'Am Gallberg 6404', 'NULL', '1 (11) 500 555-0195', '2012-09-01', '5-10 Miles'], ['17221', '154', 'AW00017221', 'NULL', 'Ricky', 'M', 'Navarro', '0', '1955-04-01', 'M', 'NULL', 'M', 'ricky10@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '3', 'Königstr 381', 'NULL', '1 (11) 500 555-0136', '2012-09-03', '5-10 Miles'], ['17222', '214', 'AW00017222', 'NULL', 'Carolyn', 'A', 'Serrano', '0', '1953-12-23', 'M', 'NULL', 'F', 'carolyn37@adventure-works.com', '70000.00', '5', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '55, rue de Courtaboeuf', 'NULL', '1 (11) 500 555-0184', '2013-07-14', '10+ Miles'], ['17223', '222', 'AW00017223', 'NULL', 'Francis', 'NULL', 'Torres', '0', '1954-03-10', 'M', 'NULL', 'M', 'francis9@adventure-works.com', '80000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '26, rue Saint Denis', 'NULL', '1 (11) 500 555-0122', '2013-08-31', '10+ Miles'], ['17224', '175', 'AW00017224', 'NULL', 'Mandy', 'L', 'Li', '0', '1954-04-19', 'M', 'NULL', 'F', 'mandy4@adventure-works.com', '90000.00', '4', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '4', 'Im Himmelsweg 26', 'NULL', '1 (11) 500 555-0154', '2013-05-18', '10+ Miles'], ['17225', '273', 'AW00017225', 'NULL', 'Lawrence', 'C', 'Dominguez', '0', '1953-11-29', 'M', 'NULL', 'M', 'lawrence11@adventure-works.com', '160000.00', '5', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '6965 Appalachian Drive', 'NULL', '1 (11) 500 555-0173', '2012-06-05', '10+ Miles'], ['17226', '268', 'AW00017226', 'NULL', 'Gilbert', 'G', 'McDonald', '0', '1953-02-01', 'M', 'NULL', 'M', 'gilbert3@adventure-works.com', '130000.00', '5', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '4113 Marsh Meadow Way', 'NULL', '1 (11) 500 555-0166', '2013-04-20', '10+ Miles'], ['17227', '35', 'AW00017227', 'NULL', 'Erika', 'NULL', 'Gutierrez', '0', '1980-08-14', 'M', 'NULL', 'F', 'erika8@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '402 Saxon St.', 'NULL', '1 (11) 500 555-0133', '2013-04-29', '10+ Miles'], ['17228', '32', 'AW00017228', 'NULL', 'Krystal', 'NULL', 'Zimmerman', '0', '1981-05-20', 'S', 'NULL', 'F', 'krystal10@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '515 Bayview Ct.', 'NULL', '1 (11) 500 555-0199', '2013-07-28', '2-5 Miles'], ['17229', '27', 'AW00017229', 'NULL', 'Maria', 'NULL', 'Watson', '0', '1981-10-17', 'S', 'NULL', 'F', 'maria19@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '2007 Shady Ln.', 'NULL', '1 (11) 500 555-0118', '2011-03-08', '5-10 Miles'], ['17230', '23', 'AW00017230', 'NULL', 'Lance', 'C', 'Suarez', '0', '1981-06-11', 'M', 'NULL', 'M', 'lance19@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '199 Clymer Ct.', 'NULL', '1 (11) 500 555-0174', '2013-03-25', '10+ Miles'], ['17231', '28', 'AW00017231', 'NULL', 'Tina', 'NULL', 'Garcia', '0', '1979-12-29', 'S', 'NULL', 'F', 'tina16@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '6986 Saddlewood', 'NULL', '1 (11) 500 555-0174', '2013-06-11', '10+ Miles'], ['17232', '18', 'AW00017232', 'NULL', 'Walter', 'NULL', 'Jimenez', '0', '1980-12-02', 'M', 'NULL', 'M', 'walter18@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '7413 Flora Ave.', 'NULL', '1 (11) 500 555-0149', '2011-03-26', '10+ Miles'], ['17233', '32', 'AW00017233', 'NULL', 'Michele', 'NULL', 'Raman', '0', '1981-05-24', 'M', 'NULL', 'F', 'michele26@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '3162 Chaucer Drive', 'NULL', '1 (11) 500 555-0162', '2011-03-24', '10+ Miles'], ['17234', '33', 'AW00017234', 'NULL', 'Anna', 'M', 'Jenkins', '0', '1979-09-02', 'S', 'NULL', 'F', 'anna31@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '172 Turning Dr.', 'NULL', '1 (11) 500 555-0186', '2013-05-24', '10+ Miles'], ['17235', '34', 'AW00017235', 'NULL', 'Joshua', 'NULL', 'Jackson', '0', '1980-04-11', 'S', 'NULL', 'M', 'joshua13@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '7340 Green St.', 'NULL', '1 (11) 500 555-0129', '2013-06-06', '10+ Miles'], ['17236', '15', 'AW00017236', 'NULL', 'Harold', 'K', 'Chandra', '0', '1980-04-22', 'S', 'NULL', 'M', 'harold0@adventure-works.com', '70000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '4', '3114 Notre Dame Ave.', 'NULL', '1 (11) 500 555-0139', '2013-07-14', '10+ Miles'], ['17237', '26', 'AW00017237', 'NULL', 'Bridget', 'NULL', 'Shen', '0', '1980-04-11', 'S', 'NULL', 'F', 'bridget3@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '7340 Green St.', 'NULL', '1 (11) 500 555-0151', '2013-03-07', '10+ Miles'], ['17238', '34', 'AW00017238', 'NULL', 'Jordan', 'NULL', 'Patterson', '0', '1979-11-19', 'S', 'NULL', 'M', 'jordan7@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '3426 Serrana Ct', 'NULL', '1 (11) 500 555-0173', '2013-02-12', '10+ Miles'], ['17239', '33', 'AW00017239', 'NULL', 'Desiree', 'J', 'Romero', '0', '1979-02-20', 'M', 'NULL', 'F', 'desiree5@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '2', '3331 Buchanan St.', 'NULL', '1 (11) 500 555-0175', '2013-09-13', '10+ Miles'], ['17240', '12', 'AW00017240', 'NULL', 'Dustin', 'NULL', 'Luo', '0', '1979-01-12', 'M', 'NULL', 'M', 'dustin5@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '3', '5402 Panorama Drive', 'NULL', '1 (11) 500 555-0179', '2011-03-24', '10+ Miles'], ['17241', '26', 'AW00017241', 'NULL', 'Omar', 'W', 'Chander', '0', '1984-07-19', 'M', 'NULL', 'M', 'omar36@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', '7691 Mcneil Place', 'NULL', '1 (11) 500 555-0141', '2011-03-21', '10+ Miles'], ['17242', '27', 'AW00017242', 'NULL', 'Dale', 'K', 'Chande', '0', '1984-04-24', 'M', 'NULL', 'M', 'dale12@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', '3623 Bush Avenue', 'NULL', '1 (11) 500 555-0145', '2011-03-03', '10+ Miles'], ['17243', '20', 'AW00017243', 'NULL', 'Miranda', 'NULL', 'Flores', '0', '1977-10-06', 'M', 'NULL', 'F', 'miranda12@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '5166 Hitchcock', 'NULL', '1 (11) 500 555-0155', '2013-02-19', '10+ Miles'], ['17244', '29', 'AW00017244', 'NULL', 'Kellie', 'E', 'Dominguez', '0', '1983-02-21', 'M', 'NULL', 'F', 'kellie11@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '8270 Laverne Way', 'NULL', '1 (11) 500 555-0159', '2013-04-21', '10+ Miles'], ['17245', '7', 'AW00017245', 'NULL', 'Regina', 'NULL', 'Mehta', '0', '1976-10-08', 'M', 'NULL', 'F', 'regina13@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '2350 Winthrop St.', 'NULL', '1 (11) 500 555-0166', '2013-06-02', '10+ Miles'], ['17246', '2', 'AW00017246', 'NULL', 'Micah', 'NULL', 'Wu', '0', '1976-07-08', 'S', 'NULL', 'M', 'micah17@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '3537 Pheasant Circle', 'NULL', '1 (11) 500 555-0198', '2011-03-08', '10+ Miles'], ['17247', '18', 'AW00017247', 'NULL', 'Michael', 'NULL', 'Moore', '0', '1977-04-19', 'M', 'NULL', 'M', 'michael40@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '6629 Polson Circle', 'NULL', '1 (11) 500 555-0134', '2011-03-10', '10+ Miles'], ['17248', '30', 'AW00017248', 'NULL', 'Alicia', 'L', 'Beck', '0', '1977-08-31', 'M', 'NULL', 'F', 'alicia16@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '6231 Altura Drive', 'NULL', '1 (11) 500 555-0113', '2011-03-13', '10+ Miles'], ['17249', '17', 'AW00017249', 'NULL', 'Carl', 'S', 'Goel', '0', '1978-05-09', 'M', 'NULL', 'M', 'carl18@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '2515 Live Oak', 'NULL', '1 (11) 500 555-0173', '2011-03-14', '10+ Miles'], ['17250', '39', 'AW00017250', 'NULL', 'Alicia', 'W', 'She', '0', '1983-03-10', 'M', 'NULL', 'F', 'alicia0@adventure-works.com', '150000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '9665 Geneva Ave.', 'NULL', '1 (11) 500 555-0191', '2013-07-03', '10+ Miles'], ['17251', '9', 'AW00017251', 'NULL', 'Tonya', 'C', 'Nara', '0', '1982-04-09', 'M', 'NULL', 'F', 'tonya16@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '2961 Amending Road', 'NULL', '1 (11) 500 555-0150', '2013-02-07', '10+ Miles'], ['17252', '34', 'AW00017252', 'NULL', 'Colleen', 'NULL', 'Zhu', '0', '1977-05-13', 'M', 'NULL', 'F', 'colleen14@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '5507 Worth Ct.', 'NULL', '1 (11) 500 555-0133', '2013-06-30', '10+ Miles'], ['17253', '13', 'AW00017253', 'NULL', 'Roy', 'M', 'Suri', '0', '1976-09-29', 'M', 'NULL', 'M', 'roy0@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '4557 Rolling Hill Way', 'NULL', '1 (11) 500 555-0164', '2013-04-05', '10+ Miles'], ['17254', '11', 'AW00017254', 'NULL', 'Margaret', 'NULL', 'Liang', '0', '1977-05-11', 'M', 'NULL', 'F', 'margaret23@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '1102 Ravenwood', 'NULL', '1 (11) 500 555-0126', '2013-02-20', '10+ Miles'], ['17255', '6', 'AW00017255', 'NULL', 'Carly', 'J', 'Nath', '0', '1981-08-30', 'M', 'NULL', 'F', 'carly16@adventure-works.com', '100000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '5884 Madhatter Circle', 'NULL', '1 (11) 500 555-0145', '2011-03-19', '10+ Miles'], ['17256', '31', 'AW00017256', 'NULL', 'Noah', 'NULL', 'Flores', '0', '1975-10-11', 'M', 'NULL', 'M', 'noah9@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '5522 Roundtree Place', 'NULL', '1 (11) 500 555-0159', '2011-03-30', '10+ Miles'], ['17257', '36', 'AW00017257', 'NULL', 'Darren', 'M', 'Rana', '0', '1975-11-21', 'M', 'NULL', 'M', 'darren14@adventure-works.com', '130000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '1296 Bishop Court', 'NULL', '1 (11) 500 555-0161', '2011-03-17', '10+ Miles'], ['17258', '35', 'AW00017258', 'NULL', 'Fernando', 'NULL', 'Green', '0', '1977-02-07', 'M', 'NULL', 'M', 'fernando30@adventure-works.com', '110000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '1583 Blackridge Drive', 'NULL', '1 (11) 500 555-0116', '2011-03-19', '10+ Miles'], ['17259', '19', 'AW00017259', 'NULL', 'Trisha', 'V', 'Wang', '0', '1982-05-01', 'M', 'NULL', 'F', 'trisha19@adventure-works.com', '110000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Management', 'Gestión', 'Direction', '1', '4', '9668 Fieldbrook Pl', 'NULL', '1 (11) 500 555-0145', '2011-03-15', '10+ Miles'], ['17260', '543', 'AW00017260', 'NULL', 'Sean', 'B', 'King', '0', '1970-06-05', 'M', 'NULL', 'M', 'sean50@adventure-works.com', '90000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '3347 Quigley Street', 'NULL', '549-555-0144', '2013-03-20', '0-1 Miles'], ['17261', '648', 'AW00017261', 'NULL', 'Kyle', 'C', 'Shan', '0', '1966-02-15', 'M', 'NULL', 'M', 'kyle27@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5871 Brown Drive', 'NULL', '344-555-0150', '2013-06-19', '2-5 Miles'], ['17262', '298', 'AW00017262', 'NULL', 'Kristy', 'B', 'Martin', '0', '1966-04-24', 'M', 'NULL', 'F', 'kristy0@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4566 Bermad Drive', 'NULL', '708-555-0182', '2013-05-30', '2-5 Miles'], ['17263', '54', 'AW00017263', 'NULL', 'Julia', 'E', 'Flores', '0', '1970-08-08', 'M', 'NULL', 'F', 'julia78@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8468 Buena Vista', 'NULL', '361-555-0138', '2013-08-17', '2-5 Miles'], ['17264', '632', 'AW00017264', 'NULL', 'Ian', 'L', 'Smith', '0', '1964-09-19', 'S', 'NULL', 'M', 'ian1@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '9713 Pome Court', 'NULL', '723-555-0183', '2013-11-21', '2-5 Miles'], ['17265', '329', 'AW00017265', 'NULL', 'Grace', 'C', 'Flores', '0', '1964-07-09', 'M', 'NULL', 'F', 'grace60@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '3', '6621 Polaris Dr.', 'NULL', '278-555-0159', '2013-09-02', '10+ Miles'], ['17266', '638', 'AW00017266', 'NULL', 'Elijah', 'R', 'Hall', '0', '1964-12-30', 'M', 'NULL', 'M', 'elijah48@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '3', '5414 Stonehedge Dr.', 'NULL', '627-555-0146', '2013-09-18', '10+ Miles'], ['17267', '348', 'AW00017267', 'NULL', 'Abigail', 'NULL', 'Stewart', '0', '1969-04-17', 'M', 'NULL', 'F', 'abigail2@adventure-works.com', '80000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7772 Golden Meadow', 'NULL', '110-555-0153', '2013-11-09', '2-5 Miles'], ['17268', '612', 'AW00017268', 'NULL', 'Alyssa', 'NULL', 'Hughes', '0', '1964-03-31', 'M', 'NULL', 'F', 'alyssa57@adventure-works.com', '80000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5854 Onley Dr', 'NULL', '975-555-0124', '2013-11-18', '2-5 Miles'], ['17269', '631', 'AW00017269', 'NULL', 'Kevin', 'NULL', 'Russell', '0', '1964-05-13', 'S', 'NULL', 'M', 'kevin22@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '1029 Birchwood Dr', 'NULL', '131-555-0124', '2013-06-02', '0-1 Miles'], ['17270', '352', 'AW00017270', 'NULL', 'Jack', 'NULL', 'Parker', '0', '1963-09-30', 'S', 'NULL', 'M', 'jack34@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5659 Beauer Lane', 'NULL', '320-555-0121', '2013-06-24', '0-1 Miles'], ['17271', '641', 'AW00017271', 'NULL', 'Sarah', 'NULL', 'Griffin', '0', '1974-10-20', 'M', 'NULL', 'F', 'sarah45@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4341 Lagoon Court', 'NULL', '307-555-0166', '2013-06-10', '0-1 Miles'], ['17272', '539', 'AW00017272', 'NULL', 'Mary', 'D', 'Hernandez', '0', '1964-01-31', 'S', 'NULL', 'F', 'mary31@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '563 Coggind Drive', 'NULL', '989-555-0120', '2013-06-16', '2-5 Miles'], ['17273', '536', 'AW00017273', 'NULL', 'Jonathon', 'F', 'Torres', '0', '1963-11-06', 'M', 'NULL', 'M', 'jonathon9@adventure-works.com', '70000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '2648 Santa Ana Drive', 'NULL', '251-555-0199', '2013-12-10', '0-1 Miles'], ['17274', '611', 'AW00017274', 'NULL', 'Arturo', 'E', 'Lu', '0', '1969-11-12', 'M', 'NULL', 'M', 'arturo12@adventure-works.com', '70000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '560 Nottingham Place', 'NULL', '697-555-0134', '2013-05-07', '2-5 Miles'], ['17275', '314', 'AW00017275', 'NULL', 'Ian', 'N', 'Sanders', '0', '1964-06-21', 'M', 'NULL', 'M', 'ian68@adventure-works.com', '80000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6066 Laguna Street', 'NULL', '962-555-0118', '2013-03-10', '0-1 Miles'], ['17276', '627', 'AW00017276', 'NULL', 'Elijah', 'S', 'Jenkins', '0', '1935-06-01', 'S', 'NULL', 'M', 'elijah10@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '2874 Via Del Verdes', 'NULL', '512-555-0128', '2013-01-31', '2-5 Miles'], ['17277', '11', 'AW00017277', 'NULL', 'Nichole', 'A', 'Goel', '0', '1980-11-12', 'M', 'NULL', 'F', 'nichole19@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '2511 Via Appia', 'NULL', '1 (11) 500 555-0184', '2011-03-30', '0-1 Miles'], ['17278', '13', 'AW00017278', 'NULL', 'Isabella', 'L', 'Price', '0', '1986-05-05', 'M', 'NULL', 'F', 'isabella11@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '3241 West Slough Rd.', 'NULL', '1 (11) 500 555-0147', '2011-03-23', '0-1 Miles'], ['17279', '4', 'AW00017279', 'NULL', 'Tanya', 'NULL', 'Alvarez', '0', '1974-01-30', 'M', 'NULL', 'F', 'tanya0@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5969 Meadowbrook Court', 'NULL', '1 (11) 500 555-0126', '2011-03-27', '0-1 Miles'], ['17280', '14', 'AW00017280', 'NULL', 'Deanna', 'P', 'Mehta', '0', '1979-11-09', 'M', 'NULL', 'F', 'deanna17@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6398 Joyce Dr', 'NULL', '1 (11) 500 555-0190', '2011-03-10', '2-5 Miles'], ['17281', '25', 'AW00017281', 'NULL', 'Francis', 'E', 'Vazquez', '0', '1973-09-04', 'S', 'NULL', 'M', 'francis12@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '154 Kentucky Dr.', 'NULL', '1 (11) 500 555-0119', '2013-09-02', '0-1 Miles'], ['17282', '33', 'AW00017282', 'NULL', 'Alyssa', 'M', 'Alexander', '0', '1976-01-31', 'M', 'NULL', 'F', 'alyssa64@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '4654 Blackridge Drive', 'NULL', '1 (11) 500 555-0184', '2013-09-09', '0-1 Miles'], ['17283', '17', 'AW00017283', 'NULL', 'Henry', 'E', 'Madan', '0', '1973-12-22', 'S', 'NULL', 'M', 'henry8@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6632 Johnson Road', 'NULL', '1 (11) 500 555-0126', '2013-07-15', '0-1 Miles'], ['17284', '2', 'AW00017284', 'NULL', 'Gerald', 'K', 'Martin', '0', '1974-01-02', 'S', 'NULL', 'M', 'gerald8@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9800 American Beauty Dr.', 'NULL', '1 (11) 500 555-0197', '2013-02-05', '2-5 Miles'], ['17285', '10', 'AW00017285', 'NULL', 'Clayton', 'G', 'Deng', '0', '1974-01-30', 'M', 'NULL', 'M', 'clayton21@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4292 Oak Street', 'NULL', '1 (11) 500 555-0119', '2011-03-16', '2-5 Miles'], ['17286', '33', 'AW00017286', 'NULL', 'Randall', 'M', 'Rubio', '0', '1978-02-10', 'M', 'NULL', 'M', 'randall23@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3064 Fern Leaf Lane', 'NULL', '1 (11) 500 555-0117', '2011-03-27', '2-5 Miles'], ['17287', '24', 'AW00017287', 'NULL', 'Billy', 'M', 'Suarez', '0', '1978-09-06', 'M', 'NULL', 'M', 'billy19@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '2989 Silverado Dr', 'NULL', '1 (11) 500 555-0117', '2013-06-13', '10+ Miles'], ['17288', '13', 'AW00017288', 'NULL', 'Dwayne', 'R', 'Torres', '0', '1975-03-19', 'S', 'NULL', 'M', 'dwayne11@adventure-works.com', '120000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '4641 Brown St.', 'NULL', '1 (11) 500 555-0161', '2011-03-30', '0-1 Miles'], ['17289', '31', 'AW00017289', 'NULL', 'Mallory', 'V', 'Diaz', '0', '1972-11-30', 'M', 'NULL', 'F', 'mallory10@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '7595 York Dr', 'NULL', '1 (11) 500 555-0113', '2013-04-15', '10+ Miles'], ['17290', '24', 'AW00017290', 'NULL', 'Jenny', 'NULL', 'Becker', '0', '1972-11-11', 'S', 'NULL', 'F', 'jenny43@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '222 Denkinger Road', 'NULL', '1 (11) 500 555-0193', '2013-05-03', '0-1 Miles'], ['17291', '26', 'AW00017291', 'NULL', 'Jorge', 'NULL', 'Huang', '0', '1971-08-18', 'S', 'NULL', 'M', 'jorge7@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '7266 Corcoran Road', 'NULL', '1 (11) 500 555-0116', '2013-02-04', '0-1 Miles'], ['17292', '19', 'AW00017292', 'NULL', 'Kellie', 'NULL', 'Gill', '0', '1971-11-29', 'S', 'NULL', 'F', 'kellie12@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '1697 Sullivan Ave', 'NULL', '1 (11) 500 555-0167', '2013-06-18', '0-1 Miles'], ['17293', '40', 'AW00017293', 'NULL', 'Alexandra', 'B', 'Allen', '0', '1972-05-07', 'M', 'NULL', 'F', 'alexandra90@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '1053 Rain Drop Circle', 'NULL', '1 (11) 500 555-0117', '2011-03-30', '2-5 Miles'], ['17294', '23', 'AW00017294', 'NULL', 'Ruth', 'S', 'Arun', '0', '1971-10-17', 'M', 'NULL', 'F', 'ruth11@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '1773 Royal Palm Lane', 'NULL', '1 (11) 500 555-0115', '2011-03-09', '2-5 Miles'], ['17295', '17', 'AW00017295', 'NULL', 'Victor', 'NULL', 'Sanz', '0', '1977-01-19', 'M', 'NULL', 'M', 'victor20@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '1154 Regina Lane', 'NULL', '1 (11) 500 555-0159', '2011-03-14', '2-5 Miles'], ['17296', '36', 'AW00017296', 'NULL', 'Joanna', 'L', 'Johnston', '0', '1971-06-01', 'S', 'NULL', 'F', 'joanna4@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9752 Jeanne Circle', 'NULL', '1 (11) 500 555-0173', '2013-08-27', '0-1 Miles'], ['17297', '8', 'AW00017297', 'NULL', 'Tommy', 'NULL', 'Kumar', '0', '1973-10-25', 'S', 'NULL', 'M', 'tommy4@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1880 Birchwood', 'NULL', '1 (11) 500 555-0145', '2013-03-07', '5-10 Miles'], ['17298', '36', 'AW00017298', 'NULL', 'Lucas', 'NULL', 'Peterson', '0', '1973-11-13', 'S', 'NULL', 'M', 'lucas77@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7224 Grant St.', 'NULL', '1 (11) 500 555-0119', '2013-06-29', '5-10 Miles'], ['17299', '34', 'AW00017299', 'NULL', 'Jaclyn', 'D', 'Ferrier', '0', '1971-01-31', 'S', 'NULL', 'F', 'jaclyn44@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '563 Coggind Drive', 'NULL', '1 (11) 500 555-0117', '2011-03-09', '5-10 Miles'], ['17300', '34', 'AW00017300', 'NULL', 'Ivan', 'E', 'Sai', '0', '1976-01-17', 'S', 'NULL', 'M', 'ivan4@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9351 Terra Calitina', 'NULL', '1 (11) 500 555-0174', '2013-05-26', '5-10 Miles'], ['17301', '12', 'AW00017301', 'NULL', 'Nicolas', 'N', 'Raji', '0', '1969-09-30', 'S', 'NULL', 'M', 'nicolas19@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '8943 Mt. Washington', 'NULL', '1 (11) 500 555-0162', '2013-09-24', '5-10 Miles'], ['17302', '16', 'AW00017302', 'NULL', 'Ruth', 'D', 'Vance', '0', '1975-04-03', 'S', 'NULL', 'F', 'ruth8@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4751 Grant Street', 'NULL', '1 (11) 500 555-0118', '2013-02-19', '5-10 Miles'], ['17303', '3', 'AW00017303', 'NULL', 'Terrence', 'R', 'Tang', '0', '1981-04-13', 'M', 'NULL', 'M', 'terrence4@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '2313 Santa Cruz Drive', 'NULL', '1 (11) 500 555-0159', '2013-08-18', '0-1 Miles'], ['17304', '23', 'AW00017304', 'NULL', 'Haley', 'L', 'Campbell', '0', '1974-11-15', 'S', 'NULL', 'F', 'haley46@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '8394 Summertime Dr.', 'NULL', '1 (11) 500 555-0142', '2013-09-18', '5-10 Miles'], ['17305', '7', 'AW00017305', 'NULL', 'Neil', 'NULL', 'Torres', '0', '1968-09-03', 'M', 'NULL', 'M', 'neil11@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '9959 Stonewood Dr.', 'NULL', '1 (11) 500 555-0117', '2013-01-30', '5-10 Miles'], ['17306', '39', 'AW00017306', 'NULL', 'Edgar', 'E', 'Prasad', '0', '1968-07-12', 'S', 'NULL', 'M', 'edgar10@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '3662 Sequoia Drive', 'NULL', '1 (11) 500 555-0195', '2013-03-20', '0-1 Miles'], ['17307', '8', 'AW00017307', 'NULL', 'Warren', 'NULL', 'Chande', '0', '1973-05-09', 'M', 'NULL', 'M', 'warren4@adventure-works.com', '90000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '9265 Village Road', 'NULL', '1 (11) 500 555-0143', '2013-02-22', '0-1 Miles'], ['17308', '33', 'AW00017308', 'NULL', 'Deborah', 'K', 'Kumar', '0', '1973-08-11', 'M', 'NULL', 'F', 'deborah12@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1798 Norfolk Rd', 'NULL', '1 (11) 500 555-0164', '2011-03-06', '0-1 Miles'], ['17309', '38', 'AW00017309', 'NULL', 'Amy', 'E', 'Ma', '0', '1967-11-01', 'S', 'NULL', 'F', 'amy22@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6514 Las Juntas Way', 'NULL', '1 (11) 500 555-0122', '2011-03-02', '5-10 Miles'], ['17310', '37', 'AW00017310', 'NULL', 'Alejandro', 'NULL', 'Wang', '0', '1967-01-25', 'M', 'NULL', 'M', 'alejandro3@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8364 Gold Crest Ct.', 'NULL', '1 (11) 500 555-0175', '2011-03-02', '0-1 Miles'], ['17311', '36', 'AW00017311', 'NULL', 'Kimberly', 'D', 'Reed', '0', '1972-05-02', 'S', 'NULL', 'F', 'kimberly21@adventure-works.com', '100000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '8138 Golf Club Road', 'NULL', '1 (11) 500 555-0164', '2013-11-23', '5-10 Miles'], ['17312', '26', 'AW00017312', 'NULL', 'Mayra', 'J', 'Kovar', '0', '1971-09-25', 'S', 'NULL', 'F', 'mayra3@adventure-works.com', '110000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '206 Stonewood Ct.', 'NULL', '1 (11) 500 555-0121', '2011-03-15', '0-1 Miles'], ['17313', '17', 'AW00017313', 'NULL', 'Raquel', 'NULL', 'Alonso', '0', '1971-08-29', 'S', 'NULL', 'F', 'raquel5@adventure-works.com', '110000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '5474 Limewood Pl.', 'NULL', '1 (11) 500 555-0175', '2013-06-17', '1-2 Miles'], ['17314', '19', 'AW00017314', 'NULL', 'Lisa', 'S', 'Guo', '0', '1971-10-17', 'S', 'NULL', 'F', 'lisa21@adventure-works.com', '110000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '7464 Mozden Lane', 'NULL', '1 (11) 500 555-0133', '2013-11-13', '1-2 Miles'], ['17315', '16', 'AW00017315', 'NULL', 'Carolyn', 'L', 'Munoz', '0', '1966-06-19', 'M', 'NULL', 'F', 'carolyn28@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4566 La Jolla', 'NULL', '1 (11) 500 555-0164', '2011-03-03', '0-1 Miles'], ['17316', '5', 'AW00017316', 'NULL', 'Marvin', 'E', 'Serrano', '0', '1971-11-11', 'M', 'NULL', 'M', 'marvin17@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4216 Seaview Ave.', 'NULL', '1 (11) 500 555-0185', '2013-11-04', '5-10 Miles'], ['17317', '21', 'AW00017317', 'NULL', 'Stacey', 'J', 'Zeng', '0', '1970-12-10', 'S', 'NULL', 'F', 'stacey23@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '8127 Sherbear Dr.', 'NULL', '1 (11) 500 555-0131', '2013-08-12', '5-10 Miles'], ['17318', '6', 'AW00017318', 'NULL', 'Tiffany', 'R', 'Zhang', '0', '1976-12-14', 'M', 'NULL', 'F', 'tiffany0@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '851 Summerfield Drive', 'NULL', '1 (11) 500 555-0125', '2013-04-01', '0-1 Miles'], ['17319', '2', 'AW00017319', 'NULL', 'Brianna', 'J', 'Johnson', '0', '1969-06-30', 'S', 'NULL', 'F', 'brianna1@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7458 Windmill Way', 'NULL', '1 (11) 500 555-0115', '2013-09-17', '5-10 Miles'], ['17320', '3', 'AW00017320', 'NULL', 'Alan', 'NULL', 'Zhu', '0', '1975-09-21', 'S', 'NULL', 'M', 'alan17@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '8995 Stanford St.', 'NULL', '1 (11) 500 555-0115', '2011-03-02', '0-1 Miles'], ['17321', '24', 'AW00017321', 'NULL', 'Kate', 'NULL', 'Kumar', '0', '1975-03-10', 'M', 'NULL', 'F', 'kate6@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '8674 Marina Vill Pkwy.', 'NULL', '1 (11) 500 555-0149', '2013-10-13', '0-1 Miles'], ['17322', '16', 'AW00017322', 'NULL', 'Derek', 'NULL', 'Beck', '0', '1975-05-17', 'S', 'NULL', 'M', 'derek18@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9476 Hill Top Rd.', 'NULL', '1 (11) 500 555-0123', '2013-05-11', '5-10 Miles'], ['17323', '32', 'AW00017323', 'NULL', 'Rafael', 'L', 'Jai', '0', '1981-02-16', 'M', 'NULL', 'M', 'rafael35@adventure-works.com', '100000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1286 Cincerto Circle', 'NULL', '1 (11) 500 555-0174', '2013-03-22', '10+ Miles'], ['17324', '33', 'AW00017324', 'NULL', 'Tonya', 'NULL', 'Xu', '0', '1965-05-15', 'M', 'NULL', 'F', 'tonya5@adventure-works.com', '100000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2542 Pinecrest Court', 'NULL', '1 (11) 500 555-0176', '2013-08-24', '10+ Miles'], ['17325', '20', 'AW00017325', 'NULL', 'Paige', 'C', 'Henderson', '0', '1969-05-25', 'M', 'NULL', 'F', 'paige5@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '328 Dallas Drive', 'NULL', '1 (11) 500 555-0181', '2013-03-29', '0-1 Miles'], ['17326', '21', 'AW00017326', 'Mr.', 'Paul', 'J.', 'Shakespear', '0', '1974-08-11', 'S', 'NULL', 'F', 'paul4@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2368 Olivera Rd', 'NULL', '880-555-0100', '2011-03-30', '5-10 Miles'], ['17327', '28', 'AW00017327', 'NULL', 'Jamie', 'NULL', 'Zhou', '0', '1968-12-24', 'S', 'NULL', 'F', 'jamie11@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '2192 Pacifica Ave', 'NULL', '1 (11) 500 555-0169', '2013-07-13', '5-10 Miles'], ['17328', '40', 'AW00017328', 'NULL', 'Michelle', 'E', 'Cox', '0', '1969-03-02', 'S', 'NULL', 'F', 'michelle11@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '9100 Main Street', 'NULL', '1 (11) 500 555-0119', '2011-03-01', '0-1 Miles'], ['17329', '2', 'AW00017329', 'NULL', 'Jasmine', 'NULL', 'Wilson', '0', '1968-04-24', 'M', 'NULL', 'F', 'jasmine6@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4593 Mendouno Dr.', 'NULL', '1 (11) 500 555-0155', '2011-03-23', '0-1 Miles'], ['17330', '9', 'AW00017330', 'NULL', 'Latoya', 'W', 'Becker', '0', '1973-08-11', 'M', 'NULL', 'F', 'latoya19@adventure-works.com', '70000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '9684 Morello Heights Circle', 'NULL', '1 (11) 500 555-0140', '2013-06-18', '0-1 Miles'], ['17331', '38', 'AW00017331', 'NULL', 'Keith', 'NULL', 'Stone', '0', '1973-01-02', 'M', 'NULL', 'M', 'keith4@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7026 Hooftrail Way', 'NULL', '1 (11) 500 555-0139', '2013-06-07', '0-1 Miles'], ['17332', '4', 'AW00017332', 'NULL', 'Jonathan', 'A', 'Green', '0', '1963-09-30', 'S', 'NULL', 'M', 'jonathan42@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '8703 Carleton Street', 'NULL', '1 (11) 500 555-0144', '2011-03-18', '2-5 Miles'], ['17333', '40', 'AW00017333', 'NULL', 'Misty', 'NULL', 'Chander', '0', '1968-04-13', 'S', 'NULL', 'F', 'misty17@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2050 Glazier Dr', 'NULL', '1 (11) 500 555-0145', '2013-07-29', '5-10 Miles'], ['17334', '34', 'AW00017334', 'NULL', 'Luis', 'P', 'Lopez', '0', '1963-01-12', 'M', 'NULL', 'M', 'luis52@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1312 Skycrest Drive', 'NULL', '1 (11) 500 555-0168', '2011-03-21', '0-1 Miles'], ['17335', '298', 'AW00017335', 'NULL', 'Miguel', 'NULL', 'Gonzales', '0', '1981-11-23', 'M', 'NULL', 'M', 'miguel63@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5855 W. Cypress Road', 'NULL', '574-555-0134', '2013-04-23', '5-10 Miles'], ['17336', '312', 'AW00017336', 'NULL', 'Chase', 'A', 'Sanchez', '0', '1981-10-30', 'S', 'NULL', 'M', 'chase18@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6425 Citrus Ave.', 'NULL', '112-555-0136', '2013-02-25', '0-1 Miles'], ['17337', '70', 'AW00017337', 'NULL', 'Marcus', 'T', 'Davis', '0', '1981-02-15', 'S', 'NULL', 'M', 'marcus5@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5609 Huron Dr', 'NULL', '958-555-0172', '2013-03-07', '5-10 Miles'], ['17338', '62', 'AW00017338', 'NULL', 'Jordyn', 'NULL', 'Long', '0', '1981-08-16', 'M', 'NULL', 'F', 'jordyn9@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5160 Mt. Wilson Way', 'NULL', '257-555-0150', '2013-08-22', '5-10 Miles'], ['17339', '536', 'AW00017339', 'NULL', 'Ian', 'S', 'Hayes', '0', '1982-05-09', 'S', 'NULL', 'M', 'ian63@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '968 W Lake Dr.', 'NULL', '594-555-0195', '2013-04-10', '0-1 Miles'], ['17340', '536', 'AW00017340', 'NULL', 'Joy', 'J', 'Hernandez', '0', '1985-08-02', 'S', 'NULL', 'F', 'joy4@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6332 N. Thompson Rd', 'NULL', '483-555-0113', '2013-11-10', '5-10 Miles'], ['17341', '609', 'AW00017341', 'NULL', 'Andy', 'NULL', 'Alonso', '0', '1986-05-15', 'S', 'NULL', 'M', 'andy12@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4082 Roslyn Road', 'NULL', '795-555-0160', '2013-09-04', '0-1 Miles'], ['17342', '616', 'AW00017342', 'NULL', 'William', 'NULL', 'Jones', '0', '1983-11-24', 'S', 'NULL', 'M', 'william19@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '422 Quartermaster', 'NULL', '323-555-0126', '2013-04-04', '5-10 Miles'], ['17343', '648', 'AW00017343', 'NULL', 'Tristan', 'L', 'Price', '0', '1984-04-12', 'S', 'NULL', 'M', 'tristan0@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6462 Grant St.', 'NULL', '554-555-0160', '2013-05-20', '0-1 Miles'], ['17344', '347', 'AW00017344', 'NULL', 'Timothy', 'NULL', 'Kelly', '0', '1984-05-23', 'S', 'NULL', 'M', 'timothy4@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9918 Scottsdale Rd.', 'NULL', '193-555-0189', '2013-10-12', '5-10 Miles'], ['17345', '60', 'AW00017345', 'NULL', 'Jeremiah', 'E', 'Martin', '0', '1984-02-16', 'M', 'NULL', 'M', 'jeremiah6@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4277 La Cruz', 'NULL', '929-555-0133', '2013-09-02', '5-10 Miles'], ['17346', '20', 'AW00017346', 'NULL', 'Edgar', 'O', 'Lopez', '0', '1943-08-07', 'M', 'NULL', 'M', 'edgar17@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6949 Brookview Drive', 'NULL', '1 (11) 500 555-0163', '2013-05-18', '0-1 Miles'], ['17347', '53', 'AW00017347', 'NULL', 'Sara', 'NULL', 'Stewart', '0', '1983-05-08', 'S', 'NULL', 'F', 'sara28@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '1510 Sharon Dr.', 'NULL', '783-555-0110', '2013-06-03', '5-10 Miles'], ['17348', '50', 'AW00017348', 'NULL', 'Ariana', 'NULL', 'Cooper', '0', '1983-04-22', 'S', 'NULL', 'F', 'ariana16@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7396 Maine Dr.', 'NULL', '813-555-0132', '2013-05-14', '5-10 Miles'], ['17349', '607', 'AW00017349', 'NULL', 'Cassie', 'M', 'Kennedy', '0', '1985-05-25', 'M', 'NULL', 'F', 'cassie6@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9648 Madhatter Circle', 'NULL', '598-555-0144', '2013-10-17', '5-10 Miles'], ['17350', '14', 'AW00017350', 'NULL', 'Ebony', 'R', 'Dominguez', '0', '1950-03-10', 'S', 'NULL', 'F', 'ebony34@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5026 Clearbrook Drive', 'NULL', '1 (11) 500 555-0118', '2013-02-27', '5-10 Miles'], ['17351', '34', 'AW00017351', 'NULL', 'Terrence', 'N', 'Sharma', '0', '1947-02-16', 'M', 'NULL', 'M', 'terrence9@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5842 Standing Grove Dr.', 'NULL', '1 (11) 500 555-0182', '2011-03-18', '5-10 Miles'], ['17352', '30', 'AW00017352', 'NULL', 'Drew', 'NULL', 'Goel', '0', '1947-11-07', 'M', 'NULL', 'M', 'drew20@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '253 Merry Drive', 'NULL', '1 (11) 500 555-0163', '2011-04-17', '5-10 Miles'], ['17353', '38', 'AW00017353', 'NULL', 'Bruce', 'D', 'Navarro', '0', '1948-07-10', 'M', 'NULL', 'M', 'bruce31@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '9554 Duke Way', 'NULL', '1 (11) 500 555-0194', '2011-04-11', '0-1 Miles'], ['17354', '39', 'AW00017354', 'NULL', 'Ivan', 'L', 'Garcia', '0', '1949-02-07', 'M', 'NULL', 'M', 'ivan11@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '9315 Green Valley Road', 'NULL', '1 (11) 500 555-0127', '2011-04-04', '5-10 Miles'], ['17355', '22', 'AW00017355', 'NULL', 'Shaun', 'M', 'Black', '0', '1950-03-05', 'M', 'NULL', 'M', 'shaun20@adventure-works.com', '10000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4442 G Street', 'NULL', '1 (11) 500 555-0119', '2013-05-15', '5-10 Miles'], ['17356', '542', 'AW00017356', 'NULL', 'Mary', 'E', 'Evans', '0', '1982-05-11', 'S', 'NULL', 'F', 'mary14@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6968 Hobby Court', 'NULL', '943-555-0127', '2014-01-11', '1-2 Miles'], ['17357', '631', 'AW00017357', 'NULL', 'Brandon', 'L', 'Miller', '0', '1981-09-18', 'M', 'NULL', 'M', 'brandon45@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '121 Rotherham Dr.', 'NULL', '781-555-0185', '2013-04-27', '5-10 Miles'], ['17358', '383', 'AW00017358', 'NULL', 'Sydney', 'NULL', 'Bell', '0', '1981-08-25', 'M', 'NULL', 'F', 'sydney7@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6742 Clover Road', 'NULL', '180-555-0186', '2013-06-14', '5-10 Miles'], ['17359', '637', 'AW00017359', 'NULL', 'MarÃ\xada', 'NULL', 'Flores', '0', '1980-09-04', 'M', 'NULL', 'F', 'marÃ\xada35@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8629 Pepper Place', 'NULL', '649-555-0177', '2013-03-05', '5-10 Miles'], ['17360', '60', 'AW00017360', 'NULL', 'Kyle', 'NULL', 'Lal', '0', '1980-07-03', 'M', 'NULL', 'M', 'kyle25@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7753 Lunar Lane', 'NULL', '209-555-0144', '2013-05-27', '5-10 Miles'], ['17361', '609', 'AW00017361', 'NULL', 'Blake', 'M', 'Harris', '0', '1979-03-09', 'M', 'NULL', 'M', 'blake13@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8000 Crane Court', 'NULL', '919-555-0129', '2013-06-06', '5-10 Miles'], ['17362', '631', 'AW00017362', 'NULL', 'Miguel', 'NULL', 'Collins', '0', '1977-07-31', 'M', 'NULL', 'M', 'miguel45@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '7 Olive St', 'NULL', '827-555-0134', '2013-11-24', '1-2 Miles'], ['17363', '329', 'AW00017363', 'NULL', 'Benjamin', 'NULL', 'Harris', '0', '1974-04-08', 'M', 'NULL', 'M', 'benjamin50@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '6878 D Mt. Hood Circle', 'NULL', '280-555-0153', '2013-11-15', '1-2 Miles'], ['17364', '334', 'AW00017364', 'NULL', 'Ian', 'A', 'Perry', '0', '1979-02-07', 'M', 'NULL', 'M', 'ian48@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '7434 Weaver Lane', 'NULL', '328-555-0115', '2013-11-18', '0-1 Miles'], ['17365', '623', 'AW00017365', 'NULL', 'Thomas', 'NULL', 'Patterson', '0', '1973-12-21', 'M', 'NULL', 'M', 'thomas12@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '7587 Providence Dr', 'NULL', '115-555-0113', '2013-11-12', '0-1 Miles'], ['17366', '322', 'AW00017366', 'NULL', 'Devin', 'NULL', 'Harris', '0', '1974-05-16', 'M', 'NULL', 'M', 'devin12@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '6171 Golf Club Rd', 'NULL', '528-555-0114', '2013-03-15', '1-2 Miles'], ['17367', '545', 'AW00017367', 'NULL', 'Trinity', 'NULL', 'Cooper', '0', '1969-04-14', 'M', 'NULL', 'F', 'trinity8@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '5089 Mt. Palomar Pl', 'NULL', '758-555-0124', '2013-04-08', '0-1 Miles'], ['17368', '609', 'AW00017368', 'NULL', 'Alisha', 'C', 'Xie', '0', '1979-04-18', 'S', 'NULL', 'F', 'alisha27@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '7992 Elm Road', 'NULL', '872-555-0186', '2013-02-08', '0-1 Miles'], ['17369', '336', 'AW00017369', 'NULL', 'Ethan', 'NULL', 'Brown', '0', '1985-01-11', 'S', 'NULL', 'M', 'ethan35@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9099 Second Ave.', 'NULL', '163-555-0130', '2013-02-11', '5-10 Miles'], ['17370', '19', 'AW00017370', 'NULL', 'Edwin', 'T', 'Chander', '0', '1950-01-09', 'M', 'NULL', 'M', 'edwin38@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '8476 Eastgate Ave.', 'NULL', '1 (11) 500 555-0184', '2011-04-22', '5-10 Miles'], ['17371', '49', 'AW00017371', 'NULL', 'Kaylee', 'R', 'Reed', '0', '1984-02-15', 'S', 'NULL', 'F', 'kaylee17@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3612 Vista Place', 'NULL', '180-555-0185', '2013-07-05', '5-10 Miles'], ['17372', '52', 'AW00017372', 'NULL', 'Sarah', 'NULL', 'Long', '0', '1983-08-26', 'M', 'NULL', 'F', 'sarah34@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3487 Hill Dr.', 'NULL', '318-555-0180', '2013-09-12', '1-2 Miles'], ['17373', '53', 'AW00017373', 'NULL', 'Ryan', 'M', 'Gonzales', '0', '1983-12-26', 'M', 'NULL', 'M', 'ryan20@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3708 Lenox Ct', 'NULL', '477-555-0168', '2013-09-18', '1-2 Miles'], ['17374', '68', 'AW00017374', 'NULL', 'Jason', 'NULL', 'Diaz', '0', '1984-03-16', 'S', 'NULL', 'M', 'jason19@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '8734 Oxford Place', 'NULL', '417-555-0118', '2013-01-29', '5-10 Miles'], ['17375', '8', 'AW00017375', 'NULL', 'Sheila', 'B', 'Gill', '0', '1952-12-21', 'M', 'NULL', 'F', 'sheila13@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4061 Vinewood Dr.', 'NULL', '1 (11) 500 555-0122', '2013-05-05', '1-2 Miles'], ['17376', '612', 'AW00017376', 'NULL', 'Jaclyn', 'G', 'She', '0', '1984-05-10', 'S', 'NULL', 'F', 'jaclyn24@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9961 Tice', 'NULL', '676-555-0165', '2013-06-08', '1-2 Miles'], ['17377', '542', 'AW00017377', 'NULL', 'Isabel', 'NULL', 'Wood', '0', '1983-09-05', 'S', 'NULL', 'F', 'isabel2@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '163 St. John Lane', 'NULL', '670-555-0164', '2013-09-27', '1-2 Miles'], ['17378', '543', 'AW00017378', 'NULL', 'Zachary', 'NULL', 'Foster', '0', '1983-12-07', 'M', 'NULL', 'M', 'zachary15@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8241 San Jose Drive', 'NULL', '273-555-0159', '2014-01-17', '5-10 Miles'], ['17379', '547', 'AW00017379', 'NULL', 'Alexandra', 'M', 'Morgan', '0', '1983-12-18', 'S', 'NULL', 'F', 'alexandra6@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '2650 Hamlet', 'NULL', '808-555-0111', '2013-03-07', '1-2 Miles'], ['17380', '299', 'AW00017380', 'NULL', 'Nathan', 'C', 'Adams', '0', '1983-08-06', 'S', 'NULL', 'M', 'nathan45@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5398 Shadow Falls Drive', 'NULL', '789-555-0194', '2013-03-12', '5-10 Miles'], ['17381', '23', 'AW00017381', 'NULL', 'Krystal', 'S', 'Guo', '0', '1957-06-16', 'M', 'NULL', 'F', 'krystal18@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9563 Wibur Ave.', 'NULL', '1 (11) 500 555-0161', '2013-02-12', '5-10 Miles'], ['17382', '348', 'AW00017382', 'NULL', 'Blake', 'NULL', 'Allen', '0', '1982-03-19', 'M', 'NULL', 'M', 'blake25@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5691 Coldwater Drive', 'NULL', '301-555-0113', '2013-10-19', '1-2 Miles'], ['17383', '536', 'AW00017383', 'NULL', 'Craig', 'NULL', 'Ortega', '0', '1976-10-28', 'M', 'NULL', 'M', 'craig21@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '272 Winding Lane', 'NULL', '317-555-0156', '2013-09-17', '1-2 Miles'], ['17384', '302', 'AW00017384', 'NULL', 'Raymond', 'NULL', 'Prasad', '0', '1977-03-21', 'M', 'NULL', 'M', 'raymond11@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1435 Ash Lane', 'NULL', '282-555-0121', '2013-06-13', '0-1 Miles'], ['17385', '66', 'AW00017385', 'NULL', 'Grace', 'M', 'Martinez', '0', '1982-01-30', 'M', 'NULL', 'F', 'grace17@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7625 Veronica Ct.', 'NULL', '200-555-0165', '2013-02-19', '1-2 Miles'], ['17386', '553', 'AW00017386', 'NULL', 'Alexandra', 'NULL', 'Scott', '0', '1976-08-03', 'M', 'NULL', 'F', 'alexandra55@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4106 Entrada Circle', 'NULL', '185-555-0157', '2013-06-13', '0-1 Miles'], ['17387', '53', 'AW00017387', 'NULL', 'Aidan', 'NULL', 'Alexander', '0', '1983-06-11', 'M', 'NULL', 'M', 'aidan20@adventure-works.com', '50000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9020 Starflower Dr.', 'NULL', '274-555-0118', '2013-02-21', '1-2 Miles'], ['17388', '54', 'AW00017388', 'NULL', 'Garrett', 'M', 'Ramirez', '0', '1977-10-03', 'M', 'NULL', 'M', 'garrett12@adventure-works.com', '50000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5514 Chilpancingo', 'NULL', '110-555-0185', '2013-09-03', '0-1 Miles'], ['17389', '612', 'AW00017389', 'NULL', 'Abigail', 'K', 'Butler', '0', '1978-05-06', 'M', 'NULL', 'F', 'abigail39@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9964 North Ridge Drive', 'NULL', '358-555-0118', '2013-06-05', '2-5 Miles'], ['17390', '545', 'AW00017390', 'NULL', 'Blake', 'NULL', 'Lewis', '0', '1983-10-05', 'M', 'NULL', 'M', 'blake21@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3127 El Camino Drive', 'NULL', '177-555-0182', '2013-05-08', '2-5 Miles'], ['17391', '637', 'AW00017391', 'NULL', 'Angela', 'E', 'Bennett', '0', '1969-11-09', 'S', 'NULL', 'F', 'angela3@adventure-works.com', '100000.00', '5', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '486 11th', 'NULL', '718-555-0115', '2014-01-25', '2-5 Miles'], ['17392', '638', 'AW00017392', 'NULL', 'Dylan', 'NULL', 'Jones', '0', '1970-01-01', 'M', 'NULL', 'M', 'dylan38@adventure-works.com', '100000.00', '5', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '7852 Ban Bridge Pl.', 'NULL', '767-555-0111', '2013-04-03', '2-5 Miles'], ['17393', '299', 'AW00017393', 'NULL', 'Jordan', 'R', 'Sharma', '0', '1970-04-19', 'S', 'NULL', 'M', 'jordan26@adventure-works.com', '110000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '5522 Deer Ridge Way', 'NULL', '627-555-0144', '2013-11-15', '2-5 Miles'], ['17394', '310', 'AW00017394', 'NULL', 'Veronica', 'NULL', 'Mehta', '0', '1980-10-14', 'S', 'NULL', 'F', 'veronica15@adventure-works.com', '130000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '9011 Santa Lucia Dr.', 'NULL', '775-555-0129', '2013-10-21', '0-1 Miles'], ['17395', '325', 'AW00017395', 'NULL', 'Katherine', 'NULL', 'Ramirez', '0', '1975-08-15', 'S', 'NULL', 'F', 'katherine19@adventure-works.com', '130000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '2856 Third Ave East', 'NULL', '358-555-0171', '2013-08-25', '1-2 Miles'], ['17396', '329', 'AW00017396', 'NULL', 'Eduardo', 'NULL', 'Rodriguez', '0', '1969-08-29', 'M', 'NULL', 'M', 'eduardo19@adventure-works.com', '130000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5565 Logan Court', 'NULL', '434-555-0116', '2013-06-30', '0-1 Miles'], ['17397', '334', 'AW00017397', 'NULL', 'Alexandra', 'NULL', 'Cook', '0', '1975-10-03', 'M', 'NULL', 'F', 'alexandra5@adventure-works.com', '130000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '1663 Park Glen Court', 'NULL', '772-555-0133', '2013-05-27', '1-2 Miles'], ['17398', '348', 'AW00017398', 'NULL', 'Kaylee', 'E', 'Lopez', '0', '1969-11-21', 'S', 'NULL', 'F', 'kaylee44@adventure-works.com', '150000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '410 Wallace Dr.', 'NULL', '500-555-0167', '2013-11-02', '0-1 Miles'], ['17399', '352', 'AW00017399', 'NULL', 'Ian', 'F', 'Sanchez', '0', '1969-11-23', 'M', 'NULL', 'M', 'ian84@adventure-works.com', '150000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '311 Oeffler Ln.', 'NULL', '373-555-0145', '2013-10-31', '0-1 Miles'], ['17400', '54', 'AW00017400', 'NULL', 'Emily', 'NULL', 'Wilson', '0', '1961-09-08', 'M', 'NULL', 'F', 'emily7@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '5444 Bellord Ct.', 'NULL', '145-555-0153', '2013-09-11', '5-10 Miles'], ['17401', '548', 'AW00017401', 'NULL', 'Noah', 'C', 'Wright', '0', '1967-08-30', 'M', 'NULL', 'M', 'noah48@adventure-works.com', '80000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '5955 Waterview Place', 'NULL', '792-555-0113', '2013-11-26', '2-5 Miles'], ['17402', '51', 'AW00017402', 'NULL', 'Bryce', 'NULL', 'Rogers', '0', '1967-11-09', 'M', 'NULL', 'M', 'bryce18@adventure-works.com', '80000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '4252 Ofarrell Dr.', 'NULL', '184-555-0158', '2013-09-19', '2-5 Miles'], ['17403', '55', 'AW00017403', 'NULL', 'Greg', 'C', 'White', '0', '1967-10-01', 'S', 'NULL', 'M', 'greg9@adventure-works.com', '80000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '8514 Bounty Way', 'NULL', '940-555-0115', '2013-08-29', '2-5 Miles'], ['17404', '60', 'AW00017404', 'NULL', 'Gabriella', 'NULL', 'Baker', '0', '1939-10-12', 'S', 'NULL', 'F', 'gabriella40@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2318 Glen Road', 'NULL', '183-555-0114', '2013-09-24', '5-10 Miles'], ['17405', '611', 'AW00017405', 'NULL', 'Tamara', 'NULL', 'Wu', '0', '1939-12-08', 'S', 'NULL', 'F', 'tamara37@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1283 Cowell Rd.', 'NULL', '182-555-0119', '2013-06-20', '5-10 Miles'], ['17406', '553', 'AW00017406', 'NULL', 'Mariah', 'M', 'Flores', '0', '1940-03-15', 'M', 'NULL', 'F', 'mariah17@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8574 Hillview Drive', 'NULL', '861-555-0128', '2013-10-04', '5-10 Miles'], ['17407', '314', 'AW00017407', 'NULL', 'Elizabeth', 'NULL', 'Bryant', '0', '1945-08-08', 'M', 'NULL', 'F', 'elizabeth46@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9687 Breck Court', 'NULL', '360-555-0195', '2013-05-08', '2-5 Miles'], ['17408', '339', 'AW00017408', 'NULL', 'Thomas', 'J', 'Miller', '0', '1940-01-19', 'M', 'NULL', 'M', 'thomas66@adventure-works.com', '130000.00', '1', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '1870 Walnut Ave.', 'NULL', '114-555-0114', '2013-08-24', '1-2 Miles'], ['17409', '52', 'AW00017409', 'NULL', 'Christina', 'NULL', 'James', '0', '1969-01-06', 'S', 'NULL', 'F', 'christina6@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '413 Miller Dr', 'NULL', '330-555-0110', '2013-07-31', '2-5 Miles'], ['17410', '69', 'AW00017410', 'NULL', 'Morgan', 'NULL', 'Lewis', '0', '1974-08-12', 'M', 'NULL', 'F', 'morgan42@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2118 Court Lane', 'NULL', '840-555-0196', '2013-07-11', '2-5 Miles'], ['17411', '71', 'AW00017411', 'NULL', 'Jennifer', 'L', 'Brooks', '0', '1974-05-14', 'M', 'NULL', 'F', 'jennifer72@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8370 Merced Circle', 'NULL', '170-555-0112', '2013-08-20', '2-5 Miles'], ['17412', '548', 'AW00017412', 'NULL', 'Kaylee', 'E', 'Carter', '0', '1969-05-01', 'M', 'NULL', 'F', 'kaylee32@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '7749 Dakota Lane', 'NULL', '464-555-0161', '2013-11-13', '0-1 Miles'], ['17413', '642', 'AW00017413', 'NULL', 'Hailey', 'NULL', 'Ramirez', '0', '1968-07-17', 'S', 'NULL', 'F', 'hailey16@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '2049 Benedict Court', '# 11', '422-555-0111', '2013-11-13', '2-5 Miles'], ['17414', '644', 'AW00017414', 'NULL', 'Nicholas', 'NULL', 'Garcia', '0', '1969-01-20', 'M', 'NULL', 'M', 'nicholas17@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '3708 Montana', 'NULL', '129-555-0114', '2013-11-09', '0-1 Miles'], ['17415', '299', 'AW00017415', 'NULL', 'Dawn', 'L', 'Beck', '0', '1979-10-14', 'M', 'NULL', 'F', 'dawn44@adventure-works.com', '100000.00', '0', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '783 Walter Way', 'NULL', '118-555-0116', '2013-10-29', '2-5 Miles'], ['17416', '299', 'AW00017416', 'NULL', 'Raymond', 'H', 'Suri', '0', '1974-05-14', 'M', 'NULL', 'M', 'raymond2@adventure-works.com', '100000.00', '0', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8245 Pinehurst Court', 'NULL', '585-555-0180', '2013-10-29', '2-5 Miles'], ['17417', '300', 'AW00017417', 'NULL', 'Lee', 'D', 'Munoz', '0', '1969-04-14', 'M', 'NULL', 'M', 'lee5@adventure-works.com', '100000.00', '0', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '7594 Clearland Circle', 'NULL', '137-555-0193', '2013-11-23', '5-10 Miles'], ['17418', '302', 'AW00017418', 'NULL', 'Victoria', 'NULL', 'Ramirez', '0', '1979-08-09', 'M', 'NULL', 'F', 'victoria43@adventure-works.com', '110000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '5245 Fraga Court', 'NULL', '810-555-0140', '2013-05-03', '1-2 Miles'], ['17419', '307', 'AW00017419', 'NULL', 'Brianna', 'NULL', 'Reed', '0', '1968-11-30', 'M', 'NULL', 'F', 'brianna28@adventure-works.com', '110000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '7723 Firestone Drive', 'NULL', '890-555-0163', '2013-03-07', '5-10 Miles'], ['17420', '359', 'AW00017420', 'NULL', 'Thomas', 'M', 'Hughes', '0', '1980-04-30', 'M', 'NULL', 'M', 'thomas13@adventure-works.com', '150000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '792 Myrtle Drive', 'NULL', '580-555-0116', '2013-11-22', '1-2 Miles'], ['17421', '372', 'AW00017421', 'NULL', 'Katherine', 'C', 'Henderson', '0', '1968-10-29', 'M', 'NULL', 'F', 'katherine30@adventure-works.com', '150000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '8 Sunnybrook Drive', 'NULL', '120-555-0165', '2013-11-22', '0-1 Miles'], ['17422', '53', 'AW00017422', 'NULL', 'Hunter', 'NULL', 'Campbell', '0', '1967-10-14', 'M', 'NULL', 'M', 'hunter36@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4204 Alhambra Way', 'NULL', '126-555-0172', '2013-07-15', '5-10 Miles'], ['17423', '627', 'AW00017423', 'NULL', 'Arianna', 'NULL', 'Alexander', '0', '1967-12-18', 'S', 'NULL', 'F', 'arianna17@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '8914 Fraga Court', 'NULL', '140-555-0167', '2013-11-13', '5-10 Miles'], ['17424', '546', 'AW00017424', 'NULL', 'Spencer', 'W', 'Long', '0', '1973-11-08', 'M', 'NULL', 'M', 'spencer11@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '4700 Bancroft Rd.', 'NULL', '411-555-0176', '2013-11-17', '5-10 Miles'], ['17425', '548', 'AW00017425', 'NULL', 'Austin', 'NULL', 'Washington', '0', '1967-08-25', 'M', 'NULL', 'M', 'austin9@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '8689 St. George Court', 'NULL', '805-555-0170', '2013-11-13', '5-10 Miles'], ['17426', '299', 'AW00017426', 'NULL', 'Donna', 'J', 'Shan', '0', '1973-03-15', 'S', 'NULL', 'F', 'donna10@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '7655 Greer Ave', 'NULL', '945-555-0193', '2013-06-24', '1-2 Miles'], ['17427', '325', 'AW00017427', 'NULL', 'Adam', 'J', 'Russell', '0', '1973-09-14', 'M', 'NULL', 'M', 'adam16@adventure-works.com', '120000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '2062 Woodruff Lane', 'NULL', '809-555-0150', '2013-11-24', '5-10 Miles'], ['17428', '358', 'AW00017428', 'NULL', 'Xavier', 'R', 'Perez', '0', '1967-08-29', 'S', 'NULL', 'M', 'xavier35@adventure-works.com', '130000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '4203 Wildcat Circle', 'NULL', '354-555-0181', '2013-05-31', '0-1 Miles'], ['17429', '536', 'AW00017429', 'NULL', 'Wyatt', 'NULL', 'Carter', '0', '1966-12-15', 'M', 'NULL', 'M', 'wyatt39@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '389 Alamo Way', 'NULL', '944-555-0122', '2013-11-30', '5-10 Miles'], ['17430', '609', 'AW00017430', 'NULL', 'Edward', 'NULL', 'King', '0', '1966-11-21', 'M', 'NULL', 'M', 'edward2@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '8934 Dublin', 'NULL', '119-555-0129', '2013-05-22', '5-10 Miles'], ['17431', '539', 'AW00017431', 'NULL', 'Grace', 'NULL', 'Kelly', '0', '1967-04-09', 'M', 'NULL', 'F', 'grace46@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '1789 Birchwood Dr.', 'NULL', '631-555-0114', '2013-03-17', '1-2 Miles'], ['17432', '547', 'AW00017432', 'NULL', 'Mariah', 'NULL', 'Peterson', '0', '1972-02-01', 'M', 'NULL', 'F', 'mariah29@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '9362 Akyn Rock Drive', 'NULL', '651-555-0110', '2013-07-11', '1-2 Miles'], ['17433', '648', 'AW00017433', 'NULL', 'Cameron', 'L', 'Lee', '0', '1972-11-06', 'M', 'NULL', 'M', 'cameron40@adventure-works.com', '100000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '5062 Hazel Drive', 'NULL', '589-555-0156', '2013-11-12', '5-10 Miles'], ['17434', '302', 'AW00017434', 'NULL', 'Alyssa', 'N', 'Russell', '0', '1972-08-20', 'M', 'NULL', 'F', 'alyssa65@adventure-works.com', '110000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '2223 Stillwater Court', 'NULL', '615-555-0143', '2013-06-21', '2-5 Miles'], ['17435', '374', 'AW00017435', 'NULL', 'Edward', 'NULL', 'Mitchell', '0', '1967-02-23', 'S', 'NULL', 'M', 'edward13@adventure-works.com', '170000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '4', '2266 Greenwood Circle', 'NULL', '452-555-0116', '2013-10-07', '0-1 Miles'], ['17436', '358', 'AW00017436', 'NULL', 'Evan', 'K', 'Ramirez', '0', '1961-01-04', 'M', 'NULL', 'M', 'evan7@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '5260 Marina Village Pkwy.', 'NULL', '180-555-0136', '2013-07-08', '1-2 Miles'], ['17437', '299', 'AW00017437', 'NULL', 'Natalie', 'NULL', 'Baker', '0', '1960-12-16', 'M', 'NULL', 'F', 'natalie59@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '8005 Pacheco St.', 'NULL', '532-555-0176', '2013-03-03', '1-2 Miles'], ['17438', '612', 'AW00017438', 'NULL', 'Marcus', 'A', 'Hughes', '0', '1961-01-10', 'M', 'NULL', 'M', 'marcus61@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '5085 Rampo Ct.', 'NULL', '299-555-0164', '2013-09-28', '5-10 Miles'], ['17439', '634', 'AW00017439', 'NULL', 'Jasmine', 'NULL', 'Butler', '0', '1960-08-18', 'M', 'NULL', 'F', 'jasmine53@adventure-works.com', '80000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '5972 El Pintado Road', 'NULL', '737-555-0178', '2013-10-29', '1-2 Miles'], ['17440', '345', 'AW00017440', 'NULL', 'Richard', 'NULL', 'Cox', '0', '1959-11-17', 'S', 'NULL', 'M', 'richard92@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3585 St. Paul Circle', 'NULL', '289-555-0123', '2013-08-09', '1-2 Miles'], ['17441', '325', 'AW00017441', 'NULL', 'Natalie', 'NULL', 'Turner', '0', '1960-05-11', 'S', 'NULL', 'F', 'natalie48@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3955 Anchor Avenue', 'NULL', '460-555-0119', '2013-11-16', '5-10 Miles'], ['17442', '68', 'AW00017442', 'NULL', 'Edward', 'C', 'Taylor', '0', '1940-12-22', 'M', 'NULL', 'M', 'edward31@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '4322 Cobblestone Ct', 'NULL', '680-555-0195', '2013-02-24', '1-2 Miles'], ['17443', '611', 'AW00017443', 'NULL', 'Kristin', 'D', 'Shen', '0', '1941-05-22', 'S', 'NULL', 'F', 'kristin4@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '63 Palms', 'NULL', '249-555-0145', '2013-05-31', '5-10 Miles'], ['17444', '644', 'AW00017444', 'NULL', 'Bailey', 'D', 'Cox', '0', '1940-11-02', 'S', 'NULL', 'F', 'bailey8@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4441 Carlisle Way', 'NULL', '881-555-0175', '2013-06-13', '1-2 Miles'], ['17445', '298', 'AW00017445', 'NULL', 'Natasha', 'NULL', 'Hernandez', '0', '1946-04-17', 'M', 'NULL', 'F', 'natasha4@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '885 Davona Drive', 'NULL', '807-555-0167', '2013-06-08', '5-10 Miles'], ['17446', '300', 'AW00017446', 'NULL', 'Pamela', 'L', 'Rana', '0', '1941-02-10', 'M', 'NULL', 'F', 'pamela14@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7521 Mount Aire Parkway', 'NULL', '596-555-0166', '2013-11-28', '5-10 Miles'], ['17447', '311', 'AW00017447', 'NULL', 'Sydney', 'L', 'Lewis', '0', '1940-09-14', 'M', 'NULL', 'F', 'sydney83@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3663 Palm Avenue', 'NULL', '594-555-0124', '2013-02-04', '5-10 Miles'], ['17448', '331', 'AW00017448', 'NULL', 'Zachary', 'NULL', 'Hayes', '0', '1940-09-08', 'M', 'NULL', 'M', 'zachary21@adventure-works.com', '120000.00', '1', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '8455 Mt. Davidson Court', 'NULL', '713-555-0192', '2013-09-25', '2-5 Miles'], ['17449', '642', 'AW00017449', 'NULL', 'Jackson', 'H', 'Adams', '0', '1942-01-08', 'M', 'NULL', 'M', 'jackson47@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8272 Ohara Avenue', 'NULL', '183-555-0132', '2013-03-12', '5-10 Miles'], ['17450', '51', 'AW00017450', 'NULL', 'Samuel', 'N', 'Coleman', '0', '1966-04-13', 'M', 'NULL', 'M', 'samuel4@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '1164 Glenview Drive', 'NULL', '955-555-0170', '2013-11-25', '5-10 Miles'], ['17451', '609', 'AW00017451', 'NULL', 'Isabelle', 'C', 'Wood', '0', '1965-08-19', 'M', 'NULL', 'F', 'isabelle2@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '3022 Adobe St', 'NULL', '824-555-0161', '2013-10-25', '1-2 Miles'], ['17452', '611', 'AW00017452', 'NULL', 'Mitchell', 'W', 'Nath', '0', '1965-12-07', 'M', 'NULL', 'M', 'mitchell16@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '3333 Maureen Circle', 'NULL', '414-555-0190', '2013-11-23', '5-10 Miles'], ['17453', '543', 'AW00017453', 'NULL', 'Hailey', 'NULL', 'Reed', '0', '1971-07-22', 'S', 'NULL', 'F', 'hailey3@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '8601 Oakgrove Rd.', 'NULL', '105-555-0170', '2013-11-25', '5-10 Miles'], ['17454', '301', 'AW00017454', 'NULL', 'Edward', 'A', 'Perry', '0', '1965-11-08', 'M', 'NULL', 'M', 'edward56@adventure-works.com', '110000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '1720 Monument Blvd.', 'NULL', '388-555-0189', '2013-09-03', '2-5 Miles'], ['17455', '311', 'AW00017455', 'NULL', 'Dylan', 'O', 'Hayes', '0', '1965-11-15', 'M', 'NULL', 'M', 'dylan22@adventure-works.com', '110000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '8958 Carleton Street', 'NULL', '909-555-0115', '2013-05-02', '5-10 Miles'], ['17456', '616', 'AW00017456', 'NULL', 'Trevor', 'NULL', 'Wood', '0', '1959-11-10', 'M', 'NULL', 'M', 'trevor1@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8928 Chickpea Ct.', 'NULL', '177-555-0120', '2013-06-12', '5-10 Miles'], ['17457', '612', 'AW00017457', 'NULL', 'Katherine', 'NULL', 'Allen', '0', '1976-03-19', 'M', 'NULL', 'F', 'katherine97@adventure-works.com', '60000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9424 Pine Creek Way', 'NULL', '737-555-0166', '2013-11-30', '1-2 Miles'], ['17458', '369', 'AW00017458', 'NULL', 'Jason', 'E', 'Collins', '0', '1965-07-01', 'S', 'NULL', 'M', 'jason32@adventure-works.com', '70000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '8649 Cornwall Court', 'NULL', '201-555-0169', '2013-11-09', '5-10 Miles'], ['17459', '299', 'AW00017459', 'NULL', 'Cassidy', 'NULL', 'Barnes', '0', '1959-11-03', 'M', 'NULL', 'F', 'cassidy3@adventure-works.com', '70000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '8716 Pepper Way', 'NULL', '825-555-0169', '2013-06-26', '5-10 Miles'], ['17460', '331', 'AW00017460', 'NULL', 'Megan', 'L', 'Murphy', '0', '1960-06-18', 'M', 'NULL', 'F', 'megan35@adventure-works.com', '70000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '4566 La Jolla', 'NULL', '511-555-0125', '2013-11-06', '1-2 Miles'], ['17461', '618', 'AW00017461', 'NULL', 'Sara', 'H', 'Allen', '0', '1960-05-26', 'M', 'NULL', 'F', 'sara49@adventure-works.com', '70000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '4649 Peachwillow', 'NULL', '368-555-0156', '2013-11-09', '1-2 Miles'], ['17462', '339', 'AW00017462', 'NULL', 'Jesse', 'NULL', 'Rogers', '0', '1958-08-22', 'M', 'NULL', 'M', 'jesse20@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4812 Kipling Court', 'NULL', '941-555-0161', '2013-11-13', '5-10 Miles'], ['17463', '545', 'AW00017463', 'NULL', 'Nicholas', 'NULL', 'Moore', '0', '1964-08-29', 'M', 'NULL', 'M', 'nicholas9@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5376 Catanzaro Way', 'NULL', '102-555-0173', '2013-06-08', '5-10 Miles'], ['17464', '542', 'AW00017464', 'NULL', 'Jeremy', 'L', 'Rodriguez', '0', '1958-08-24', 'M', 'NULL', 'M', 'jeremy6@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '321 Concerto Circle', 'NULL', '382-555-0146', '2013-06-22', '5-10 Miles'], ['17465', '631', 'AW00017465', 'NULL', 'Arianna', 'NULL', 'Stewart', '0', '1958-06-23', 'S', 'NULL', 'F', 'arianna44@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2444 Appalachian Drive', 'NULL', '197-555-0116', '2013-06-28', '5-10 Miles'], ['17466', '543', 'AW00017466', 'NULL', 'Thomas', 'NULL', 'Perez', '0', '1942-07-17', 'M', 'NULL', 'M', 'thomas40@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '27 Elkwood Dr.', 'NULL', '507-555-0140', '2013-10-16', '1-2 Miles'], ['17467', '316', 'AW00017467', 'NULL', 'Wyatt', 'M', 'Hayes', '0', '1948-08-09', 'S', 'NULL', 'M', 'wyatt51@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5070 Kirker Pass', 'NULL', '275-555-0184', '2013-06-04', '10+ Miles'], ['17468', '53', 'AW00017468', 'NULL', 'Jeremiah', 'NULL', 'Gonzalez', '0', '1942-07-09', 'M', 'NULL', 'M', 'jeremiah19@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1540 St. Raphael Drive', 'NULL', '345-555-0184', '2013-03-21', '10+ Miles'], ['17469', '299', 'AW00017469', 'NULL', 'Ian', 'L', 'Perez', '0', '1943-01-03', 'M', 'NULL', 'M', 'ian34@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '1301 Stanbridge Ct', 'NULL', '101-555-0113', '2013-11-05', '1-2 Miles'], ['17470', '298', 'AW00017470', 'NULL', 'Jaime', 'J', 'Carlson', '0', '1948-11-22', 'M', 'NULL', 'F', 'jaime20@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '1742 Shakespeare Drive', 'NULL', '113-555-0188', '2013-11-15', '1-2 Miles'], ['17471', '637', 'AW00017471', 'NULL', 'Grace', 'L', 'James', '0', '1944-05-03', 'S', 'NULL', 'F', 'grace43@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8757 Keith Court', 'NULL', '138-555-0118', '2013-08-04', '5-10 Miles'], ['17472', '302', 'AW00017472', 'NULL', 'Meredith', 'NULL', 'Torres', '0', '1944-08-26', 'S', 'NULL', 'F', 'meredith35@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4697 Yosemite Dr.', 'NULL', '908-555-0132', '2013-12-23', '10+ Miles'], ['17473', '609', 'AW00017473', 'NULL', 'Ebony', 'J', 'Blanco', '0', '1945-01-03', 'M', 'NULL', 'F', 'ebony37@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '8882 Weatherly Way', 'NULL', '136-555-0124', '2013-09-23', '1-2 Miles'], ['17474', '374', 'AW00017474', 'NULL', 'Jose', 'H', 'King', '0', '1946-05-24', 'S', 'NULL', 'M', 'jose55@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6852 Elderwood Drive', 'NULL', '400-555-0181', '2013-11-06', '10+ Miles'], ['17475', '322', 'AW00017475', 'NULL', 'Jackson', 'S', 'Green', '0', '1945-10-03', 'M', 'NULL', 'M', 'jackson45@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4764 East Avenue', 'NULL', '990-555-0190', '2013-11-23', '10+ Miles'], ['17476', '51', 'AW00017476', 'NULL', 'Alexandria', 'NULL', 'Stewart', '0', '1946-09-04', 'M', 'NULL', 'F', 'alexandria43@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '1417 Roosevelt Avenue', 'NULL', '689-555-0172', '2013-09-30', '1-2 Miles'], ['17477', '611', 'AW00017477', 'NULL', 'Miranda', 'NULL', 'Griffin', '0', '1947-09-09', 'S', 'NULL', 'F', 'miranda21@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '8185 Geary', 'NULL', '349-555-0118', '2013-06-15', '1-2 Miles'], ['17478', '20', 'AW00017478', 'NULL', 'Renee', 'L', 'Martin', '0', '1953-05-21', 'M', 'NULL', 'F', 'renee0@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7239 Nicholas Drive', 'NULL', '1 (11) 500 555-0179', '2011-04-25', '1-2 Miles'], ['17479', '3', 'AW00017479', 'NULL', 'Kristine', 'NULL', 'Ramos', '0', '1954-03-13', 'M', 'NULL', 'F', 'kristine18@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3399 Climbing Dr', 'NULL', '1 (11) 500 555-0130', '2013-05-01', '5-10 Miles'], ['17480', '339', 'AW00017480', 'NULL', 'Lucas', 'NULL', 'Gonzalez', '0', '1984-02-17', 'S', 'NULL', 'M', 'lucas0@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '304 Diver Way', 'NULL', '213-555-0171', '2013-06-17', '5-10 Miles'], ['17481', '51', 'AW00017481', 'NULL', 'Emma', 'NULL', 'Watson', '0', '1983-05-06', 'S', 'NULL', 'F', 'emma45@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '8158 Ahwanee Lane', 'NULL', '845-555-0147', '2013-04-11', '5-10 Miles'], ['17482', '59', 'AW00017482', 'NULL', 'Taylor', 'NULL', 'Alexander', '0', '1982-10-30', 'S', 'NULL', 'F', 'taylor43@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2852 Magda Way', 'NULL', '697-555-0174', '2013-03-06', '5-10 Miles'], ['17483', '60', 'AW00017483', 'NULL', 'Logan', 'J', 'Gonzalez', '0', '1983-01-22', 'S', 'NULL', 'M', 'logan34@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9548 Jomar Drive', 'NULL', '148-555-0192', '2013-03-21', '1-2 Miles'], ['17484', '11', 'AW00017484', 'NULL', 'Armando', 'NULL', 'Carlson', '0', '1959-11-09', 'M', 'NULL', 'M', 'armando18@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8594 Veracruz', 'NULL', '1 (11) 500 555-0127', '2013-02-22', '5-10 Miles'], ['17485', '623', 'AW00017485', 'NULL', 'Blake', 'N', 'Davis', '0', '1983-01-15', 'M', 'NULL', 'M', 'blake4@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8467 Clifford Court', 'NULL', '721-555-0132', '2013-03-20', '5-10 Miles'], ['17486', '543', 'AW00017486', 'NULL', 'Marissa', 'NULL', 'Foster', '0', '1983-05-25', 'S', 'NULL', 'F', 'marissa13@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6099 Esperanza Dr', 'NULL', '700-555-0195', '2013-04-29', '1-2 Miles'], ['17487', '631', 'AW00017487', 'NULL', 'Nathan', 'C', 'Green', '0', '1983-02-20', 'S', 'NULL', 'M', 'nathan41@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4858 El Molino Dr.', 'NULL', '226-555-0124', '2013-08-24', '5-10 Miles'], ['17488', '637', 'AW00017488', 'NULL', 'Jason', 'NULL', 'Adams', '0', '1983-03-16', 'S', 'NULL', 'M', 'jason44@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7880 Mission Drive', 'NULL', '249-555-0135', '2013-03-17', '1-2 Miles'], ['17489', '325', 'AW00017489', 'NULL', 'Jack', 'NULL', 'Evans', '0', '1983-05-21', 'S', 'NULL', 'M', 'jack35@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9428 Mehaffey Way', 'NULL', '678-555-0140', '2013-05-29', '1-2 Miles'], ['17490', '329', 'AW00017490', 'NULL', 'Grace', 'M', 'Moore', '0', '1983-03-08', 'S', 'NULL', 'F', 'grace7@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4380 Chestnut', 'NULL', '600-555-0112', '2013-11-05', '1-2 Miles'], ['17491', '54', 'AW00017491', 'NULL', 'Kyle', 'J', 'Hall', '0', '1982-01-17', 'S', 'NULL', 'M', 'kyle50@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2891 Sanford St.', 'NULL', '330-555-0113', '2013-10-30', '5-10 Miles'], ['17492', '539', 'AW00017492', 'NULL', 'Amanda', 'S', 'Price', '0', '1981-12-12', 'S', 'NULL', 'F', 'amanda21@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7824 Frame Ln', 'NULL', '755-555-0117', '2013-06-20', '1-2 Miles'], ['17493', '33', 'AW00017493', 'NULL', 'Candice', 'M', 'Gao', '0', '1955-05-27', 'M', 'NULL', 'F', 'candice21@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7361 Pine St.', 'NULL', '1 (11) 500 555-0187', '2013-09-13', '1-2 Miles'], ['17494', '11', 'AW00017494', 'NULL', 'Mathew', 'L', 'Alvarez', '0', '1955-02-10', 'M', 'NULL', 'M', 'mathew1@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4858 Shannon Lane', 'NULL', '1 (11) 500 555-0111', '2013-05-24', '5-10 Miles'], ['17495', '37', 'AW00017495', 'NULL', 'Corey', 'M', 'Sharma', '0', '1960-05-09', 'M', 'NULL', 'M', 'corey9@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3066 Wallace Dr.', 'NULL', '1 (11) 500 555-0112', '2013-04-22', '1-2 Miles'], ['17496', '22', 'AW00017496', 'NULL', 'Tabitha', 'NULL', 'Sanz', '0', '1956-04-16', 'M', 'NULL', 'F', 'tabitha41@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7286 Norris Court', 'NULL', '1 (11) 500 555-0183', '2013-09-27', '5-10 Miles'], ['17497', '299', 'AW00017497', 'NULL', 'Maria', 'M', 'Collins', '0', '1985-10-03', 'S', 'NULL', 'F', 'maria46@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '1724 The Trees Drive', 'NULL', '795-555-0151', '2013-07-28', '5-10 Miles'], ['17498', '355', 'AW00017498', 'NULL', 'Daniel', 'NULL', 'Martin', '0', '1986-02-16', 'S', 'NULL', 'M', 'daniel17@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5135 Oak Park Blvd.', 'NULL', '736-555-0116', '2013-06-16', '1-2 Miles'], ['17499', '383', 'AW00017499', 'NULL', 'Marcus', 'NULL', 'Campbell', '0', '1985-11-20', 'S', 'NULL', 'M', 'marcus44@adventure-works.com', '100000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '8819 Camino Norte', 'NULL', '911-555-0178', '2013-11-06', '2-5 Miles'], ['17500', '40', 'AW00017500', 'NULL', 'Cesar', 'NULL', 'Lopez', '0', '1963-04-14', 'S', 'NULL', 'M', 'cesar16@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1226 Canyon Creek Drive', 'NULL', '1 (11) 500 555-0148', '2013-10-20', '5-10 Miles'], ['17501', '23', 'AW00017501', 'NULL', 'Marc', 'W', 'Carlson', '0', '1963-04-23', 'M', 'NULL', 'M', 'marc22@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9088 Creed Ave', 'NULL', '1 (11) 500 555-0168', '2013-07-09', '5-10 Miles'], ['17502', '20', 'AW00017502', 'NULL', 'Wayne', 'NULL', 'Kumar', '0', '1960-04-11', 'S', 'NULL', 'M', 'wayne9@adventure-works.com', '40000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1485 La Vista Avenue', 'NULL', '1 (11) 500 555-0194', '2011-04-08', '5-10 Miles'], ['17503', '28', 'AW00017503', 'NULL', 'Molly', 'NULL', 'Suri', '0', '1960-01-19', 'M', 'NULL', 'F', 'molly1@adventure-works.com', '40000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '1569 Eagle Ct', 'NULL', '1 (11) 500 555-0193', '2013-10-13', '1-2 Miles'], ['17504', '4', 'AW00017504', 'NULL', 'Anna', 'R', 'Williams', '0', '1965-05-14', 'S', 'NULL', 'F', 'anna63@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6345 Katharyn Drive', 'NULL', '1 (11) 500 555-0133', '2011-04-18', '5-10 Miles'], ['17505', '644', 'AW00017505', 'NULL', 'Hunter', 'A', 'Mitchell', '0', '1981-05-17', 'S', 'NULL', 'M', 'hunter38@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1487 Nephi Court', 'NULL', '110-555-0117', '2013-05-06', '5-10 Miles'], ['17506', '299', 'AW00017506', 'NULL', 'Alexandria', 'NULL', 'Simmons', '0', '1978-10-17', 'M', 'NULL', 'F', 'alexandria15@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5970 Meadowbrook Court', 'NULL', '117-555-0117', '2013-02-03', '5-10 Miles'], ['17507', '338', 'AW00017507', 'NULL', 'Alexis', 'NULL', 'Robinson', '0', '1979-02-12', 'M', 'NULL', 'F', 'alexis15@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2115 Whitehaven Dr.', 'NULL', '497-555-0121', '2013-08-01', '5-10 Miles'], ['17508', '361', 'AW00017508', 'NULL', 'Caroline', 'NULL', 'Bennett', '0', '1979-01-05', 'S', 'NULL', 'F', 'caroline3@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '329 Poplar Street', 'NULL', '609-555-0115', '2013-11-22', '0-1 Miles'], ['17509', '59', 'AW00017509', 'NULL', 'Makayla', 'L', 'Ramirez', '0', '1981-10-17', 'S', 'NULL', 'F', 'makayla7@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '5868 Clay Road', 'NULL', '157-555-0174', '2013-05-08', '1-2 Miles'], ['17510', '39', 'AW00017510', 'NULL', 'Jason', 'NULL', 'Butler', '0', '1966-09-19', 'S', 'NULL', 'M', 'jason11@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3608 Sinclair Avenue', 'NULL', '1 (11) 500 555-0130', '2011-04-03', '5-10 Miles'], ['17511', '12', 'AW00017511', 'NULL', 'Tabitha', 'C', 'Subram', '0', '1966-10-07', 'S', 'NULL', 'F', 'tabitha10@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2472 Alexander Place', 'NULL', '1 (11) 500 555-0147', '2011-04-07', '5-10 Miles'], ['17512', '4', 'AW00017512', 'NULL', 'Cesar', 'NULL', 'Suri', '0', '1967-08-05', 'M', 'NULL', 'M', 'cesar0@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6306 Knollview Court', 'NULL', '1 (11) 500 555-0112', '2011-04-17', '5-10 Miles'], ['17513', '26', 'AW00017513', 'NULL', 'Micheal', 'NULL', 'Saunders', '0', '1961-08-31', 'S', 'NULL', 'M', 'micheal16@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8242 Gilardy Dr', 'NULL', '1 (11) 500 555-0170', '2011-04-26', '5-10 Miles'], ['17514', '30', 'AW00017514', 'NULL', 'Cedric', 'NULL', 'Zhou', '0', '1964-01-02', 'M', 'NULL', 'M', 'cedric9@adventure-works.com', '110000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '9076 Inverness Drive', 'NULL', '1 (11) 500 555-0115', '2011-04-09', '2-5 Miles'], ['17515', '20', 'AW00017515', 'NULL', 'Lacey', 'NULL', 'Li', '0', '1974-07-15', 'S', 'NULL', 'F', 'lacey15@adventure-works.com', '130000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '826 Coggins Dr.', 'NULL', '1 (11) 500 555-0141', '2011-04-13', '0-1 Miles'], ['17516', '634', 'AW00017516', 'NULL', 'Thomas', 'NULL', 'Foster', '0', '1978-11-08', 'S', 'NULL', 'M', 'thomas18@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '5866 Harvard Court', 'NULL', '117-555-0180', '2013-12-25', '2-5 Miles'], ['17517', '322', 'AW00017517', 'NULL', 'Daniel', 'S', 'Williams', '0', '1978-08-15', 'S', 'NULL', 'M', 'daniel19@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '6671 Del Rey St.', 'NULL', '998-555-0153', '2013-11-23', '2-5 Miles'], ['17518', '612', 'AW00017518', 'NULL', 'Wendy', 'NULL', 'Gill', '0', '1980-02-15', 'S', 'NULL', 'F', 'wendy13@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4944 Abbey Court', 'NULL', '747-555-0120', '2013-06-25', '1-2 Miles'], ['17519', '545', 'AW00017519', 'NULL', 'Taylor', 'C', 'Rivera', '0', '1985-08-18', 'M', 'NULL', 'F', 'taylor10@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8505 Fall Creek', 'NULL', '719-555-0165', '2013-03-22', '5-10 Miles'], ['17520', '302', 'AW00017520', 'NULL', 'Marcus', 'NULL', 'Baker', '0', '1985-08-30', 'S', 'NULL', 'M', 'marcus35@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '7323 Alan Drive', 'NULL', '102-555-0169', '2013-10-09', '5-10 Miles'], ['17521', '307', 'AW00017521', 'NULL', 'Destiny', 'G', 'Jenkins', '0', '1979-12-22', 'M', 'NULL', 'F', 'destiny55@adventure-works.com', '60000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '8246 Via Del Sol', 'NULL', '931-555-0157', '2013-07-04', '1-2 Miles'], ['17522', '25', 'AW00017522', 'NULL', 'Reginald', 'K', 'Sanz', '0', '1964-08-29', 'M', 'NULL', 'M', 'reginald6@adventure-works.com', '120000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '4074 Northwood Dr', 'NULL', '1 (11) 500 555-0162', '2013-07-20', '2-5 Miles'], ['17523', '338', 'AW00017523', 'NULL', 'Jordan', 'M', 'West', '0', '1983-01-09', 'M', 'NULL', 'M', 'jordan20@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '8512 Arrowwood Circle', 'NULL', '764-555-0133', '2013-12-26', '0-1 Miles'], ['17524', '374', 'AW00017524', 'NULL', 'Lucas', 'B', 'Washington', '0', '1972-05-05', 'S', 'NULL', 'M', 'lucas61@adventure-works.com', '160000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '4345 Azoras Circle', 'NULL', '631-555-0156', '2013-11-21', '0-1 Miles'], ['17525', '311', 'AW00017525', 'NULL', 'Adam', 'NULL', 'Wright', '0', '1963-09-20', 'M', 'NULL', 'M', 'adam50@adventure-works.com', '130000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '9932 San Carlos Ave.', 'NULL', '267-555-0111', '2013-08-18', '0-1 Miles'], ['17526', '539', 'AW00017526', 'NULL', 'Tristan', 'J', 'Gonzales', '0', '1962-09-22', 'S', 'NULL', 'M', 'tristan17@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '887 Concord Blvd.', 'NULL', '645-555-0167', '2013-04-02', '5-10 Miles'], ['17527', '547', 'AW00017527', 'NULL', 'Anna', 'M', 'Cook', '0', '1963-03-26', 'S', 'NULL', 'F', 'anna7@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '213 Stonewood Drive', 'NULL', '753-555-0138', '2013-10-29', '5-10 Miles'], ['17528', '536', 'AW00017528', 'NULL', 'Whitney', 'NULL', 'Kapoor', '0', '1963-01-01', 'M', 'NULL', 'F', 'whitney1@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '9245 Dantley Way', 'NULL', '243-555-0153', '2013-11-07', '5-10 Miles'], ['17529', '553', 'AW00017529', 'NULL', 'Chloe', 'K', 'Mitchell', '0', '1962-11-16', 'M', 'NULL', 'F', 'chloe8@adventure-works.com', '90000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '6900 Chisholm Way', 'NULL', '375-555-0171', '2013-09-26', '5-10 Miles'], ['17530', '633', 'AW00017530', 'NULL', 'Devin', 'A', 'Wood', '0', '1961-11-18', 'M', 'NULL', 'M', 'devin68@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '7521 Partridge Dr.', 'NULL', '364-555-0114', '2013-07-23', '5-10 Miles'], ['17531', '546', 'AW00017531', 'NULL', 'Isaac', 'NULL', 'Ramirez', '0', '1961-09-04', 'M', 'NULL', 'M', 'isaac6@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '9959 Kirkwood Dr.', 'NULL', '291-555-0184', '2013-06-13', '5-10 Miles'], ['17532', '300', 'AW00017532', 'NULL', 'Nathan', 'W', 'Patterson', '0', '1961-11-22', 'M', 'NULL', 'M', 'nathan6@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '1984 Vista Way', 'NULL', '508-555-0156', '2013-07-09', '1-2 Miles'], ['17533', '609', 'AW00017533', 'NULL', 'Fernando', 'R', 'Baker', '0', '1943-11-04', 'M', 'NULL', 'M', 'fernando32@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '6283 San Marino Ct.', 'NULL', '153-555-0182', '2013-07-27', '5-10 Miles'], ['17534', '609', 'AW00017534', 'NULL', 'Robert', 'S', 'Griffin', '0', '1971-06-19', 'S', 'NULL', 'M', 'robert32@adventure-works.com', '90000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '4666 Yellowood Lane', 'NULL', '684-555-0160', '2013-09-07', '0-1 Miles'], ['17535', '609', 'AW00017535', 'NULL', 'Colleen', 'A', 'Guo', '0', '1976-10-20', 'S', 'NULL', 'F', 'colleen18@adventure-works.com', '90000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '3994 Reva Drive', 'NULL', '651-555-0146', '2013-11-06', '2-5 Miles'], ['17536', '316', 'AW00017536', 'NULL', 'Benjamin', 'L', 'Robinson', '0', '1976-08-18', 'S', 'NULL', 'M', 'benjamin55@adventure-works.com', '120000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '9615 Pacheco Street', 'NULL', '157-555-0146', '2013-11-24', '1-2 Miles'], ['17537', '374', 'AW00017537', 'NULL', 'Courtney', 'NULL', 'Mitchell', '0', '1971-02-24', 'S', 'NULL', 'F', 'courtney9@adventure-works.com', '160000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '4', '7032 Stanford St.', 'NULL', '181-555-0136', '2013-11-17', '1-2 Miles'], ['17538', '374', 'AW00017538', 'NULL', 'Brianna', 'R', 'Bell', '0', '1976-03-11', 'S', 'NULL', 'F', 'brianna31@adventure-works.com', '160000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '3919 El Pintado Road', 'NULL', '258-555-0151', '2013-06-16', '0-1 Miles'], ['17539', '66', 'AW00017539', 'NULL', 'Grace', 'NULL', 'Wilson', '0', '1969-10-05', 'M', 'NULL', 'F', 'grace6@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '7758 Morning Glory Dr.', 'NULL', '971-555-0134', '2013-08-20', '2-5 Miles'], ['17540', '536', 'AW00017540', 'NULL', 'Gloria', 'L', 'Gutierrez', '0', '1973-03-03', 'M', 'NULL', 'F', 'gloria11@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6898 Roxie Lane', 'NULL', '472-555-0168', '2013-02-06', '2-5 Miles'], ['17541', '609', 'AW00017541', 'NULL', 'Kristen', 'A', 'Zeng', '0', '1968-06-05', 'M', 'NULL', 'F', 'kristen19@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8005 Ranchhand Court', 'NULL', '919-555-0171', '2013-05-30', '2-5 Miles'], ['17542', '301', 'AW00017542', 'NULL', 'Bridget', 'L', 'Rai', '0', '1978-08-22', 'S', 'NULL', 'F', 'bridget19@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1911 Pinecrest Dr.', 'NULL', '908-555-0137', '2013-11-14', '0-1 Miles'], ['17543', '302', 'AW00017543', 'NULL', 'Meredith', 'W', 'Martin', '0', '1973-08-11', 'S', 'NULL', 'F', 'meredith22@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6868 West', 'NULL', '395-555-0159', '2013-11-05', '0-1 Miles'], ['17544', '616', 'AW00017544', 'NULL', 'Eduardo', 'S', 'Rogers', '0', '1967-12-10', 'M', 'NULL', 'M', 'eduardo86@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2716 Olivera Rd.', 'NULL', '683-555-0123', '2013-11-05', '2-5 Miles'], ['17545', '616', 'AW00017545', 'NULL', 'Wyatt', 'NULL', 'Ross', '0', '1968-01-23', 'M', 'NULL', 'M', 'wyatt55@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9796 Virgil St.', 'NULL', '198-555-0136', '2013-11-17', '0-1 Miles'], ['17546', '337', 'AW00017546', 'NULL', 'Melanie', 'V', 'James', '0', '1973-05-30', 'M', 'NULL', 'F', 'melanie33@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7595 York Dr', 'NULL', '416-555-0152', '2013-11-02', '0-1 Miles'], ['17547', '298', 'AW00017547', 'NULL', 'Alejandro', 'J', 'Yuan', '0', '1967-03-09', 'M', 'NULL', 'M', 'alejandro33@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '9322 Dianda Drive', 'NULL', '126-555-0196', '2013-07-13', '10+ Miles'], ['17548', '348', 'AW00017548', 'NULL', 'Kaylee', 'F', 'Adams', '0', '1972-11-10', 'M', 'NULL', 'F', 'kaylee38@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '67 Flamingo Drive', 'NULL', '664-555-0174', '2013-07-21', '2-5 Miles'], ['17549', '343', 'AW00017549', 'NULL', 'Jonathan', 'R', 'Taylor', '0', '1947-08-14', 'M', 'NULL', 'M', 'jonathan59@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8154 Falcon Place', 'NULL', '436-555-0116', '2014-01-05', '1-2 Miles'], ['17550', '545', 'AW00017550', 'NULL', 'Mason', 'A', 'Edwards', '0', '1953-10-17', 'S', 'NULL', 'M', 'mason22@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6217 W. Watson Court', 'NULL', '933-555-0191', '2013-12-19', '10+ Miles'], ['17551', '65', 'AW00017551', 'NULL', 'Victoria', 'NULL', 'Torres', '0', '1948-02-02', 'M', 'NULL', 'F', 'victoria40@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9811 Toledo', 'NULL', '314-555-0117', '2013-06-20', '10+ Miles'], ['17552', '315', 'AW00017552', 'NULL', 'Julia', 'S', 'Howard', '0', '1953-08-23', 'M', 'NULL', 'F', 'julia56@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6529 Buena Vista', 'NULL', '187-555-0121', '2013-11-14', '10+ Miles'], ['17553', '536', 'AW00017553', 'NULL', 'Summer', 'L', 'Sanchez', '0', '1953-09-21', 'M', 'NULL', 'F', 'summer18@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5545 Green Road', 'NULL', '692-555-0112', '2013-11-22', '1-2 Miles'], ['17554', '536', 'AW00017554', 'NULL', 'Emma', 'H', 'Harris', '0', '1954-04-18', 'M', 'NULL', 'F', 'emma13@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2774 Eagle Peak', 'NULL', '697-555-0171', '2013-02-15', '1-2 Miles'], ['17555', '311', 'AW00017555', 'NULL', 'William', 'A', 'Smith', '0', '1948-07-12', 'M', 'NULL', 'M', 'william16@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2126 Silver Oak Pl.', 'NULL', '774-555-0186', '2013-10-29', '1-2 Miles'], ['17556', '536', 'AW00017556', 'NULL', 'Emily', 'A', 'Powell', '0', '1949-10-07', 'M', 'NULL', 'F', 'emily33@adventure-works.com', '30000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '1775 Choctaw Court', 'NULL', '568-555-0140', '2013-04-05', '10+ Miles'], ['17557', '545', 'AW00017557', 'NULL', 'Matthew', 'S', 'Davis', '0', '1950-04-24', 'S', 'NULL', 'M', 'matthew11@adventure-works.com', '30000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2294 West 39th St.', 'NULL', '229-555-0129', '2013-06-24', '10+ Miles'], ['17558', '54', 'AW00017558', 'NULL', 'Ian', 'M', 'Williams', '0', '1960-11-05', 'S', 'NULL', 'M', 'ian3@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '7577 Camino Bonita', 'NULL', '354-555-0176', '2013-10-24', '10+ Miles'], ['17559', '298', 'AW00017559', 'NULL', 'Kari', 'NULL', 'Suarez', '0', '1960-10-08', 'S', 'NULL', 'F', 'kari40@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8109 Virginia Hills Drive', 'NULL', '188-555-0123', '2013-07-09', '10+ Miles'], ['17560', '642', 'AW00017560', 'NULL', 'Kaylee', 'L', 'Richardson', '0', '1983-03-10', 'M', 'NULL', 'F', 'kaylee7@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6775 Firestone', 'NULL', '396-555-0125', '2013-08-15', '2-5 Miles'], ['17561', '298', 'AW00017561', 'NULL', 'Samantha', 'NULL', 'White', '0', '1977-12-19', 'M', 'NULL', 'F', 'samantha14@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7427 Fern Leaf Lane', 'NULL', '244-555-0113', '2013-07-23', '0-1 Miles'], ['17562', '311', 'AW00017562', 'NULL', 'Zachary', 'C', 'Sharma', '0', '1983-11-22', 'M', 'NULL', 'M', 'zachary27@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5845 Oil Road', 'NULL', '151-555-0172', '2013-06-21', '2-5 Miles'], ['17563', '337', 'AW00017563', 'NULL', 'Jeremiah', 'NULL', 'King', '0', '1983-09-07', 'S', 'NULL', 'M', 'jeremiah14@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2741 Orangewood Dr.', 'NULL', '698-555-0158', '2013-11-19', '2-5 Miles'], ['17564', '612', 'AW00017564', 'NULL', 'Julia', 'M', 'West', '0', '1975-12-10', 'M', 'NULL', 'F', 'julia62@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '162 Maureen Lane', 'NULL', '297-555-0169', '2013-07-07', '0-1 Miles'], ['17565', '623', 'AW00017565', 'NULL', 'Alexandra', 'NULL', 'Murphy', '0', '1976-06-21', 'M', 'NULL', 'F', 'alexandra9@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7390 Notre Dame Avenue', 'NULL', '160-555-0167', '2013-07-29', '0-1 Miles'], ['17566', '355', 'AW00017566', 'NULL', 'Rachel', 'NULL', 'Martinez', '0', '1975-10-06', 'M', 'NULL', 'F', 'rachel20@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8190 Court Lane', 'NULL', '440-555-0186', '2013-07-16', '0-1 Miles'], ['17567', '314', 'AW00017567', 'NULL', 'Nathaniel', 'G', 'Cook', '0', '1976-04-15', 'M', 'NULL', 'M', 'nathaniel22@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3356 Eastgate Ave.', 'NULL', '231-555-0123', '2013-07-03', '2-5 Miles'], ['17568', '359', 'AW00017568', 'NULL', 'Dylan', 'M', 'Perry', '0', '1975-09-15', 'M', 'NULL', 'M', 'dylan6@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8704 Live Oak', 'NULL', '835-555-0112', '2013-08-07', '2-5 Miles'], ['17569', '536', 'AW00017569', 'NULL', 'Mya', 'L', 'Price', '0', '1975-08-22', 'S', 'NULL', 'F', 'mya2@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7545 Gonzalez Ct', 'NULL', '747-555-0119', '2013-02-26', '2-5 Miles'], ['17570', '612', 'AW00017570', 'NULL', 'Carlos', 'W', 'Sanchez', '0', '1975-09-20', 'M', 'NULL', 'M', 'carlos20@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3550 Bernauer', 'NULL', '400-555-0157', '2013-02-26', '2-5 Miles'], ['17571', '310', 'AW00017571', 'NULL', 'James', 'A', 'Li', '0', '1980-05-22', 'M', 'NULL', 'M', 'james42@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5038 Candy Rd', '# 126', '989-555-0137', '2013-08-17', '2-5 Miles'], ['17572', '312', 'AW00017572', 'NULL', 'Lucas', 'L', 'Edwards', '0', '1974-11-05', 'S', 'NULL', 'M', 'lucas11@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1233 RiverRock Dr.', 'NULL', '124-555-0169', '2013-08-13', '2-5 Miles'], ['17573', '339', 'AW00017573', 'NULL', 'Caroline', 'NULL', 'Ross', '0', '1975-02-15', 'S', 'NULL', 'F', 'caroline6@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '9433 Athene Drive', 'NULL', '235-555-0196', '2013-08-13', '0-1 Miles'], ['17574', '338', 'AW00017574', 'NULL', 'Punya', 'NULL', 'Palit', '0', '1980-01-10', 'S', 'NULL', 'M', 'punya0@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '5202 Shenandoah Dr.', 'NULL', '164-555-0118', '2013-08-07', '0-1 Miles'], ['17575', '635', 'AW00017575', 'NULL', 'Marcus', 'J', 'Brown', '0', '1980-12-10', 'S', 'NULL', 'M', 'marcus4@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2913 Mountain Spring Road', 'NULL', '305-555-0179', '2013-08-20', '2-5 Miles'], ['17576', '300', 'AW00017576', 'NULL', 'Albert', 'NULL', 'Vazquez', '0', '1974-12-30', 'M', 'NULL', 'M', 'albert14@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '283 Cadloni', 'NULL', '138-555-0137', '2013-08-16', '2-5 Miles'], ['17577', '325', 'AW00017577', 'NULL', 'Justin', 'M', 'Lee', '0', '1974-11-29', 'S', 'NULL', 'M', 'justin50@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5714 Damascus Loop', 'NULL', '125-555-0142', '2013-07-15', '2-5 Miles'], ['17578', '355', 'AW00017578', 'NULL', 'Megan', 'S', 'Thompson', '0', '1980-11-18', 'M', 'NULL', 'F', 'megan18@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9738 Hamilton Drive', 'NULL', '393-555-0140', '2013-06-09', '2-5 Miles'], ['17579', '54', 'AW00017579', 'NULL', 'Jack', 'E', 'Chen', '0', '1976-12-09', 'M', 'NULL', 'M', 'jack26@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5578 Ruth Drive', 'NULL', '470-555-0194', '2013-09-14', '2-5 Miles'], ['17580', '338', 'AW00017580', 'NULL', 'Noah', 'M', 'White', '0', '1977-04-12', 'M', 'NULL', 'M', 'noah54@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9422 Rolando Avenue', 'NULL', '399-555-0187', '2013-11-17', '0-1 Miles'], ['17581', '355', 'AW00017581', 'NULL', 'Jack', 'M', 'Henderson', '0', '1977-02-07', 'M', 'NULL', 'M', 'jack5@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4921 St. Geemain Lane', 'NULL', '280-555-0163', '2013-11-04', '0-1 Miles'], ['17582', '312', 'AW00017582', 'NULL', 'Katherine', 'A', 'Wilson', '0', '1974-02-16', 'S', 'NULL', 'F', 'katherine77@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '6440 Pacheco', 'NULL', '265-555-0110', '2013-11-17', '0-1 Miles'], ['17583', '611', 'AW00017583', 'NULL', 'Stephanie', 'NULL', 'Cook', '0', '1979-07-14', 'S', 'NULL', 'F', 'stephanie8@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '8002 Morgan Territory Road', 'NULL', '270-555-0169', '2013-02-14', '0-1 Miles'], ['17584', '301', 'AW00017584', 'NULL', 'Lisa', 'J', 'Liu', '0', '1973-12-02', 'S', 'NULL', 'F', 'lisa7@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4310 Chickpea Ct.', 'NULL', '153-555-0188', '2014-01-26', '0-1 Miles'], ['17585', '71', 'AW00017585', 'NULL', 'Seth', 'R', 'Griffin', '0', '1973-09-17', 'S', 'NULL', 'M', 'seth69@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '8287 Altura Dr.', 'NULL', '487-555-0197', '2013-03-11', '0-1 Miles'], ['17586', '51', 'AW00017586', 'NULL', 'Cassidy', 'A', 'Patterson', '0', '1972-12-24', 'S', 'NULL', 'F', 'cassidy11@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3844 Lodge Drive', 'NULL', '634-555-0176', '2013-10-05', '2-5 Miles'], ['17587', '611', 'AW00017587', 'NULL', 'Curtis', 'J', 'Liang', '0', '1981-05-22', 'M', 'NULL', 'M', 'curtis13@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4281 Meaham Drive', 'NULL', '261-555-0184', '2013-11-04', '0-1 Miles'], ['17588', '616', 'AW00017588', 'NULL', 'Gavin', 'NULL', 'Bennett', '0', '1975-11-10', 'M', 'NULL', 'M', 'gavin1@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7827 Mt. Hood Circle', 'NULL', '473-555-0127', '2013-11-11', '2-5 Miles'], ['17589', '618', 'AW00017589', 'NULL', 'Melanie', 'L', 'Brooks', '0', '1975-10-18', 'S', 'NULL', 'F', 'melanie12@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7120 Panoramic Drive', 'NULL', '455-555-0159', '2014-01-22', '2-5 Miles'], ['17590', '545', 'AW00017590', 'NULL', 'Garrett', 'R', 'Cox', '0', '1981-10-05', 'M', 'NULL', 'M', 'garrett15@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5080 Terra Granada', 'NULL', '827-555-0166', '2013-03-03', '0-1 Miles'], ['17591', '299', 'AW00017591', 'NULL', 'Spencer', 'NULL', 'Hughes', '0', '1975-09-01', 'M', 'NULL', 'M', 'spencer13@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3072 Gumwood Dr.', 'NULL', '279-555-0138', '2013-11-27', '2-5 Miles'], ['17592', '307', 'AW00017592', 'NULL', 'Bryan', 'T', 'Sanders', '0', '1981-09-23', 'M', 'NULL', 'M', 'bryan6@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6494 Green Valley Rd.', 'NULL', '517-555-0157', '2013-11-23', '2-5 Miles'], ['17593', '314', 'AW00017593', 'NULL', 'Richard', 'C', 'Butler', '0', '1976-02-20', 'M', 'NULL', 'M', 'richard69@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4056 Marina Vill Pkwy.', 'NULL', '491-555-0118', '2013-11-04', '2-5 Miles'], ['17594', '334', 'AW00017594', 'NULL', 'Michelle', 'A', 'Cook', '0', '1976-05-06', 'M', 'NULL', 'F', 'michelle21@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1897 Northridge Road', 'NULL', '236-555-0189', '2013-11-27', '2-5 Miles'], ['17595', '60', 'AW00017595', 'NULL', 'Benjamin', 'L', 'Garcia', '0', '1983-10-01', 'M', 'NULL', 'M', 'benjamin53@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8333 Polk Street', 'NULL', '830-555-0119', '2013-11-15', '2-5 Miles'], ['17596', '611', 'AW00017596', 'NULL', 'Adrienne', 'NULL', 'Vazquez', '0', '1972-05-05', 'S', 'NULL', 'F', 'adrienne11@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4540 Wood Ranch Circle', 'NULL', '439-555-0197', '2013-08-13', '2-5 Miles'], ['17597', '648', 'AW00017597', 'NULL', 'Sarah', 'NULL', 'Diaz', '0', '1972-01-08', 'S', 'NULL', 'F', 'sarah46@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2419 Martindale Dr.', 'NULL', '573-555-0135', '2013-08-20', '2-5 Miles'], ['17598', '316', 'AW00017598', 'NULL', 'Cameron', 'NULL', 'Harris', '0', '1977-10-08', 'M', 'NULL', 'M', 'cameron32@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5374 East Lake Court', 'NULL', '558-555-0162', '2013-08-05', '0-1 Miles'], ['17599', '642', 'AW00017599', 'NULL', 'Sebastian', 'A', 'Cooper', '0', '1972-05-08', 'M', 'NULL', 'M', 'sebastian9@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '127 Daylight Pl.', 'NULL', '521-555-0166', '2013-08-05', '0-1 Miles'], ['17600', '626', 'AW00017600', 'NULL', 'Timothy', 'NULL', 'Brooks', '0', '1972-05-27', 'S', 'NULL', 'M', 'timothy3@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2731 Northgate Road', 'NULL', '831-555-0110', '2013-08-10', '2-5 Miles'], ['17601', '65', 'AW00017601', 'NULL', 'Jose', 'J', 'Hall', '0', '1971-07-25', 'M', 'NULL', 'M', 'jose83@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4773 Tanager Road', 'NULL', '438-555-0124', '2013-02-09', '0-1 Miles'], ['17602', '301', 'AW00017602', 'NULL', 'Dalton', 'A', 'Williams', '0', '1972-01-02', 'M', 'NULL', 'M', 'dalton2@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5525 Lilly Lane', 'NULL', '960-555-0118', '2013-08-08', '0-1 Miles'], ['17603', '536', 'AW00017603', 'NULL', 'Anna', 'NULL', 'Patterson', '0', '1980-08-06', 'M', 'NULL', 'F', 'anna35@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3243 Buckingham Dr.', '# 207', '113-555-0126', '2013-09-22', '2-5 Miles'], ['17604', '623', 'AW00017604', 'NULL', 'Noah', 'H', 'Robinson', '0', '1975-03-16', 'S', 'NULL', 'M', 'noah65@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7754 Lafayette Street', 'NULL', '495-555-0145', '2013-10-30', '2-5 Miles'], ['17605', '298', 'AW00017605', 'NULL', 'Jon', 'NULL', 'Ma', '0', '1974-09-20', 'M', 'NULL', 'M', 'jon36@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '9095 Ironwood Drive', 'NULL', '556-555-0177', '2013-04-18', '2-5 Miles'], ['17606', '299', 'AW00017606', 'NULL', 'Jacqueline', 'D', 'Peterson', '0', '1975-03-19', 'M', 'NULL', 'F', 'jacqueline29@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '3676 Oak Leaf Ct', 'NULL', '184-555-0144', '2013-09-16', '2-5 Miles'], ['17607', '302', 'AW00017607', 'NULL', 'Frederick', 'NULL', 'Gonzalez', '0', '1976-04-11', 'S', 'NULL', 'M', 'frederick15@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6569 Endriss', 'NULL', '816-555-0173', '2013-08-30', '2-5 Miles'], ['17608', '635', 'AW00017608', 'NULL', 'Carlos', 'S', 'Cooper', '0', '1971-01-12', 'S', 'NULL', 'M', 'carlos10@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7217 Mt. Wilson Way', 'NULL', '636-555-0121', '2013-08-06', '0-1 Miles'], ['17609', '300', 'AW00017609', 'NULL', 'Charles', 'NULL', 'Davis', '0', '1976-07-01', 'S', 'NULL', 'M', 'charles8@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '2678 Village Pl', 'NULL', '952-555-0176', '2013-08-01', '0-1 Miles'], ['17610', '359', 'AW00017610', 'NULL', 'Anna', 'NULL', 'White', '0', '1971-03-01', 'S', 'NULL', 'F', 'anna50@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7077 Blue Jay Drive', 'NULL', '238-555-0140', '2013-06-10', '2-5 Miles'], ['17611', '543', 'AW00017611', 'NULL', 'Luis', 'G', 'Butler', '0', '1970-08-10', 'S', 'NULL', 'M', 'luis13@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2228 Ashford Court', 'NULL', '291-555-0166', '2013-05-18', '0-1 Miles'], ['17612', '635', 'AW00017612', 'NULL', 'Courtney', 'NULL', 'Parker', '0', '1970-10-22', 'S', 'NULL', 'F', 'courtney5@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1944 Serene Court', 'NULL', '266-555-0176', '2013-11-24', '2-5 Miles'], ['17613', '51', 'AW00017613', 'NULL', 'Dakota', 'L', 'Bryant', '0', '1971-03-31', 'S', 'NULL', 'M', 'dakota14@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '4402 Baker Drive', 'NULL', '849-555-0117', '2013-09-25', '10+ Miles'], ['17614', '358', 'AW00017614', 'NULL', 'Mason', 'M', 'Cook', '0', '1970-08-12', 'S', 'NULL', 'M', 'mason19@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8228 Kinross Dr.', 'NULL', '321-555-0174', '2013-08-09', '2-5 Miles'], ['17615', '612', 'AW00017615', 'NULL', 'Brittany', 'G', 'Long', '0', '1970-04-08', 'S', 'NULL', 'F', 'brittany8@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3533 Jam Way', 'NULL', '634-555-0154', '2013-08-06', '0-1 Miles'], ['17616', '638', 'AW00017616', 'NULL', 'Daniel', 'J', 'Weisman', '0', '1981-03-12', 'S', 'NULL', 'M', 'daniel4@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '976 Shore Rd.', 'NULL', '358-555-0178', '2013-04-25', '0-1 Miles'], ['17617', '315', 'AW00017617', 'NULL', 'Abigail', 'W', 'Simmons', '0', '1969-11-09', 'S', 'NULL', 'F', 'abigail40@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '9497 Candelero Place', 'NULL', '887-555-0122', '2013-08-07', '10+ Miles'], ['17618', '609', 'AW00017618', 'NULL', 'Ramon', 'M', 'Liu', '0', '1975-09-12', 'M', 'NULL', 'M', 'ramon3@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '3989 Terrace Drive', 'NULL', '292-555-0156', '2013-08-17', '10+ Miles'], ['17619', '53', 'AW00017619', 'NULL', 'Chloe', 'NULL', 'Smith', '0', '1928-12-07', 'M', 'NULL', 'F', 'chloe34@adventure-works.com', '60000.00', '5', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3545 Harris Ct.', 'NULL', '375-555-0146', '2013-06-20', '2-5 Miles'], ['17620', '545', 'AW00017620', 'NULL', 'Miranda', 'NULL', 'Coleman', '0', '1969-08-03', 'S', 'NULL', 'F', 'miranda6@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3243 Land Ave', 'NULL', '190-555-0134', '2013-08-03', '2-5 Miles'], ['17621', '337', 'AW00017621', 'NULL', 'Brianna', 'J', 'Price', '0', '1969-01-29', 'S', 'NULL', 'F', 'brianna48@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2775 Robinson Ave.', 'NULL', '175-555-0121', '2013-08-19', '2-5 Miles'], ['17622', '52', 'AW00017622', 'NULL', 'Courtney', 'NULL', 'Young', '0', '1974-07-02', 'S', 'NULL', 'F', 'courtney20@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8020 Gladstone Drive', 'NULL', '683-555-0161', '2013-09-16', '2-5 Miles'], ['17623', '368', 'AW00017623', 'NULL', 'Austin', 'L', 'Robinson', '0', '1973-09-15', 'S', 'NULL', 'M', 'austin34@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4772 Catalpa Court', 'NULL', '523-555-0127', '2013-11-05', '2-5 Miles'], ['17624', '326', 'AW00017624', 'NULL', 'Samantha', 'N', 'Alexander', '0', '1968-08-20', 'S', 'NULL', 'F', 'samantha41@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1687 Chaparral Court', 'NULL', '678-555-0176', '2013-11-04', '0-1 Miles'], ['17625', '69', 'AW00017625', 'NULL', 'Mason', 'NULL', 'Allen', '0', '1968-12-10', 'M', 'NULL', 'M', 'mason38@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3008 Brookdale Dr.', 'NULL', '504-555-0144', '2013-09-27', '0-1 Miles'], ['17626', '252', 'AW00017626', 'NULL', 'Alfredo', 'T', 'Blanco', '0', '1979-12-25', 'M', 'NULL', 'M', 'alfredo16@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6329 El Rancho Drive', 'NULL', '1 (11) 500 555-0168', '2012-06-28', '1-2 Miles'], ['17627', '258', 'AW00017627', 'NULL', 'Dennis', 'M', 'Chen', '0', '1980-03-08', 'M', 'NULL', 'M', 'dennis3@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3195 Rotherham Dr.', 'NULL', '1 (11) 500 555-0181', '2012-05-30', '0-1 Miles'], ['17628', '248', 'AW00017628', 'NULL', 'Roberto', 'NULL', 'Munoz', '0', '1977-12-11', 'S', 'NULL', 'M', 'roberto7@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '2537 I St.', 'NULL', '1 (11) 500 555-0159', '2013-02-07', '1-2 Miles'], ['17629', '150', 'AW00017629', 'NULL', 'Tabitha', 'NULL', 'Torres', '0', '1983-06-16', 'S', 'NULL', 'F', 'tabitha32@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Wasserstr 65', 'NULL', '1 (11) 500 555-0118', '2012-09-26', '1-2 Miles'], ['17630', '145', 'AW00017630', 'NULL', 'Gilbert', 'E', 'Zhang', '0', '1978-09-22', 'M', 'NULL', 'M', 'gilbert0@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Wertheimer Straße 86', 'NULL', '1 (11) 500 555-0122', '2013-02-07', '1-2 Miles'], ['17631', '147', 'AW00017631', 'NULL', 'Cara', 'J', 'He', '0', '1979-01-22', 'M', 'NULL', 'F', 'cara14@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Charlottenstr 29', 'NULL', '1 (11) 500 555-0121', '2013-03-18', '1-2 Miles'], ['17632', '230', 'AW00017632', 'NULL', 'Jimmy', 'L', 'Serrano', '0', '1979-04-18', 'M', 'NULL', 'M', 'jimmy20@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2779 Ramsay Circle', 'NULL', '1 (11) 500 555-0185', '2012-07-12', '0-1 Miles'], ['17633', '203', 'AW00017633', 'NULL', 'Gary', 'NULL', 'Dominguez', '0', '1978-05-07', 'S', 'NULL', 'M', 'gary23@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '17, rue Faubourg St Antoine', 'NULL', '1 (11) 500 555-0127', '2012-05-15', '1-2 Miles'], ['17634', '211', 'AW00017634', 'NULL', 'Kaitlin', 'A', 'Rana', '0', '1977-12-03', 'S', 'NULL', 'F', 'kaitlin11@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '40, rue de la Centenaire', 'NULL', '1 (11) 500 555-0164', '2012-05-20', '0-1 Miles'], ['17635', '135', 'AW00017635', 'NULL', 'Terry', 'NULL', 'Deng', '0', '1977-08-03', 'S', 'NULL', 'M', 'terry4@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Westheimer Straße 6616', 'NULL', '1 (11) 500 555-0116', '2012-09-16', '1-2 Miles'], ['17636', '158', 'AW00017636', 'NULL', 'Ross', 'NULL', 'Srini', '0', '1977-09-19', 'S', 'NULL', 'M', 'ross8@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Zur Lindung 46', 'NULL', '1 (11) 500 555-0169', '2013-10-04', '2-5 Miles'], ['17637', '143', 'AW00017637', 'NULL', 'Arturo', 'S', 'Tang', '0', '1983-10-01', 'S', 'NULL', 'M', 'arturo28@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Alte Landstr 951', 'NULL', '1 (11) 500 555-0143', '2013-02-12', '2-5 Miles'], ['17638', '202', 'AW00017638', 'NULL', 'Clarence', 'NULL', 'Zheng', '0', '1977-08-01', 'S', 'NULL', 'M', 'clarence12@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '2086 Rotherham Dr.', 'NULL', '1 (11) 500 555-0132', '2013-12-07', '2-5 Miles'], ['17639', '247', 'AW00017639', 'NULL', 'Heather', 'NULL', 'Ma', '0', '1983-04-04', 'S', 'NULL', 'F', 'heather15@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9021 Santa Monica Drive', 'NULL', '1 (11) 500 555-0143', '2012-07-21', '1-2 Miles'], ['17640', '133', 'AW00017640', 'NULL', 'Haley', 'T', 'Allen', '0', '1922-06-06', 'M', 'NULL', 'F', 'haley58@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Husemann Straße 4444', 'NULL', '1 (11) 500 555-0113', '2013-02-20', '1-2 Miles'], ['17641', '222', 'AW00017641', 'Ms.', 'Lorrin', 'G.', 'Smith-Bates', '0', '1976-09-11', 'S', 'NULL', 'M', 'lorrin0@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '11, quai de l´ Iton', 'NULL', '129-555-0100', '2012-05-26', '1-2 Miles'], ['17642', '250', 'AW00017642', 'NULL', 'Gregory', 'NULL', 'Luo', '0', '1976-10-13', 'S', 'NULL', 'M', 'gregory10@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '7781 Santa Barbara Rd', 'NULL', '1 (11) 500 555-0152', '2013-03-30', '1-2 Miles'], ['17643', '201', 'AW00017643', 'NULL', 'Wesley', 'R', 'Cai', '0', '1977-04-13', 'S', 'NULL', 'M', 'wesley21@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '44, rue du Départ', 'NULL', '1 (11) 500 555-0187', '2013-11-07', '1-2 Miles'], ['17644', '273', 'AW00017644', 'NULL', 'Rebecca', 'F', 'Adams', '0', '1977-03-10', 'S', 'NULL', 'F', 'rebecca17@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '7157 Park Lane Circle', 'NULL', '1 (11) 500 555-0134', '2012-07-18', '2-5 Miles'], ['17645', '255', 'AW00017645', 'NULL', 'Albert', 'M', 'Alonso', '0', '1976-08-20', 'S', 'NULL', 'M', 'albert10@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6345 Dartmouth Way', 'NULL', '1 (11) 500 555-0163', '2013-10-01', '2-5 Miles'], ['17646', '215', 'AW00017646', 'NULL', 'Leah', 'M', 'Xu', '0', '1982-04-23', 'S', 'NULL', 'F', 'leah9@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '16, avenue de Malakoff', 'NULL', '1 (11) 500 555-0137', '2012-06-16', '2-5 Miles'], ['17647', '186', 'AW00017647', 'NULL', 'Molly', 'C', 'Lopez', '0', '1977-05-14', 'S', 'NULL', 'F', 'molly15@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '91, cours Mirabeau', 'NULL', '1 (11) 500 555-0183', '2012-06-04', '1-2 Miles'], ['17648', '211', 'AW00017648', 'NULL', 'Gilbert', 'NULL', 'Sharma', '0', '1976-10-14', 'S', 'NULL', 'M', 'gilbert30@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '22, rue de la Centenaire', 'NULL', '1 (11) 500 555-0133', '2012-06-25', '1-2 Miles'], ['17649', '230', 'AW00017649', 'NULL', 'Ronald', 'F', 'Mehta', '0', '1977-02-15', 'S', 'NULL', 'M', 'ronald16@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5282 Blue Ridge', 'NULL', '1 (11) 500 555-0138', '2013-02-14', '0-1 Miles'], ['17650', '234', 'AW00017650', 'NULL', 'Jessica', 'NULL', 'Sanders', '0', '1981-11-01', 'S', 'NULL', 'F', 'jessica24@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1826 Village Road', 'NULL', '1 (11) 500 555-0120', '2013-11-09', '1-2 Miles'], ['17651', '208', 'AW00017651', 'NULL', 'Ethan', 'E', 'Butler', '0', '1975-08-25', 'S', 'NULL', 'M', 'ethan10@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '39, avenue des Laurentides', 'NULL', '1 (11) 500 555-0184', '2012-06-03', '0-1 Miles'], ['17652', '131', 'AW00017652', 'NULL', 'Javier', 'NULL', 'Vazquez', '0', '1976-03-22', 'M', 'NULL', 'M', 'javier9@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', 'Berliner Platz 123', 'NULL', '1 (11) 500 555-0187', '2013-04-23', '0-1 Miles'], ['17653', '211', 'AW00017653', 'NULL', 'Linda', 'G', 'Vazquez', '0', '1981-10-05', 'S', 'NULL', 'F', 'linda30@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2, rue de Varenne', 'NULL', '1 (11) 500 555-0113', '2013-05-10', '0-1 Miles'], ['17654', '70', 'AW00017654', 'NULL', 'Caroline', 'NULL', 'Alexander', '0', '1981-05-02', 'S', 'NULL', 'F', 'caroline20@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '934 St. Paul Way', 'NULL', '916-555-0160', '2013-11-16', '1-2 Miles'], ['17655', '54', 'AW00017655', 'NULL', 'Angela', 'C', 'Sánchez', '0', '1979-10-30', 'S', 'NULL', 'F', 'angela49@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4325 Polson Court', 'NULL', '889-555-0193', '2013-11-24', '1-2 Miles'], ['17656', '63', 'AW00017656', 'NULL', 'Carol', 'D', 'Martinez', '0', '1979-08-26', 'S', 'NULL', 'F', 'carol16@adventure-works.com', '30000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8869 Bellwood Court', 'NULL', '606-555-0131', '2013-11-20', '1-2 Miles'], ['17657', '53', 'AW00017657', 'NULL', 'Noah', 'A', 'Martin', '0', '1981-06-22', 'M', 'NULL', 'M', 'noah59@adventure-works.com', '40000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '0', '6218 Stephanie Way', 'NULL', '473-555-0111', '2013-02-17', '0-1 Miles'], ['17658', '368', 'AW00017658', 'NULL', 'Jade', 'R', 'Howard', '0', '1934-09-03', 'M', 'NULL', 'F', 'jade8@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '2945 Hilton Way', 'NULL', '544-555-0190', '2013-08-26', '1-2 Miles'], ['17659', '612', 'AW00017659', 'NULL', 'Jodi', 'A', 'Tang', '0', '1972-01-04', 'S', 'NULL', 'F', 'jodi4@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5684 San Marino Ct.', 'NULL', '181-555-0185', '2013-08-04', '1-2 Miles'], ['17660', '299', 'AW00017660', 'NULL', 'Seth', 'W', 'Young', '0', '1972-02-01', 'M', 'NULL', 'M', 'seth25@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9447 Leslie Avenue', 'NULL', '702-555-0199', '2013-08-07', '1-2 Miles'], ['17661', '338', 'AW00017661', 'NULL', 'Natalie', 'NULL', 'Smith', '0', '1960-01-01', 'M', 'NULL', 'F', 'natalie68@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5246 Premier Place', 'NULL', '411-555-0167', '2013-08-06', '1-2 Miles'], ['17662', '369', 'AW00017662', 'NULL', 'Jose', 'A', 'Washington', '0', '1965-09-16', 'M', 'NULL', 'M', 'jose7@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5740 Cherry Street', 'NULL', '169-555-0119', '2013-08-04', '1-2 Miles'], ['17663', '302', 'AW00017663', 'NULL', 'Elizabeth', 'L', 'Hayes', '0', '1966-02-13', 'M', 'NULL', 'F', 'elizabeth51@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '2', '74 Juliet Court', 'NULL', '715-555-0121', '2013-03-23', '0-1 Miles'], ['17664', '326', 'AW00017664', 'NULL', 'Devin', 'NULL', 'Robinson', '0', '1971-10-16', 'S', 'NULL', 'M', 'devin17@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3648 El Dorado', 'NULL', '954-555-0161', '2013-06-04', '1-2 Miles'], ['17665', '546', 'AW00017665', 'NULL', 'Zachary', 'NULL', 'Jenkins', '0', '1960-10-13', 'M', 'NULL', 'M', 'zachary5@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '2', '8922 Big Canyon Road', 'NULL', '560-555-0168', '2013-11-03', '0-1 Miles'], ['17666', '336', 'AW00017666', 'NULL', 'Steven', 'W', 'Torres', '0', '1966-08-07', 'M', 'NULL', 'M', 'steven14@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9188 D Mt. Hood Circle', 'NULL', '653-555-0116', '2013-08-27', '1-2 Miles'], ['17667', '301', 'AW00017667', 'NULL', 'Jaime', 'M', 'Rai', '0', '1961-04-10', 'M', 'NULL', 'M', 'jaime40@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6394 Market Pl.', 'NULL', '363-555-0193', '2013-08-15', '1-2 Miles'], ['17668', '369', 'AW00017668', 'NULL', 'Eduardo', 'A', 'Peterson', '0', '1962-02-25', 'S', 'NULL', 'M', 'eduardo73@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4661 Bernauer', 'NULL', '622-555-0160', '2013-06-24', '1-2 Miles'], ['17669', '638', 'AW00017669', 'NULL', 'Olivia', 'N', 'Rivera', '0', '1962-04-09', 'M', 'NULL', 'F', 'olivia33@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8490 Longbrood Way', 'NULL', '196-555-0192', '2013-06-22', '0-1 Miles'], ['17670', '335', 'AW00017670', 'NULL', 'Gabrielle', 'NULL', 'Alexander', '0', '1962-03-11', 'M', 'NULL', 'F', 'gabrielle41@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3294 Buena Vista', 'NULL', '933-555-0158', '2013-06-05', '1-2 Miles'], ['17671', '359', 'AW00017671', 'NULL', 'Emma', 'J', 'Stewart', '0', '1962-01-31', 'M', 'NULL', 'F', 'emma24@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8627 Laguna Street', 'NULL', '180-555-0135', '2013-06-13', '1-2 Miles'], ['17672', '635', 'AW00017672', 'NULL', 'Thomas', 'NULL', 'Coleman', '0', '1962-04-25', 'M', 'NULL', 'M', 'thomas7@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6946 Ridge Circle', 'NULL', '727-555-0111', '2013-06-13', '0-1 Miles'], ['17673', '339', 'AW00017673', 'NULL', 'Amber', 'B', 'Scott', '0', '1961-11-03', 'M', 'NULL', 'F', 'amber14@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6964 Keller Ridge Dr.', 'NULL', '715-555-0193', '2014-01-12', '1-2 Miles'], ['17674', '300', 'AW00017674', 'NULL', 'Kevin', 'NULL', 'Wang', '0', '1979-12-13', 'M', 'NULL', 'M', 'kevin27@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3633 Stratton Circle', 'NULL', '944-555-0110', '2013-09-18', '0-1 Miles'], ['17675', '609', 'AW00017675', 'NULL', 'Rosa', 'NULL', 'Li', '0', '1962-10-24', 'M', 'NULL', 'F', 'rosa3@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7967 Panoramic Ave.', 'NULL', '340-555-0127', '2013-10-27', '0-1 Miles'], ['17676', '298', 'AW00017676', 'NULL', 'Eugene', 'NULL', 'Yang', '0', '1962-12-01', 'M', 'NULL', 'M', 'eugene9@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2141 Banking Road', 'NULL', '196-555-0178', '2013-06-01', '0-1 Miles'], ['17677', '536', 'AW00017677', 'NULL', 'Lawrence', 'NULL', 'Hernandez', '0', '1964-02-21', 'S', 'NULL', 'M', 'lawrence1@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4865 A St.', 'NULL', '197-555-0118', '2013-07-31', '1-2 Miles'], ['17678', '298', 'AW00017678', 'NULL', 'Julio', 'J', 'Blanco', '0', '1963-10-22', 'S', 'NULL', 'M', 'julio16@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2303 Rosebuck Way', 'NULL', '120-555-0133', '2013-09-01', '1-2 Miles'], ['17679', '609', 'AW00017679', 'NULL', 'Joe', 'NULL', 'Mehta', '0', '1964-05-02', 'M', 'NULL', 'M', 'joe17@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3369 N Lucile Lane', 'NULL', '369-555-0199', '2013-10-19', '0-1 Miles'], ['17680', '62', 'AW00017680', 'NULL', 'Mackenzie', 'L', 'Gray', '0', '1963-07-01', 'M', 'NULL', 'F', 'mackenzie4@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7267 St. Raphael Drive', 'NULL', '704-555-0119', '2013-08-19', '0-1 Miles'], ['17681', '299', 'AW00017681', 'NULL', 'Robert', 'NULL', 'Carter', '0', '1975-03-09', 'M', 'NULL', 'M', 'robert52@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9252 Lindell Dr.', 'NULL', '204-555-0128', '2013-09-16', '1-2 Miles'], ['17682', '609', 'AW00017682', 'NULL', 'Anna', 'NULL', 'Ramirez', '0', '1969-09-18', 'S', 'NULL', 'F', 'anna20@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2095 Sierra Drive', 'NULL', '543-555-0125', '2013-07-08', '0-1 Miles'], ['17683', '336', 'AW00017683', 'NULL', 'Jenna', 'NULL', 'Evans', '0', '1980-01-10', 'S', 'NULL', 'F', 'jenna0@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9745 Hillridge Way', 'NULL', '852-555-0167', '2013-03-08', '0-1 Miles'], ['17684', '298', 'AW00017684', 'NULL', 'Leslie', 'NULL', 'Gomez', '0', '1964-01-02', 'S', 'NULL', 'F', 'leslie1@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6896 Liana Lane', 'NULL', '167-555-0127', '2013-11-17', '0-1 Miles'], ['17685', '536', 'AW00017685', 'NULL', 'Diana', 'M', 'Torres', '0', '1963-09-14', 'S', 'NULL', 'F', 'diana11@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5733 Clayton Rd.', 'NULL', '707-555-0112', '2013-02-01', '0-1 Miles'], ['17686', '54', 'AW00017686', 'NULL', 'Jack', 'L', 'Griffin', '0', '1964-08-13', 'S', 'NULL', 'M', 'jack21@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3483 Flamingo Drive', 'NULL', '963-555-0118', '2013-05-08', '1-2 Miles'], ['17687', '634', 'AW00017687', 'NULL', 'Miguel', 'A', 'Turner', '0', '1964-07-22', 'M', 'NULL', 'M', 'miguel40@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3711 Rollingwood Dr', 'NULL', '176-555-0113', '2013-12-05', '0-1 Miles'], ['17688', '609', 'AW00017688', 'NULL', 'Pedro', 'NULL', 'Subram', '0', '1965-05-23', 'M', 'NULL', 'M', 'pedro13@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1686 Willow Drive', 'NULL', '183-555-0126', '2013-08-24', '0-1 Miles'], ['17689', '635', 'AW00017689', 'NULL', 'Mary', 'C', 'Young', '0', '1977-12-20', 'S', 'NULL', 'F', 'mary37@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7246 Ptarmigan Drive', 'NULL', '608-555-0117', '2013-07-14', '0-1 Miles'], ['17690', '307', 'AW00017690', 'NULL', 'Jenna', 'C', 'Gonzalez', '0', '1978-06-14', 'S', 'NULL', 'F', 'jenna8@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3986 Lunar Lane', 'NULL', '960-555-0139', '2013-09-02', '1-2 Miles'], ['17691', '62', 'AW00017691', 'NULL', 'Alexandria', 'NULL', 'Bradley', '0', '1978-10-22', 'S', 'NULL', 'F', 'alexandria1@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8920 Sand Point Road', 'NULL', '595-555-0125', '2013-11-09', '1-2 Miles'], ['17692', '609', 'AW00017692', 'NULL', 'Emily', 'A', 'Smith', '0', '1979-04-18', 'S', 'NULL', 'F', 'emily0@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '4976 Norris Court', 'NULL', '130-555-0158', '2013-09-04', '0-1 Miles'], ['17693', '634', 'AW00017693', 'NULL', 'Justin', 'NULL', 'Jenkins', '0', '1984-03-07', 'S', 'NULL', 'M', 'justin3@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2854 Ironwood Way', 'NULL', '892-555-0144', '2013-03-30', '1-2 Miles'], ['17694', '336', 'AW00017694', 'NULL', 'Joan', 'A', 'Carter', '0', '1984-08-02', 'S', 'NULL', 'F', 'joan13@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9671 Cedar Street', 'NULL', '555-555-0143', '2013-04-19', '1-2 Miles'], ['17695', '358', 'AW00017695', 'NULL', 'Hunter', 'NULL', 'Washington', '0', '1978-11-12', 'S', 'NULL', 'M', 'hunter10@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2624 El Monte Drive', 'NULL', '583-555-0171', '2013-05-02', '1-2 Miles'], ['17696', '361', 'AW00017696', 'NULL', 'Madison', 'J', 'Simmons', '0', '1978-10-19', 'S', 'NULL', 'F', 'madison27@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6103 Bailey Road', 'NULL', '940-555-0120', '2013-07-09', '1-2 Miles'], ['17697', '315', 'AW00017697', 'NULL', 'Nathaniel', 'NULL', 'Gray', '0', '1978-02-04', 'S', 'NULL', 'M', 'nathaniel7@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9752 Benita Way', 'NULL', '218-555-0110', '2014-01-23', '1-2 Miles'], ['17698', '372', 'AW00017698', 'NULL', 'Xavier', 'C', 'Butler', '0', '1977-05-19', 'M', 'NULL', 'M', 'xavier54@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8177 Grasswood Ct.', 'NULL', '149-555-0168', '2013-05-04', '1-2 Miles'], ['17699', '542', 'AW00017699', 'NULL', 'Jesse', 'K', 'Bell', '0', '1982-03-13', 'M', 'NULL', 'M', 'jesse14@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '9834 Hamlet', 'NULL', '531-555-0135', '2013-07-02', '0-1 Miles'], ['17700', '258', 'AW00017700', 'NULL', 'Hector', 'E', 'Torres', '0', '1978-04-23', 'S', 'NULL', 'M', 'hector10@adventure-works.com', '10000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '9500 Norman Avenue', 'NULL', '1 (11) 500 555-0145', '2012-07-02', '0-1 Miles'], ['17701', '271', 'AW00017701', 'NULL', 'Cassidy', 'NULL', 'Washington', '0', '1975-05-17', 'M', 'NULL', 'F', 'cassidy14@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '8584 Clay Rd', 'NULL', '1 (11) 500 555-0152', '2013-02-04', '0-1 Miles'], ['17702', '279', 'AW00017702', 'NULL', 'Jack', 'H', 'King', '0', '1979-11-02', 'M', 'NULL', 'M', 'jack55@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '5234 Shirley Dr.', 'NULL', '1 (11) 500 555-0148', '2013-04-03', '0-1 Miles'], ['17703', '186', 'AW00017703', 'NULL', 'Pamela', 'M', 'Fernandez', '0', '1971-08-18', 'M', 'NULL', 'F', 'pamela19@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '3, rue Pierre-Demoulin', 'NULL', '1 (11) 500 555-0113', '2013-05-31', '0-1 Miles'], ['17704', '144', 'AW00017704', 'NULL', 'Nelson', 'R', 'Moreno', '0', '1967-07-11', 'M', 'NULL', 'M', 'nelson6@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Am Gallberg 6400', 'NULL', '1 (11) 500 555-0111', '2013-04-04', '0-1 Miles'], ['17705', '272', 'AW00017705', 'NULL', 'Kelvin', 'H', 'Guo', '0', '1968-06-14', 'M', 'NULL', 'M', 'kelvin36@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3189 Oakgrove', 'NULL', '1 (11) 500 555-0151', '2013-02-19', '0-1 Miles'], ['17706', '267', 'AW00017706', 'NULL', 'Gabriel', 'B', 'Coleman', '0', '1972-09-07', 'M', 'NULL', 'M', 'gabriel2@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '2529 Terrace Dr', '#5', '1 (11) 500 555-0152', '2013-06-02', '0-1 Miles'], ['17707', '157', 'AW00017707', 'NULL', 'Mindy', 'NULL', 'Deng', '0', '1967-02-05', 'S', 'NULL', 'F', 'mindy5@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Kappellweg 242', 'NULL', '1 (11) 500 555-0145', '2013-07-23', '0-1 Miles'], ['17708', '239', 'AW00017708', 'Mr.', 'Timothy', 'NULL', 'Sneath', '0', '1966-12-15', 'M', 'NULL', 'M', 'timothy1@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3001 Hanson Lane', 'NULL', '385-555-0100', '2013-11-13', '0-1 Miles'], ['17709', '237', 'AW00017709', 'NULL', 'Martin', 'NULL', 'Raman', '0', '1972-05-09', 'M', 'NULL', 'M', 'martin17@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3029 Crescent Ave.', 'NULL', '1 (11) 500 555-0114', '2013-03-23', '0-1 Miles'], ['17710', '265', 'AW00017710', 'NULL', 'Natalie', 'F', 'Stewart', '0', '1942-01-22', 'M', 'NULL', 'F', 'natalie0@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8459 Patricia', 'NULL', '1 (11) 500 555-0155', '2013-05-07', '0-1 Miles'], ['17711', '202', 'AW00017711', 'NULL', 'Kristin', 'G', 'Luo', '0', '1966-10-07', 'M', 'NULL', 'F', 'kristin8@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '148, avenue du Québec', 'NULL', '1 (11) 500 555-0119', '2013-07-05', '0-1 Miles'], ['17712', '209', 'AW00017712', 'NULL', 'Gary', 'NULL', 'Blanco', '0', '1963-11-06', 'S', 'NULL', 'M', 'gary26@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '3394, rue Surcouf', 'NULL', '1 (11) 500 555-0162', '2013-07-13', '0-1 Miles'], ['17713', '223', 'AW00017713', 'NULL', 'David', 'I', 'Johnson', '0', '1962-01-08', 'S', 'NULL', 'M', 'david74@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Midi-Couleurs', 'NULL', '1 (11) 500 555-0112', '2013-04-19', '0-1 Miles'], ['17714', '187', 'AW00017714', 'NULL', 'Tanya', 'NULL', 'Gutierrez', '0', '1967-10-22', 'M', 'NULL', 'F', 'tanya7@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8, rue Montcalm', 'NULL', '1 (11) 500 555-0142', '2012-07-12', '0-1 Miles'], ['17715', '239', 'AW00017715', 'NULL', 'Rafael', 'J', 'Pal', '0', '1961-08-24', 'M', 'NULL', 'M', 'rafael36@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8511 Pinetree Court', 'NULL', '1 (11) 500 555-0160', '2012-07-10', '0-1 Miles'], ['17716', '193', 'AW00017716', 'NULL', 'Cesar', 'N', 'Gonzalez', '0', '1961-12-13', 'M', 'NULL', 'M', 'cesar18@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '74, place Beaubernard', 'NULL', '1 (11) 500 555-0181', '2012-07-06', '0-1 Miles'], ['17717', '273', 'AW00017717', 'NULL', 'Jeremiah', 'NULL', 'Miller', '0', '1965-11-21', 'S', 'NULL', 'M', 'jeremiah0@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5092 Crane Court', 'NULL', '1 (11) 500 555-0183', '2012-07-22', '0-1 Miles'], ['17718', '118', 'AW00017718', 'NULL', 'Lindsay', 'R', 'Jai', '0', '1942-10-20', 'M', 'NULL', 'F', 'lindsay11@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Conesweg 289', 'NULL', '1 (11) 500 555-0191', '2013-07-19', '0-1 Miles'], ['17719', '205', 'AW00017719', 'NULL', 'Vincent', 'A', 'Gao', '0', '1944-03-10', 'M', 'NULL', 'M', 'vincent14@adventure-works.com', '10000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6, avenue des Ternes', 'NULL', '1 (11) 500 555-0186', '2014-01-19', '2-5 Miles'], ['17720', '278', 'AW00017720', 'NULL', 'Deanna', 'D', 'Diaz', '0', '1944-11-16', 'S', 'NULL', 'F', 'deanna28@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5772 Ridgewood Drive', 'NULL', '1 (11) 500 555-0136', '2012-07-17', '0-1 Miles'], ['17721', '185', 'AW00017721', 'NULL', 'Cheryl', 'L', 'Alan', '0', '1951-12-31', 'M', 'NULL', 'F', 'cheryl10@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '4680, rue Villedo', 'NULL', '1 (11) 500 555-0179', '2013-03-29', '2-5 Miles'], ['17722', '145', 'AW00017722', 'NULL', 'Jerome', 'A', 'Serrano', '0', '1948-05-06', 'M', 'NULL', 'M', 'jerome15@adventure-works.com', '20000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Hunzinger Allee 292', 'NULL', '1 (11) 500 555-0136', '2012-09-15', '0-1 Miles'], ['17723', '239', 'AW00017723', 'NULL', 'Johnathan', 'NULL', 'Malhotra', '0', '1953-10-05', 'M', 'NULL', 'M', 'johnathan6@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3141 Gingham Way', 'NULL', '1 (11) 500 555-0117', '2013-03-09', '0-1 Miles'], ['17724', '13', 'AW00017724', 'NULL', 'Sheila', 'I', 'Blanco', '0', '1985-10-19', 'M', 'NULL', 'F', 'sheila14@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5010 C Mt. Hood Circle', 'NULL', '1 (11) 500 555-0168', '2013-08-11', '2-5 Miles'], ['17725', '35', 'AW00017725', 'NULL', 'Daniel', 'P', 'Martinez', '0', '1986-05-03', 'S', 'NULL', 'M', 'daniel15@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '6631 Highland Dr.', 'NULL', '1 (11) 500 555-0115', '2011-04-19', '1-2 Miles'], ['17726', '36', 'AW00017726', 'NULL', 'Caroline', 'NULL', 'Griffin', '0', '1986-03-20', 'S', 'NULL', 'F', 'caroline22@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5126 La Corte Bonita', 'NULL', '1 (11) 500 555-0117', '2011-04-29', '1-2 Miles'], ['17727', '35', 'AW00017727', 'NULL', 'Monique', 'L', 'Gill', '0', '1985-05-02', 'M', 'NULL', 'F', 'monique10@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '9068 Quiet Place Drive', 'NULL', '1 (11) 500 555-0191', '2013-04-05', '2-5 Miles'], ['17728', '2', 'AW00017728', 'NULL', 'Maria', 'N', 'Perry', '0', '1983-11-09', 'S', 'NULL', 'F', 'maria31@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '9697 Sunshine', 'NULL', '1 (11) 500 555-0112', '2011-04-01', '0-1 Miles'], ['17729', '3', 'AW00017729', 'NULL', 'Edgar', 'A', 'Garcia', '0', '1983-08-24', 'M', 'NULL', 'M', 'edgar16@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '757 Eureka Lane', 'NULL', '1 (11) 500 555-0157', '2013-04-02', '0-1 Miles'], ['17730', '34', 'AW00017730', 'NULL', 'Bridget', 'NULL', 'Tang', '0', '1984-04-01', 'S', 'NULL', 'F', 'bridget5@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '8831 Versailles Pl.', 'NULL', '1 (11) 500 555-0198', '2011-04-11', '2-5 Miles'], ['17731', '10', 'AW00017731', 'NULL', 'Tracy', 'NULL', 'Sharma', '0', '1983-11-01', 'M', 'NULL', 'F', 'tracy8@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '2909 Woodland Dr.', 'NULL', '1 (11) 500 555-0162', '2013-12-05', '1-2 Miles'], ['17732', '10', 'AW00017732', 'NULL', 'Allen', 'L', 'Rodriguez', '0', '1985-02-14', 'M', 'NULL', 'M', 'allen18@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '485 Starlyn Dr.', 'NULL', '1 (11) 500 555-0148', '2011-04-07', '0-1 Miles'], ['17733', '7', 'AW00017733', 'NULL', 'Alberto', 'P', 'Gill', '0', '1985-02-23', 'M', 'NULL', 'M', 'alberto14@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2753 Galloway Dr.', 'NULL', '1 (11) 500 555-0140', '2011-04-12', '0-1 Miles'], ['17734', '32', 'AW00017734', 'NULL', 'Leah', 'NULL', 'Sun', '0', '1983-12-31', 'M', 'NULL', 'F', 'leah10@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4378 Dover Way', 'NULL', '1 (11) 500 555-0130', '2011-04-28', '0-1 Miles'], ['17735', '27', 'AW00017735', 'NULL', 'Connor', 'NULL', 'Yang', '0', '1982-11-21', 'S', 'NULL', 'M', 'connor22@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '5486 Maria Vega Court', 'NULL', '1 (11) 500 555-0191', '2011-04-28', '2-5 Miles'], ['17736', '36', 'AW00017736', 'NULL', 'Kristine', 'M', 'Vazquez', '0', '1983-06-06', 'S', 'NULL', 'F', 'kristine15@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '8398 Mt. Hood Circle', 'NULL', '1 (11) 500 555-0156', '2011-04-09', '1-2 Miles'], ['17737', '209', 'AW00017737', 'NULL', 'Nicole', 'M', 'Gonzales', '0', '1954-05-28', 'M', 'NULL', 'F', 'nicole66@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '6861, rue Villedo', 'NULL', '1 (11) 500 555-0169', '2013-06-02', '1-2 Miles'], ['17738', '165', 'AW00017738', 'NULL', 'Nicolas', 'P', 'Deng', '0', '1948-12-03', 'S', 'NULL', 'M', 'nicolas0@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Marienplatz 31365', 'NULL', '1 (11) 500 555-0117', '2013-02-21', '1-2 Miles'], ['17739', '220', 'AW00017739', 'NULL', 'Colin', 'NULL', 'Cai', '0', '1972-11-06', 'S', 'NULL', 'M', 'colin21@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '8012, rue de Bas Marin', 'NULL', '1 (11) 500 555-0182', '2012-07-22', '0-1 Miles'], ['17740', '211', 'AW00017740', 'NULL', 'Colleen', 'Q', 'Liang', '0', '1972-06-02', 'S', 'NULL', 'F', 'colleen17@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '084, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0127', '2013-03-26', '1-2 Miles'], ['17741', '115', 'AW00017741', 'NULL', 'Alvin', 'J', 'Xu', '0', '1966-09-09', 'M', 'NULL', 'M', 'alvin12@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Rehstr 1346', 'NULL', '1 (11) 500 555-0115', '2012-09-13', '0-1 Miles'], ['17742', '178', 'AW00017742', 'NULL', 'Randall', 'F', 'Romero', '0', '1966-10-31', 'S', 'NULL', 'M', 'randall10@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Nonnendamm 345', 'NULL', '1 (11) 500 555-0111', '2012-09-08', '0-1 Miles'], ['17743', '251', 'AW00017743', 'NULL', 'Gerald', 'NULL', 'Gomez', '0', '1983-09-07', 'S', 'NULL', 'M', 'gerald9@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5900 May Rd', 'NULL', '1 (11) 500 555-0132', '2012-07-03', '0-1 Miles'], ['17744', '265', 'AW00017744', 'NULL', 'Chad', 'NULL', 'Nath', '0', '1966-12-15', 'M', 'NULL', 'M', 'chad19@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '389 Alamo Way', 'NULL', '1 (11) 500 555-0117', '2012-07-28', '0-1 Miles'], ['17745', '147', 'AW00017745', 'NULL', 'Tanya', 'B', 'Suarez', '0', '1965-07-13', 'M', 'NULL', 'F', 'tanya16@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Zimmerstr 24222', 'NULL', '1 (11) 500 555-0172', '2013-06-10', '1-2 Miles'], ['17746', '157', 'AW00017746', 'NULL', 'Cedric', 'C', 'Nath', '0', '1965-12-10', 'M', 'NULL', 'M', 'cedric37@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Klara Straße 22', 'NULL', '1 (11) 500 555-0114', '2013-04-01', '1-2 Miles'], ['17747', '275', 'AW00017747', 'NULL', 'Franklin', 'A', 'Xie', '0', '1966-05-19', 'M', 'NULL', 'M', 'franklin21@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5657 Georgia Dr.', 'NULL', '1 (11) 500 555-0130', '2012-07-28', '0-1 Miles'], ['17748', '205', 'AW00017748', 'NULL', 'Geoffrey', 'NULL', 'Kapoor', '0', '1975-11-10', 'S', 'NULL', 'M', 'geoffrey1@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '95, rue Ste-Honoré', 'NULL', '1 (11) 500 555-0116', '2013-08-16', '1-2 Miles'], ['17749', '212', 'AW00017749', 'NULL', 'Leah', 'NULL', 'Wu', '0', '1970-09-15', 'M', 'NULL', 'F', 'leah5@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '48bis, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0133', '2013-08-06', '2-5 Miles'], ['17750', '232', 'AW00017750', 'NULL', 'Shawna', 'W', 'Jai', '0', '1965-05-22', 'M', 'NULL', 'F', 'shawna12@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5253 Big Canyon Rd.', 'NULL', '1 (11) 500 555-0177', '2012-07-04', '0-1 Miles'], ['17751', '186', 'AW00017751', 'NULL', 'Isaiah', 'H', 'Bailey', '0', '1964-04-11', 'S', 'NULL', 'M', 'isaiah15@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '34870, rue Lamarck', 'NULL', '1 (11) 500 555-0179', '2013-05-17', '2-5 Miles'], ['17752', '194', 'AW00017752', 'NULL', 'Deanna', 'R', 'Hernandez', '0', '1963-12-12', 'M', 'NULL', 'F', 'deanna29@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '10, avenue de Norvege', 'NULL', '1 (11) 500 555-0146', '2012-08-20', '2-5 Miles'], ['17753', '237', 'AW00017753', 'NULL', 'Kendra', 'NULL', 'Sanz', '0', '1965-10-13', 'S', 'NULL', 'F', 'kendra20@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9525 Akyn Rock Dr.', 'NULL', '1 (11) 500 555-0160', '2012-07-06', '0-1 Miles'], ['17754', '184', 'AW00017754', 'NULL', 'Stephanie', 'W', 'King', '0', '1971-07-13', 'S', 'NULL', 'F', 'stephanie64@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '63, rue de Fontfroide', 'NULL', '1 (11) 500 555-0193', '2012-08-16', '0-1 Miles'], ['17755', '237', 'AW00017755', 'NULL', 'Zoe', 'A', 'Cox', '0', '1965-07-16', 'M', 'NULL', 'F', 'zoe9@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5296 Covington Court', 'NULL', '1 (11) 500 555-0158', '2012-07-11', '0-1 Miles'], ['17756', '215', 'AW00017756', 'NULL', 'Jill', 'J', 'Ashe', '0', '1963-11-15', 'M', 'NULL', 'F', 'jill12@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Midi-Couleurs', 'NULL', '1 (11) 500 555-0127', '2012-08-17', '0-1 Miles'], ['17757', '241', 'AW00017757', 'NULL', 'Seth', 'C', 'Hayes', '0', '1981-03-13', 'S', 'NULL', 'M', 'seth71@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '423 Banbury Loop', 'NULL', '1 (11) 500 555-0132', '2013-10-01', '2-5 Miles'], ['17758', '128', 'AW00017758', 'NULL', 'Linda', 'NULL', 'Gill', '0', '1975-12-21', 'M', 'NULL', 'F', 'linda29@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Auf Der Steige 100', 'NULL', '1 (11) 500 555-0111', '2013-07-26', '1-2 Miles'], ['17759', '196', 'AW00017759', 'NULL', 'Kristopher', 'D', 'Sanchez', '0', '1981-09-14', 'S', 'NULL', 'M', 'kristopher19@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '487bis, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0159', '2013-06-11', '2-5 Miles'], ['17760', '237', 'AW00017760', 'NULL', 'Diana', 'NULL', 'Romero', '0', '1981-01-12', 'S', 'NULL', 'F', 'diana8@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '71 Tobi Drive', 'NULL', '1 (11) 500 555-0115', '2013-10-16', '2-5 Miles'], ['17761', '129', 'AW00017761', 'NULL', 'Kristopher', 'NULL', 'Sai', '0', '1981-07-31', 'M', 'NULL', 'M', 'kristopher6@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Auf den Kuhlen Straße 1964', 'NULL', '1 (11) 500 555-0172', '2012-08-31', '0-1 Miles'], ['17762', '147', 'AW00017762', 'NULL', 'Rachel', 'M', 'Rodriguez', '0', '1974-12-16', 'S', 'NULL', 'F', 'rachel23@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Im Himmelsweg 89', 'NULL', '1 (11) 500 555-0199', '2012-08-31', '0-1 Miles'], ['17763', '266', 'AW00017763', 'NULL', 'Jacquelyn', 'M', 'Martin', '0', '1975-02-12', 'S', 'NULL', 'F', 'jacquelyn0@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '4689 Deerwood Court', '#512', '1 (11) 500 555-0177', '2013-05-15', '2-5 Miles'], ['17764', '144', 'AW00017764', 'NULL', 'Terrance', 'L', 'Garcia', '0', '1980-09-13', 'M', 'NULL', 'M', 'terrance12@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Kapellstr 461', 'NULL', '1 (11) 500 555-0160', '2012-10-21', '0-1 Miles'], ['17765', '146', 'AW00017765', 'NULL', 'Valerie', 'NULL', 'Zhang', '0', '1974-08-04', 'M', 'NULL', 'F', 'valerie1@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Parkstr 4852', 'NULL', '1 (11) 500 555-0112', '2012-10-25', '1-2 Miles'], ['17766', '193', 'AW00017766', 'NULL', 'Jake', 'E', 'Xu', '0', '1975-05-14', 'M', 'NULL', 'M', 'jake11@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '369, rue de Bas Marin', 'NULL', '1 (11) 500 555-0135', '2012-08-07', '0-1 Miles'], ['17767', '183', 'AW00017767', 'NULL', 'Tommy', 'E', 'Raje', '0', '1975-03-04', 'M', 'NULL', 'M', 'tommy10@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '333, rue de Linois', 'NULL', '1 (11) 500 555-0188', '2012-08-07', '0-1 Miles'], ['17768', '175', 'AW00017768', 'NULL', 'Luis', 'S', 'Parker', '0', '1963-03-19', 'S', 'NULL', 'M', 'luis33@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Pappelallee 666', 'NULL', '1 (11) 500 555-0151', '2012-10-24', '0-1 Miles'], ['17769', '162', 'AW00017769', 'NULL', 'Nathan', 'S', 'Martin', '0', '1963-11-11', 'S', 'NULL', 'M', 'nathan72@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Marketplatz 4624', 'NULL', '1 (11) 500 555-0174', '2012-10-27', '0-1 Miles'], ['17770', '187', 'AW00017770', 'NULL', 'Grant', 'D', 'Xie', '0', '1963-04-06', 'S', 'NULL', 'M', 'grant5@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '2, avenue de l´Europe', 'NULL', '1 (11) 500 555-0110', '2012-09-14', '0-1 Miles'], ['17771', '207', 'AW00017771', 'NULL', 'Holly', 'NULL', 'Chandra', '0', '1963-05-07', 'M', 'NULL', 'F', 'holly4@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '16, rue de l´Avenir', 'NULL', '1 (11) 500 555-0146', '2013-02-06', '0-1 Miles'], ['17772', '255', 'AW00017772', 'NULL', 'Leonard', 'NULL', 'Andersen', '0', '1963-05-07', 'S', 'NULL', 'M', 'leonard14@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '2187 S. Rising Ave', 'NULL', '1 (11) 500 555-0173', '2012-07-12', '2-5 Miles'], ['17773', '221', 'AW00017773', 'NULL', 'Crystal', 'NULL', 'Lin', '0', '1973-10-12', 'S', 'NULL', 'F', 'crystal10@adventure-works.com', '10000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '2, avenue des Champs-Elysées', 'NULL', '1 (11) 500 555-0113', '2012-10-26', '0-1 Miles'], ['17774', '128', 'AW00017774', 'NULL', 'Brandi', 'S', 'Gutierrez', '0', '1984-09-17', 'M', 'NULL', 'F', 'brandi11@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Unter Linden 943', 'NULL', '1 (11) 500 555-0117', '2014-01-16', '2-5 Miles'], ['17775', '216', 'AW00017775', 'NULL', 'Ricky', 'R', 'Moreno', '0', '1979-02-20', 'S', 'NULL', 'M', 'ricky6@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '191, rue de Cambrai', 'NULL', '1 (11) 500 555-0129', '2012-10-01', '1-2 Miles'], ['17776', '251', 'AW00017776', 'NULL', 'Diana', 'M', 'Jimenez', '0', '1974-01-11', 'S', 'NULL', 'F', 'diana4@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '5878 East L Street', 'NULL', '1 (11) 500 555-0152', '2013-05-19', '0-1 Miles'], ['17777', '165', 'AW00017777', 'NULL', 'Armando', 'M', 'Alvarez', '0', '1973-12-31', 'M', 'NULL', 'M', 'armando5@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Haberstr 39', 'Leiter der Abteilung', '1 (11) 500 555-0198', '2012-10-27', '1-2 Miles'], ['17778', '214', 'AW00017778', 'NULL', 'Kari', 'W', 'Prasad', '0', '1979-09-21', 'M', 'NULL', 'F', 'kari10@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8, rue Lafayette', 'NULL', '1 (11) 500 555-0193', '2012-10-17', '0-1 Miles'], ['17779', '221', 'AW00017779', 'NULL', 'Madison', 'NULL', 'Patterson', '0', '1973-11-08', 'M', 'NULL', 'F', 'madison46@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9559, avenue de Villiers', 'NULL', '1 (11) 500 555-0114', '2012-11-08', '0-1 Miles'], ['17780', '224', 'AW00017780', 'NULL', 'Alisha', 'E', 'Huang', '0', '1973-10-09', 'M', 'NULL', 'F', 'alisha6@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1891, rue de Varenne', 'NULL', '1 (11) 500 555-0171', '2012-11-16', '0-1 Miles'], ['17781', '128', 'AW00017781', 'NULL', 'Jake', 'NULL', 'She', '0', '1973-10-26', 'M', 'NULL', 'M', 'jake21@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Knaackstr 956', 'NULL', '1 (11) 500 555-0186', '2012-10-08', '0-1 Miles'], ['17782', '244', 'AW00017782', 'NULL', 'Casey', 'C', 'Shan', '0', '1974-05-16', 'M', 'NULL', 'F', 'casey11@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7736 Sunnybrook Drive', 'NULL', '1 (11) 500 555-0113', '2012-07-28', '0-1 Miles'], ['17783', '147', 'AW00017783', 'NULL', 'Tracy', 'R', 'Jai', '0', '1973-01-12', 'S', 'NULL', 'F', 'tracy10@adventure-works.com', '10000.00', '3', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Winter der Böck 8559', 'NULL', '1 (11) 500 555-0114', '2013-03-21', '0-1 Miles'], ['17784', '160', 'AW00017784', 'NULL', 'Mayra', 'R', 'Patel', '0', '1972-09-16', 'S', 'NULL', 'F', 'mayra2@adventure-works.com', '10000.00', '4', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Altendorfer Straße 57', 'NULL', '1 (11) 500 555-0188', '2012-10-12', '0-1 Miles'], ['17785', '258', 'AW00017785', 'NULL', 'Pedro', 'NULL', 'Chapman', '0', '1978-10-15', 'M', 'NULL', 'M', 'pedro2@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '143 Louisiana Dr', 'NULL', '1 (11) 500 555-0155', '2013-02-26', '2-5 Miles'], ['17786', '261', 'AW00017786', 'NULL', 'Kathleen', 'NULL', 'Gutierrez', '0', '1978-10-21', 'S', 'NULL', 'F', 'kathleen13@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '7646 Strasbourg Lane', 'NULL', '1 (11) 500 555-0186', '2013-02-10', '0-1 Miles'], ['17787', '194', 'AW00017787', 'NULL', 'Alejandro', 'C', 'Zhao', '0', '1973-04-15', 'S', 'NULL', 'M', 'alejandro13@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '4822, rue des Ecoles', 'NULL', '1 (11) 500 555-0115', '2012-11-01', '1-2 Miles'], ['17788', '163', 'AW00017788', 'NULL', 'Jeffery', 'M', 'Liu', '0', '1978-10-14', 'M', 'NULL', 'M', 'jeffery4@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Kapellstr 4679', 'NULL', '1 (11) 500 555-0199', '2013-04-01', '2-5 Miles'], ['17789', '118', 'AW00017789', 'NULL', 'Kari', 'S', 'Dominguez', '0', '1972-12-09', 'S', 'NULL', 'F', 'kari33@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Moritzstr 5400', 'NULL', '1 (11) 500 555-0169', '2012-09-28', '1-2 Miles'], ['17790', '275', 'AW00017790', 'NULL', 'Darryl', 'NULL', 'Ye', '0', '1978-05-08', 'S', 'NULL', 'M', 'darryl9@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '1', '1807 Trafalgar Circle', 'NULL', '1 (11) 500 555-0155', '2012-08-16', '0-1 Miles'], ['17791', '171', 'AW00017791', 'NULL', 'Sydney', 'NULL', 'Davis', '0', '1973-05-24', 'M', 'NULL', 'F', 'sydney69@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Rehstr 7546', 'NULL', '1 (11) 500 555-0118', '2013-06-12', '2-5 Miles'], ['17792', '261', 'AW00017792', 'NULL', 'Bridget', 'K', 'Andersen', '0', '1973-06-20', 'M', 'NULL', 'F', 'bridget15@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4405 Balboa Court', 'NULL', '1 (11) 500 555-0124', '2012-08-05', '0-1 Miles'], ['17793', '278', 'AW00017793', 'NULL', 'Kathleen', 'R', 'Alvarez', '0', '1984-03-02', 'M', 'NULL', 'F', 'kathleen6@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7119 Concord', 'NULL', '1 (11) 500 555-0180', '2012-08-07', '0-1 Miles'], ['17794', '253', 'AW00017794', 'NULL', 'Theodore', 'NULL', 'Rowe', '0', '1971-08-09', 'M', 'NULL', 'M', 'theodore22@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7680 Ashwood Dr', 'NULL', '1 (11) 500 555-0170', '2012-08-23', '2-5 Miles'], ['17795', '238', 'AW00017795', 'NULL', 'Jaime', 'A', 'Diaz', '0', '1972-01-29', 'M', 'NULL', 'F', 'jaime3@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3241 Brock Lane', 'NULL', '1 (11) 500 555-0187', '2012-08-03', '0-1 Miles'], ['17796', '162', 'AW00017796', 'NULL', 'Eduardo', 'L', 'Taylor', '0', '1971-02-11', 'S', 'NULL', 'M', 'eduardo7@adventure-works.com', '10000.00', '4', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Kappellweg 664', 'NULL', '1 (11) 500 555-0176', '2012-09-30', '0-1 Miles'], ['17797', '177', 'AW00017797', 'NULL', 'Ebony', 'NULL', 'Martinez', '0', '1971-04-04', 'S', 'NULL', 'F', 'ebony18@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Heideweg 1442', 'NULL', '1 (11) 500 555-0165', '2013-08-02', '0-1 Miles'], ['17798', '265', 'AW00017798', 'NULL', 'Robin', 'NULL', 'Ortega', '0', '1970-11-23', 'S', 'NULL', 'F', 'robin17@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '9293 Clear View Circle', 'NULL', '1 (11) 500 555-0163', '2012-08-24', '0-1 Miles'], ['17799', '121', 'AW00017799', 'NULL', 'Alejandro', 'NULL', 'Guo', '0', '1970-09-30', 'S', 'NULL', 'M', 'alejandro21@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Heidestieg Straße 8224', 'NULL', '1 (11) 500 555-0181', '2012-10-08', '0-1 Miles'], ['17800', '207', 'AW00017800', 'NULL', 'Robyn', 'C', 'Alonso', '0', '1970-07-10', 'S', 'NULL', 'F', 'robyn6@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '4024, rue Surcouf', 'NULL', '1 (11) 500 555-0134', '2013-07-17', '0-1 Miles'], ['17801', '225', 'AW00017801', 'NULL', 'Shannon', 'NULL', 'He', '0', '1976-05-14', 'S', 'NULL', 'F', 'shannon17@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '276, chaussée de Tournai', 'NULL', '1 (11) 500 555-0172', '2013-11-23', '0-1 Miles'], ['17802', '120', 'AW00017802', 'NULL', 'Erick', 'C', 'Arun', '0', '1970-04-09', 'S', 'NULL', 'M', 'erick6@adventure-works.com', '10000.00', '4', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Hochstr 8444', 'NULL', '1 (11) 500 555-0122', '2013-06-16', '0-1 Miles'], ['17803', '265', 'AW00017803', 'NULL', 'Renee', 'C', 'Hernandez', '0', '1975-02-19', 'S', 'NULL', 'F', 'renee3@adventure-works.com', '10000.00', '5', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '1292 Bola Raton Court', 'NULL', '1 (11) 500 555-0143', '2012-08-21', '0-1 Miles'], ['17804', '117', 'AW00017804', 'NULL', 'Melody', 'NULL', 'Torres', '0', '1969-08-01', 'S', 'NULL', 'F', 'melody12@adventure-works.com', '10000.00', '5', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Nollendorfplatz 78', 'NULL', '1 (11) 500 555-0166', '2013-06-27', '0-1 Miles'], ['17805', '184', 'AW00017805', 'NULL', 'Carlos', 'G', 'Young', '0', '1970-01-02', 'S', 'NULL', 'M', 'carlos46@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '11, rue de Maubeuge', 'NULL', '1 (11) 500 555-0148', '2013-05-30', '0-1 Miles'], ['17806', '127', 'AW00017806', 'NULL', 'Omar', 'E', 'Kumar', '0', '1969-10-12', 'M', 'NULL', 'M', 'omar27@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Hansaallee 59', 'NULL', '1 (11) 500 555-0125', '2013-02-17', '0-1 Miles'], ['17807', '260', 'AW00017807', 'NULL', 'Philip', 'J', 'Sanz', '0', '1969-12-10', 'S', 'NULL', 'M', 'philip19@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '2668 E. 79th Street', 'NULL', '1 (11) 500 555-0185', '2013-09-30', '0-1 Miles'], ['17808', '279', 'AW00017808', 'NULL', 'Raquel', 'G', 'Alvarez', '0', '1968-10-13', 'S', 'NULL', 'F', 'raquel3@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '9458 Flame Drive', 'NULL', '1 (11) 500 555-0122', '2013-02-23', '0-1 Miles'], ['17809', '183', 'AW00017809', 'NULL', 'Josue', 'A', 'Blanco', '0', '1974-02-22', 'S', 'NULL', 'M', 'josue2@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '118, rue Marbeuf', 'NULL', '1 (11) 500 555-0140', '2013-07-05', '0-1 Miles'], ['17810', '272', 'AW00017810', 'NULL', 'Frederick', 'NULL', 'Prasad', '0', '1968-08-06', 'M', 'NULL', 'M', 'frederick8@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '2569 La Orinda Pl.', 'NULL', '1 (11) 500 555-0159', '2013-02-23', '0-1 Miles'], ['17811', '176', 'AW00017811', 'NULL', 'Stacy', 'NULL', 'Hernandez', '0', '1972-06-23', 'M', 'NULL', 'F', 'stacy5@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', 'Kulmer Straße 4456', 'NULL', '1 (11) 500 555-0122', '2012-10-14', '0-1 Miles'], ['17812', '241', 'AW00017812', 'NULL', 'Casey', 'E', 'Nara', '0', '1971-09-15', 'M', 'NULL', 'F', 'casey18@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '2746 F Street', 'NULL', '1 (11) 500 555-0113', '2012-08-16', '0-1 Miles'], ['17813', '276', 'AW00017813', 'NULL', 'Jay', 'K', 'Nicholls', '0', '1968-12-30', 'M', 'NULL', 'M', 'jay39@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '0', '2080 Mountain View Dr.', 'NULL', '1 (11) 500 555-0187', '2012-08-23', '0-1 Miles'], ['17814', '254', 'AW00017814', 'NULL', 'Michele', 'NULL', 'Pal', '0', '1974-02-08', 'M', 'NULL', 'F', 'michele12@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '0', '444 Northstar Drive', 'NULL', '1 (11) 500 555-0159', '2013-02-25', '0-1 Miles'], ['17815', '234', 'AW00017815', 'NULL', 'Ronnie', 'C', 'Ma', '0', '1973-08-07', 'S', 'NULL', 'M', 'ronnie14@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6299 Balance Ct.', 'NULL', '1 (11) 500 555-0149', '2012-08-11', '2-5 Miles'], ['17816', '192', 'AW00017816', 'NULL', 'Kathryn', 'A', 'Raje', '0', '1939-10-16', 'S', 'NULL', 'F', 'kathryn12@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1069, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0181', '2013-07-01', '2-5 Miles'], ['17817', '159', 'AW00017817', 'NULL', 'Felicia', 'E', 'Gutierrez', '0', '1939-11-13', 'M', 'NULL', 'F', 'felicia10@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Waldstr 76', 'NULL', '1 (11) 500 555-0131', '2013-11-21', '2-5 Miles'], ['17818', '135', 'AW00017818', 'NULL', 'Dale', 'NULL', 'Yuan', '0', '1971-01-19', 'M', 'NULL', 'M', 'dale6@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Hansaallee 466', 'NULL', '1 (11) 500 555-0132', '2013-09-16', '0-1 Miles'], ['17819', '236', 'AW00017819', 'NULL', 'Arthur', 'D', 'Rana', '0', '1971-02-10', 'M', 'NULL', 'M', 'arthur13@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '375 Davona Drive', 'NULL', '1 (11) 500 555-0176', '2014-01-12', '0-1 Miles'], ['17820', '265', 'AW00017820', 'NULL', 'Emma', 'L', 'Morris', '0', '1971-05-22', 'M', 'NULL', 'F', 'emma26@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6999 Salem St.', 'NULL', '1 (11) 500 555-0182', '2013-04-18', '0-1 Miles'], ['17821', '249', 'AW00017821', 'NULL', 'Marvin', 'M', 'Gill', '0', '1981-03-16', 'M', 'NULL', 'M', 'marvin14@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3484 Springer Court', 'NULL', '1 (11) 500 555-0193', '2013-04-18', '0-1 Miles'], ['17822', '220', 'AW00017822', 'NULL', 'Michelle', 'L', 'Cooper', '0', '1968-10-12', 'S', 'NULL', 'F', 'michelle18@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '11, quai de l´ Iton', 'NULL', '1 (11) 500 555-0129', '2013-09-02', '0-1 Miles'], ['17823', '219', 'AW00017823', 'NULL', 'Ramon', 'NULL', 'Gao', '0', '1968-12-10', 'M', 'NULL', 'M', 'ramon13@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '0', '6, route de Marseille', 'NULL', '1 (11) 500 555-0118', '2013-08-02', '0-1 Miles'], ['17824', '124', 'AW00017824', 'NULL', 'Mario', 'C', 'Pal', '0', '1968-10-29', 'S', 'NULL', 'M', 'mario10@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Westheimer Straße 96', 'NULL', '1 (11) 500 555-0167', '2012-09-28', '0-1 Miles'], ['17825', '121', 'AW00017825', 'NULL', 'Clayton', 'F', 'Li', '0', '1969-04-13', 'M', 'NULL', 'M', 'clayton3@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Heideweg 2459', 'NULL', '1 (11) 500 555-0119', '2012-10-21', '0-1 Miles'], ['17826', '187', 'AW00017826', 'NULL', 'Paige', 'L', 'Morgan', '0', '1981-11-30', 'S', 'NULL', 'F', 'paige37@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '2, impasse Notre-Dame', 'NULL', '1 (11) 500 555-0115', '2013-11-28', '0-1 Miles'], ['17827', '209', 'AW00017827', 'NULL', 'Maria', 'D', 'Coleman', '0', '1985-05-16', 'S', 'NULL', 'F', 'maria29@adventure-works.com', '20000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '3', '689, rue Maillard', 'NULL', '1 (11) 500 555-0161', '2012-11-10', '0-1 Miles'], ['17828', '249', 'AW00017828', 'NULL', 'Valerie', 'J', 'Zhou', '0', '1980-01-10', 'M', 'NULL', 'F', 'valerie10@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1992 La Vista Ave.', 'NULL', '1 (11) 500 555-0158', '2012-08-08', '0-1 Miles'], ['17829', '273', 'AW00017829', 'NULL', 'Audrey', 'NULL', 'Gutierrez', '0', '1969-02-17', 'M', 'NULL', 'F', 'audrey12@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5271 Sierra Road', 'NULL', '1 (11) 500 555-0141', '2012-08-03', '0-1 Miles'], ['17830', '186', 'AW00017830', 'NULL', 'Carlos', 'NULL', 'Scott', '0', '1968-03-30', 'M', 'NULL', 'M', 'carlos43@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '40, place de la République', 'NULL', '1 (11) 500 555-0143', '2012-11-01', '0-1 Miles'], ['17831', '189', 'AW00017831', 'NULL', 'Noah', 'K', 'Long', '0', '1973-08-11', 'M', 'NULL', 'M', 'noah6@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1798 Norfolk Rd', 'NULL', '1 (11) 500 555-0146', '2012-11-01', '0-1 Miles'], ['17832', '171', 'AW00017832', 'NULL', 'Cameron', 'L', 'Sharma', '0', '1968-06-09', 'M', 'NULL', 'M', 'cameron26@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Unter Linden 54', 'NULL', '1 (11) 500 555-0158', '2013-08-13', '2-5 Miles'], ['17833', '166', 'AW00017833', 'NULL', 'Monique', 'NULL', 'Suarez', '0', '1973-02-28', 'M', 'NULL', 'F', 'monique15@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Waldstr 92', 'NULL', '1 (11) 500 555-0127', '2012-10-10', '0-1 Miles'], ['17834', '197', 'AW00017834', 'NULL', 'Michele', 'M', 'Gill', '0', '1968-03-31', 'M', 'NULL', 'F', 'michele47@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '35, route de Marseille', 'NULL', '1 (11) 500 555-0165', '2012-11-21', '0-1 Miles'], ['17835', '254', 'AW00017835', 'NULL', 'Francisco', 'M', 'Perez', '0', '1983-12-26', 'M', 'NULL', 'M', 'francisco23@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '3', '3708 Lenox Ct', 'NULL', '1 (11) 500 555-0161', '2013-08-25', '0-1 Miles'], ['17836', '226', 'AW00017836', 'NULL', 'Jacquelyn', 'Y', 'Ramos', '0', '1983-03-17', 'S', 'NULL', 'F', 'jacquelyn18@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '16, rue de l´Avenir', 'NULL', '1 (11) 500 555-0125', '2013-08-19', '2-5 Miles'], ['17837', '133', 'AW00017837', 'NULL', 'Mayra', 'C', 'Garcia', '0', '1983-01-10', 'S', 'NULL', 'F', 'mayra15@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Westheimer Straße 9292', 'NULL', '1 (11) 500 555-0126', '2013-07-26', '2-5 Miles'], ['17838', '240', 'AW00017838', 'NULL', 'Jill', 'NULL', 'Blanco', '0', '1981-06-23', 'S', 'NULL', 'F', 'jill23@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '2923 Stanford Street', 'NULL', '1 (11) 500 555-0196', '2013-05-15', '0-1 Miles'], ['17839', '264', 'AW00017839', 'NULL', 'Christine', 'L', 'Chander', '0', '1986-02-13', 'S', 'NULL', 'F', 'christine11@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '7883 Mitchell Canyon Court', 'NULL', '1 (11) 500 555-0146', '2013-04-04', '0-1 Miles'], ['17840', '273', 'AW00017840', 'NULL', 'Larry', 'NULL', 'Hernandez', '0', '1981-02-14', 'S', 'NULL', 'M', 'larry5@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '5863 Masonic Dr.', 'NULL', '1 (11) 500 555-0161', '2013-04-01', '0-1 Miles'], ['17841', '247', 'AW00017841', 'NULL', 'Walter', 'S', 'Navarro', '0', '1982-03-09', 'S', 'NULL', 'M', 'walter3@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '8720 Orth Larwin Ave', 'NULL', '1 (11) 500 555-0112', '2012-08-26', '0-1 Miles'], ['17842', '186', 'AW00017842', 'NULL', 'Isaiah', 'NULL', 'Ward', '0', '1981-04-22', 'S', 'NULL', 'M', 'isaiah11@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5, rue de Courtaboeuf', 'NULL', '1 (11) 500 555-0142', '2013-03-19', '2-5 Miles'], ['17843', '212', 'AW00017843', 'NULL', 'Kelli', 'NULL', 'Shan', '0', '1979-08-29', 'S', 'NULL', 'F', 'kelli33@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '70344, rue Surcouf', 'NULL', '1 (11) 500 555-0138', '2013-04-28', '0-1 Miles'], ['17844', '257', 'AW00017844', 'NULL', 'Martha', 'J', 'Zeng', '0', '1980-02-23', 'S', 'NULL', 'F', 'martha21@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '9027 Lancelot Dr', 'NULL', '1 (11) 500 555-0117', '2013-03-03', '0-1 Miles'], ['17845', '159', 'AW00017845', 'NULL', 'Ebony', 'NULL', 'Diaz', '0', '1985-08-16', 'S', 'NULL', 'F', 'ebony25@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Erftplatz 77', 'NULL', '1 (11) 500 555-0130', '2013-03-05', '1-2 Miles'], ['17846', '191', 'AW00017846', 'NULL', 'Alejandro', 'F', 'Chavez', '0', '1980-07-24', 'S', 'NULL', 'M', 'alejandro39@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '4811, rue des Ecoles', 'NULL', '1 (11) 500 555-0156', '2013-07-30', '0-1 Miles'], ['17847', '155', 'AW00017847', 'NULL', 'Logan', 'G', 'Lee', '0', '1980-12-22', 'S', 'NULL', 'M', 'logan54@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Unter Linden 534', 'NULL', '1 (11) 500 555-0162', '2012-10-05', '2-5 Miles'], ['17848', '128', 'AW00017848', 'NULL', 'Jaime', 'G', 'Yuan', '0', '1980-12-22', 'S', 'NULL', 'M', 'jaime30@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Lindenalle 384', 'NULL', '1 (11) 500 555-0169', '2012-10-09', '2-5 Miles'], ['17849', '244', 'AW00017849', 'NULL', 'Wesley', 'I', 'He', '0', '1981-06-26', 'M', 'NULL', 'M', 'wesley18@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9659 Walnut Blvd', 'NULL', '1 (11) 500 555-0161', '2012-08-10', '1-2 Miles'], ['17850', '180', 'AW00017850', 'NULL', 'Alvin', 'NULL', 'Shen', '0', '1978-12-31', 'S', 'NULL', 'M', 'alvin24@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '3338, chaussée de Tournai', 'NULL', '1 (11) 500 555-0140', '2013-02-16', '0-1 Miles'], ['17851', '120', 'AW00017851', 'NULL', 'Warren', 'A', 'Tang', '0', '1984-03-12', 'S', 'NULL', 'M', 'warren0@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Marienplatz 50', 'NULL', '1 (11) 500 555-0118', '2014-01-26', '1-2 Miles'], ['17852', '139', 'AW00017852', 'NULL', 'Lindsey', 'NULL', 'Shan', '0', '1984-08-03', 'M', 'NULL', 'F', 'lindsey11@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Zur Lindung 78', 'NULL', '1 (11) 500 555-0145', '2013-04-08', '0-1 Miles'], ['17853', '167', 'AW00017853', 'NULL', 'Ernest', 'W', 'Chen', '0', '1978-11-03', 'S', 'NULL', 'M', 'ernest2@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Helsenbergbogen 2', 'NULL', '1 (11) 500 555-0177', '2013-07-27', '1-2 Miles'], ['17854', '147', 'AW00017854', 'NULL', 'Shannon', 'NULL', 'Gomez', '0', '1979-11-19', 'S', 'NULL', 'M', 'shannon23@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Am Kreuz 444', 'NULL', '1 (11) 500 555-0114', '2013-12-03', '2-5 Miles'], ['17855', '233', 'AW00017855', 'NULL', 'Ronald', 'NULL', 'Lopez', '0', '1985-09-16', 'S', 'NULL', 'M', 'ronald19@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '2155 Twinview Drive', 'NULL', '1 (11) 500 555-0175', '2013-05-25', '1-2 Miles'], ['17856', '154', 'AW00017856', 'NULL', 'Roger', 'C', 'Rai', '0', '1986-06-25', 'S', 'NULL', 'M', 'roger45@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Knaackstr 556', 'NULL', '1 (11) 500 555-0112', '2013-09-14', '0-1 Miles'], ['17857', '115', 'AW00017857', 'NULL', 'Albert', 'S', 'Cabello', '0', '1985-08-12', 'S', 'NULL', 'F', 'albert2@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Postfach 8 11 99', 'NULL', '1 (11) 500 555-0158', '2013-06-29', '0-1 Miles'], ['17858', '59', 'AW00017858', 'NULL', 'Dalton', 'C', 'Barnes', '0', '1967-05-13', 'M', 'NULL', 'M', 'dalton48@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8887 Entrada Circle', 'NULL', '219-555-0162', '2013-11-19', '2-5 Miles'], ['17859', '336', 'AW00017859', 'NULL', 'Wyatt', 'S', 'Gonzalez', '0', '1967-03-22', 'M', 'NULL', 'M', 'wyatt37@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5435 Jacobsen Street', 'NULL', '947-555-0113', '2013-09-14', '0-1 Miles'], ['17860', '329', 'AW00017860', 'NULL', 'Noah', 'B', 'Diaz', '0', '1972-05-05', 'M', 'NULL', 'M', 'noah19@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1931 Eagle Way', 'NULL', '179-555-0125', '2013-09-06', '0-1 Miles'], ['17861', '49', 'AW00017861', 'NULL', 'Melanie', 'L', 'Blue', '0', '1971-08-24', 'S', 'NULL', 'F', 'melanie40@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6850 Monument Blvd.', 'NULL', '221-555-0110', '2013-11-23', '2-5 Miles'], ['17862', '635', 'AW00017862', 'NULL', 'Aaron', 'E', 'Baker', '0', '1976-09-11', 'M', 'NULL', 'M', 'aaron40@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8054 Olivera Rd.', 'NULL', '488-555-0125', '2013-09-09', '2-5 Miles'], ['17863', '335', 'AW00017863', 'NULL', 'Bailey', 'NULL', 'Cooper', '0', '1976-10-13', 'S', 'NULL', 'F', 'bailey15@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4666 Sierra Ridge', 'NULL', '376-555-0111', '2013-09-01', '2-5 Miles'], ['17864', '632', 'AW00017864', 'NULL', 'Emily', 'F', 'Martinez', '0', '1971-08-24', 'M', 'NULL', 'F', 'emily18@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9421 Thissen Court', 'NULL', '326-555-0120', '2013-09-07', '2-5 Miles'], ['17865', '51', 'AW00017865', 'NULL', 'Blake', 'A', 'Barnes', '0', '1966-05-03', 'M', 'NULL', 'M', 'blake50@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '5428 Ameno Dr.', 'NULL', '988-555-0199', '2013-11-28', '0-1 Miles'], ['17866', '316', 'AW00017866', 'NULL', 'Jack', 'W', 'Baker', '0', '1966-03-20', 'M', 'NULL', 'M', 'jack43@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4769 Mt. View Dr.', 'NULL', '112-555-0112', '2013-09-11', '0-1 Miles'], ['17867', '66', 'AW00017867', 'NULL', 'Stephanie', 'NULL', 'Sanchez', '0', '1978-01-02', 'S', 'NULL', 'F', 'stephanie4@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9111 Almondwood Drive', 'NULL', '934-555-0160', '2013-09-11', '0-1 Miles'], ['17868', '298', 'AW00017868', 'NULL', 'Richard', 'E', 'Blue', '0', '1972-09-04', 'S', 'NULL', 'M', 'richard95@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '6045 Elwood Drive', 'NULL', '668-555-0118', '2013-09-17', '0-1 Miles'], ['17869', '300', 'AW00017869', 'NULL', 'Henry', 'R', 'Mehta', '0', '1978-07-10', 'S', 'NULL', 'M', 'henry15@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '9858 Santa Fe Street', 'NULL', '588-555-0112', '2013-09-06', '0-1 Miles'], ['17870', '337', 'AW00017870', 'NULL', 'Melissa', 'R', 'Price', '0', '1978-07-10', 'S', 'NULL', 'F', 'melissa19@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '9858 Santa Fe Street', 'NULL', '713-555-0159', '2013-09-02', '0-1 Miles'], ['17871', '553', 'AW00017871', 'NULL', 'Sydney', 'M', 'Patterson', '0', '1966-01-18', 'M', 'NULL', 'F', 'sydney33@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3757 Brook Hollow Ct', '# 101', '121-555-0110', '2013-09-28', '0-1 Miles'], ['17872', '618', 'AW00017872', 'NULL', 'Robert', 'M', 'Miller', '0', '1977-03-15', 'M', 'NULL', 'M', 'robert65@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2457 Sierra St.', 'NULL', '344-555-0197', '2013-10-21', '1-2 Miles'], ['17873', '155', 'AW00017873', 'NULL', 'Alejandro', 'H', 'She', '0', '1974-11-03', 'M', 'NULL', 'M', 'alejandro26@adventure-works.com', '10000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Räuscherweg 153', 'NULL', '1 (11) 500 555-0159', '2012-09-28', '0-1 Miles'], ['17874', '192', 'AW00017874', 'NULL', 'Natasha', 'M', 'Alvarez', '0', '1972-07-14', 'S', 'NULL', 'F', 'natasha5@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '570, quai de Grenelle', 'NULL', '1 (11) 500 555-0118', '2013-11-20', '0-1 Miles'], ['17875', '151', 'AW00017875', 'NULL', 'Tommy', 'NULL', 'Anand', '0', '1973-02-28', 'M', 'NULL', 'M', 'tommy19@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Brunnenstr 75', 'NULL', '1 (11) 500 555-0166', '2013-05-17', '0-1 Miles'], ['17876', '160', 'AW00017876', 'NULL', 'Fernando', 'R', 'Harris', '0', '1967-07-11', 'M', 'NULL', 'M', 'fernando12@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Hans-Rosenthal-Platz 2', 'NULL', '1 (11) 500 555-0189', '2013-05-15', '0-1 Miles'], ['17877', '175', 'AW00017877', 'NULL', 'Danny', 'NULL', 'Blanco', '0', '1973-08-11', 'S', 'NULL', 'M', 'danny16@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Alte Landstr 666', 'NULL', '1 (11) 500 555-0158', '2013-05-17', '0-1 Miles'], ['17878', '184', 'AW00017878', 'NULL', 'Gabrielle', 'M', 'Sanders', '0', '1972-04-07', 'M', 'NULL', 'F', 'gabrielle21@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '54, rue de Courtaboeuf', 'NULL', '1 (11) 500 555-0175', '2013-11-07', '0-1 Miles'], ['17879', '241', 'AW00017879', 'NULL', 'Seth', 'NULL', 'Rivera', '0', '1972-08-24', 'M', 'NULL', 'M', 'seth81@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '4145 North Main St.', 'NULL', '1 (11) 500 555-0139', '2013-04-14', '0-1 Miles'], ['17880', '234', 'AW00017880', 'NULL', 'Sydney', 'T', 'Hall', '0', '1967-07-02', 'M', 'NULL', 'F', 'sydney87@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5337 Pheasant Circle', 'NULL', '1 (11) 500 555-0143', '2013-03-03', '0-1 Miles'], ['17881', '252', 'AW00017881', 'NULL', 'Tamara', 'L', 'Wang', '0', '1977-12-18', 'M', 'NULL', 'F', 'tamara32@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4987 Westover Dr.', 'NULL', '1 (11) 500 555-0131', '2013-04-28', '0-1 Miles'], ['17882', '262', 'AW00017882', 'NULL', 'Drew', 'E', 'Deng', '0', '1967-03-22', 'M', 'NULL', 'M', 'drew1@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7422 Roseann Drive', 'NULL', '1 (11) 500 555-0182', '2013-01-30', '0-1 Miles'], ['17883', '183', 'AW00017883', 'NULL', 'Lori', 'NULL', 'Rubio', '0', '1946-08-30', 'M', 'NULL', 'F', 'lori21@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2554, rue des Pyrenees', 'NULL', '1 (11) 500 555-0142', '2013-08-26', '0-1 Miles'], ['17884', '261', 'AW00017884', 'NULL', 'Mayra', 'NULL', 'Schmidt', '0', '1942-06-10', 'M', 'NULL', 'F', 'mayra10@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6588 St George Dr', 'NULL', '1 (11) 500 555-0113', '2013-08-03', '0-1 Miles'], ['17885', '193', 'AW00017885', 'NULL', 'Julio', 'NULL', 'Carlson', '0', '1967-07-21', 'M', 'NULL', 'M', 'julio19@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '18, boulevard d´Albi', 'NULL', '1 (11) 500 555-0140', '2012-12-13', '0-1 Miles'], ['17886', '233', 'AW00017886', 'NULL', 'Bianca', 'J', 'Harrison', '0', '1964-02-16', 'M', 'NULL', 'F', 'bianca15@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '7865 Mt. Diablo St', 'NULL', '1 (11) 500 555-0155', '2013-04-27', '0-1 Miles'], ['17887', '250', 'AW00017887', 'NULL', 'Joel', 'C', 'Madan', '0', '1975-04-15', 'M', 'NULL', 'M', 'joel7@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '5764 Atherton Avenue', 'NULL', '1 (11) 500 555-0127', '2013-09-20', '0-1 Miles'], ['17888', '233', 'AW00017888', 'NULL', 'Mandy', 'NULL', 'Liu', '0', '1969-08-07', 'S', 'NULL', 'F', 'mandy5@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '1106 Pine Creek Way', 'NULL', '1 (11) 500 555-0178', '2013-09-09', '0-1 Miles'], ['17889', '243', 'AW00017889', 'NULL', 'Blake', 'S', 'Taylor', '0', '1963-12-26', 'M', 'NULL', 'M', 'blake8@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '524 Sea Point Way', 'NULL', '1 (11) 500 555-0119', '2012-08-03', '0-1 Miles'], ['17890', '264', 'AW00017890', 'NULL', 'Derrick', 'B', 'Jiménez', '0', '1966-01-30', 'M', 'NULL', 'M', 'derrick5@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '9863 Ridge Place', 'NULL', '1 (11) 500 555-0162', '2012-08-01', '0-1 Miles'], ['17891', '211', 'AW00017891', 'NULL', 'Sharon', 'L', 'Lal', '0', '1961-05-10', 'M', 'NULL', 'F', 'sharon15@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '93, boulevard d´Albi', 'NULL', '1 (11) 500 555-0113', '2012-12-21', '0-1 Miles'], ['17892', '276', 'AW00017892', 'NULL', 'Ronnie', 'NULL', 'Xu', '0', '1960-12-25', 'M', 'NULL', 'M', 'ronnie10@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4044 Pine Creek Way', 'NULL', '1 (11) 500 555-0132', '2012-09-27', '0-1 Miles'], ['17893', '162', 'AW00017893', 'NULL', 'Omar', 'G', 'Rai', '0', '1961-03-24', 'M', 'NULL', 'M', 'omar38@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Am Karlshof 8468', 'NULL', '1 (11) 500 555-0198', '2012-10-21', '0-1 Miles'], ['17894', '207', 'AW00017894', 'NULL', 'Hailey', 'L', 'Simmons', '0', '1966-09-17', 'M', 'NULL', 'F', 'hailey35@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', "39, rue de l'Espace De Schengen", 'NULL', '1 (11) 500 555-0170', '2012-12-11', '0-1 Miles'], ['17895', '238', 'AW00017895', 'NULL', 'Allen', 'NULL', 'Subram', '0', '1959-08-07', 'M', 'NULL', 'M', 'allen11@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '6330 Limewood Pl', 'NULL', '1 (11) 500 555-0133', '2013-04-14', '2-5 Miles'], ['17896', '274', 'AW00017896', 'NULL', 'Renee', 'NULL', 'Gutierrez', '0', '1965-11-04', 'S', 'NULL', 'F', 'renee10@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '4669 Berry Dr.', 'NULL', '1 (11) 500 555-0112', '2012-09-09', '0-1 Miles'], ['17897', '212', 'AW00017897', 'NULL', 'Darrell', 'L', 'Kumar', '0', '1943-10-31', 'S', 'NULL', 'M', 'darrell16@adventure-works.com', '10000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', '59, rue Jean Mermoz', 'NULL', '1 (11) 500 555-0191', '2012-12-14', '0-1 Miles'], ['17898', '127', 'AW00017898', 'NULL', 'Janet', 'J', 'Sanz', '0', '1945-12-18', 'S', 'NULL', 'F', 'janet26@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Westheimer Straße 5601', 'NULL', '1 (11) 500 555-0165', '2012-11-22', '0-1 Miles'], ['17899', '200', 'AW00017899', 'NULL', 'Theresa', 'A', 'Moreno', '0', '1946-10-08', 'M', 'NULL', 'F', 'theresa3@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8, rue Lafayette', 'NULL', '1 (11) 500 555-0177', '2013-05-22', '0-1 Miles'], ['17900', '204', 'AW00017900', 'Ms.', 'Victoria', 'L.', 'Snowden', '0', '1948-02-03', 'S', 'NULL', 'F', 'victoria0@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '8, rue de l´Avenir', 'NULL', '574-555-0100', '2012-12-01', '1-2 Miles'], ['17901', '157', 'AW00017901', 'NULL', 'Keith', 'NULL', 'Tang', '0', '1953-04-11', 'M', 'NULL', 'M', 'keith6@adventure-works.com', '20000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Wallstr 842', 'NULL', '1 (11) 500 555-0189', '2013-11-01', '0-1 Miles'], ['17902', '177', 'AW00017902', 'NULL', 'Ruth', 'D', 'Lopez', '0', '1947-09-01', 'M', 'NULL', 'F', 'ruth21@adventure-works.com', '20000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Welt Platz 2', 'NULL', '1 (11) 500 555-0118', '2012-11-26', '0-1 Miles'], ['17903', '232', 'AW00017903', 'NULL', 'Bethany', 'C', 'Shen', '0', '1953-02-08', 'M', 'NULL', 'F', 'bethany6@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6478 Fenway', 'NULL', '1 (11) 500 555-0143', '2013-10-24', '0-1 Miles'], ['17904', '39', 'AW00017904', 'NULL', 'Gina', 'NULL', 'Torres', '0', '1985-10-13', 'S', 'NULL', 'F', 'gina12@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '3841 Silver Oaks Place', 'NULL', '1 (11) 500 555-0146', '2011-04-02', '0-1 Miles'], ['17905', '11', 'AW00017905', 'NULL', 'Calvin', 'NULL', 'Yuan', '0', '1986-01-17', 'M', 'NULL', 'M', 'calvin7@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '8577 La Vista Avenue', 'NULL', '1 (11) 500 555-0151', '2013-11-09', '2-5 Miles'], ['17906', '24', 'AW00017906', 'NULL', 'Jonathon', 'NULL', 'Vazquez', '0', '1984-08-08', 'M', 'NULL', 'M', 'jonathon11@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '9003 C St.', 'NULL', '1 (11) 500 555-0112', '2013-12-04', '2-5 Miles'], ['17907', '19', 'AW00017907', 'NULL', 'Priscilla', 'R', 'Luo', '0', '1984-05-24', 'M', 'NULL', 'F', 'priscilla5@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '9950 Corte Vallencia', 'NULL', '1 (11) 500 555-0133', '2013-10-07', '2-5 Miles'], ['17908', '22', 'AW00017908', 'NULL', 'Warren', 'F', 'Yang', '0', '1983-07-13', 'M', 'NULL', 'M', 'warren22@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5502 Sun View Terr.', 'NULL', '1 (11) 500 555-0177', '2013-03-11', '2-5 Miles'], ['17909', '10', 'AW00017909', 'NULL', 'Joanna', 'NULL', 'Ortega', '0', '1982-10-30', 'S', 'NULL', 'F', 'joanna20@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '3076 Monti Dr', 'NULL', '1 (11) 500 555-0128', '2011-04-21', '1-2 Miles'], ['17910', '9', 'AW00017910', 'NULL', 'Dustin', 'M', 'Nara', '0', '1982-10-24', 'M', 'NULL', 'M', 'dustin17@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '9420 Fillet Ave', 'NULL', '1 (11) 500 555-0158', '2011-04-11', '0-1 Miles'], ['17911', '2', 'AW00017911', 'NULL', 'Pedro', 'L', 'Rodriguez', '0', '1982-05-12', 'M', 'NULL', 'M', 'pedro19@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '3618 Galveston Ct', 'NULL', '1 (11) 500 555-0171', '2011-04-06', '2-5 Miles'], ['17912', '5', 'AW00017912', 'NULL', 'Louis', 'C', 'Zhou', '0', '1982-01-08', 'M', 'NULL', 'M', 'louis2@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '7312 Alamo Court', 'NULL', '1 (11) 500 555-0180', '2011-04-08', '2-5 Miles'], ['17913', '39', 'AW00017913', 'NULL', 'Lacey', 'S', 'Xu', '0', '1981-08-31', 'S', 'NULL', 'F', 'lacey39@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '9846 Golf Club Road', 'NULL', '1 (11) 500 555-0117', '2011-04-29', '1-2 Miles'], ['17914', '29', 'AW00017914', 'NULL', 'Phillip', 'NULL', 'Suri', '0', '1984-09-08', 'M', 'NULL', 'M', 'phillip1@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8817 Cynthia Drive', 'NULL', '1 (11) 500 555-0151', '2011-04-25', '0-1 Miles'], ['17915', '3', 'AW00017915', 'NULL', 'Aimee', 'NULL', 'Li', '0', '1983-08-19', 'S', 'NULL', 'F', 'aimee3@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '9407 StandingView Dr. Ave', 'NULL', '1 (11) 500 555-0168', '2011-04-10', '2-5 Miles'], ['17916', '6', 'AW00017916', 'NULL', 'Tracy', 'L', 'Xu', '0', '1983-09-11', 'S', 'NULL', 'F', 'tracy5@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '658 Contra Costa Blvd', 'NULL', '1 (11) 500 555-0133', '2011-04-18', '1-2 Miles'], ['17917', '20', 'AW00017917', 'NULL', 'Cristina', 'S', 'Raje', '0', '1984-05-09', 'S', 'NULL', 'F', 'cristina12@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1597 Vista Del Sol', 'NULL', '1 (11) 500 555-0131', '2011-04-17', '0-1 Miles'], ['17918', '16', 'AW00017918', 'NULL', 'Suzanne', 'NULL', 'Zeng', '0', '1984-04-10', 'M', 'NULL', 'F', 'suzanne23@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9682 Concord', 'NULL', '1 (11) 500 555-0188', '2011-04-27', '0-1 Miles'], ['17919', '37', 'AW00017919', 'NULL', 'Bruce', 'NULL', 'Hernandez', '0', '1983-09-06', 'S', 'NULL', 'M', 'bruce26@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1905 Julpum Loop', 'NULL', '1 (11) 500 555-0137', '2011-04-17', '0-1 Miles'], ['17920', '11', 'AW00017920', 'NULL', 'Bradley', 'NULL', 'Yuan', '0', '1983-09-13', 'S', 'NULL', 'M', 'bradley9@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7352 Mt. Wilson Pl.', 'NULL', '1 (11) 500 555-0142', '2011-04-05', '0-1 Miles'], ['17921', '40', 'AW00017921', 'NULL', 'Karen', 'K', 'Li', '0', '1983-10-22', 'M', 'NULL', 'F', 'karen12@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9746 Hillsborough Ct', 'NULL', '1 (11) 500 555-0198', '2011-04-02', '0-1 Miles'], ['17922', '5', 'AW00017922', 'NULL', 'Shane', 'NULL', 'Schmidt', '0', '1983-09-13', 'M', 'NULL', 'M', 'shane13@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1431 Rancho View Drive', 'NULL', '1 (11) 500 555-0152', '2011-04-29', '0-1 Miles'], ['17923', '23', 'AW00017923', 'NULL', 'Cory', 'E', 'Malhotra', '0', '1983-01-03', 'S', 'NULL', 'M', 'cory3@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '8062 Oakgrove', 'NULL', '1 (11) 500 555-0115', '2011-04-26', '1-2 Miles'], ['17924', '39', 'AW00017924', 'NULL', 'Shawna', 'NULL', 'Lal', '0', '1983-05-18', 'S', 'NULL', 'F', 'shawna9@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '2516 Beauty St.', 'NULL', '1 (11) 500 555-0169', '2011-04-11', '1-2 Miles'], ['17925', '3', 'AW00017925', 'NULL', 'Bradley', 'E', 'Raji', '0', '1983-03-20', 'S', 'NULL', 'M', 'bradley23@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3000 Wildcat Circle', 'NULL', '1 (11) 500 555-0133', '2011-04-11', '0-1 Miles'], ['17926', '16', 'AW00017926', 'NULL', 'Carolyn', 'NULL', 'Ramos', '0', '1983-05-04', 'M', 'NULL', 'F', 'carolyn38@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '9834 Vista Del Rio', 'NULL', '1 (11) 500 555-0161', '2011-04-26', '0-1 Miles'], ['17927', '19', 'AW00017927', 'NULL', 'Douglas', 'NULL', 'Patel', '0', '1983-05-17', 'S', 'NULL', 'M', 'douglas6@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '3788 Canyon Creek Drive', 'NULL', '1 (11) 500 555-0136', '2011-04-19', '0-1 Miles'], ['17928', '144', 'AW00017928', 'NULL', 'Terrence', 'S', 'She', '0', '1949-01-30', 'M', 'NULL', 'M', 'terrence1@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Heidestieg Straße 8664', 'NULL', '1 (11) 500 555-0188', '2012-11-23', '1-2 Miles'], ['17929', '149', 'AW00017929', 'NULL', 'Alfredo', 'D', 'Rubio', '0', '1949-06-05', 'M', 'NULL', 'M', 'alfredo22@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Brunnenstr 432', 'NULL', '1 (11) 500 555-0114', '2012-11-07', '1-2 Miles'], ['17930', '203', 'AW00017930', 'NULL', 'Chelsea', 'S', 'Srini', '0', '1978-06-14', 'M', 'NULL', 'F', 'chelsea9@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '3355, rue de Longchamp', 'NULL', '1 (11) 500 555-0186', '2013-09-18', '1-2 Miles'], ['17931', '210', 'AW00017931', 'NULL', 'Jeffery', 'NULL', 'Zhao', '0', '1977-09-12', 'M', 'NULL', 'M', 'jeffery11@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '7, rue des Ecoles', 'NULL', '1 (11) 500 555-0113', '2013-08-27', '1-2 Miles'], ['17932', '213', 'AW00017932', 'NULL', 'Barry', 'NULL', 'Srini', '0', '1972-06-10', 'M', 'NULL', 'M', 'barry9@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '37, route de Marseille', 'NULL', '1 (11) 500 555-0129', '2012-12-16', '0-1 Miles'], ['17933', '258', 'AW00017933', 'NULL', 'Virginia', 'NULL', 'Prasad', '0', '1966-11-01', 'M', 'NULL', 'F', 'virginia11@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2225 Rogers Ave.', 'NULL', '1 (11) 500 555-0156', '2012-09-14', '0-1 Miles'], ['17934', '115', 'AW00017934', 'NULL', 'Nelson', 'G', 'Gill', '0', '1971-04-01', 'S', 'NULL', 'M', 'nelson12@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Kampstr 59', 'NULL', '1 (11) 500 555-0114', '2012-11-16', '0-1 Miles'], ['17935', '117', 'AW00017935', 'NULL', 'Misty', 'A', 'Jai', '0', '1966-01-19', 'M', 'NULL', 'F', 'misty13@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Winterfeldtstr 353', 'NULL', '1 (11) 500 555-0163', '2013-06-22', '1-2 Miles'], ['17936', '234', 'AW00017936', 'NULL', 'Tonya', 'O', 'Deng', '0', '1971-02-08', 'M', 'NULL', 'F', 'tonya1@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '2155 Zebra Street', 'NULL', '1 (11) 500 555-0113', '2013-04-18', '2-5 Miles'], ['17937', '267', 'AW00017937', 'NULL', 'Heidi', 'D', 'Kapoor', '0', '1966-05-18', 'M', 'NULL', 'F', 'heidi3@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4071 Hames Dr.', 'NULL', '1 (11) 500 555-0179', '2012-09-01', '0-1 Miles'], ['17938', '205', 'AW00017938', 'NULL', 'Ruben', 'D', 'Gill', '0', '1964-10-09', 'S', 'NULL', 'M', 'ruben37@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '11, rue de Terre Neuve', 'NULL', '1 (11) 500 555-0192', '2014-01-04', '1-2 Miles'], ['17939', '219', 'AW00017939', 'NULL', 'Kelli', 'NULL', 'Wang', '0', '1964-12-31', 'S', 'NULL', 'F', 'kelli1@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '84, avenue des Ternes', 'NULL', '1 (11) 500 555-0167', '2014-01-03', '2-5 Miles'], ['17940', '131', 'AW00017940', 'NULL', 'Tommy', 'L', 'Yuan', '0', '1964-09-04', 'M', 'NULL', 'M', 'tommy3@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Platz des Landtags 33', 'NULL', '1 (11) 500 555-0198', '2012-11-06', '0-1 Miles'], ['17941', '121', 'AW00017941', 'NULL', 'David', 'NULL', 'Jenkins', '0', '1965-06-04', 'M', 'NULL', 'M', 'david39@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Kalkweg 4425', 'NULL', '1 (11) 500 555-0162', '2012-10-31', '0-1 Miles'], ['17942', '121', 'AW00017942', 'NULL', 'Steven', 'NULL', 'Watson', '0', '1970-05-06', 'M', 'NULL', 'M', 'steven10@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Postfach 55 99 99', 'NULL', '1 (11) 500 555-0130', '2012-11-02', '2-5 Miles'], ['17943', '272', 'AW00017943', 'NULL', 'Joe', 'J', 'Romero', '0', '1970-01-15', 'S', 'NULL', 'M', 'joe32@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3693 Concord Ct.', 'NULL', '1 (11) 500 555-0168', '2012-09-07', '0-1 Miles'], ['17944', '221', 'AW00017944', 'NULL', 'Riley', 'T', 'Rivera', '0', '1974-08-12', 'M', 'NULL', 'F', 'riley36@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '808, rue des Berges', 'NULL', '1 (11) 500 555-0131', '2012-12-03', '0-1 Miles'], ['17945', '131', 'AW00017945', 'NULL', 'Julio', 'NULL', 'Rubio', '0', '1969-03-01', 'M', 'NULL', 'M', 'julio22@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Wertheimer Straße 899', 'NULL', '1 (11) 500 555-0173', '2012-11-20', '0-1 Miles'], ['17946', '133', 'AW00017946', 'NULL', 'Jocelyn', 'NULL', 'Washington', '0', '1969-11-02', 'M', 'NULL', 'F', 'jocelyn14@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Postfach 22 99 99', 'NULL', '1 (11) 500 555-0114', '2012-10-29', '0-1 Miles'], ['17947', '159', 'AW00017947', 'NULL', 'Erick', 'H', 'Srini', '0', '1964-05-01', 'S', 'NULL', 'M', 'erick8@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Rykestr 2605', 'NULL', '1 (11) 500 555-0131', '2012-12-11', '0-1 Miles'], ['17948', '274', 'AW00017948', 'NULL', 'Cheryl', 'A', 'Vazquez', '0', '1965-03-14', 'S', 'NULL', 'F', 'cheryl17@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6802 Spring Hill Road', 'NULL', '1 (11) 500 555-0151', '2012-09-21', '0-1 Miles'], ['17949', '187', 'AW00017949', 'NULL', 'Sophia', 'NULL', 'Mitchell', '0', '1964-11-18', 'M', 'NULL', 'F', 'sophia10@adventure-works.com', '40000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '22, avenue Foch', 'NULL', '1 (11) 500 555-0188', '2012-12-06', '0-1 Miles'], ['17950', '180', 'AW00017950', 'NULL', 'Alberto', 'NULL', 'Ortega', '0', '1964-05-18', 'M', 'NULL', 'M', 'alberto21@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2, rue Royale', 'NULL', '1 (11) 500 555-0113', '2012-12-13', '0-1 Miles'], ['17951', '237', 'AW00017951', 'NULL', 'Frederick', 'NULL', 'Malhotra', '0', '1975-10-10', 'M', 'NULL', 'M', 'frederick4@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '751 Countrywood Ct.', 'NULL', '1 (11) 500 555-0135', '2013-07-05', '5-10 Miles'], ['17952', '178', 'AW00017952', 'NULL', 'Brendan', 'NULL', 'Beck', '0', '1975-11-15', 'S', 'NULL', 'M', 'brendan18@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Im Himmelsweg 82', 'NULL', '1 (11) 500 555-0191', '2012-12-24', '0-1 Miles'], ['17953', '195', 'AW00017953', 'NULL', 'Latoya', 'L', 'Raje', '0', '1976-02-19', 'S', 'NULL', 'F', 'latoya12@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Midi-Couleurs', 'NULL', '1 (11) 500 555-0115', '2013-08-19', '0-1 Miles'], ['17954', '208', 'AW00017954', 'NULL', 'Shelby', 'B', 'Torres', '0', '1975-07-17', 'S', 'NULL', 'F', 'shelby4@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '96, avenue de l´Europe', 'NULL', '1 (11) 500 555-0198', '2013-05-20', '0-1 Miles'], ['17955', '175', 'AW00017955', 'NULL', 'Ronnie', 'NULL', 'Zhao', '0', '1976-05-01', 'S', 'NULL', 'M', 'ronnie8@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Wolfgangstraße 62', 'NULL', '1 (11) 500 555-0180', '2013-11-14', '2-5 Miles'], ['17956', '184', 'AW00017956', 'NULL', 'Jaime', 'NULL', 'Gomez', '0', '1981-09-23', 'S', 'NULL', 'M', 'jaime0@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '92, rue des Pyrenees', 'NULL', '1 (11) 500 555-0121', '2011-01-20', '0-1 Miles'], ['17957', '218', 'AW00017957', 'NULL', 'Misty', 'J', 'Yuan', '0', '1976-03-21', 'S', 'NULL', 'F', 'misty8@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '11, rue du Départ', 'NULL', '1 (11) 500 555-0182', '2011-01-28', '0-1 Miles'], ['17958', '252', 'AW00017958', 'NULL', 'Ricardo', 'C', 'Lal', '0', '1976-01-05', 'M', 'NULL', 'M', 'ricardo8@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9996 Asilomaar Dr.', 'NULL', '1 (11) 500 555-0185', '2012-09-24', '0-1 Miles'], ['17959', '253', 'AW00017959', 'NULL', 'Ebony', 'A', 'Srini', '0', '1975-09-22', 'M', 'NULL', 'F', 'ebony8@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '968 Davis Ave', 'NULL', '1 (11) 500 555-0156', '2012-09-12', '0-1 Miles'], ['17960', '262', 'AW00017960', 'NULL', 'Marie', 'L', 'Rodriguez', '0', '1976-03-20', 'M', 'NULL', 'F', 'marie21@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7739 Pineknoll', 'NULL', '1 (11) 500 555-0184', '2012-09-13', '0-1 Miles'], ['17961', '258', 'AW00017961', 'NULL', 'Meghan', 'NULL', 'Blanco', '0', '1975-05-14', 'S', 'NULL', 'F', 'meghan15@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '7182 Olive Hill', 'NULL', '1 (11) 500 555-0156', '2013-11-04', '0-1 Miles'], ['17962', '252', 'AW00017962', 'NULL', 'Colin', 'NULL', 'Zhou', '0', '1980-08-12', 'M', 'NULL', 'M', 'colin9@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7479 Ellis Street', 'NULL', '1 (11) 500 555-0199', '2012-09-14', '0-1 Miles'], ['17963', '127', 'AW00017963', 'NULL', 'Natalie', 'NULL', 'Collins', '0', '1974-12-08', 'S', 'NULL', 'F', 'natalie46@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Kappellweg 613', 'NULL', '1 (11) 500 555-0131', '2012-11-28', '1-2 Miles'], ['17964', '161', 'AW00017964', 'NULL', 'Darren', 'NULL', 'Suri', '0', '1975-02-05', 'M', 'NULL', 'M', 'darren2@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Zollhof 6266', 'NULL', '1 (11) 500 555-0152', '2012-12-01', '0-1 Miles'], ['17965', '270', 'AW00017965', 'NULL', 'Warren', 'A', 'Chander', '0', '1980-12-08', 'M', 'NULL', 'M', 'warren5@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9081 Texas Way', 'NULL', '1 (11) 500 555-0194', '2012-09-20', '0-1 Miles'], ['17966', '273', 'AW00017966', 'NULL', 'Kellie', 'K', 'Gutierrez', '0', '1975-05-24', 'S', 'NULL', 'F', 'kellie9@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '89 River Ash Court', 'NULL', '1 (11) 500 555-0130', '2012-09-19', '0-1 Miles'], ['17967', '279', 'AW00017967', 'NULL', 'Cassandra', 'NULL', 'Gonzalez', '0', '1963-05-21', 'M', 'NULL', 'F', 'cassandra20@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '8584 Clayton Rd', 'NULL', '1 (11) 500 555-0185', '2013-12-28', '0-1 Miles'], ['17968', '272', 'AW00017968', 'NULL', 'Nina', 'L', 'Black', '0', '1963-04-16', 'M', 'NULL', 'F', 'nina20@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '4256 Ashmount Way', 'NULL', '1 (11) 500 555-0146', '2012-09-13', '2-5 Miles'], ['17969', '241', 'AW00017969', 'NULL', 'Jeffery', 'NULL', 'Li', '0', '1957-12-20', 'M', 'NULL', 'M', 'jeffery3@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '8042 Placer Dr.', 'NULL', '1 (11) 500 555-0190', '2012-09-11', '2-5 Miles'], ['17970', '125', 'AW00017970', 'NULL', 'Erick', 'NULL', 'Martinez', '0', '1959-05-15', 'S', 'NULL', 'M', 'erick17@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Lindenalle 7384', 'NULL', '1 (11) 500 555-0152', '2013-04-01', '0-1 Miles'], ['17971', '215', 'AW00017971', 'NULL', 'Mayra', 'NULL', 'Perez', '0', '1973-10-23', 'S', 'NULL', 'F', 'mayra20@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '21, rue de Bas Marin', 'NULL', '1 (11) 500 555-0114', '2011-02-22', '0-1 Miles'], ['17972', '267', 'AW00017972', 'NULL', 'Alisha', 'NULL', 'Ma', '0', '1979-04-20', 'S', 'NULL', 'F', 'alisha16@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '464 Ahneita Dr.', 'NULL', '1 (11) 500 555-0168', '2012-10-15', '0-1 Miles'], ['17973', '200', 'AW00017973', 'NULL', 'Johnathan', 'A', 'Rodriguez', '0', '1984-12-09', 'M', 'NULL', 'M', 'johnathan18@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '157, chaussée de Tournai', 'NULL', '1 (11) 500 555-0180', '2011-03-21', '1-2 Miles'], ['17974', '230', 'AW00017974', 'NULL', 'Kate', 'NULL', 'Raje', '0', '1974-01-02', 'M', 'NULL', 'F', 'kate11@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '16 Woodside Court', 'NULL', '1 (11) 500 555-0182', '2012-10-20', '2-5 Miles'], ['17975', '226', 'AW00017975', 'NULL', 'Candace', 'B', 'Sai', '0', '1979-10-24', 'S', 'NULL', 'F', 'candace5@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '34287, avenue de l´Europe', 'NULL', '1 (11) 500 555-0141', '2011-03-31', '0-1 Miles'], ['17976', '159', 'AW00017976', 'NULL', 'Daisy', 'B', 'Carlson', '0', '1974-04-01', 'M', 'NULL', 'F', 'daisy13@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Helsenbergbogen 6', 'NULL', '1 (11) 500 555-0194', '2012-12-20', '0-1 Miles'], ['17977', '232', 'AW00017977', 'NULL', 'Valerie', 'NULL', 'Zeng', '0', '1973-12-22', 'M', 'NULL', 'F', 'valerie24@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9116 Tice Valley Blv.', 'NULL', '1 (11) 500 555-0141', '2012-10-25', '0-1 Miles'], ['17978', '234', 'AW00017978', 'NULL', 'Armando', 'P', 'Diaz', '0', '1974-05-17', 'M', 'NULL', 'M', 'armando3@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6406 Marlesta Rd.', 'NULL', '1 (11) 500 555-0178', '2012-10-18', '0-1 Miles'], ['17979', '267', 'AW00017979', 'NULL', 'Lisa', 'A', 'Lin', '0', '1974-03-02', 'M', 'NULL', 'F', 'lisa11@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '4893 Crane Court', 'NULL', '1 (11) 500 555-0136', '2012-10-10', '0-1 Miles'], ['17980', '133', 'AW00017980', 'NULL', 'Paige', 'NULL', 'Hughes', '0', '1972-12-17', 'S', 'NULL', 'F', 'paige10@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Galeriestr 29', 'NULL', '1 (11) 500 555-0185', '2012-12-02', '0-1 Miles'], ['17981', '271', 'AW00017981', 'NULL', 'Fernando', 'NULL', 'Mitchell', '0', '1978-04-19', 'M', 'NULL', 'M', 'fernando36@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5174 Filling Drive', 'NULL', '1 (11) 500 555-0159', '2012-09-29', '2-5 Miles'], ['17982', '210', 'AW00017982', 'NULL', 'Francisco', 'K', 'Mehta', '0', '1973-03-07', 'S', 'NULL', 'M', 'francisco15@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '855bis, rue des Peupliers', 'NULL', '1 (11) 500 555-0187', '2011-05-19', '0-1 Miles'], ['17983', '132', 'AW00017983', 'NULL', 'Carol', 'NULL', 'Saunders', '0', '1972-12-31', 'M', 'NULL', 'F', 'carol22@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Waldstr 92', 'NULL', '1 (11) 500 555-0156', '2012-12-14', '0-1 Miles'], ['17984', '120', 'AW00017984', 'NULL', 'Barbara', 'G', 'Andersen', '0', '1972-09-21', 'M', 'NULL', 'F', 'barbara43@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Königsteiner Straße 449', 'NULL', '1 (11) 500 555-0160', '2012-12-19', '0-1 Miles'], ['17985', '168', 'AW00017985', 'NULL', 'Cedric', 'NULL', 'Sun', '0', '1972-10-12', 'M', 'NULL', 'M', 'cedric12@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Celler Weg 123', 'NULL', '1 (11) 500 555-0131', '2012-12-24', '0-1 Miles'], ['17986', '134', 'AW00017986', 'NULL', 'Monica', 'D', 'Malhotra', '0', '1978-04-19', 'M', 'NULL', 'F', 'monica5@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Charlottenstr 299', 'NULL', '1 (11) 500 555-0186', '2012-12-16', '0-1 Miles'], ['17987', '201', 'AW00017987', 'NULL', 'Cara', 'E', 'Sun', '0', '1971-11-03', 'M', 'NULL', 'F', 'cara9@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', '775, rue de Courtaboeuf', 'NULL', '1 (11) 500 555-0137', '2011-05-05', '2-5 Miles'], ['17988', '202', 'AW00017988', 'NULL', 'Alfredo', 'W', 'Diaz', '0', '1971-06-22', 'S', 'NULL', 'M', 'alfredo4@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '9833, rue des Ecoles', 'NULL', '1 (11) 500 555-0175', '2013-10-23', '0-1 Miles'], ['17989', '121', 'AW00017989', 'NULL', 'Tiffany', 'P', 'Sun', '0', '1971-02-11', 'S', 'NULL', 'F', 'tiffany13@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Westheimer Straße 92', 'NULL', '1 (11) 500 555-0161', '2012-12-03', '0-1 Miles'], ['17990', '259', 'AW00017990', 'NULL', 'Kristina', 'NULL', 'Patel', '0', '1981-12-15', 'S', 'NULL', 'F', 'kristina3@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '8299 Leed Court West', 'NULL', '1 (11) 500 555-0147', '2012-10-22', '0-1 Miles'], ['17991', '241', 'AW00017991', 'NULL', 'Richard', 'NULL', 'Kelly', '0', '1976-06-23', 'M', 'NULL', 'M', 'richard82@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9052 Maureen Lane', 'NULL', '1 (11) 500 555-0148', '2013-07-24', '0-1 Miles'], ['17992', '161', 'AW00017992', 'NULL', 'Sandra', 'N', 'Ma', '0', '1970-06-22', 'S', 'NULL', 'F', 'sandra23@adventure-works.com', '10000.00', '5', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Husemann Straße 6464', 'NULL', '1 (11) 500 555-0115', '2013-02-27', '0-1 Miles'], ['17993', '147', 'AW00017993', 'NULL', 'Richard', 'I', 'Williams', '0', '1936-04-15', 'M', 'NULL', 'M', 'richard42@adventure-works.com', '10000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Marienplatz 52', 'NULL', '1 (11) 500 555-0152', '2013-02-03', '0-1 Miles'], ['17994', '139', 'AW00017994', 'NULL', 'Bradley', 'T', 'Xu', '0', '1970-02-01', 'S', 'NULL', 'M', 'bradley7@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Erftplatz 93', 'NULL', '1 (11) 500 555-0127', '2013-02-16', '0-1 Miles'], ['17995', '177', 'AW00017995', 'NULL', 'Sabrina', 'NULL', 'Jimenez', '0', '1969-12-21', 'S', 'NULL', 'F', 'sabrina3@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Krönerweg 2662', 'NULL', '1 (11) 500 555-0157', '2013-09-03', '0-1 Miles'], ['17996', '211', 'AW00017996', 'NULL', 'Cedric', 'NULL', 'Raji', '0', '1975-11-10', 'S', 'NULL', 'M', 'cedric39@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '45, avenue de la Gare', 'NULL', '1 (11) 500 555-0195', '2011-06-07', '0-1 Miles'], ['17997', '190', 'AW00017997', 'NULL', 'April', 'J', 'Sharma', '0', '1975-02-24', 'S', 'NULL', 'F', 'april7@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '43, rue de Linois', 'NULL', '1 (11) 500 555-0132', '2013-04-18', '0-1 Miles'], ['17998', '171', 'AW00017998', 'NULL', 'Tammy', 'A', 'Weber', '0', '1974-05-02', 'S', 'NULL', 'F', 'tammy4@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Wolfgangstraße 7254', 'NULL', '1 (11) 500 555-0166', '2012-12-25', '0-1 Miles'], ['17999', '186', 'AW00017999', 'NULL', 'Byron', 'NULL', 'Romero', '0', '1968-12-22', 'S', 'NULL', 'M', 'byron5@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '55, rue Saint Denis', 'NULL', '1 (11) 500 555-0166', '2011-06-24', '0-1 Miles'], ['18000', '231', 'AW00018000', 'NULL', 'Ramon', 'NULL', 'She', '0', '1969-05-24', 'S', 'NULL', 'M', 'ramon21@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '8521 C Mt. Hood Circle', 'NULL', '1 (11) 500 555-0115', '2012-10-12', '0-1 Miles'], ['18001', '164', 'AW00018001', 'NULL', 'Ross', 'J', 'Suri', '0', '1969-01-10', 'S', 'NULL', 'M', 'ross0@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Wolfgangstraße 78', 'NULL', '1 (11) 500 555-0110', '2013-11-11', '0-1 Miles'], ['18002', '138', 'AW00018002', 'NULL', 'Gina', 'M', 'Navarro', '0', '1938-09-07', 'M', 'NULL', 'F', 'gina10@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Husemann Straße 4957', 'NULL', '1 (11) 500 555-0145', '2013-09-21', '2-5 Miles'], ['18003', '162', 'AW00018003', 'NULL', 'Edwin', 'M', 'Chande', '0', '1939-03-19', 'M', 'NULL', 'M', 'edwin37@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Carlsplatz 51', 'NULL', '1 (11) 500 555-0127', '2014-01-24', '2-5 Miles'], ['18004', '196', 'AW00018004', 'NULL', 'Tonya', 'NULL', 'Shen', '0', '1971-07-10', 'M', 'NULL', 'F', 'tonya2@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '9559, avenue de Villiers', 'NULL', '1 (11) 500 555-0134', '2011-06-10', '0-1 Miles'], ['18005', '147', 'AW00018005', 'NULL', 'Renee', 'K', 'Ramos', '0', '1972-02-15', 'M', 'NULL', 'F', 'renee15@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', 'Pflugstr 25', 'NULL', '1 (11) 500 555-0115', '2012-12-20', '0-1 Miles'], ['18006', '151', 'AW00018006', 'NULL', 'Franklin', 'E', 'Chander', '0', '1940-03-30', 'M', 'NULL', 'M', 'franklin33@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Zollhof 726', 'NULL', '1 (11) 500 555-0129', '2013-05-01', '0-1 Miles'], ['18007', '233', 'AW00018007', 'NULL', 'Michele', 'NULL', 'Suri', '0', '1939-08-08', 'M', 'NULL', 'F', 'michele55@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4144 Mary Dr.', 'NULL', '1 (11) 500 555-0177', '2013-07-27', '0-1 Miles'], ['18008', '221', 'AW00018008', 'NULL', 'Deanna', 'D', 'Sai', '0', '1971-03-18', 'S', 'NULL', 'F', 'deanna9@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6, rue Lafayette', 'NULL', '1 (11) 500 555-0116', '2011-07-17', '0-1 Miles'], ['18009', '205', 'AW00018009', 'NULL', 'Deanna', 'NULL', 'Prasad', '0', '1970-11-01', 'S', 'NULL', 'F', 'deanna13@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3339, rue Surcouf', 'NULL', '1 (11) 500 555-0195', '2011-07-27', '0-1 Miles'], ['18010', '183', 'AW00018010', 'NULL', 'Clarence', 'S', 'Jai', '0', '1976-05-06', 'S', 'NULL', 'M', 'clarence26@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '176, rue de Berri', 'NULL', '1 (11) 500 555-0118', '2011-08-06', '0-1 Miles'], ['18011', '197', 'AW00018011', 'NULL', 'Frank', 'NULL', 'Gomez', '0', '1970-10-31', 'S', 'NULL', 'M', 'frank31@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '22, rue de Bas Marin', 'NULL', '1 (11) 500 555-0123', '2011-08-04', '0-1 Miles'], ['18012', '239', 'AW00018012', 'NULL', 'Karen', 'R', 'Zhu', '0', '1970-11-09', 'M', 'NULL', 'F', 'karen24@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3353 Teixeira Way', 'NULL', '1 (11) 500 555-0183', '2013-11-02', '0-1 Miles'], ['18013', '249', 'AW00018013', 'NULL', 'Kathleen', 'E', 'Munoz', '0', '1982-01-12', 'M', 'NULL', 'F', 'kathleen9@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1055 Horseshoe Road', 'NULL', '1 (11) 500 555-0175', '2014-01-14', '0-1 Miles'], ['18014', '185', 'AW00018014', 'NULL', 'Wayne', 'M', 'Xu', '0', '1969-09-03', 'S', 'NULL', 'M', 'wayne6@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2822, rue des Ecoles', 'NULL', '1 (11) 500 555-0160', '2013-04-06', '0-1 Miles'], ['18015', '186', 'AW00018015', 'NULL', 'Haley', 'D', 'Edwards', '0', '1969-10-10', 'S', 'NULL', 'F', 'haley43@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '75, avenue Reille', 'NULL', '1 (11) 500 555-0161', '2013-11-14', '0-1 Miles'], ['18016', '223', 'AW00018016', 'NULL', 'Tiffany', 'J', 'Liu', '0', '1975-02-16', 'M', 'NULL', 'F', 'tiffany4@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '22, rue Léo Delibes', 'NULL', '1 (11) 500 555-0183', '2013-11-14', '0-1 Miles'], ['18017', '165', 'AW00018017', 'NULL', 'Kurt', 'A', 'Shan', '0', '1975-09-02', 'S', 'NULL', 'M', 'kurt10@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Höhenstr 9479', 'NULL', '1 (11) 500 555-0148', '2013-02-17', '0-1 Miles'], ['18018', '213', 'AW00018018', 'NULL', 'Peter', 'NULL', 'Xie', '0', '1974-04-01', 'S', 'NULL', 'M', 'peter10@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8280, place du Tertre', 'NULL', '1 (11) 500 555-0178', '2013-09-08', '0-1 Miles'], ['18019', '150', 'AW00018019', 'NULL', 'Yolanda', 'W', 'Raji', '0', '1969-06-21', 'M', 'NULL', 'F', 'yolanda20@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Königstr 57', 'NULL', '1 (11) 500 555-0171', '2012-12-03', '0-1 Miles'], ['18020', '161', 'AW00018020', 'NULL', 'Armando', 'W', 'Ruiz', '0', '1982-07-09', 'S', 'NULL', 'M', 'armando2@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Reiherweg 4164', 'NULL', '1 (11) 500 555-0170', '2013-08-23', '2-5 Miles'], ['18021', '260', 'AW00018021', 'NULL', 'Trisha', 'A', 'She', '0', '1982-01-17', 'S', 'NULL', 'F', 'trisha17@adventure-works.com', '20000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '2457 Matterhorn Court', 'NULL', '1 (11) 500 555-0111', '2012-10-03', '0-1 Miles'], ['18022', '163', 'AW00018022', 'NULL', 'Victor', 'NULL', 'Alvarez', '0', '1985-03-14', 'S', 'NULL', 'M', 'victor6@adventure-works.com', '20000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Parise Straße 7155', 'NULL', '1 (11) 500 555-0180', '2013-02-27', '0-1 Miles'], ['18023', '154', 'AW00018023', 'NULL', 'Terrence', 'W', 'Raji', '0', '1985-04-14', 'S', 'NULL', 'M', 'terrence22@adventure-works.com', '20000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Westheimer Straße 5601', 'NULL', '1 (11) 500 555-0119', '2013-10-01', '0-1 Miles'], ['18024', '276', 'AW00018024', 'NULL', 'Nancy', 'L', 'Kapoor', '0', '1985-04-14', 'S', 'NULL', 'F', 'nancy6@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3533 Treat Blvd.', 'NULL', '1 (11) 500 555-0195', '2013-04-01', '0-1 Miles'], ['18025', '187', 'AW00018025', 'NULL', 'Benjamin', 'NULL', 'Flores', '0', '1984-05-13', 'S', 'NULL', 'M', 'benjamin13@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '123, rue de Cambrai', 'NULL', '1 (11) 500 555-0151', '2013-08-20', '0-1 Miles'], ['18026', '264', 'AW00018026', 'NULL', 'Alisha', 'R', 'He', '0', '1969-04-26', 'M', 'NULL', 'F', 'alisha19@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4991 Kaywood Dr.', 'NULL', '1 (11) 500 555-0195', '2012-10-29', '0-1 Miles'], ['18027', '175', 'AW00018027', 'NULL', 'Alexia', 'W', 'Griffin', '0', '1978-08-12', 'M', 'NULL', 'F', 'alexia17@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Moritzstr 4', 'NULL', '1 (11) 500 555-0130', '2012-12-12', '0-1 Miles'], ['18028', '263', 'AW00018028', 'NULL', 'Jessie', 'W', 'Zheng', '0', '1978-08-12', 'M', 'NULL', 'M', 'jessie25@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2507 Bonsai Court', 'NULL', '1 (11) 500 555-0178', '2012-11-11', '0-1 Miles'], ['18029', '155', 'AW00018029', 'NULL', 'Carmen', 'NULL', 'Malhotra', '0', '1983-06-17', 'S', 'NULL', 'F', 'carmen8@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Hellweg 4534', 'NULL', '1 (11) 500 555-0174', '2013-08-26', '2-5 Miles'], ['18030', '268', 'AW00018030', 'NULL', 'Victor', 'NULL', 'Torres', '0', '1981-08-08', 'S', 'NULL', 'M', 'victor12@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '5950 Dakota Lane', 'NULL', '1 (11) 500 555-0112', '2013-03-06', '1-2 Miles'], ['18031', '172', 'AW00018031', 'NULL', 'Shawna', 'A', 'Tang', '0', '1980-07-11', 'S', 'NULL', 'F', 'shawna4@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Am Gallberg 67', 'NULL', '1 (11) 500 555-0154', '2013-05-16', '0-1 Miles'], ['18032', '202', 'AW00018032', 'NULL', 'Cassie', 'A', 'Raji', '0', '1981-12-03', 'M', 'NULL', 'F', 'cassie19@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '24, rue Philibert-Delorme', 'NULL', '1 (11) 500 555-0184', '2013-05-05', '2-5 Miles'], ['18033', '161', 'AW00018033', 'NULL', 'Evelyn', 'W', 'Patel', '0', '1981-11-17', 'S', 'NULL', 'F', 'evelyn3@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Postfach 44 11 11', 'NULL', '1 (11) 500 555-0193', '2013-09-01', '2-5 Miles'], ['18034', '160', 'AW00018034', 'NULL', 'Ethan', 'J', 'Robinson', '0', '1917-09-20', 'M', 'NULL', 'M', 'ethan34@adventure-works.com', '10000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Celler Weg 5', 'NULL', '1 (11) 500 555-0160', '2013-05-21', '0-1 Miles'], ['18035', '162', 'AW00018035', 'NULL', 'Karen', 'K', 'Zhang', '0', '1980-03-09', 'S', 'NULL', 'F', 'karen10@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Pappelallee 612', 'NULL', '1 (11) 500 555-0189', '2013-12-26', '1-2 Miles'], ['18036', '130', 'AW00018036', 'NULL', 'Bruce', 'NULL', 'Sanchez', '0', '1985-01-18', 'S', 'NULL', 'M', 'bruce20@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Am Grossen Dern 4321', 'NULL', '1 (11) 500 555-0123', '2013-03-28', '0-1 Miles'], ['18037', '239', 'AW00018037', 'NULL', 'Bruce', 'B', 'Garcia', '0', '1979-10-19', 'S', 'NULL', 'M', 'bruce14@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '6648 Rose Dr', 'NULL', '1 (11) 500 555-0157', '2013-09-09', '0-1 Miles'], ['18038', '207', 'AW00018038', 'NULL', 'Kelli', 'NULL', 'Kumar', '0', '1980-11-14', 'S', 'NULL', 'F', 'kelli30@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '76, rue Pierre-Demoulin', 'NULL', '1 (11) 500 555-0175', '2011-08-11', '2-5 Miles'], ['18039', '186', 'AW00018039', 'NULL', 'Logan', 'NULL', 'Clark', '0', '1981-04-17', 'M', 'NULL', 'M', 'logan71@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '40, rue Royale', 'NULL', '1 (11) 500 555-0157', '2011-09-04', '0-1 Miles'], ['18040', '219', 'AW00018040', 'NULL', 'Curtis', 'L', 'Liu', '0', '1979-05-07', 'M', 'NULL', 'M', 'curtis4@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '19, rue de Terre Neuve', 'NULL', '1 (11) 500 555-0171', '2013-06-29', '0-1 Miles'], ['18041', '243', 'AW00018041', 'NULL', 'Sheena', 'NULL', 'Xie', '0', '1978-07-25', 'S', 'NULL', 'F', 'sheena3@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '2266 Beauty Street', 'NULL', '1 (11) 500 555-0150', '2013-07-17', '1-2 Miles'], ['18042', '279', 'AW00018042', 'NULL', 'Stanley', 'NULL', 'Srini', '0', '1978-09-16', 'S', 'NULL', 'M', 'stanley9@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '782 West Way', 'NULL', '1 (11) 500 555-0194', '2013-04-01', '1-2 Miles'], ['18043', '186', 'AW00018043', 'NULL', 'Katie', 'A', 'Chande', '0', '1984-02-03', 'S', 'NULL', 'F', 'katie17@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '48, rue Montcalm', 'NULL', '1 (11) 500 555-0134', '2013-05-20', '1-2 Miles'], ['18044', '246', 'AW00018044', 'NULL', 'Kendra', 'NULL', 'Carlson', '0', '1984-03-02', 'S', 'NULL', 'F', 'kendra18@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '892 Southbrook Drive', 'NULL', '1 (11) 500 555-0118', '2013-09-07', '1-2 Miles'], ['18045', '134', 'AW00018045', 'NULL', 'Toni', 'NULL', 'Arun', '0', '1984-04-09', 'S', 'NULL', 'F', 'toni6@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Am Gallberg 6726', 'NULL', '1 (11) 500 555-0192', '2012-12-08', '2-5 Miles'], ['18046', '213', 'AW00018046', 'NULL', 'Terry', 'P', 'Jai', '0', '1979-03-03', 'S', 'NULL', 'M', 'terry14@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '211, avenue Foch', 'NULL', '1 (11) 500 555-0121', '2011-09-23', '2-5 Miles'], ['18047', '143', 'AW00018047', 'NULL', 'Latasha', 'NULL', 'Alvarez', '0', '1979-08-09', 'M', 'NULL', 'F', 'latasha4@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Auf dem Ufer 164', 'NULL', '1 (11) 500 555-0177', '2011-12-29', '0-1 Miles'], ['18048', '229', 'AW00018048', 'NULL', 'Alisha', 'NULL', 'Sun', '0', '1980-04-04', 'S', 'NULL', 'F', 'alisha13@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '4096 San Remo', 'NULL', '1 (11) 500 555-0137', '2013-11-18', '1-2 Miles'], ['18049', '626', 'AW00018049', 'NULL', 'Patrick', 'H', 'Watson', '0', '1977-11-20', 'S', 'NULL', 'M', 'patrick6@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8678 Hartnell Court', 'NULL', '188-555-0114', '2013-09-13', '2-5 Miles'], ['18050', '348', 'AW00018050', 'NULL', 'Sara', 'NULL', 'Cooper', '0', '1966-12-06', 'M', 'NULL', 'F', 'sara19@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7443 Sherry Circle', 'NULL', '875-555-0129', '2013-09-09', '0-1 Miles'], ['18051', '64', 'AW00018051', 'NULL', 'Caroline', 'NULL', 'Price', '0', '1967-05-07', 'M', 'NULL', 'F', 'caroline2@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '543 Sand Pointe Lane', 'Box #311', '662-555-0188', '2013-12-02', '2-5 Miles'], ['18052', '360', 'AW00018052', 'NULL', 'Maria', 'J', 'Young', '0', '1972-08-06', 'M', 'NULL', 'F', 'maria65@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '631 Elliott Dr.', 'NULL', '125-555-0197', '2013-09-17', '0-1 Miles'], ['18053', '494', 'AW00018053', 'NULL', 'Stefanie', 'NULL', 'Smith', '0', '1966-04-06', 'S', 'NULL', 'F', 'stefanie5@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3605 Sinclair Ave.', 'NULL', '172-555-0113', '2013-02-11', '2-5 Miles'], ['18054', '49', 'AW00018054', 'NULL', 'Jake', 'NULL', 'Zeng', '0', '1971-10-03', 'S', 'NULL', 'M', 'jake20@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4058 First Ave', 'NULL', '987-555-0118', '2013-04-23', '0-1 Miles'], ['18055', '51', 'AW00018055', 'NULL', 'Trevor', 'A', 'Harrison', '0', '1972-12-31', 'S', 'NULL', 'M', 'trevor22@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3004 Banyan Circle', 'NULL', '685-555-0165', '2013-02-12', '0-1 Miles'], ['18056', '316', 'AW00018056', 'NULL', 'Haley', 'A', 'Price', '0', '1978-09-06', 'S', 'NULL', 'F', 'haley20@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '1833 Olympic Drive', 'NULL', '572-555-0195', '2013-09-06', '0-1 Miles'], ['18057', '334', 'AW00018057', 'NULL', 'Logan', 'A', 'Washington', '0', '1983-10-01', 'M', 'NULL', 'M', 'logan16@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '5637 Teak Court', 'NULL', '944-555-0179', '2013-09-02', '0-1 Miles'], ['18058', '299', 'AW00018058', 'NULL', 'Riley', 'S', 'Patterson', '0', '1933-09-01', 'S', 'NULL', 'F', 'riley8@adventure-works.com', '20000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '708 Pine St', 'NULL', '190-555-0118', '2013-09-03', '2-5 Miles'], ['18059', '644', 'AW00018059', 'NULL', 'Bailey', 'E', 'Gonzalez', '0', '1965-11-11', 'M', 'NULL', 'F', 'bailey29@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4546 Fieldcrest Dr.', 'NULL', '934-555-0118', '2013-09-07', '0-1 Miles'], ['18060', '634', 'AW00018060', 'NULL', 'Sara', 'NULL', 'Carter', '0', '1965-10-08', 'M', 'NULL', 'F', 'sara36@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1514 West M Street', 'NULL', '674-555-0160', '2013-09-01', '2-5 Miles'], ['18061', '314', 'AW00018061', 'NULL', 'Jesse', 'A', 'Bailey', '0', '1955-01-06', 'M', 'NULL', 'M', 'jesse16@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '5942 Laurel', 'NULL', '708-555-0172', '2013-07-14', '1-2 Miles'], ['18062', '361', 'AW00018062', 'NULL', 'Dylan', 'NULL', 'Anderson', '0', '1961-01-14', 'M', 'NULL', 'M', 'dylan40@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '416 Yosemite Circle', 'NULL', '665-555-0156', '2013-09-22', '1-2 Miles'], ['18063', '358', 'AW00018063', 'NULL', 'Alexandria', 'C', 'Ward', '0', '1955-06-16', 'S', 'NULL', 'F', 'alexandria34@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4110 Hanson Lane', 'NULL', '100-555-0151', '2013-03-26', '10+ Miles'], ['18064', '334', 'AW00018064', 'NULL', 'Catherine', 'NULL', 'Rivera', '0', '1950-07-07', 'M', 'NULL', 'F', 'catherine14@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '1925 Poncho Street', 'NULL', '726-555-0178', '2013-03-22', '2-5 Miles'], ['18065', '50', 'AW00018065', 'NULL', 'Julia', 'NULL', 'Brown', '0', '1950-10-15', 'S', 'NULL', 'F', 'julia26@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9555 Whyte Park Ave.', 'NULL', '191-555-0143', '2013-09-04', '2-5 Miles'], ['18066', '300', 'AW00018066', 'NULL', 'Steve', 'J', 'He', '0', '1951-07-16', 'S', 'NULL', 'M', 'steve21@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '3792 Esperanza Drive', 'NULL', '806-555-0181', '2013-11-12', '10+ Miles'], ['18067', '547', 'AW00018067', 'NULL', 'Jackson', 'E', 'King', '0', '1952-02-07', 'M', 'NULL', 'M', 'jackson49@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '1466 Aspen Drive', 'NULL', '538-555-0143', '2013-11-17', '10+ Miles'], ['18068', '385', 'AW00018068', 'NULL', 'Ethan', 'NULL', 'Walker', '0', '1952-05-22', 'M', 'NULL', 'M', 'ethan51@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '7811 Harris Circle', 'NULL', '569-555-0192', '2013-10-31', '2-5 Miles'], ['18069', '316', 'AW00018069', 'NULL', 'Elijah', 'E', 'Hill', '0', '1951-12-23', 'M', 'NULL', 'M', 'elijah41@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '914 Nicholas Drive', 'NULL', '416-555-0163', '2013-08-01', '10+ Miles'], ['18070', '369', 'AW00018070', 'NULL', 'Alyssa', 'P', 'Martinez', '0', '1951-08-04', 'M', 'NULL', 'F', 'alyssa17@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2090 Vine Hill Way', 'NULL', '568-555-0197', '2014-01-23', '10+ Miles'], ['18071', '326', 'AW00018071', 'NULL', 'Katelyn', 'E', 'Campbell', '0', '1957-08-09', 'M', 'NULL', 'F', 'katelyn29@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2141 Pepper Way', 'NULL', '911-555-0143', '2013-04-25', '2-5 Miles'], ['18072', '552', 'AW00018072', 'NULL', 'Maria', 'D', 'Perez', '0', '1952-01-31', 'S', 'NULL', 'F', 'maria55@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7662 Nulty Dr.', 'NULL', '737-555-0153', '2013-09-07', '10+ Miles'], ['18073', '361', 'AW00018073', 'NULL', 'Robert', 'A', 'Chen', '0', '1952-02-11', 'M', 'NULL', 'M', 'robert37@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5053 Freedom Hill Circle', 'NULL', '806-555-0157', '2014-01-20', '10+ Miles'], ['18074', '626', 'AW00018074', 'NULL', 'Julia', 'L', 'Hall', '0', '1952-10-14', 'S', 'NULL', 'F', 'julia45@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '1307 Horseshoe Circle', 'NULL', '470-555-0151', '2013-07-19', '10+ Miles'], ['18075', '374', 'AW00018075', 'NULL', 'Courtney', 'C', 'Adams', '0', '1952-07-07', 'S', 'NULL', 'F', 'courtney12@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6089 Santa Fe Dr.', 'NULL', '709-555-0119', '2013-11-05', '2-5 Miles'], ['18076', '307', 'AW00018076', 'NULL', 'Andre', 'F', 'Mehta', '0', '1969-04-11', 'M', 'NULL', 'M', 'andre14@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '8636 St. Francis St.', 'NULL', '317-555-0119', '2013-10-29', '10+ Miles'], ['18077', '49', 'AW00018077', 'NULL', 'Philip', 'NULL', 'Ruiz', '0', '1958-08-11', 'M', 'NULL', 'M', 'philip1@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '786 Rachele Road', 'NULL', '655-555-0149', '2013-05-30', '10+ Miles'], ['18078', '49', 'AW00018078', 'NULL', 'Ruben', 'NULL', 'Srini', '0', '1952-10-17', 'M', 'NULL', 'M', 'ruben9@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7610 Pepperridge Pl.', 'NULL', '375-555-0112', '2013-03-27', '10+ Miles'], ['18079', '331', 'AW00018079', 'NULL', 'Victoria', 'NULL', 'Martin', '0', '1952-11-11', 'M', 'NULL', 'F', 'victoria15@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '9593 Eastgate Lane', 'NULL', '664-555-0120', '2013-09-16', '10+ Miles'], ['18080', '347', 'AW00018080', 'NULL', 'Paige', 'NULL', 'Richardson', '0', '1953-05-12', 'M', 'NULL', 'F', 'paige33@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '5042 Mining Rd', 'NULL', '676-555-0146', '2013-09-04', '2-5 Miles'], ['18081', '60', 'AW00018081', 'NULL', 'Amanda', 'NULL', 'Parker', '0', '1953-11-21', 'M', 'NULL', 'F', 'amanda51@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1130 Fillet Ave.', 'NULL', '978-555-0167', '2013-07-12', '2-5 Miles'], ['18082', '614', 'AW00018082', 'NULL', 'Steven', 'E', 'Sanchez', '0', '1965-04-09', 'M', 'NULL', 'M', 'steven27@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '5183 Sharon Pl.', 'NULL', '620-555-0127', '2013-11-08', '10+ Miles'], ['18083', '618', 'AW00018083', 'NULL', 'Osarumwense', 'Uwaifiokun', 'Agbonile', '0', '1953-10-16', 'M', 'NULL', 'M', 'osarumwense0@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '3858 Vista Diablo', 'Unit C', '592-555-0152', '2013-06-30', '10+ Miles'], ['18084', '634', 'AW00018084', 'NULL', 'Jessica', 'NULL', 'Diaz', '0', '1953-10-05', 'S', 'NULL', 'F', 'jessica46@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '7437 Jason Ct', 'NULL', '607-555-0192', '2013-09-19', '2-5 Miles'], ['18085', '310', 'AW00018085', 'NULL', 'Christy', 'U', 'Nath', '0', '1954-02-16', 'S', 'NULL', 'F', 'christy36@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '5288 Carletto Drive', 'NULL', '980-555-0120', '2013-09-27', '2-5 Miles'], ['18086', '311', 'AW00018086', 'NULL', 'Jaclyn', 'R', 'Zeng', '0', '1954-04-07', 'S', 'NULL', 'F', 'jaclyn23@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5665 Myrtle Drive', 'NULL', '979-555-0180', '2013-09-11', '2-5 Miles'], ['18087', '326', 'AW00018087', 'NULL', 'Marcus', 'J', 'Long', '0', '1954-01-14', 'S', 'NULL', 'M', 'marcus59@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '3202 La Vuelta', 'NULL', '862-555-0125', '2013-08-29', '10+ Miles'], ['18088', '336', 'AW00018088', 'NULL', 'Seth', 'A', 'Stewart', '0', '1953-07-22', 'M', 'NULL', 'M', 'seth91@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '0', '9893 Oak Brook Place', 'NULL', '863-555-0190', '2013-09-12', '2-5 Miles'], ['18089', '51', 'AW00018089', 'NULL', 'Melanie', 'C', 'Gonzales', '0', '1955-03-13', 'M', 'NULL', 'F', 'melanie4@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '7466 Firestone', 'NULL', '595-555-0173', '2013-11-29', '10+ Miles'], ['18090', '52', 'AW00018090', 'NULL', 'Lucas', 'P', 'Smith', '0', '1960-09-01', 'M', 'NULL', 'M', 'lucas13@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8176 Pena', 'NULL', '662-555-0157', '2013-04-21', '2-5 Miles'], ['18091', '53', 'AW00018091', 'NULL', 'Chase', 'NULL', 'Bell', '0', '1960-05-09', 'S', 'NULL', 'M', 'chase14@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5175 Elm Rd.', 'NULL', '261-555-0116', '2013-12-05', '10+ Miles'], ['18092', '54', 'AW00018092', 'NULL', 'Eduardo', 'NULL', 'Baker', '0', '1954-09-13', 'M', 'NULL', 'M', 'eduardo31@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7233 Leticia', 'NULL', '698-555-0189', '2013-12-02', '10+ Miles'], ['18093', '548', 'AW00018093', 'NULL', 'Grace', 'M', 'Johnson', '0', '1955-05-05', 'S', 'NULL', 'F', 'grace0@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4167 Green Leaf Drive', 'NULL', '761-555-0113', '2013-06-16', '10+ Miles'], ['18094', '298', 'AW00018094', 'NULL', 'Roy', 'NULL', 'Alonso', '0', '1955-01-01', 'S', 'NULL', 'M', 'roy28@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '1898 South St.', 'NULL', '666-555-0185', '2013-02-19', '10+ Miles'], ['18095', '300', 'AW00018095', 'NULL', 'Thomas', 'M', 'Campbell', '0', '1955-05-12', 'M', 'NULL', 'M', 'thomas44@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '6768 Walters Way', 'NULL', '432-555-0179', '2013-02-05', '10+ Miles'], ['18096', '300', 'AW00018096', 'NULL', 'Ariana', 'R', 'Kelly', '0', '1954-08-30', 'M', 'NULL', 'F', 'ariana2@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '0', '6404 West Slough Rd', 'NULL', '366-555-0128', '2013-09-06', '2-5 Miles'], ['18097', '635', 'AW00018097', 'NULL', 'Sydney', 'NULL', 'Stewart', '0', '1961-08-15', 'S', 'NULL', 'F', 'sydney0@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8422 W. Holly Drive', 'NULL', '166-555-0111', '2013-03-22', '10+ Miles'], ['18098', '552', 'AW00018098', 'NULL', 'Edward', 'C', 'Lee', '0', '1956-05-08', 'M', 'NULL', 'M', 'edward44@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '130 Alamo Court', 'NULL', '143-555-0177', '2013-09-06', '2-5 Miles'], ['18099', '325', 'AW00018099', 'NULL', 'Marcus', 'M', 'Edwards', '0', '1961-05-06', 'M', 'NULL', 'M', 'marcus47@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '5014 S. Villa Way', 'NULL', '842-555-0134', '2013-06-10', '2-5 Miles'], ['18100', '345', 'AW00018100', 'NULL', 'Kyle', 'L', 'Li', '0', '1956-04-06', 'M', 'NULL', 'M', 'kyle22@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6939 E. 7th Street', 'NULL', '161-555-0138', '2013-07-17', '10+ Miles'], ['18101', '347', 'AW00018101', 'NULL', 'Bailey', 'NULL', 'Turner', '0', '1955-10-26', 'M', 'NULL', 'F', 'bailey26@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '8186 St. Michael Drive', '#a', '846-555-0146', '2013-11-18', '10+ Miles'], ['18102', '372', 'AW00018102', 'NULL', 'Nicholas', 'G', 'Lewis', '0', '1955-11-16', 'M', 'NULL', 'M', 'nicholas1@adventure-works.com', '80000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '7466 La Vista Ave.', 'NULL', '560-555-0114', '2013-02-04', '1-2 Miles'], ['18103', '49', 'AW00018103', 'NULL', 'Chelsea', 'E', 'Gonzalez', '0', '1956-12-21', 'S', 'NULL', 'F', 'chelsea20@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '4377 Westminster Pl.', 'NULL', '234-555-0154', '2013-12-10', '2-5 Miles'], ['18104', '642', 'AW00018104', 'NULL', 'Taylor', 'NULL', 'Coleman', '0', '1956-12-20', 'M', 'NULL', 'F', 'taylor31@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '3880 95th', 'NULL', '232-555-0179', '2013-04-02', '2-5 Miles'], ['18105', '552', 'AW00018105', 'NULL', 'Destiny', 'S', 'Brooks', '0', '1962-02-08', 'M', 'NULL', 'F', 'destiny45@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7820 Blackridge Drive', 'NULL', '564-555-0191', '2013-03-26', '10+ Miles'], ['18106', '298', 'AW00018106', 'NULL', 'Carson', 'G', 'Alexander', '0', '1957-04-13', 'M', 'NULL', 'M', 'carson18@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '4236 Greenwood Pl.', 'NULL', '867-555-0136', '2013-04-21', '10+ Miles'], ['18107', '302', 'AW00018107', 'NULL', 'Laura', 'NULL', 'Liang', '0', '1956-10-09', 'M', 'NULL', 'F', 'laura22@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6828 Benedict Court', 'NULL', '723-555-0141', '2014-01-03', '10+ Miles'], ['18108', '310', 'AW00018108', 'NULL', 'Colin', 'NULL', 'Gao', '0', '1957-01-31', 'M', 'NULL', 'M', 'colin16@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8085 Sunnyvale Avenue', 'NULL', '919-555-0167', '2013-09-01', '2-5 Miles'], ['18109', '331', 'AW00018109', 'NULL', 'Samuel', 'NULL', 'Campbell', '0', '1956-08-26', 'S', 'NULL', 'M', 'samuel37@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3864 Roanoke Dr.', 'NULL', '737-555-0139', '2013-02-23', '10+ Miles'], ['18110', '337', 'AW00018110', 'NULL', 'Austin', 'B', 'Li', '0', '1962-05-20', 'M', 'NULL', 'M', 'austin23@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4982 Ultra Way', 'NULL', '905-555-0149', '2013-02-03', '10+ Miles'], ['18111', '339', 'AW00018111', 'NULL', 'Timothy', 'M', 'Morris', '0', '1962-05-24', 'M', 'NULL', 'M', 'timothy20@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '62 Yolanda Circle', 'NULL', '729-555-0119', '2013-02-15', '1-2 Miles'], ['18112', '360', 'AW00018112', 'NULL', 'Sophia', 'D', 'Gonzalez', '0', '1956-11-19', 'M', 'NULL', 'F', 'sophia7@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7750 Coastal Blvd.', 'NULL', '261-555-0118', '2013-06-10', '2-5 Miles'], ['18113', '374', 'AW00018113', 'NULL', 'Abigail', 'NULL', 'Simmons', '0', '1956-08-26', 'M', 'NULL', 'F', 'abigail67@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5190 Jacqueline Way', 'NULL', '419-555-0131', '2013-11-07', '10+ Miles'], ['18114', '383', 'AW00018114', 'NULL', 'Alexandria', 'L', 'Foster', '0', '1963-02-19', 'S', 'NULL', 'F', 'alexandria16@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9174 Jill Ave', 'NULL', '792-555-0113', '2014-01-14', '10+ Miles'], ['18115', '637', 'AW00018115', 'NULL', 'Richard', 'C', 'Young', '0', '1958-06-15', 'M', 'NULL', 'M', 'richard19@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3485 Sands', 'NULL', '257-555-0130', '2013-11-23', '10+ Miles'], ['18116', '54', 'AW00018116', 'NULL', 'Thomas', 'NULL', 'Li', '0', '1958-01-09', 'M', 'NULL', 'M', 'thomas29@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '8389 Richard Ave.', 'NULL', '427-555-0142', '2013-10-12', '2-5 Miles'], ['18117', '634', 'AW00018117', 'NULL', 'Fernando', 'E', 'Washington', '0', '1969-01-18', 'S', 'NULL', 'M', 'fernando56@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6739 Rishell Ct.', 'NULL', '467-555-0170', '2013-12-23', '10+ Miles'], ['18118', '58', 'AW00018118', 'NULL', 'Megan', 'A', 'Reed', '0', '1957-10-22', 'M', 'NULL', 'F', 'megan31@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '757 Pine Creek Way', 'NULL', '495-555-0119', '2013-11-29', '2-5 Miles'], ['18119', '310', 'AW00018119', 'NULL', 'Shawn', 'D', 'Nath', '0', '1963-05-07', 'M', 'NULL', 'M', 'shawn20@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '259 Thames Drive', 'NULL', '756-555-0138', '2013-10-19', '10+ Miles'], ['18120', '299', 'AW00018120', 'NULL', 'Isabella', 'A', 'Martin', '0', '1957-12-25', 'M', 'NULL', 'F', 'isabella70@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4641 Miguel Drive', 'NULL', '145-555-0136', '2013-09-06', '2-5 Miles'], ['18121', '641', 'AW00018121', 'NULL', 'Madeline', 'NULL', 'Young', '0', '1974-10-20', 'M', 'NULL', 'F', 'madeline22@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2293 Boxer Blvd', 'NULL', '622-555-0146', '2013-09-16', '2-5 Miles'], ['18122', '52', 'AW00018122', 'NULL', 'Justin', 'M', 'Hughes', '0', '1959-03-31', 'S', 'NULL', 'M', 'justin8@adventure-works.com', '70000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '1646 Twinview Drive', 'NULL', '189-555-0112', '2013-10-25', '10+ Miles'], ['18123', '315', 'AW00018123', 'NULL', 'Emily', 'NULL', 'Hughes', '0', '1964-04-12', 'M', 'NULL', 'F', 'emily36@adventure-works.com', '70000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '4044 Sun View Dr.', 'NULL', '374-555-0198', '2013-03-03', '2-5 Miles'], ['18124', '171', 'AW00018124', 'NULL', 'Calvin', 'NULL', 'Chander', '0', '1975-05-01', 'M', 'NULL', 'M', 'calvin14@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', 'Zimmerstr 576', 'NULL', '1 (11) 500 555-0141', '2013-09-16', '0-1 Miles'], ['18125', '178', 'AW00018125', 'NULL', 'Leah', 'NULL', 'Cai', '0', '1974-11-13', 'M', 'NULL', 'F', 'leah17@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', 'Brunnenstr 2411', 'NULL', '1 (11) 500 555-0143', '2011-12-30', '5-10 Miles'], ['18126', '243', 'AW00018126', 'NULL', 'Larry', 'C', 'Ortega', '0', '1964-06-09', 'M', 'NULL', 'M', 'larry24@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '32 Sun View Terrace', 'NULL', '1 (11) 500 555-0184', '2012-11-21', '5-10 Miles'], ['18127', '254', 'AW00018127', 'NULL', 'Franklin', 'K', 'He', '0', '1964-03-22', 'M', 'NULL', 'M', 'franklin16@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '7084 Catanzaro Way', 'NULL', '1 (11) 500 555-0160', '2012-11-03', '5-10 Miles'], ['18128', '220', 'AW00018128', 'NULL', 'Roberto', 'D', 'Suarez', '0', '1963-06-06', 'M', 'NULL', 'M', 'roberto17@adventure-works.com', '90000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '1', '6, route de Marseille', 'NULL', '1 (11) 500 555-0131', '2013-04-15', '2-5 Miles'], ['18129', '207', 'AW00018129', 'NULL', 'Elizabeth', 'J', 'Rodriguez', '0', '1962-12-04', 'M', 'NULL', 'F', 'elizabeth24@adventure-works.com', '100000.00', '2', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '2, rue des Bouchers', 'NULL', '1 (11) 500 555-0195', '2013-06-05', '5-10 Miles'], ['18130', '171', 'AW00018130', 'NULL', 'Kaitlyn', 'D', 'Mitchell', '0', '1962-08-08', 'S', 'NULL', 'F', 'kaitlyn9@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Wasserstr 6465', 'NULL', '1 (11) 500 555-0131', '2012-01-08', '0-1 Miles'], ['18131', '206', 'AW00018131', 'NULL', 'Ann', 'B', 'Malhotra', '0', '1961-07-06', 'S', 'NULL', 'F', 'ann10@adventure-works.com', '110000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '66+B6324, rue de Berri', 'NULL', '1 (11) 500 555-0168', '2011-09-16', '5-10 Miles'], ['18132', '218', 'AW00018132', 'NULL', 'Adrienne', 'M', 'Blanco', '0', '1961-12-20', 'M', 'NULL', 'F', 'adrienne12@adventure-works.com', '110000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '10, rue Royale', 'NULL', '1 (11) 500 555-0198', '2011-09-14', '5-10 Miles'], ['18133', '131', 'AW00018133', 'NULL', 'Karen', 'E', 'Smith', '0', '1978-01-02', 'S', 'NULL', 'F', 'karen8@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Pascalstr 442', 'NULL', '1 (11) 500 555-0143', '2012-02-07', '5-10 Miles'], ['18134', '120', 'AW00018134', 'NULL', 'Melody', 'NULL', 'Romero', '0', '1967-01-22', 'M', 'NULL', 'F', 'melody9@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Hunzinger Allee 292', 'NULL', '1 (11) 500 555-0168', '2012-02-12', '5-10 Miles'], ['18135', '238', 'AW00018135', 'NULL', 'Blake', 'E', 'Diaz', '0', '1967-12-13', 'M', 'NULL', 'M', 'blake69@adventure-works.com', '120000.00', '3', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '5311 Argyll Ave.', 'NULL', '1 (11) 500 555-0174', '2012-11-04', '5-10 Miles'], ['18136', '254', 'AW00018136', 'NULL', 'Carl', 'R', 'Xie', '0', '1967-09-03', 'M', 'NULL', 'M', 'carl3@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '9233 Del Rey St.', 'NULL', '1 (11) 500 555-0116', '2012-11-16', '5-10 Miles'], ['18137', '208', 'AW00018137', 'NULL', 'Gabriel', 'R', 'Kumar', '0', '1960-07-10', 'M', 'NULL', 'M', 'gabriel25@adventure-works.com', '90000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Midi-Couleurs', 'NULL', '1 (11) 500 555-0132', '2011-09-03', '10+ Miles'], ['18138', '202', 'AW00018138', 'NULL', 'Walter', 'C', 'Alonso', '0', '1960-08-08', 'M', 'NULL', 'M', 'walter21@adventure-works.com', '100000.00', '2', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '3, rue Lamarck', 'NULL', '1 (11) 500 555-0194', '2013-12-06', '2-5 Miles'], ['18139', '147', 'AW00018139', 'NULL', 'Jennifer', 'NULL', 'Washington', '0', '1971-08-08', 'M', 'NULL', 'F', 'jennifer86@adventure-works.com', '120000.00', '3', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Auf den Kuhlen Straße 2249', 'NULL', '1 (11) 500 555-0188', '2012-02-23', '5-10 Miles'], ['18140', '171', 'AW00018140', 'NULL', 'Anthony', 'NULL', 'White', '0', '1960-12-30', 'M', 'NULL', 'M', 'anthony20@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', 'Heiderweg 4725', 'NULL', '1 (11) 500 555-0177', '2012-02-21', '5-10 Miles'], ['18141', '230', 'AW00018141', 'NULL', 'Deanna', 'NULL', 'Chandra', '0', '1966-10-03', 'M', 'NULL', 'F', 'deanna5@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '9340 Brook Way', 'NULL', '1 (11) 500 555-0180', '2012-11-04', '0-1 Miles'], ['18142', '189', 'AW00018142', 'NULL', 'Riley', 'NULL', 'Bradley', '0', '1959-10-12', 'S', 'NULL', 'F', 'riley1@adventure-works.com', '80000.00', '3', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5, rue de l´Avenir', 'NULL', '1 (11) 500 555-0117', '2013-10-28', '10+ Miles'], ['18143', '199', 'AW00018143', 'NULL', 'Chad', 'NULL', 'Shen', '0', '1950-05-14', 'S', 'NULL', 'M', 'chad3@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '7755, rue Ste-Honoré', 'NULL', '1 (11) 500 555-0164', '2011-10-05', '10+ Miles'], ['18144', '202', 'AW00018144', 'NULL', 'Katie', 'NULL', 'Chapman', '0', '1955-11-03', 'M', 'NULL', 'F', 'katie18@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '37, rue Faubourg St Antoine', 'NULL', '1 (11) 500 555-0133', '2013-11-30', '2-5 Miles'], ['18145', '154', 'AW00018145', 'Mr.', 'David', 'NULL', 'So', '0', '1961-02-11', 'M', 'NULL', 'M', 'david25@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', 'Marketplatz 5193', 'NULL', '349-555-0100', '2013-02-10', '2-5 Miles'], ['18146', '147', 'AW00018146', 'NULL', 'Eugene', 'NULL', 'Wang', '0', '1949-12-26', 'S', 'NULL', 'M', 'eugene5@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Nollendorfplatz 5228', 'NULL', '1 (11) 500 555-0159', '2013-10-23', '10+ Miles'], ['18147', '277', 'AW00018147', 'NULL', 'Katrina', 'J', 'Luo', '0', '1950-04-22', 'M', 'NULL', 'F', 'katrina5@adventure-works.com', '170000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '6267 Eastgate Lane', 'NULL', '1 (11) 500 555-0197', '2012-11-27', '0-1 Miles'], ['18148', '215', 'AW00018148', 'NULL', 'Jaclyn', 'NULL', 'Huang', '0', '1951-05-13', 'M', 'NULL', 'F', 'jaclyn6@adventure-works.com', '60000.00', '3', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '8201, rue Malar', 'NULL', '1 (11) 500 555-0153', '2011-10-16', '2-5 Miles'], ['18149', '230', 'AW00018149', 'NULL', 'Rebekah', 'NULL', 'Blanco', '0', '1962-03-07', 'M', 'NULL', 'F', 'rebekah35@adventure-works.com', '100000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '1388 Rolando Avenue', 'NULL', '1 (11) 500 555-0134', '2013-04-04', '2-5 Miles'], ['18150', '215', 'AW00018150', 'NULL', 'Mitchell', 'NULL', 'Deng', '0', '1952-01-17', 'S', 'NULL', 'M', 'mitchell1@adventure-works.com', '80000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '11, allée des Princes', 'NULL', '1 (11) 500 555-0189', '2013-02-21', '10+ Miles'], ['18151', '208', 'AW00018151', 'NULL', 'Brendan', 'NULL', 'She', '0', '1957-11-02', 'S', 'NULL', 'M', 'brendan0@adventure-works.com', '80000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '3686, quai de Grenelle', 'NULL', '1 (11) 500 555-0137', '2013-03-23', '10+ Miles'], ['18152', '222', 'AW00018152', 'NULL', 'Bryant', 'E', 'Suri', '0', '1951-08-31', 'S', 'NULL', 'M', 'bryant0@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', "523, rue de l'Espace De Schengen", 'NULL', '1 (11) 500 555-0148', '2013-02-26', '2-5 Miles'], ['18153', '124', 'AW00018153', 'NULL', 'Karen', 'L', 'Gao', '0', '1952-04-17', 'M', 'NULL', 'F', 'karen25@adventure-works.com', '100000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', 'Conesweg 807', 'NULL', '1 (11) 500 555-0186', '2014-01-02', '10+ Miles'], ['18154', '153', 'AW00018154', 'NULL', 'Calvin', 'A', 'She', '0', '1952-02-19', 'S', 'NULL', 'M', 'calvin0@adventure-works.com', '100000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', 'Postfach 8 77 99', 'NULL', '1 (11) 500 555-0119', '2013-05-27', '10+ Miles'], ['18155', '231', 'AW00018155', 'NULL', 'Arianna', 'NULL', 'Morgan', '0', '1960-03-07', 'M', 'NULL', 'F', 'arianna35@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '2441 Haven Drive', 'NULL', '1 (11) 500 555-0111', '2013-06-30', '10+ Miles'], ['18156', '240', 'AW00018156', 'NULL', 'Trisha', 'NULL', 'Zhang', '0', '1969-07-31', 'M', 'NULL', 'F', 'trisha18@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1413 Bridgeview St', 'NULL', '1 (11) 500 555-0167', '2013-09-01', '10+ Miles'], ['18157', '131', 'AW00018157', 'NULL', 'Isabella', 'NULL', 'Hall', '0', '1958-09-03', 'S', 'NULL', 'F', 'isabella80@adventure-works.com', '90000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', 'Bundesallee 4422', 'NULL', '1 (11) 500 555-0181', '2012-04-19', '10+ Miles'], ['18158', '262', 'AW00018158', 'NULL', 'Jeremiah', 'NULL', 'Griffin', '0', '1958-12-11', 'M', 'NULL', 'M', 'jeremiah36@adventure-works.com', '90000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7316 Starflower Dr.', 'NULL', '1 (11) 500 555-0178', '2012-10-28', '10+ Miles'], ['18159', '182', 'AW00018159', 'NULL', 'Jaime', 'M', 'Serrano', '0', '1965-09-20', 'M', 'NULL', 'F', 'jaime18@adventure-works.com', '100000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '42, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0113', '2014-01-23', '10+ Miles'], ['18160', '238', 'AW00018160', 'NULL', 'Bryan', 'NULL', 'Rivera', '0', '1965-10-10', 'M', 'NULL', 'M', 'bryan17@adventure-works.com', '130000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '3337 East 26th Street', 'NULL', '1 (11) 500 555-0168', '2012-11-17', '5-10 Miles'], ['18161', '226', 'AW00018161', 'NULL', 'Tanya', 'M', 'Sanz', '0', '1959-04-06', 'M', 'NULL', 'F', 'tanya17@adventure-works.com', '90000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '67, cours Mirabeau', 'NULL', '1 (11) 500 555-0118', '2013-05-24', '2-5 Miles'], ['18162', '215', 'AW00018162', 'NULL', 'Misty', 'H', 'Pal', '0', '1959-01-18', 'M', 'NULL', 'F', 'misty14@adventure-works.com', '90000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '401, rue Jean Mermoz', 'NULL', '1 (11) 500 555-0195', '2013-10-10', '10+ Miles'], ['18163', '184', 'AW00018163', 'NULL', 'Gabriel', 'NULL', 'Zhang', '0', '1958-08-11', 'M', 'NULL', 'M', 'gabriel20@adventure-works.com', '100000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', "22, rue de l'Espace De Schengen", 'NULL', '1 (11) 500 555-0115', '2011-11-12', '2-5 Miles'], ['18164', '135', 'AW00018164', 'NULL', 'Alisha', 'V', 'Wang', '0', '1959-02-17', 'M', 'NULL', 'F', 'alisha1@adventure-works.com', '120000.00', '3', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', 'Auf der Krone 4664', 'NULL', '1 (11) 500 555-0152', '2012-05-18', '10+ Miles'], ['18165', '232', 'AW00018165', 'NULL', 'Randall', 'A', 'Gill', '0', '1959-05-16', 'M', 'NULL', 'M', 'randall15@adventure-works.com', '120000.00', '3', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '5159 Amanda Circle', 'NULL', '1 (11) 500 555-0110', '2013-04-11', '10+ Miles'], ['18166', '262', 'AW00018166', 'NULL', 'Julian', 'A', 'Wood', '0', '1959-01-21', 'M', 'NULL', 'M', 'julian3@adventure-works.com', '150000.00', '2', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8646 Sherry Circle', 'NULL', '1 (11) 500 555-0115', '2012-11-09', '10+ Miles'], ['18167', '145', 'AW00018167', 'NULL', 'Raul', 'D', 'Chander', '0', '1957-08-09', 'M', 'NULL', 'M', 'raul13@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Zeiter Weg 9922', 'NULL', '1 (11) 500 555-0177', '2012-06-05', '2-5 Miles'], ['18168', '237', 'AW00018168', 'NULL', 'Pedro', 'NULL', 'Sanz', '0', '1974-08-12', 'S', 'NULL', 'M', 'pedro40@adventure-works.com', '130000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '5394 Baywood Drive', 'NULL', '1 (11) 500 555-0135', '2012-11-19', '0-1 Miles'], ['18169', '123', 'AW00018169', 'NULL', 'Alisha', 'L', 'Liang', '0', '1962-04-09', 'S', 'NULL', 'F', 'alisha17@adventure-works.com', '80000.00', '5', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Buergermeister-ulrich-str 5555', 'NULL', '1 (11) 500 555-0142', '2013-03-26', '10+ Miles'], ['18170', '121', 'AW00018170', 'NULL', 'Adam', 'D', 'Perez', '0', '1957-02-01', 'M', 'NULL', 'M', 'adam33@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', 'Räuscherweg 292', 'NULL', '1 (11) 500 555-0183', '2013-03-08', '10+ Miles'], ['18171', '177', 'AW00018171', 'NULL', 'Alejandro', 'J', 'Zeng', '0', '1956-09-30', 'M', 'NULL', 'M', 'alejandro25@adventure-works.com', '110000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Parkstr 4841', 'NULL', '1 (11) 500 555-0124', '2012-06-26', '10+ Miles'], ['18172', '232', 'AW00018172', 'NULL', 'Willie', 'NULL', 'Black', '0', '1956-12-19', 'M', 'NULL', 'M', 'willie39@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '6601 Bentley Ct', 'NULL', '1 (11) 500 555-0149', '2013-10-20', '0-1 Miles'], ['18173', '250', 'AW00018173', 'NULL', 'Brent', 'L', 'Zhang', '0', '1956-11-29', 'S', 'NULL', 'M', 'brent0@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '2839 Stinson', 'NULL', '1 (11) 500 555-0171', '2012-11-03', '0-1 Miles'], ['18174', '225', 'AW00018174', 'NULL', 'Jill', 'M', 'Munoz', '0', '1960-12-30', 'M', 'NULL', 'F', 'jill15@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '8, rue de l´Avenir', 'NULL', '1 (11) 500 555-0114', '2013-01-30', '10+ Miles'], ['18175', '196', 'AW00018175', 'NULL', 'Carrie', 'E', 'Hernandez', '0', '1955-11-13', 'M', 'NULL', 'F', 'carrie3@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '3', '42, impasse Ste-Madeleine', 'NULL', '1 (11) 500 555-0114', '2011-11-22', '5-10 Miles'], ['18176', '158', 'AW00018176', 'NULL', 'Bradley', 'NULL', 'Kumar', '0', '1955-12-24', 'M', 'NULL', 'M', 'bradley10@adventure-works.com', '110000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '2', 'Rehstr 4242', 'NULL', '1 (11) 500 555-0174', '2012-06-10', '10+ Miles'], ['18177', '249', 'AW00018177', 'NULL', 'Reginald', 'NULL', 'Suarez', '0', '1961-09-12', 'M', 'NULL', 'M', 'reginald5@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '8980 Sea Ranch Ct', 'NULL', '1 (11) 500 555-0135', '2012-11-04', '0-1 Miles'], ['18178', '266', 'AW00018178', 'NULL', 'Tracy', 'J', 'Goel', '0', '1955-10-23', 'M', 'NULL', 'F', 'tracy18@adventure-works.com', '160000.00', '2', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', '6161 Sanders St.', 'NULL', '1 (11) 500 555-0118', '2013-06-08', '10+ Miles'], ['18179', '199', 'AW00018179', 'NULL', 'Chelsea', 'P', 'McDonald', '0', '1954-10-09', 'S', 'NULL', 'F', 'chelsea5@adventure-works.com', '80000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '12, route de Marseille', 'NULL', '1 (11) 500 555-0139', '2013-04-17', '10+ Miles'], ['18180', '133', 'AW00018180', 'NULL', 'Juan', 'K', 'Howard', '0', '1955-02-13', 'M', 'NULL', 'M', 'juan21@adventure-works.com', '120000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', 'Nonnendamm 222', 'NULL', '1 (11) 500 555-0121', '2013-05-10', '10+ Miles'], ['18181', '245', 'AW00018181', 'NULL', 'Neil', 'C', 'Diaz', '0', '1960-10-08', 'M', 'NULL', 'M', 'neil4@adventure-works.com', '150000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '9312 Virginia Hills Drive', 'NULL', '1 (11) 500 555-0163', '2013-05-26', '0-1 Miles'], ['18182', '164', 'AW00018182', 'NULL', 'Kristi', 'J', 'Prasad', '0', '1954-04-04', 'S', 'NULL', 'F', 'kristi26@adventure-works.com', '90000.00', '4', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '4', 'Zollhof 7866', 'NULL', '1 (11) 500 555-0194', '2013-04-09', '10+ Miles'], ['18183', '160', 'AW00018183', 'NULL', 'Meagan', 'NULL', 'Schmidt', '0', '1954-06-18', 'M', 'NULL', 'F', 'meagan10@adventure-works.com', '90000.00', '4', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '4', 'Unter Linden 754', 'NULL', '1 (11) 500 555-0171', '2012-06-22', '5-10 Miles'], ['18184', '197', 'AW00018184', 'NULL', 'Leonard', 'L', 'Chande', '0', '1952-07-08', 'M', 'NULL', 'M', 'leonard16@adventure-works.com', '90000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '28, quai Paul Doumer', 'NULL', '1 (11) 500 555-0119', '2013-10-16', '5-10 Miles'], ['18185', '158', 'AW00018185', 'NULL', 'Laura', 'P', 'Huang', '0', '1953-05-05', 'M', 'NULL', 'F', 'laura12@adventure-works.com', '110000.00', '4', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '3', 'Buergermeister-ulrich-str 90', 'NULL', '1 (11) 500 555-0129', '2012-06-17', '10+ Miles'], ['18186', '261', 'AW00018186', 'NULL', 'Lori', 'NULL', 'Hernandez', '0', '1953-01-29', 'M', 'NULL', 'F', 'lori6@adventure-works.com', '130000.00', '5', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '4654 Marina View Pkwy.', 'NULL', '1 (11) 500 555-0194', '2013-04-13', '10+ Miles'], ['18187', '274', 'AW00018187', 'NULL', 'Dennis', 'NULL', 'Gao', '0', '1952-08-19', 'S', 'NULL', 'M', 'dennis16@adventure-works.com', '150000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '3173 Darlene Drive', 'NULL', '1 (11) 500 555-0169', '2013-06-03', '0-1 Miles'], ['18188', '40', 'AW00018188', 'NULL', 'Jeffery', 'E', 'Wang', '0', '1980-09-09', 'M', 'NULL', 'M', 'jeffery1@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '6904 Sunset Way', 'NULL', '1 (11) 500 555-0146', '2011-04-04', '10+ Miles'], ['18189', '15', 'AW00018189', 'NULL', 'Nancy', 'NULL', 'Mehta', '0', '1982-04-20', 'M', 'NULL', 'F', 'nancy17@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '5021 Rio Grande Drive', 'NULL', '1 (11) 500 555-0161', '2011-04-04', '10+ Miles'], ['18190', '29', 'AW00018190', 'NULL', 'Danny', 'C', 'Diaz', '0', '1981-02-17', 'M', 'NULL', 'M', 'danny3@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '8607 Pineview Lane', 'NULL', '1 (11) 500 555-0111', '2013-03-20', '10+ Miles'], ['18191', '12', 'AW00018191', 'NULL', 'Julie', 'R', 'Sharma', '0', '1981-02-09', 'M', 'NULL', 'F', 'julie14@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '1512 Birch Bark Dr', 'NULL', '1 (11) 500 555-0113', '2013-01-30', '10+ Miles'], ['18192', '12', 'AW00018192', 'NULL', 'Max', 'NULL', 'Hernandez', '0', '1979-07-13', 'M', 'NULL', 'M', 'max4@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '6885 Amending Drive', 'NULL', '1 (11) 500 555-0142', '2013-04-06', '10+ Miles'], ['18193', '6', 'AW00018193', 'NULL', 'Louis', 'C', 'Yuan', '0', '1981-06-20', 'S', 'NULL', 'M', 'louis24@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '8313 Canyon Creek Drive', 'NULL', '1 (11) 500 555-0191', '2011-04-09', '10+ Miles'], ['18194', '30', 'AW00018194', 'NULL', 'Yolanda', 'J', 'Kumar', '0', '1980-03-11', 'M', 'NULL', 'F', 'yolanda7@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '8114 Riviera Way', 'NULL', '1 (11) 500 555-0126', '2013-05-22', '10+ Miles'], ['18195', '5', 'AW00018195', 'NULL', 'Walter', 'J', 'Sanz', '0', '1985-08-16', 'M', 'NULL', 'M', 'walter13@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '7747 Relis Valley Road', 'NULL', '1 (11) 500 555-0144', '2013-04-21', '10+ Miles'], ['18196', '2', 'AW00018196', 'NULL', 'Ivan', 'K', 'Rana', '0', '1979-09-20', 'M', 'NULL', 'M', 'ivan7@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '2', '927 Live Oak Ave.', '#119', '1 (11) 500 555-0191', '2011-05-11', '10+ Miles'], ['18197', '3', 'AW00018197', 'NULL', 'Jenny', 'NULL', 'Zimmerman', '0', '1980-01-10', 'M', 'NULL', 'F', 'jenny30@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', '546 Leonard Ct', 'NULL', '1 (11) 500 555-0187', '2013-02-19', '10+ Miles'], ['18198', '3', 'AW00018198', 'NULL', 'Cedric', 'NULL', 'Xu', '0', '1979-09-21', 'S', 'NULL', 'M', 'cedric27@adventure-works.com', '120000.00', '5', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '6665 Homestead Ave.', 'NULL', '1 (11) 500 555-0199', '2011-05-17', '10+ Miles'], ['18199', '7', 'AW00018199', 'NULL', 'Brandy', 'S', 'Lopez', '0', '1979-09-07', 'S', 'NULL', 'F', 'brandy13@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '2951 Cape Cod Way', 'NULL', '1 (11) 500 555-0138', '2013-05-30', '0-1 Miles'], ['18200', '13', 'AW00018200', 'NULL', 'Alfredo', 'C', 'Gomez', '0', '1978-12-07', 'M', 'NULL', 'M', 'alfredo2@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '9430 La Vista Avenue', 'NULL', '1 (11) 500 555-0191', '2011-05-07', '10+ Miles'], ['18201', '13', 'AW00018201', 'NULL', 'Karla', 'NULL', 'Xie', '0', '1979-04-23', 'M', 'NULL', 'F', 'karla3@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '2', '3936 Cedar Point Loop', 'NULL', '1 (11) 500 555-0116', '2011-05-14', '10+ Miles'], ['18202', '27', 'AW00018202', 'NULL', 'Erika', 'A', 'Gill', '0', '1978-10-14', 'M', 'NULL', 'F', 'erika11@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '2', '1045 Lolita Drive', 'NULL', '1 (11) 500 555-0175', '2011-05-30', '10+ Miles'], ['18203', '9', 'AW00018203', 'NULL', 'Louis', 'A', 'Kumar', '0', '1978-08-26', 'S', 'NULL', 'M', 'louis25@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '2', '8568 San Vincente Drive', 'NULL', '1 (11) 500 555-0126', '2011-05-11', '10+ Miles'], ['18204', '26', 'AW00018204', 'NULL', 'Tiffany', 'NULL', 'Cai', '0', '1979-05-21', 'M', 'NULL', 'F', 'tiffany22@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '7392 Coachman Place', 'NULL', '1 (11) 500 555-0199', '2011-05-09', '10+ Miles'], ['18205', '13', 'AW00018205', 'NULL', 'Lindsey', 'NULL', 'Raji', '0', '1983-05-25', 'M', 'NULL', 'F', 'lindsey21@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '8909 Chestnut Ave.', 'NULL', '1 (11) 500 555-0145', '2011-05-08', '10+ Miles'], ['18206', '2', 'AW00018206', 'NULL', 'Bruce', 'G', 'Madan', '0', '1983-03-17', 'M', 'NULL', 'M', 'bruce6@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '1480 Oliveria Road', 'NULL', '1 (11) 500 555-0184', '2013-04-22', '10+ Miles'], ['18207', '15', 'AW00018207', 'NULL', 'Phillip', 'N', 'Gonzalez', '0', '1978-03-19', 'M', 'NULL', 'M', 'phillip20@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '1986 St. Andrews Way', 'NULL', '1 (11) 500 555-0136', '2011-05-16', '10+ Miles'], ['18208', '6', 'AW00018208', 'NULL', 'Latoya', 'J', 'Nara', '0', '1976-08-03', 'M', 'NULL', 'F', 'latoya15@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '6526 Edie Ct.', 'NULL', '1 (11) 500 555-0172', '2011-05-14', '10+ Miles'], ['18209', '4', 'AW00018209', 'NULL', 'Ann', 'NULL', 'Chandra', '0', '1978-03-08', 'S', 'NULL', 'F', 'ann7@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '3340 Baywood Drive', 'NULL', '1 (11) 500 555-0168', '2011-05-10', '10+ Miles'], ['18210', '15', 'AW00018210', 'NULL', 'Katie', 'E', 'Lal', '0', '1983-03-23', 'M', 'NULL', 'F', 'katie11@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '1226 Shoenic', 'NULL', '1 (11) 500 555-0137', '2011-05-03', '0-1 Miles'], ['18211', '21', 'AW00018211', 'NULL', 'Jaclyn', 'NULL', 'Sun', '0', '1977-07-11', 'M', 'NULL', 'F', 'jaclyn14@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '5914 Hazel Drive', 'NULL', '1 (11) 500 555-0177', '2013-03-01', '10+ Miles'], ['18212', '17', 'AW00018212', 'NULL', 'Marc', 'NULL', 'Ramos', '0', '1976-09-06', 'M', 'NULL', 'M', 'marc21@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '8478 Logan Ct.', 'NULL', '1 (11) 500 555-0112', '2011-05-15', '10+ Miles'], ['18213', '28', 'AW00018213', 'NULL', 'Sheena', 'J', 'Raji', '0', '1976-09-16', 'S', 'NULL', 'F', 'sheena20@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '6071 Mi Casa Court', 'NULL', '1 (11) 500 555-0111', '2011-05-11', '10+ Miles'], ['18214', '35', 'AW00018214', 'NULL', 'Ronald', 'NULL', 'Suri', '0', '1977-06-26', 'M', 'NULL', 'M', 'ronald2@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '8991 Temple Court', 'NULL', '1 (11) 500 555-0186', '2011-05-29', '10+ Miles'], ['18215', '26', 'AW00018215', 'NULL', 'Ashley', 'E', 'Taylor', '0', '1976-04-03', 'S', 'NULL', 'F', 'ashley9@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '626 Rossmor Parkway', 'NULL', '1 (11) 500 555-0118', '2013-10-31', '10+ Miles'], ['18216', '27', 'AW00018216', 'NULL', 'Susan', 'S', 'Zhang', '0', '1981-11-22', 'M', 'NULL', 'F', 'susan10@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '5462 Patricia', 'NULL', '1 (11) 500 555-0169', '2013-02-23', '10+ Miles'], ['18217', '24', 'AW00018217', 'NULL', 'Danny', 'S', 'Alonso', '0', '1975-12-19', 'M', 'NULL', 'M', 'danny9@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '1245 Clayton Road', 'NULL', '1 (11) 500 555-0120', '2011-05-09', '10+ Miles'], ['18218', '19', 'AW00018218', 'NULL', 'Thomas', 'R', 'Powell', '0', '1981-08-02', 'M', 'NULL', 'M', 'thomas10@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '6051 Bellows Ct', 'NULL', '1 (11) 500 555-0145', '2011-05-11', '10+ Miles'], ['18219', '19', 'AW00018219', 'NULL', 'Felicia', 'J', 'Gomez', '0', '1981-11-02', 'M', 'NULL', 'F', 'felicia1@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '9790 Berrellesa St.', 'NULL', '1 (11) 500 555-0151', '2011-05-22', '10+ Miles'], ['18220', '20', 'AW00018220', 'NULL', 'Brent', 'NULL', 'Huang', '0', '1977-05-11', 'M', 'NULL', 'M', 'brent5@adventure-works.com', '110000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '1903 Vista Place', 'NULL', '1 (11) 500 555-0176', '2011-05-07', '10+ Miles'], ['18221', '24', 'AW00018221', 'NULL', 'Marc', 'B', 'Alvarez', '0', '1977-02-15', 'M', 'NULL', 'M', 'marc8@adventure-works.com', '160000.00', '5', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Management', 'Gestión', 'Direction', '0', '4', '498 Willow Pass Rd', 'NULL', '1 (11) 500 555-0181', '2013-08-09', '10+ Miles'], ['18222', '17', 'AW00018222', 'NULL', 'Carolyn', 'B', 'Suarez', '0', '1980-08-29', 'M', 'NULL', 'F', 'carolyn40@adventure-works.com', '130000.00', '0', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '6111 Lancaster', 'NULL', '1 (11) 500 555-0117', '2011-05-15', '0-1 Miles'], ['18223', '539', 'AW00018223', 'NULL', 'Noah', 'NULL', 'Clark', '0', '1975-09-21', 'M', 'NULL', 'M', 'noah66@adventure-works.com', '90000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '8995 Stanford St.', 'NULL', '811-555-0121', '2013-02-25', '0-1 Miles'], ['18224', '627', 'AW00018224', 'NULL', 'Vanessa', 'NULL', 'Perry', '0', '1970-04-09', 'S', 'NULL', 'F', 'vanessa8@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '4553 Morello Ave', 'NULL', '684-555-0129', '2013-11-05', '5-10 Miles'], ['18225', '627', 'AW00018225', 'NULL', 'Paige', 'M', 'Jenkins', '0', '1970-04-22', 'S', 'NULL', 'F', 'paige7@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '5281 Miller Avenue', 'NULL', '914-555-0131', '2013-11-05', '5-10 Miles'], ['18226', '637', 'AW00018226', 'NULL', 'Joseph', 'E', 'Walker', '0', '1971-05-03', 'M', 'NULL', 'M', 'joseph30@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9008 Creekside Drive', 'NULL', '217-555-0162', '2013-10-20', '2-5 Miles'], ['18227', '626', 'AW00018227', 'NULL', 'Miranda', 'E', 'Diaz', '0', '1977-06-20', 'M', 'NULL', 'F', 'miranda22@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9681 VistaView Way', 'NULL', '128-555-0117', '2013-09-29', '0-1 Miles'], ['18228', '368', 'AW00018228', 'NULL', 'Adam', 'R', 'Parker', '0', '1965-10-25', 'M', 'NULL', 'M', 'adam29@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7154 Broadway', 'NULL', '808-555-0157', '2013-10-04', '2-5 Miles'], ['18229', '302', 'AW00018229', 'NULL', 'Gabriella', 'NULL', 'Ward', '0', '1965-05-19', 'M', 'NULL', 'F', 'gabriella10@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6749 Quartermaster', 'NULL', '629-555-0116', '2013-10-26', '2-5 Miles'], ['18230', '298', 'AW00018230', 'NULL', 'Brianna', 'W', 'Perry', '0', '1970-08-08', 'M', 'NULL', 'F', 'brianna53@adventure-works.com', '60000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7901 Moccasin Ct.', 'NULL', '988-555-0157', '2013-11-22', '0-1 Miles'], ['18231', '299', 'AW00018231', 'NULL', 'Janet', 'M', 'Gutierrez', '0', '1964-09-30', 'M', 'NULL', 'F', 'janet16@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8932 Westwood Way', 'NULL', '857-555-0148', '2013-11-27', '0-1 Miles'], ['18232', '347', 'AW00018232', 'NULL', 'Sophia', 'R', 'Edwards', '0', '1975-02-08', 'M', 'NULL', 'F', 'sophia1@adventure-works.com', '80000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5431 Bella Avenue', 'NULL', '914-555-0138', '2013-11-08', '0-1 Miles'], ['18233', '631', 'AW00018233', 'NULL', 'Mackenzie', 'J', 'Bailey', '0', '1964-02-06', 'S', 'NULL', 'F', 'mackenzie14@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '2710 Roux Court', '#3202', '147-555-0135', '2013-09-29', '2-5 Miles'], ['18234', '638', 'AW00018234', 'NULL', 'Alexandria', 'D', 'Russell', '0', '1963-11-01', 'M', 'NULL', 'F', 'alexandria20@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9590 Sutton Circle', 'NULL', '454-555-0165', '2013-10-07', '2-5 Miles'], ['18235', '300', 'AW00018235', 'NULL', 'Vincent', 'F', 'Guo', '0', '1975-04-03', 'M', 'NULL', 'M', 'vincent17@adventure-works.com', '70000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '5152 Fine Dr.', 'NULL', '837-555-0178', '2013-08-31', '0-1 Miles'], ['18236', '65', 'AW00018236', 'NULL', 'Andrew', 'R', 'Wilson', '0', '1969-05-09', 'M', 'NULL', 'M', 'andrew16@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8582 San Jose Ave.', 'NULL', '984-555-0144', '2013-10-18', '0-1 Miles'], ['18237', '49', 'AW00018237', 'NULL', 'Nicole', 'M', 'Russell', '0', '1974-10-06', 'M', 'NULL', 'F', 'nicole69@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5587 D St.', 'NULL', '150-555-0156', '2013-09-30', '0-1 Miles'], ['18238', '21', 'AW00018238', 'NULL', 'Eduardo', 'S', 'Harris', '0', '1975-06-01', 'M', 'NULL', 'M', 'eduardo12@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '9969 Coldwater Drive', 'NULL', '1 (11) 500 555-0138', '2011-05-05', '0-1 Miles'], ['18239', '7', 'AW00018239', 'NULL', 'Alisha', 'G', 'Zhu', '0', '1980-07-19', 'M', 'NULL', 'F', 'alisha14@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '5049 Teakwood Dr.', 'NULL', '1 (11) 500 555-0199', '2011-05-26', '0-1 Miles'], ['18240', '36', 'AW00018240', 'NULL', 'Arthur', 'NULL', 'Smith', '0', '1975-04-03', 'M', 'NULL', 'M', 'arthur10@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '3253 La Jolla', 'NULL', '1 (11) 500 555-0178', '2011-05-24', '0-1 Miles'], ['18241', '16', 'AW00018241', 'NULL', 'Tony', 'NULL', 'Sharma', '0', '1974-09-10', 'M', 'NULL', 'M', 'tony12@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '2096 Estudillo Street', 'NULL', '1 (11) 500 555-0193', '2011-05-07', '0-1 Miles'], ['18242', '10', 'AW00018242', 'NULL', 'Christine', 'I', 'Pal', '0', '1975-01-07', 'M', 'NULL', 'F', 'christine7@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '9637 Arata Way', 'NULL', '1 (11) 500 555-0112', '2011-05-30', '0-1 Miles'], ['18243', '9', 'AW00018243', 'NULL', 'Cesar', 'NULL', 'Sai', '0', '1980-11-21', 'M', 'NULL', 'M', 'cesar4@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '639 Treasure Drive', 'NULL', '1 (11) 500 555-0116', '2011-05-06', '0-1 Miles'], ['18244', '22', 'AW00018244', 'NULL', 'Lindsay', 'NULL', 'Chande', '0', '1980-07-02', 'M', 'NULL', 'F', 'lindsay15@adventure-works.com', '100000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '1288 Mt. Dias Blvd.', 'NULL', '1 (11) 500 555-0135', '2011-05-20', '0-1 Miles'], ['18245', '20', 'AW00018245', 'NULL', 'Misty', 'M', 'Goel', '0', '1973-08-11', 'S', 'NULL', 'F', 'misty21@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '8228 Kinross Dr.', 'NULL', '1 (11) 500 555-0189', '2011-05-16', '2-5 Miles'], ['18246', '16', 'AW00018246', 'NULL', 'Terrence', 'NULL', 'Raje', '0', '1976-05-23', 'M', 'NULL', 'M', 'terrence14@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '3664 Colt Ct.', 'NULL', '1 (11) 500 555-0193', '2011-05-12', '2-5 Miles'], ['18247', '35', 'AW00018247', 'NULL', 'Donna', 'J', 'Beck', '0', '1973-08-13', 'M', 'NULL', 'F', 'donna18@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '508 Somerset Place', 'NULL', '1 (11) 500 555-0154', '2013-07-15', '10+ Miles'], ['18248', '21', 'AW00018248', 'NULL', 'Pedro', 'A', 'Moreno', '0', '1975-02-18', 'M', 'NULL', 'M', 'pedro27@adventure-works.com', '110000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '9636 Gatter Court', 'NULL', '1 (11) 500 555-0183', '2011-05-25', '0-1 Miles'], ['18249', '30', 'AW00018249', 'NULL', 'Alison', 'NULL', 'Chander', '0', '1975-06-15', 'M', 'NULL', 'F', 'alison16@adventure-works.com', '120000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '8180 Saclan Terr.', 'NULL', '1 (11) 500 555-0157', '2011-05-19', '5-10 Miles'], ['18250', '34', 'AW00018250', 'NULL', 'Jeremiah', 'M', 'Hall', '0', '1973-01-13', 'S', 'NULL', 'M', 'jeremiah12@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '686 Argonne Drive', 'NULL', '1 (11) 500 555-0118', '2011-05-05', '10+ Miles'], ['18251', '34', 'AW00018251', 'NULL', 'Ricky', 'NULL', 'Sanz', '0', '1978-10-17', 'S', 'NULL', 'M', 'ricky21@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '9531 Lancaster', 'NULL', '1 (11) 500 555-0112', '2011-05-29', '10+ Miles'], ['18252', '32', 'AW00018252', 'NULL', 'Alvin', 'NULL', 'Sun', '0', '1977-11-21', 'M', 'NULL', 'M', 'alvin13@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '9396 Race Road', 'NULL', '1 (11) 500 555-0112', '2011-05-30', '0-1 Miles'], ['18253', '35', 'AW00018253', 'NULL', 'Trisha', 'NULL', 'Guo', '0', '1972-02-07', 'M', 'NULL', 'F', 'trisha12@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '188, rue de Linois', 'NULL', '1 (11) 500 555-0195', '2013-05-11', '0-1 Miles'], ['18254', '5', 'AW00018254', 'NULL', 'Larry', 'NULL', 'Martin', '0', '1972-02-19', 'S', 'NULL', 'M', 'larry1@adventure-works.com', '100000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '4917 Violet Ct.', 'NULL', '1 (11) 500 555-0160', '2011-05-21', '1-2 Miles'], ['18255', '34', 'AW00018255', 'NULL', 'Rachel', 'NULL', 'Griffin', '0', '1976-07-05', 'S', 'NULL', 'F', 'rachel69@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5547 Montoya', 'NULL', '1 (11) 500 555-0180', '2011-05-12', '2-5 Miles'], ['18256', '20', 'AW00018256', 'NULL', 'Gilbert', 'J', 'Cai', '0', '1971-01-17', 'M', 'NULL', 'M', 'gilbert19@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '445 Bishop Drive', 'NULL', '1 (11) 500 555-0127', '2013-02-27', '0-1 Miles'], ['18257', '33', 'AW00018257', 'NULL', 'Krista', 'NULL', 'Jimenez', '0', '1974-04-09', 'M', 'NULL', 'F', 'krista6@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '8632 River Ash Court', 'NULL', '1 (11) 500 555-0149', '2013-03-16', '10+ Miles'], ['18258', '8', 'AW00018258', 'NULL', 'Cassie', 'M', 'Chander', '0', '1979-04-20', 'S', 'NULL', 'F', 'cassie14@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3747 W. Landing Avenue', 'NULL', '1 (11) 500 555-0132', '2013-06-18', '5-10 Miles'], ['18259', '35', 'AW00018259', 'NULL', 'Bailey', 'NULL', 'Torres', '0', '1982-01-12', 'S', 'NULL', 'F', 'bailey10@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9237 Cordova Way', 'NULL', '1 (11) 500 555-0168', '2013-02-20', '5-10 Miles'], ['18260', '40', 'AW00018260', 'NULL', 'Jodi', 'N', 'Sharma', '0', '1976-12-18', 'S', 'NULL', 'F', 'jodi9@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '2111 Ringing Dr', 'NULL', '1 (11) 500 555-0159', '2011-05-23', '0-1 Miles'], ['18261', '30', 'AW00018261', 'NULL', 'Stacy', 'D', 'Ramos', '0', '1982-01-30', 'S', 'NULL', 'F', 'stacy18@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6080 Candelero Pl.', 'NULL', '1 (11) 500 555-0114', '2013-08-30', '5-10 Miles'], ['18262', '18', 'AW00018262', 'NULL', 'Evelyn', 'D', 'Rana', '0', '1969-09-25', 'S', 'NULL', 'F', 'evelyn12@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '7214 Peachwillow', 'NULL', '1 (11) 500 555-0187', '2013-10-20', '5-10 Miles'], ['18263', '2', 'AW00018263', 'NULL', 'Karla', 'NULL', 'Jai', '0', '1975-04-19', 'M', 'NULL', 'F', 'karla12@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '8042 StandingView Dr.', 'NULL', '1 (11) 500 555-0119', '2013-02-24', '5-10 Miles'], ['18264', '3', 'AW00018264', 'NULL', 'Jeffery', 'NULL', 'Ma', '0', '1969-12-03', 'S', 'NULL', 'M', 'jeffery15@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '8669 Rotherham Dr.', 'NULL', '1 (11) 500 555-0143', '2013-09-21', '10+ Miles'], ['18265', '12', 'AW00018265', 'NULL', 'Trisha', 'NULL', 'Cai', '0', '1975-01-18', 'M', 'NULL', 'F', 'trisha16@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '5656 Via Delaware', 'NULL', '1 (11) 500 555-0144', '2013-09-17', '10+ Miles'], ['18266', '36', 'AW00018266', 'NULL', 'Mandy', 'NULL', 'Huang', '0', '1969-04-13', 'S', 'NULL', 'F', 'mandy7@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '950 Normal Ave.', 'NULL', '1 (11) 500 555-0128', '2013-08-04', '5-10 Miles'], ['18267', '4', 'AW00018267', 'NULL', 'Brad', 'C', 'Jai', '0', '1968-11-19', 'M', 'NULL', 'M', 'brad11@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '2951 Dublin', 'NULL', '1 (11) 500 555-0178', '2013-02-17', '5-10 Miles'], ['18268', '38', 'AW00018268', 'NULL', 'Preston', 'O', 'Chapman', '0', '1968-07-26', 'M', 'NULL', 'M', 'preston2@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '2082 Satin Court', 'NULL', '1 (11) 500 555-0171', '2011-05-16', '5-10 Miles'], ['18269', '24', 'AW00018269', 'NULL', 'Wendy', 'A', 'Torres', '0', '1974-05-13', 'S', 'NULL', 'F', 'wendy11@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '5554 Killdeer Court', 'NULL', '1 (11) 500 555-0119', '2011-05-20', '5-10 Miles'], ['18270', '19', 'AW00018270', 'NULL', 'Rachael', 'A', 'Rana', '0', '1968-10-05', 'S', 'NULL', 'F', 'rachael11@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5637 Boyd Road', 'NULL', '1 (11) 500 555-0134', '2013-07-02', '5-10 Miles'], ['18271', '12', 'AW00018271', 'NULL', 'Darrell', 'NULL', 'Yuan', '0', '1979-12-12', 'M', 'NULL', 'M', 'darrell15@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1555 Lace Drive', 'NULL', '1 (11) 500 555-0198', '2013-04-08', '0-1 Miles'], ['18272', '6', 'AW00018272', 'NULL', 'Autumn', 'E', 'Lin', '0', '1972-10-14', 'M', 'NULL', 'F', 'autumn7@adventure-works.com', '90000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '4298 Chestnut Ave.', 'NULL', '1 (11) 500 555-0138', '2011-05-10', '1-2 Miles'], ['18273', '35', 'AW00018273', 'NULL', 'Natalie', 'W', 'Moore', '0', '1973-04-08', 'M', 'NULL', 'F', 'natalie75@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '6701 Treat Blvd.', 'NULL', '1 (11) 500 555-0115', '2011-05-28', '1-2 Miles'], ['18274', '10', 'AW00018274', 'NULL', 'Carla', 'NULL', 'Sanchez', '0', '1978-11-19', 'M', 'NULL', 'F', 'carla23@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '8830 Versailles Pl', 'NULL', '1 (11) 500 555-0121', '2013-10-25', '0-1 Miles'], ['18275', '23', 'AW00018275', 'NULL', 'Heather', 'NULL', 'Yang', '0', '1968-01-24', 'S', 'NULL', 'F', 'heather4@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '7339 Eureka Lane', 'NULL', '1 (11) 500 555-0127', '2011-05-14', '0-1 Miles'], ['18276', '33', 'AW00018276', 'NULL', 'Alexa', 'NULL', 'Murphy', '0', '1973-08-03', 'S', 'NULL', 'F', 'alexa13@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '49 Monetary Way', 'NULL', '1 (11) 500 555-0114', '2011-06-17', '5-10 Miles'], ['18277', '24', 'AW00018277', 'NULL', 'Terry', 'NULL', 'Lal', '0', '1968-03-13', 'M', 'NULL', 'M', 'terry12@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2241 V St.', 'NULL', '1 (11) 500 555-0172', '2011-06-15', '0-1 Miles'], ['18278', '39', 'AW00018278', 'NULL', 'Lucas', 'T', 'Powell', '0', '1966-11-21', 'M', 'NULL', 'M', 'lucas58@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7376 Redwood Road', 'NULL', '1 (11) 500 555-0116', '2013-04-09', '5-10 Miles'], ['18279', '19', 'AW00018279', 'NULL', 'Rachael', 'J', 'Suri', '0', '1967-03-20', 'S', 'NULL', 'F', 'rachael0@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '205 Choctaw Court', 'NULL', '1 (11) 500 555-0122', '2013-12-06', '5-10 Miles'], ['18280', '31', 'AW00018280', 'NULL', 'Jimmy', 'T', 'Alonso', '0', '1966-11-21', 'M', 'NULL', 'M', 'jimmy11@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7376 Redwood Road', 'NULL', '1 (11) 500 555-0110', '2013-11-22', '5-10 Miles'], ['18281', '9', 'AW00018281', 'NULL', 'Jaclyn', 'NULL', 'Li', '0', '1978-06-14', 'S', 'NULL', 'F', 'jaclyn3@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3875 Black Walnut Court', 'NULL', '1 (11) 500 555-0110', '2011-06-01', '0-1 Miles'], ['18282', '23', 'AW00018282', 'NULL', 'Candace', 'NULL', 'Kapoor', '0', '1972-06-05', 'S', 'NULL', 'F', 'candace0@adventure-works.com', '100000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7459 D Apling Court', 'NULL', '1 (11) 500 555-0190', '2013-02-13', '5-10 Miles'], ['18283', '31', 'AW00018283', 'NULL', 'Mallory', 'M', 'Vazquez', '0', '1972-01-11', 'S', 'NULL', 'F', 'mallory1@adventure-works.com', '100000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3142 Broadway St.', 'NULL', '1 (11) 500 555-0112', '2013-08-02', '5-10 Miles'], ['18284', '31', 'AW00018284', 'NULL', 'Carl', 'NULL', 'Deng', '0', '1972-01-23', 'S', 'NULL', 'M', 'carl1@adventure-works.com', '100000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7523 Cordoba Way', 'NULL', '1 (11) 500 555-0150', '2011-06-13', '2-5 Miles'], ['18285', '10', 'AW00018285', 'NULL', 'Roberto', 'A', 'Romero', '0', '1966-02-01', 'M', 'NULL', 'M', 'roberto9@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3641 W. Holly Drive', 'NULL', '1 (11) 500 555-0119', '2013-04-01', '5-10 Miles'], ['18286', '21', 'AW00018286', 'NULL', 'Holly', 'M', 'Suri', '0', '1977-05-06', 'M', 'NULL', 'F', 'holly3@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2547 San Ramon Road', 'NULL', '1 (11) 500 555-0114', '2013-02-19', '5-10 Miles'], ['18287', '6', 'AW00018287', 'NULL', 'Heather', 'E', 'Zeng', '0', '1938-09-30', 'M', 'NULL', 'F', 'heather21@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3237 Meager Dr', 'NULL', '1 (11) 500 555-0120', '2013-02-26', '5-10 Miles'], ['18288', '4', 'AW00018288', 'NULL', 'Daisy', 'A', 'Suarez', '0', '1971-02-24', 'S', 'NULL', 'F', 'daisy14@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4845 Lighthouse Way', 'NULL', '1 (11) 500 555-0178', '2011-06-07', '0-1 Miles'], ['18289', '9', 'AW00018289', 'NULL', 'Jaclyn', 'NULL', 'Raji', '0', '1971-02-24', 'M', 'NULL', 'F', 'jaclyn43@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '7032 Stanford St.', 'NULL', '1 (11) 500 555-0147', '2013-10-15', '0-1 Miles'], ['18290', '3', 'AW00018290', 'NULL', 'Audrey', 'NULL', 'Hernandez', '0', '1975-10-18', 'S', 'NULL', 'F', 'audrey5@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6837 Rosemarie Place', 'NULL', '1 (11) 500 555-0186', '2013-02-08', '5-10 Miles'], ['18291', '36', 'AW00018291', 'NULL', 'Jennifer', 'NULL', 'Hill', '0', '1969-08-10', 'S', 'NULL', 'F', 'jennifer25@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5669 Iris Ct.', 'NULL', '1 (11) 500 555-0164', '2013-06-20', '5-10 Miles'], ['18292', '38', 'AW00018292', 'NULL', 'Louis', 'A', 'Tang', '0', '1975-08-06', 'S', 'NULL', 'M', 'louis21@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9328 Beatrice Rd', 'NULL', '1 (11) 500 555-0176', '2013-08-02', '5-10 Miles'], ['18293', '26', 'AW00018293', 'NULL', 'Austin', 'W', 'Butler', '0', '1964-10-31', 'M', 'NULL', 'M', 'austin10@adventure-works.com', '90000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5058 Anchor Ave', 'NULL', '1 (11) 500 555-0190', '2013-01-28', '5-10 Miles'], ['18294', '39', 'AW00018294', 'NULL', 'Denise', 'NULL', 'Prasad', '0', '1965-03-05', 'M', 'NULL', 'F', 'denise11@adventure-works.com', '90000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2507 Fairlane Place', 'NULL', '1 (11) 500 555-0197', '2013-05-12', '5-10 Miles'], ['18295', '20', 'AW00018295', 'Mr.', 'Ajay', 'NULL', 'Solanki', '0', '1965-01-05', 'M', 'NULL', 'F', 'ajay1@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5486 Olivera Road', 'NULL', '193-555-0100', '2013-04-21', '5-10 Miles'], ['18296', '2', 'AW00018296', 'NULL', 'Trisha', 'A', 'Li', '0', '1969-05-15', 'S', 'NULL', 'F', 'trisha21@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3596 Kingsford Dr.', 'NULL', '1 (11) 500 555-0117', '2011-06-10', '0-1 Miles'], ['18297', '9', 'AW00018297', 'NULL', 'Gloria', 'B', 'Alvarez', '0', '1974-08-22', 'S', 'NULL', 'F', 'gloria6@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '8373 Endriss', 'NULL', '1 (11) 500 555-0142', '2011-06-25', '5-10 Miles'], ['18298', '11', 'AW00018298', 'NULL', 'Geoffrey', 'W', 'Malhotra', '0', '1973-10-06', 'S', 'NULL', 'M', 'geoffrey5@adventure-works.com', '70000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '3202 11th St. NE', 'NULL', '1 (11) 500 555-0111', '2013-07-19', '5-10 Miles'], ['18299', '27', 'AW00018299', 'NULL', 'Colin', 'B', 'Deng', '0', '1967-09-20', 'M', 'NULL', 'M', 'colin24@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8137 Kaski Lane', 'NULL', '1 (11) 500 555-0112', '2013-07-25', '5-10 Miles'], ['18300', '28', 'AW00018300', 'NULL', 'Diane', 'L', 'Ramos', '0', '1967-01-09', 'M', 'NULL', 'F', 'diane22@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3381 Paso Nogal', 'NULL', '1 (11) 500 555-0148', '2013-04-15', '5-10 Miles'], ['18301', '39', 'AW00018301', 'NULL', 'Julie', 'NULL', 'Xu', '0', '1963-08-09', 'S', 'NULL', 'F', 'julie9@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '5484 The Trees Dr.', 'NULL', '1 (11) 500 555-0120', '2011-06-08', '2-5 Miles'], ['18302', '33', 'AW00018302', 'NULL', 'Wayne', 'S', 'Xie', '0', '1969-08-23', 'S', 'NULL', 'M', 'wayne4@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '6529 Buena Vista', 'NULL', '1 (11) 500 555-0143', '2011-06-25', '5-10 Miles'], ['18303', '12', 'AW00018303', 'NULL', 'Shannon', 'R', 'Serrano', '0', '1964-01-07', 'S', 'NULL', 'M', 'shannon37@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '9064 La Paz', 'NULL', '1 (11) 500 555-0122', '2011-06-17', '5-10 Miles'], ['18304', '15', 'AW00018304', 'NULL', 'Yolanda', 'M', 'She', '0', '1963-04-27', 'S', 'NULL', 'F', 'yolanda0@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7836 Mt. Washington', 'NULL', '1 (11) 500 555-0116', '2013-04-21', '5-10 Miles'], ['18305', '40', 'AW00018305', 'NULL', 'Kelvin', 'NULL', 'Xu', '0', '1941-11-21', 'M', 'NULL', 'M', 'kelvin30@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '2025 Sunset Meadows', 'NULL', '1 (11) 500 555-0166', '2013-07-09', '0-1 Miles'], ['18306', '35', 'AW00018306', 'NULL', 'Margaret', 'C', 'Lin', '0', '1977-05-06', 'M', 'NULL', 'F', 'margaret14@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '705 Seaview Avenue', 'NULL', '1 (11) 500 555-0115', '2013-06-15', '5-10 Miles'], ['18307', '4', 'AW00018307', 'NULL', 'Amy', 'NULL', 'Zhang', '0', '1961-11-04', 'S', 'NULL', 'F', 'amy9@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3425 El Verano', 'NULL', '1 (11) 500 555-0140', '2011-06-12', '5-10 Miles'], ['18308', '38', 'AW00018308', 'NULL', 'Erica', 'P', 'Chen', '0', '1967-03-05', 'S', 'NULL', 'F', 'erica2@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '793 Crawford Street', 'NULL', '1 (11) 500 555-0158', '2011-06-10', '5-10 Miles'], ['18309', '13', 'AW00018309', 'NULL', 'Mandy', 'NULL', 'Wu', '0', '1961-09-14', 'S', 'NULL', 'F', 'mandy8@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2015 Bella Avenue', 'NULL', '1 (11) 500 555-0180', '2011-06-02', '5-10 Miles'], ['18310', '14', 'AW00018310', 'NULL', 'Lance', 'NULL', 'Romero', '0', '1955-04-03', 'M', 'NULL', 'M', 'lance9@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6489 North 49th St.', 'NULL', '1 (11) 500 555-0195', '2013-06-12', '5-10 Miles'], ['18311', '316', 'AW00018311', 'NULL', 'Jennifer', 'B', 'Mitchell', '0', '1980-11-09', 'M', 'NULL', 'F', 'jennifer13@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '838 C Northwood Dr.', 'NULL', '844-555-0169', '2013-12-15', '5-10 Miles'], ['18312', '314', 'AW00018312', 'NULL', 'Miguel', 'NULL', 'Moore', '0', '1980-07-19', 'S', 'NULL', 'M', 'miguel7@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2157 Clark Creek Lane', 'NULL', '454-555-0178', '2013-04-02', '0-1 Miles'], ['18313', '302', 'AW00018313', 'NULL', 'Arianna', 'L', 'Foster', '0', '1985-11-12', 'S', 'NULL', 'F', 'arianna14@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6137 Freya Way', 'NULL', '692-555-0112', '2013-11-30', '0-1 Miles'], ['18314', '52', 'AW00018314', 'NULL', 'Eric', 'NULL', 'Perry', '0', '1986-05-15', 'S', 'NULL', 'M', 'eric16@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4082 Roslyn Road', 'NULL', '561-555-0136', '2013-03-21', '0-1 Miles'], ['18315', '431', 'AW00018315', 'NULL', 'Melody', 'A', 'Dominguez', '0', '1985-10-01', 'M', 'NULL', 'F', 'melody13@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9770 Mountain View Drive', 'NULL', '733-555-0110', '2013-06-27', '5-10 Miles'], ['18316', '631', 'AW00018316', 'NULL', 'Justin', 'NULL', 'Kumar', '0', '1986-05-26', 'S', 'NULL', 'M', 'justin25@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6346 St Paul Way', 'NULL', '645-555-0110', '2013-10-25', '0-1 Miles'], ['18317', '63', 'AW00018317', 'NULL', 'Samantha', 'NULL', 'Jones', '0', '1985-11-15', 'M', 'NULL', 'F', 'samantha4@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1527 St. John Lane', 'NULL', '260-555-0138', '2013-11-21', '5-10 Miles'], ['18318', '626', 'AW00018318', 'NULL', 'Benjamin', 'R', 'Hughes', '0', '1986-02-22', 'M', 'NULL', 'M', 'benjamin12@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9302 Blue Ridge', 'NULL', '121-555-0173', '2013-10-01', '5-10 Miles'], ['18319', '14', 'AW00018319', 'NULL', 'Aimee', 'R', 'Sun', '0', '1948-08-12', 'S', 'NULL', 'F', 'aimee9@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5974 N St.', 'NULL', '1 (11) 500 555-0142', '2013-04-24', '5-10 Miles'], ['18320', '68', 'AW00018320', 'NULL', 'Luis', 'A', 'Jai', '0', '1984-10-02', 'M', 'NULL', 'M', 'luis32@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2071 LindenTree Dr', 'NULL', '893-555-0154', '2013-09-10', '0-1 Miles'], ['18321', '553', 'AW00018321', 'NULL', 'Sebastian', 'M', 'Cook', '0', '1985-02-06', 'S', 'NULL', 'M', 'sebastian20@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5416 Thornwood Dr.', 'NULL', '757-555-0154', '2013-03-27', '5-10 Miles'], ['18322', '60', 'AW00018322', 'NULL', 'Antonio', 'NULL', 'Ross', '0', '1985-03-14', 'S', 'NULL', 'M', 'antonio4@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3850 Troutdale Ave.', 'NULL', '776-555-0139', '2013-04-05', '0-1 Miles'], ['18323', '614', 'AW00018323', 'NULL', 'Jeremy', 'J', 'Clark', '0', '1983-11-20', 'S', 'NULL', 'M', 'jeremy5@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8335 West Hook Road', 'NULL', '927-555-0118', '2013-07-19', '5-10 Miles'], ['18324', '51', 'AW00018324', 'NULL', 'Jackson', 'J', 'Butler', '0', '1983-10-16', 'S', 'NULL', 'M', 'jackson16@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6541 Bonita Ave', 'NULL', '586-555-0151', '2013-12-18', '0-1 Miles'], ['18325', '31', 'AW00018325', 'NULL', 'Colleen', 'C', 'Xu', '0', '1944-04-05', 'M', 'NULL', 'F', 'colleen12@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1173 Dale Pl.', 'NULL', '1 (11) 500 555-0112', '2013-03-01', '0-1 Miles'], ['18326', '8', 'AW00018326', 'NULL', 'Jay', 'M', 'Srini', '0', '1944-06-20', 'M', 'NULL', 'M', 'jay15@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '6670 Del Rey St', 'NULL', '1 (11) 500 555-0137', '2013-09-25', '0-1 Miles'], ['18327', '299', 'AW00018327', 'NULL', 'Jon', 'L', 'Sharma', '0', '1982-07-24', 'S', 'NULL', 'M', 'jon5@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7104 May Way', 'NULL', '587-555-0148', '2013-03-28', '5-10 Miles'], ['18328', '311', 'AW00018328', 'NULL', 'Alvin', 'NULL', 'Rai', '0', '1983-04-19', 'M', 'NULL', 'M', 'alvin38@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9430 Thornhill Place', 'NULL', '379-555-0143', '2013-10-09', '5-10 Miles'], ['18329', '54', 'AW00018329', 'NULL', 'Marcus', 'L', 'Bailey', '0', '1985-02-14', 'S', 'NULL', 'M', 'marcus92@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '485 Starlyn Dr.', 'NULL', '935-555-0117', '2013-01-30', '5-10 Miles'], ['18330', '39', 'AW00018330', 'NULL', 'Kellie', 'A', 'Diaz', '0', '1950-03-04', 'S', 'NULL', 'F', 'kellie3@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '4511 Bellwood Dr.', 'NULL', '1 (11) 500 555-0182', '2013-03-14', '5-10 Miles'], ['18331', '33', 'AW00018331', 'NULL', 'Jerry', 'NULL', 'Chande', '0', '1951-06-05', 'M', 'NULL', 'M', 'jerry16@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9950 Edward Ave', 'NULL', '1 (11) 500 555-0167', '2011-06-29', '0-1 Miles'], ['18332', '33', 'AW00018332', 'NULL', 'Emmanuel', 'NULL', 'Malhotra', '0', '1945-07-11', 'M', 'NULL', 'M', 'emmanuel4@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '408 Listing Ct.', 'NULL', '1 (11) 500 555-0115', '2011-06-28', '0-1 Miles'], ['18333', '21', 'AW00018333', 'NULL', 'Meredith', 'NULL', 'Patel', '0', '1952-08-17', 'S', 'NULL', 'F', 'meredith1@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2413 Roanwood Way', 'NULL', '1 (11) 500 555-0192', '2013-12-24', '5-10 Miles'], ['18334', '28', 'AW00018334', 'NULL', 'Edwin', 'NULL', 'Ye', '0', '1947-04-25', 'M', 'NULL', 'M', 'edwin10@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '1652 Willcrest Circle', 'NULL', '1 (11) 500 555-0177', '2011-06-06', '0-1 Miles'], ['18335', '23', 'AW00018335', 'NULL', 'Ricky', 'E', 'Diaz', '0', '1953-10-05', 'M', 'NULL', 'M', 'ricky3@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4003 Woodcrest Dr', 'NULL', '1 (11) 500 555-0160', '2011-06-05', '5-10 Miles'], ['18336', '7', 'AW00018336', 'NULL', 'Carla', 'J', 'Gonzalez', '0', '1947-07-09', 'M', 'NULL', 'F', 'carla21@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8901 Fourth Street', 'NULL', '1 (11) 500 555-0161', '2011-06-15', '5-10 Miles'], ['18337', '27', 'AW00018337', 'NULL', 'Audrey', 'NULL', 'Serrano', '0', '1953-08-10', 'S', 'NULL', 'F', 'audrey18@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '1631 Via Cordona', 'NULL', '1 (11) 500 555-0148', '2011-06-03', '5-10 Miles'], ['18338', '40', 'AW00018338', 'NULL', 'Nina', 'NULL', 'Andersen', '0', '1959-01-08', 'S', 'NULL', 'F', 'nina13@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '2461 Orangewood Court', 'NULL', '1 (11) 500 555-0138', '2011-06-04', '5-10 Miles'], ['18339', '298', 'AW00018339', 'NULL', 'Donna', 'NULL', 'Nath', '0', '1981-12-01', 'S', 'NULL', 'F', 'donna16@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5203 Foothill Way', 'NULL', '412-555-0110', '2013-10-13', '5-10 Miles'], ['18340', '299', 'AW00018340', 'NULL', 'Arianna', 'NULL', 'Cooper', '0', '1981-10-20', 'S', 'NULL', 'F', 'arianna30@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4101 Buckthorn Court', 'NULL', '833-555-0133', '2013-11-08', '5-10 Miles'], ['18341', '312', 'AW00018341', 'NULL', 'Russell', 'NULL', 'Goel', '0', '1981-10-31', 'S', 'NULL', 'M', 'russell22@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4427 Langford Court', 'NULL', '504-555-0121', '2014-01-12', '1-2 Miles'], ['18342', '343', 'AW00018342', 'NULL', 'Victoria', 'NULL', 'James', '0', '1982-01-12', 'S', 'NULL', 'F', 'victoria44@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1867 Seville', 'NULL', '187-555-0113', '2013-05-26', '5-10 Miles'], ['18343', '348', 'AW00018343', 'NULL', 'Dalton', 'NULL', 'Green', '0', '1982-01-25', 'S', 'NULL', 'M', 'dalton30@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '5870 Matheson Road', 'NULL', '120-555-0189', '2013-08-16', '1-2 Miles'], ['18344', '385', 'AW00018344', 'NULL', 'Caleb', 'NULL', 'Turner', '0', '1981-08-20', 'S', 'NULL', 'M', 'caleb34@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '615 Maria Vega Court', 'NULL', '114-555-0168', '2013-10-19', '5-10 Miles'], ['18345', '53', 'AW00018345', 'NULL', 'Samantha', 'NULL', 'Bryant', '0', '1981-03-18', 'M', 'NULL', 'F', 'samantha40@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5065 Fairfield Ave', 'NULL', '161-555-0187', '2013-10-27', '5-10 Miles'], ['18346', '329', 'AW00018346', 'NULL', 'Anna', 'H', 'Flores', '0', '1985-08-18', 'S', 'NULL', 'F', 'anna37@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4525 Benedict Ct.', 'NULL', '813-555-0137', '2013-02-20', '1-2 Miles'], ['18347', '352', 'AW00018347', 'NULL', 'Alyssa', 'J', 'Clark', '0', '1980-05-01', 'S', 'NULL', 'F', 'alyssa19@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '208 Mobile Lane', 'NULL', '728-555-0118', '2013-07-18', '1-2 Miles'], ['18348', '361', 'AW00018348', 'NULL', 'Katelyn', 'NULL', 'Roberts', '0', '1980-05-01', 'S', 'NULL', 'F', 'katelyn27@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '5566 Banyan Circle', 'NULL', '921-555-0142', '2013-02-25', '1-2 Miles'], ['18349', '372', 'AW00018349', 'NULL', 'Jacob', 'NULL', 'Robinson', '0', '1979-10-14', 'S', 'NULL', 'M', 'jacob14@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '591 Merriewood Drive', 'NULL', '368-555-0182', '2013-03-25', '5-10 Miles'], ['18350', '383', 'AW00018350', 'NULL', 'Emma', 'NULL', 'Ross', '0', '1979-05-10', 'M', 'NULL', 'F', 'emma50@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6957 Corte Poquito', 'NULL', '950-555-0137', '2013-10-20', '5-10 Miles'], ['18351', '302', 'AW00018351', 'NULL', 'Alexander', 'NULL', 'Smith', '0', '1977-08-12', 'M', 'NULL', 'M', 'alexander2@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5460 Kipling Court', 'NULL', '915-555-0150', '2013-11-23', '5-10 Miles'], ['18352', '307', 'AW00018352', 'NULL', 'Noah', 'A', 'Thomas', '0', '1978-05-22', 'M', 'NULL', 'M', 'noah51@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '5446 Via Estrella', 'NULL', '162-555-0112', '2013-11-09', '1-2 Miles'], ['18353', '635', 'AW00018353', 'NULL', 'Robert', 'NULL', 'Anderson', '0', '1977-08-09', 'M', 'NULL', 'M', 'robert68@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '9891 Clayton Way', 'NULL', '255-555-0175', '2013-11-07', '1-2 Miles'], ['18354', '302', 'AW00018354', 'NULL', 'Alvin', 'A', 'Nara', '0', '1972-11-16', 'M', 'NULL', 'M', 'alvin37@adventure-works.com', '170000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '4833 Maine Dr.', 'Unit C4', '157-555-0115', '2013-04-23', '0-1 Miles'], ['18355', '50', 'AW00018355', 'NULL', 'Edward', 'R', 'Foster', '0', '1974-01-20', 'M', 'NULL', 'M', 'edward64@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '2106 Chilpancingo Pkwy.', 'NULL', '829-555-0111', '2013-08-09', '0-1 Miles'], ['18356', '66', 'AW00018356', 'NULL', 'Alexander', 'S', 'Lee', '0', '1974-01-30', 'M', 'NULL', 'M', 'alexander9@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1792 Del Monte Ct.', 'NULL', '447-555-0194', '2013-11-14', '1-2 Miles'], ['18357', '618', 'AW00018357', 'NULL', 'Trinity', 'NULL', 'Reed', '0', '1974-02-12', 'M', 'NULL', 'F', 'trinity17@adventure-works.com', '100000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '4334 Fremont Street', 'NULL', '414-555-0112', '2013-10-31', '0-1 Miles'], ['18358', '315', 'AW00018358', 'NULL', 'Oscar', 'P', 'Coleman', '0', '1985-02-21', 'M', 'NULL', 'M', 'oscar14@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '5222 Happy Valley Road', 'NULL', '539-555-0118', '2013-04-10', '1-2 Miles'], ['18359', '345', 'AW00018359', 'NULL', 'Alexandria', 'NULL', 'Bryant', '0', '1984-09-08', 'S', 'NULL', 'F', 'alexandria18@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '8817 Cynthia Drive', 'NULL', '142-555-0175', '2014-01-11', '1-2 Miles'], ['18360', '368', 'AW00018360', 'NULL', 'Eric', 'E', 'Li', '0', '1985-03-12', 'M', 'NULL', 'M', 'eric34@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9555 Mt. Whitney Way', 'NULL', '273-555-0126', '2013-09-29', '5-10 Miles'], ['18361', '383', 'AW00018361', 'NULL', 'Marcus', 'NULL', 'Simmons', '0', '1985-06-24', 'S', 'NULL', 'M', 'marcus65@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7648 S. Bascom Ave.', 'NULL', '708-555-0175', '2013-10-07', '1-2 Miles'], ['18362', '49', 'AW00018362', 'NULL', 'Erin', 'L', 'Howard', '0', '1984-05-12', 'M', 'NULL', 'F', 'erin16@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4613 Pine Drive', 'NULL', '394-555-0111', '2013-11-30', '1-2 Miles'], ['18363', '49', 'AW00018363', 'NULL', 'Lucas', 'N', 'Ward', '0', '1983-07-06', 'M', 'NULL', 'M', 'lucas75@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8369 Dutch Slough Rd.', 'NULL', '585-555-0117', '2013-12-20', '5-10 Miles'], ['18364', '614', 'AW00018364', 'NULL', 'Eduardo', 'L', 'Gray', '0', '1983-10-04', 'M', 'NULL', 'M', 'eduardo74@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3557 Harvard Court', 'NULL', '999-555-0149', '2013-03-10', '1-2 Miles'], ['18365', '635', 'AW00018365', 'NULL', 'Daniel', 'W', 'Lewis', '0', '1984-03-19', 'M', 'NULL', 'M', 'daniel12@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9621 Laurel Drive', 'NULL', '192-555-0173', '2013-06-03', '5-10 Miles'], ['18366', '331', 'AW00018366', 'NULL', 'Alexandria', 'NULL', 'Richardson', '0', '1983-11-22', 'M', 'NULL', 'F', 'alexandria31@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2987 Wiget Lane', 'NULL', '530-555-0143', '2013-10-15', '1-2 Miles'], ['18367', '14', 'AW00018367', 'NULL', 'Edwin', 'F', 'Wu', '0', '1951-04-24', 'M', 'NULL', 'M', 'edwin7@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3906 El Dorado Way', 'NULL', '1 (11) 500 555-0171', '2014-01-16', '1-2 Miles'], ['18368', '49', 'AW00018368', 'NULL', 'Austin', 'P', 'Hughes', '0', '1976-08-08', 'M', 'NULL', 'M', 'austin7@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '826 Sycamore Drive', 'NULL', '332-555-0111', '2013-12-19', '0-1 Miles'], ['18369', '307', 'AW00018369', 'NULL', 'Mandy', 'A', 'He', '0', '1977-02-12', 'M', 'NULL', 'F', 'mandy20@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1334 Appalachian Drive', 'NULL', '535-555-0196', '2013-10-12', '1-2 Miles'], ['18370', '368', 'AW00018370', 'NULL', 'Tristan', 'L', 'Flores', '0', '1976-08-11', 'M', 'NULL', 'M', 'tristan13@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1955 C Street', 'NULL', '433-555-0118', '2013-10-14', '0-1 Miles'], ['18371', '626', 'AW00018371', 'NULL', 'Jessica', 'NULL', 'Morgan', '0', '1977-05-06', 'M', 'NULL', 'F', 'jessica6@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5602 Greer Ave', 'NULL', '242-555-0195', '2013-10-10', '1-2 Miles'], ['18372', '70', 'AW00018372', 'NULL', 'Jeremiah', 'NULL', 'Thomas', '0', '1977-09-19', 'M', 'NULL', 'M', 'jeremiah3@adventure-works.com', '50000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4024 Montana', '# 113', '403-555-0173', '2013-12-12', '0-1 Miles'], ['18373', '536', 'AW00018373', 'NULL', 'Stephanie', 'NULL', 'Roberts', '0', '1983-08-08', 'M', 'NULL', 'F', 'stephanie53@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7916 Valley Ave.', '# 434', '761-555-0113', '2013-10-13', '0-1 Miles'], ['18374', '633', 'AW00018374', 'NULL', 'Logan', 'NULL', 'King', '0', '1981-04-12', 'M', 'NULL', 'M', 'logan45@adventure-works.com', '100000.00', '5', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '2319 Hilltop Dr.', 'NULL', '907-555-0113', '2013-03-17', '0-1 Miles'], ['18375', '355', 'AW00018375', 'NULL', 'Michelle', 'NULL', 'Morris', '0', '1969-11-20', 'M', 'NULL', 'F', 'michelle19@adventure-works.com', '150000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '4584 Pinetree Ct.', 'NULL', '891-555-0188', '2013-12-20', '1-2 Miles'], ['18376', '347', 'AW00018376', 'NULL', 'Abigail', 'L', 'Diaz', '0', '1967-07-23', 'M', 'NULL', 'F', 'abigail1@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '5134 Oak Park Blvd', 'NULL', '918-555-0152', '2013-12-16', '5-10 Miles'], ['18377', '53', 'AW00018377', 'NULL', 'Madison', 'W', 'Robinson', '0', '1967-07-02', 'S', 'NULL', 'F', 'madison19@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '200 Mitchelleanjen Ln.', 'NULL', '573-555-0151', '2013-10-06', '5-10 Miles'], ['18378', '369', 'AW00018378', 'NULL', 'Dalton', 'E', 'Foster', '0', '1967-04-10', 'M', 'NULL', 'M', 'dalton62@adventure-works.com', '80000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '7097 Algiers Drive', 'NULL', '238-555-0185', '2013-12-01', '2-5 Miles'], ['18379', '60', 'AW00018379', 'NULL', 'Abigail', 'R', 'Robinson', '0', '1973-03-15', 'M', 'NULL', 'F', 'abigail59@adventure-works.com', '80000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '2934 Village Pl.', 'NULL', '171-555-0162', '2013-10-25', '0-1 Miles'], ['18380', '545', 'AW00018380', 'NULL', 'Kaitlyn', 'G', 'Kelly', '0', '1961-12-25', 'M', 'NULL', 'F', 'kaitlyn66@adventure-works.com', '80000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7710 Pine St', 'NULL', '127-555-0157', '2013-07-05', '0-1 Miles'], ['18381', '307', 'AW00018381', 'NULL', 'Katherine', 'NULL', 'Ward', '0', '1962-05-05', 'S', 'NULL', 'F', 'katherine16@adventure-works.com', '90000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6620 Leonard Ct.', 'NULL', '939-555-0192', '2013-12-09', '5-10 Miles'], ['18382', '52', 'AW00018382', 'NULL', 'Isabella', 'NULL', 'Garcia', '0', '1968-08-05', 'M', 'NULL', 'F', 'isabella72@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2505 Maywood Ln.', 'NULL', '672-555-0130', '2013-08-07', '0-1 Miles'], ['18383', '627', 'AW00018383', 'NULL', 'Natalie', 'NULL', 'Torres', '0', '1974-06-03', 'S', 'NULL', 'F', 'natalie16@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '8713 Book Street', 'NULL', '739-555-0114', '2013-08-02', '5-10 Miles'], ['18384', '632', 'AW00018384', 'NULL', 'Nicole', 'J', 'Williams', '0', '1974-01-22', 'S', 'NULL', 'F', 'nicole2@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '6688 Richard Place', 'NULL', '680-555-0163', '2013-02-09', '10+ Miles'], ['18385', '301', 'AW00018385', 'NULL', 'Miguel', 'NULL', 'Gonzalez', '0', '1979-12-13', 'M', 'NULL', 'M', 'miguel34@adventure-works.com', '110000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '6702 Smiling Tree Court', 'NULL', '847-555-0142', '2014-01-14', '1-2 Miles'], ['18386', '316', 'AW00018386', 'NULL', 'Kevin', 'NULL', 'Shan', '0', '1968-11-22', 'M', 'NULL', 'M', 'kevin34@adventure-works.com', '120000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '8719 St. Peter Court', 'NULL', '125-555-0141', '2013-12-10', '5-10 Miles'], ['18387', '343', 'AW00018387', 'NULL', 'Carlos', 'NULL', 'Green', '0', '1974-08-09', 'M', 'NULL', 'M', 'carlos44@adventure-works.com', '130000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '3655 Sodaro Dr.', 'NULL', '819-555-0189', '2013-04-03', '0-1 Miles'], ['18388', '372', 'AW00018388', 'NULL', 'Julia', 'A', 'Russell', '0', '1969-05-15', 'M', 'NULL', 'F', 'julia86@adventure-works.com', '150000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3596 Kingsford Dr.', 'NULL', '698-555-0179', '2013-12-19', '1-2 Miles'], ['18389', '49', 'AW00018389', 'NULL', 'Marcus', 'T', 'Gray', '0', '1967-08-23', 'S', 'NULL', 'M', 'marcus81@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '7610 Northridge Ct.', 'NULL', '465-555-0183', '2013-10-10', '0-1 Miles'], ['18390', '49', 'AW00018390', 'NULL', 'Blake', 'NULL', 'Thompson', '0', '1973-03-31', 'M', 'NULL', 'M', 'blake15@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9027 Alan Dr', 'NULL', '385-555-0120', '2013-06-06', '0-1 Miles'], ['18391', '54', 'AW00018391', 'NULL', 'Jacqueline', 'NULL', 'Russell', '0', '1967-07-09', 'S', 'NULL', 'F', 'jacqueline20@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4422 Roxbury Drive', 'NULL', '186-555-0148', '2013-03-19', '5-10 Miles'], ['18392', '62', 'AW00018392', 'NULL', 'Jasmine', 'C', 'Gonzales', '0', '1973-06-20', 'S', 'NULL', 'F', 'jasmine56@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '1914 N Lucile Lane', 'NULL', '122-555-0136', '2013-10-19', '0-1 Miles'], ['18393', '542', 'AW00018393', 'NULL', 'Angela', 'D', 'Ross', '0', '1968-01-18', 'M', 'NULL', 'F', 'angela6@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '8390 Galloway Dr', 'NULL', '113-555-0128', '2013-12-02', '5-10 Miles'], ['18394', '635', 'AW00018394', 'NULL', 'Sean', 'A', 'Wright', '0', '1967-11-16', 'M', 'NULL', 'M', 'sean52@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '864 Wee Donegal', 'NULL', '981-555-0169', '2013-12-16', '5-10 Miles'], ['18395', '553', 'AW00018395', 'NULL', 'Xavier', 'D', 'Howard', '0', '1968-01-01', 'M', 'NULL', 'M', 'xavier78@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '5778 Hames Dr.', 'NULL', '156-555-0152', '2013-12-06', '5-10 Miles'], ['18396', '648', 'AW00018396', 'NULL', 'Luke', 'G', 'Parker', '0', '1973-09-07', 'M', 'NULL', 'M', 'luke31@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '6524 Geriola Court', 'NULL', '961-555-0169', '2013-09-13', '1-2 Miles'], ['18397', '419', 'AW00018397', 'NULL', 'Louis', 'S', 'Anand', '0', '1967-12-10', 'M', 'NULL', 'M', 'louis37@adventure-works.com', '100000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '1256 American Beauty Dr', 'NULL', '397-555-0169', '2013-11-07', '1-2 Miles'], ['18398', '310', 'AW00018398', 'NULL', 'Geoffrey', 'NULL', 'Sanchez', '0', '1967-07-20', 'S', 'NULL', 'M', 'geoffrey18@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '8463 Vista Avenue', 'NULL', '314-555-0185', '2013-12-10', '5-10 Miles'], ['18399', '311', 'AW00018399', 'NULL', 'Sara', 'D', 'Torres', '0', '1967-08-09', 'S', 'NULL', 'F', 'sara14@adventure-works.com', '120000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '7740 LaCrosse Ave', 'NULL', '793-555-0141', '2013-12-03', '5-10 Miles'], ['18400', '326', 'AW00018400', 'NULL', 'Jeremiah', 'A', 'Jackson', '0', '1973-06-20', 'S', 'NULL', 'M', 'jeremiah4@adventure-works.com', '120000.00', '1', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '8683 San Antonio', 'NULL', '436-555-0182', '2013-12-28', '5-10 Miles'], ['18401', '53', 'AW00018401', 'NULL', 'Joshua', 'NULL', 'Jones', '0', '1967-03-24', 'S', 'NULL', 'M', 'joshua5@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '8938 West Hookston Road', 'NULL', '301-555-0197', '2013-10-27', '5-10 Miles'], ['18402', '607', 'AW00018402', 'NULL', 'Kimberly', 'NULL', 'Kelly', '0', '1967-05-17', 'M', 'NULL', 'F', 'kimberly5@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '8967 Chrislend Court', 'NULL', '426-555-0117', '2013-08-29', '5-10 Miles'], ['18403', '607', 'AW00018403', 'NULL', 'Madeline', 'R', 'Phillips', '0', '1966-08-26', 'S', 'NULL', 'F', 'madeline5@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '1542 Del Rey St.', 'NULL', '528-555-0156', '2013-12-26', '5-10 Miles'], ['18404', '613', 'AW00018404', 'NULL', 'Alicia', 'NULL', 'Raji', '0', '1967-02-04', 'M', 'NULL', 'F', 'alicia17@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '4977 Martin St.', 'NULL', '120-555-0140', '2013-09-13', '1-2 Miles'], ['18405', '299', 'AW00018405', 'NULL', 'Sheila', 'NULL', 'Gutierrez', '0', '1966-12-08', 'M', 'NULL', 'F', 'sheila11@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '3023 Adria Drive', 'NULL', '551-555-0114', '2013-07-22', '2-5 Miles'], ['18406', '329', 'AW00018406', 'NULL', 'Zachary', 'NULL', 'Ross', '0', '1972-10-23', 'S', 'NULL', 'M', 'zachary2@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '6145 Frisbie Court', 'NULL', '458-555-0188', '2013-12-24', '0-1 Miles'], ['18407', '70', 'AW00018407', 'NULL', 'Maria', 'NULL', 'Griffin', '0', '1961-05-19', 'M', 'NULL', 'F', 'maria42@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '9662 Red Leaf', 'NULL', '982-555-0153', '2013-04-06', '5-10 Miles'], ['18408', '612', 'AW00018408', 'NULL', 'Cody', 'NULL', 'West', '0', '1961-06-03', 'S', 'NULL', 'M', 'cody1@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4192 May Rd.', 'NULL', '260-555-0165', '2013-11-06', '5-10 Miles'], ['18409', '298', 'AW00018409', 'NULL', 'Olivia', 'K', 'Washington', '0', '1961-03-11', 'M', 'NULL', 'F', 'olivia59@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '7214 Elliott Dr', 'NULL', '674-555-0114', '2013-09-29', '5-10 Miles'], ['18410', '329', 'AW00018410', 'NULL', 'Joshua', 'M', 'Davis', '0', '1961-05-20', 'M', 'NULL', 'M', 'joshua7@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '3385 Crestview Drive', 'NULL', '438-555-0110', '2013-09-30', '1-2 Miles'], ['18411', '70', 'AW00018411', 'NULL', 'Jack', 'J', 'Powell', '0', '1961-01-17', 'M', 'NULL', 'M', 'jack9@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '879 South Royal Links', 'NULL', '659-555-0151', '2013-06-19', '5-10 Miles'], ['18412', '316', 'AW00018412', 'NULL', 'Mary', 'NULL', 'Parker', '0', '1960-09-23', 'S', 'NULL', 'F', 'mary20@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '4080 Mendocino Dr', 'NULL', '283-555-0196', '2013-12-20', '5-10 Miles'], ['18413', '329', 'AW00018413', 'NULL', 'Samuel', 'F', 'Jackson', '0', '1961-01-28', 'M', 'NULL', 'M', 'samuel68@adventure-works.com', '80000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '676 Yosemite Ct', 'NULL', '929-555-0187', '2013-12-24', '1-2 Miles'], ['18414', '536', 'AW00018414', 'NULL', 'Gabrielle', 'NULL', 'Griffin', '0', '1941-04-03', 'M', 'NULL', 'F', 'gabrielle43@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '4575 Sandiago Drive', 'NULL', '292-555-0186', '2013-10-07', '1-2 Miles'], ['18415', '302', 'AW00018415', 'NULL', 'Summer', 'E', 'Mehta', '0', '1941-05-19', 'M', 'NULL', 'F', 'summer12@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '328 Shell Dr.', 'NULL', '238-555-0168', '2013-12-23', '1-2 Miles'], ['18416', '547', 'AW00018416', 'NULL', 'Emma', 'K', 'Peterson', '0', '1965-11-19', 'M', 'NULL', 'F', 'emma41@adventure-works.com', '100000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '2431 Santa Lucia Dr.', 'NULL', '186-555-0128', '2013-12-04', '5-10 Miles'], ['18417', '300', 'AW00018417', 'NULL', 'Jonathan', 'NULL', 'Roberts', '0', '1976-12-04', 'M', 'NULL', 'M', 'jonathan33@adventure-works.com', '110000.00', '5', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '8992 E. 32nd St.', 'NULL', '936-555-0119', '2013-08-03', '5-10 Miles'], ['18418', '311', 'AW00018418', 'NULL', 'Dawn', 'L', 'Sun', '0', '1971-12-20', 'S', 'NULL', 'F', 'dawn15@adventure-works.com', '110000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '4392 Lakeview Pl.', 'NULL', '969-555-0111', '2013-12-28', '5-10 Miles'], ['18419', '316', 'AW00018419', 'NULL', 'Rachel', 'NULL', 'Johnson', '0', '1966-06-16', 'M', 'NULL', 'F', 'rachel3@adventure-works.com', '120000.00', '1', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '8149 Olivera Road', 'NULL', '515-555-0111', '2014-01-16', '2-5 Miles'], ['18420', '358', 'AW00018420', 'NULL', 'Riley', 'L', 'Stewart', '0', '1976-10-11', 'M', 'NULL', 'F', 'riley40@adventure-works.com', '160000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '2369 Teak St.', 'NULL', '618-555-0117', '2013-12-07', '2-5 Miles'], ['18421', '359', 'AW00018421', 'NULL', 'Megan', 'E', 'Morgan', '0', '1966-02-13', 'M', 'NULL', 'F', 'megan33@adventure-works.com', '170000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '3030 Blackburn Ct.', 'NULL', '615-555-0141', '2013-10-26', '0-1 Miles'], ['18422', '374', 'AW00018422', 'NULL', 'Taylor', 'A', 'Jones', '0', '1965-10-31', 'S', 'NULL', 'F', 'taylor50@adventure-works.com', '170000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '3350 Northridge Road', 'NULL', '936-555-0123', '2013-12-08', '0-1 Miles'], ['18423', '358', 'AW00018423', 'NULL', 'Christian', 'S', 'Jones', '0', '1960-02-01', 'S', 'NULL', 'M', 'christian34@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '202 Seaview Dr.', 'NULL', '690-555-0187', '2013-03-25', '1-2 Miles'], ['18424', '322', 'AW00018424', 'NULL', 'Samuel', 'NULL', 'Williams', '0', '1960-01-09', 'S', 'NULL', 'M', 'samuel60@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2656 Brook Way', 'NULL', '862-555-0153', '2013-03-08', '5-10 Miles'], ['18425', '316', 'AW00018425', 'NULL', 'Garrett', 'L', 'Brooks', '0', '1960-03-13', 'M', 'NULL', 'M', 'garrett5@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '635 Chickpea Ct.', 'NULL', '625-555-0130', '2013-09-11', '5-10 Miles'], ['18426', '322', 'AW00018426', 'NULL', 'Luke', 'NULL', 'Gonzales', '0', '1958-09-21', 'M', 'NULL', 'M', 'luke6@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3519 Brookside Drive', 'NULL', '660-555-0153', '2013-12-25', '1-2 Miles'], ['18427', '543', 'AW00018427', 'NULL', 'Justin', 'NULL', 'Diaz', '0', '1964-04-19', 'M', 'NULL', 'M', 'justin19@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6386 Holiday Hill Dr', 'NULL', '592-555-0152', '2013-12-11', '5-10 Miles'], ['18428', '547', 'AW00018428', 'NULL', 'Alexis', 'NULL', 'Henderson', '0', '1958-08-21', 'S', 'NULL', 'F', 'alexis27@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2481 Scottsdale Rd.', 'NULL', '876-555-0144', '2013-12-08', '1-2 Miles'], ['18429', '642', 'AW00018429', 'NULL', 'Faith', 'R', 'Gonzales', '0', '1958-09-11', 'S', 'NULL', 'F', 'faith16@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5026 Clearbrook Drive', 'NULL', '458-555-0149', '2013-12-09', '5-10 Miles'], ['18430', '552', 'AW00018430', 'NULL', 'Victoria', 'C', 'Morgan', '0', '1958-01-06', 'M', 'NULL', 'F', 'victoria30@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '3403 Meadowbrook', 'NULL', '116-555-0151', '2013-10-22', '5-10 Miles'], ['18431', '335', 'AW00018431', 'NULL', 'Cameron', 'D', 'Hayes', '0', '1958-02-24', 'M', 'NULL', 'M', 'cameron18@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '5448 Hill Drive', 'Unit 3b', '857-555-0113', '2013-10-20', '5-10 Miles'], ['18432', '302', 'AW00018432', 'NULL', 'Jordan', 'L', 'Lopez', '0', '1949-04-04', 'M', 'NULL', 'F', 'jordan50@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6697 Ridge Park Drive', 'NULL', '987-555-0143', '2013-12-07', '10+ Miles'], ['18433', '59', 'AW00018433', 'NULL', 'Seth', 'M', 'Ross', '0', '1944-01-24', 'M', 'NULL', 'M', 'seth52@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '3588 Green Valley Road', 'NULL', '970-555-0180', '2013-10-12', '1-2 Miles'], ['18434', '302', 'AW00018434', 'NULL', 'Clayton', 'NULL', 'Stone', '0', '1943-08-01', 'M', 'NULL', 'M', 'clayton22@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8924 Lindley Ct.', 'NULL', '145-555-0156', '2013-12-27', '5-10 Miles'], ['18435', '644', 'AW00018435', 'NULL', 'Maria', 'I', 'Phillips', '0', '1945-02-15', 'S', 'NULL', 'F', 'maria49@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2650 Portside Ct', 'NULL', '275-555-0132', '2013-12-07', '10+ Miles'], ['18436', '369', 'AW00018436', 'NULL', 'Richard', 'NULL', 'Johnson', '0', '1944-11-16', 'M', 'NULL', 'M', 'richard41@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '3128 Second Street', 'NULL', '705-555-0155', '2013-12-13', '1-2 Miles'], ['18437', '337', 'AW00018437', 'NULL', 'Isabella', 'A', 'Butler', '0', '1951-12-05', 'M', 'NULL', 'F', 'isabella24@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4910 Melinda Court', 'NULL', '289-555-0111', '2013-12-03', '10+ Miles'], ['18438', '310', 'AW00018438', 'NULL', 'Sheila', 'J', 'Sanz', '0', '1946-09-21', 'M', 'NULL', 'F', 'sheila18@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2153 Hooftrail Way', 'NULL', '538-555-0119', '2013-10-23', '10+ Miles'], ['18439', '627', 'AW00018439', 'NULL', 'Angela', 'M', 'Coleman', '0', '1947-01-12', 'M', 'NULL', 'F', 'angela8@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2328 Elk Dr', 'NULL', '204-555-0144', '2013-10-02', '10+ Miles'], ['18440', '310', 'AW00018440', 'NULL', 'Joe', 'NULL', 'Ashe', '0', '1947-05-04', 'M', 'NULL', 'M', 'joe28@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4250 Cross Road', 'NULL', '563-555-0128', '2013-10-14', '1-2 Miles'], ['18441', '300', 'AW00018441', 'NULL', 'Tabitha', 'A', 'Munoz', '0', '1952-08-17', 'M', 'NULL', 'F', 'tabitha27@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8423 Roundtree Court', 'NULL', '535-555-0163', '2013-12-12', '10+ Miles'], ['18442', '627', 'AW00018442', 'NULL', 'Mason', 'NULL', 'Hill', '0', '1946-08-30', 'S', 'NULL', 'M', 'mason34@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1866 Seagull Court', 'NULL', '618-555-0196', '2013-12-15', '10+ Miles'], ['18443', '22', 'AW00018443', 'NULL', 'Ross', 'NULL', 'Lopez', '0', '1969-07-31', 'M', 'NULL', 'M', 'ross16@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '8553 Wilson Lane', 'NULL', '1 (11) 500 555-0188', '2013-12-17', '5-10 Miles'], ['18444', '25', 'AW00018444', 'NULL', 'Shannon', 'NULL', 'Chow', '0', '1958-07-10', 'S', 'NULL', 'F', 'shannon2@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2715 Euclid Ave.', 'NULL', '1 (11) 500 555-0154', '2013-12-29', '5-10 Miles'], ['18445', '7', 'AW00018445', 'NULL', 'Colin', 'J', 'Li', '0', '1958-11-17', 'M', 'NULL', 'M', 'colin3@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9890 Bloching Circle', 'NULL', '1 (11) 500 555-0157', '2013-06-11', '5-10 Miles'], ['18446', '7', 'AW00018446', 'NULL', 'Larry', 'NULL', 'Ramos', '0', '1952-08-17', 'M', 'NULL', 'M', 'larry20@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9521 Sun View Terr', 'NULL', '1 (11) 500 555-0112', '2013-09-22', '1-2 Miles'], ['18447', '5', 'AW00018447', 'NULL', 'Renee', 'NULL', 'Ortega', '0', '1954-03-24', 'M', 'NULL', 'F', 'renee20@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9410 Ferry St.', 'NULL', '1 (11) 500 555-0173', '2013-05-17', '5-10 Miles'], ['18448', '337', 'AW00018448', 'NULL', 'Jennifer', 'S', 'Bailey', '0', '1983-07-02', 'M', 'NULL', 'F', 'jennifer61@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '893 Thornwood Drive', 'NULL', '508-555-0164', '2013-10-13', '5-10 Miles'], ['18449', '49', 'AW00018449', 'NULL', 'Derrick', 'NULL', 'Ramos', '0', '1983-03-13', 'M', 'NULL', 'M', 'derrick16@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5175 Reisling Court', 'NULL', '527-555-0160', '2013-02-18', '1-2 Miles'], ['18450', '10', 'AW00018450', 'NULL', 'Willie', 'S', 'Shen', '0', '1954-02-20', 'M', 'NULL', 'M', 'willie22@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '130 North Main St.', 'NULL', '1 (11) 500 555-0162', '2013-10-29', '5-10 Miles'], ['18451', '38', 'AW00018451', 'NULL', 'Dale', 'NULL', 'Pal', '0', '1953-11-05', 'M', 'NULL', 'M', 'dale9@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5785 Ygnacio Valley Road', 'NULL', '1 (11) 500 555-0118', '2013-11-21', '5-10 Miles'], ['18452', '32', 'AW00018452', 'NULL', 'Bruce', 'D', 'Martinez', '0', '1959-06-09', 'M', 'NULL', 'M', 'bruce17@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '329 Shelly Dr', 'NULL', '1 (11) 500 555-0119', '2011-05-31', '1-2 Miles'], ['18453', '539', 'AW00018453', 'NULL', 'Caroline', 'A', 'Patterson', '0', '1982-11-30', 'S', 'NULL', 'F', 'caroline11@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9901 Sequoia Woods Pl', 'NULL', '183-555-0169', '2013-11-04', '5-10 Miles'], ['18454', '301', 'AW00018454', 'NULL', 'George', 'C', 'Perez', '0', '1983-05-23', 'S', 'NULL', 'M', 'george28@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9365 G St.', 'NULL', '296-555-0110', '2013-01-29', '5-10 Miles'], ['18455', '312', 'AW00018455', 'NULL', 'Alejandro', 'NULL', 'Wu', '0', '1983-03-25', 'M', 'NULL', 'M', 'alejandro9@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3799 Hilton Way', 'NULL', '284-555-0143', '2013-11-16', '1-2 Miles'], ['18456', '326', 'AW00018456', 'NULL', 'Timothy', 'L', 'Bailey', '0', '1983-03-05', 'S', 'NULL', 'M', 'timothy17@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '896 Shannon Lane', 'NULL', '871-555-0120', '2013-11-04', '1-2 Miles'], ['18457', '19', 'AW00018457', 'NULL', 'Olivia', 'E', 'White', '0', '1961-01-12', 'M', 'NULL', 'F', 'olivia12@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5206 Damascus Loop', 'NULL', '1 (11) 500 555-0193', '2011-06-07', '1-2 Miles'], ['18458', '35', 'AW00018458', 'NULL', 'Gregory', 'NULL', 'She', '0', '1961-04-08', 'S', 'NULL', 'M', 'gregory5@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5324 Horseshoe Circle', 'NULL', '1 (11) 500 555-0196', '2011-06-20', '5-10 Miles'], ['18459', '311', 'AW00018459', 'NULL', 'Toni', 'NULL', 'Sai', '0', '1985-07-10', 'S', 'NULL', 'F', 'toni5@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5275 Whitehall Drive', 'NULL', '449-555-0139', '2013-06-01', '1-2 Miles'], ['18460', '368', 'AW00018460', 'NULL', 'Faith', 'NULL', 'Butler', '0', '1985-10-07', 'S', 'NULL', 'F', 'faith13@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3704 Panoramic Drive', 'NULL', '134-555-0152', '2013-12-05', '0-1 Miles'], ['18461', '16', 'AW00018461', 'NULL', 'Tina', 'J', 'Martinez', '0', '1958-01-11', 'M', 'NULL', 'F', 'tina19@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9093 Kirker Pass Road', 'NULL', '1 (11) 500 555-0118', '2011-06-14', '1-2 Miles'], ['18462', '39', 'AW00018462', 'NULL', 'Clarence', 'A', 'Zhu', '0', '1957-07-17', 'M', 'NULL', 'M', 'clarence7@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1265 Orchard Ln', 'NULL', '1 (11) 500 555-0151', '2011-06-22', '5-10 Miles'], ['18463', '5', 'AW00018463', 'NULL', 'Adriana', 'NULL', 'Suri', '0', '1958-01-08', 'M', 'NULL', 'F', 'adriana0@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8254 North Ridge Drive', 'NULL', '1 (11) 500 555-0196', '2011-06-14', '5-10 Miles'], ['18464', '10', 'AW00018464', 'NULL', 'Toni', 'NULL', 'Suri', '0', '1958-03-22', 'M', 'NULL', 'F', 'toni0@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4682 Sunset Meadows Ln', 'NULL', '1 (11) 500 555-0194', '2011-06-24', '5-10 Miles'], ['18465', '39', 'AW00018465', 'NULL', 'Jamie', 'S', 'Yang', '0', '1963-02-18', 'S', 'NULL', 'F', 'jamie7@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2111 Freedom Court', 'NULL', '1 (11) 500 555-0124', '2011-06-04', '5-10 Miles'], ['18466', '30', 'AW00018466', 'NULL', 'Joy', 'A', 'Gutierrez', '0', '1964-03-08', 'M', 'NULL', 'F', 'joy12@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6396 Market Place', 'NULL', '1 (11) 500 555-0128', '2013-11-11', '5-10 Miles'], ['18467', '23', 'AW00018467', 'NULL', 'Darren', 'NULL', 'Townsend', '0', '1970-05-20', 'S', 'NULL', 'M', 'darren34@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7918 Snyder Lane', 'NULL', '1 (11) 500 555-0165', '2011-06-07', '5-10 Miles'], ['18468', '4', 'AW00018468', 'NULL', 'Joel', 'NULL', 'Sanchez', '0', '1958-11-01', 'S', 'NULL', 'M', 'joel19@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2773 Bonifacio Street', 'NULL', '1 (11) 500 555-0135', '2011-06-14', '5-10 Miles'], ['18469', '35', 'AW00018469', 'NULL', 'Robyn', 'A', 'Rubio', '0', '1959-09-07', 'S', 'NULL', 'F', 'robyn17@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1940 Nulty Drive', 'NULL', '1 (11) 500 555-0159', '2011-06-22', '1-2 Miles'], ['18470', '36', 'AW00018470', 'NULL', 'Jennifer', 'NULL', 'Taylor', '0', '1960-04-17', 'S', 'NULL', 'F', 'jennifer37@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7461 Megan Dr.', 'NULL', '1 (11) 500 555-0110', '2011-06-10', '1-2 Miles'], ['18471', '612', 'AW00018471', 'NULL', 'Paige', 'J', 'Stewart', '0', '1986-02-13', 'S', 'NULL', 'F', 'paige47@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3980 Park Glenn', 'NULL', '260-555-0145', '2013-07-18', '1-2 Miles'], ['18472', '633', 'AW00018472', 'NULL', 'Hannah', 'C', 'Ross', '0', '1980-12-01', 'S', 'NULL', 'F', 'hannah27@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7986 Southdale', 'NULL', '561-555-0115', '2014-01-04', '5-10 Miles'], ['18473', '331', 'AW00018473', 'NULL', 'Nathaniel', 'J', 'Rogers', '0', '1980-11-23', 'M', 'NULL', 'M', 'nathaniel21@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2075 Alvina Dr.', 'NULL', '678-555-0114', '2013-08-06', '5-10 Miles'], ['18474', '337', 'AW00018474', 'NULL', 'James', 'NULL', 'Smith', '0', '1981-01-07', 'M', 'NULL', 'M', 'james75@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6013 Meier Road', 'NULL', '505-555-0184', '2013-10-02', '5-10 Miles'], ['18475', '648', 'AW00018475', 'NULL', 'Natalie', 'T', 'Brown', '0', '1979-11-23', 'S', 'NULL', 'F', 'natalie72@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '974 Peach Place', 'NULL', '244-555-0121', '2013-07-04', '1-2 Miles'], ['18476', '299', 'AW00018476', 'NULL', 'Brooke', 'NULL', 'Rogers', '0', '1985-08-13', 'S', 'NULL', 'F', 'brooke17@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '657 West M Street', 'NULL', '457-555-0144', '2013-07-04', '1-2 Miles'], ['18477', '336', 'AW00018477', 'NULL', 'Angelica', 'G', 'Hughes', '0', '1979-02-07', 'S', 'NULL', 'F', 'angelica11@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6622 First Ave.', 'NULL', '113-555-0156', '2013-02-23', '1-2 Miles'], ['18478', '298', 'AW00018478', 'NULL', 'Eduardo', 'B', 'Roberts', '0', '1984-10-01', 'M', 'NULL', 'M', 'eduardo37@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3341 Teakwood Dr', 'NULL', '907-555-0129', '2013-12-07', '5-10 Miles'], ['18479', '612', 'AW00018479', 'NULL', 'Stacey', 'G', 'Chen', '0', '1979-04-18', 'M', 'NULL', 'F', 'stacey2@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8470 Cliffside Drive', 'NULL', '997-555-0119', '2013-12-18', '5-10 Miles'], ['18480', '302', 'AW00018480', 'NULL', 'Heidi', 'NULL', 'Suri', '0', '1979-01-06', 'S', 'NULL', 'F', 'heidi2@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1542 Orwood Dr', 'NULL', '280-555-0183', '2013-12-18', '5-10 Miles'], ['18481', '310', 'AW00018481', 'NULL', 'Tanya', 'A', 'Romero', '0', '1978-09-11', 'M', 'NULL', 'F', 'tanya5@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9050 Blue Ridge Dr.', 'NULL', '464-555-0150', '2013-12-04', '5-10 Miles'], ['18482', '2', 'AW00018482', 'NULL', 'Sharon', 'NULL', 'Nara', '0', '1961-03-14', 'S', 'NULL', 'F', 'sharon22@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1930 Many Lane', 'NULL', '1 (11) 500 555-0178', '2011-06-21', '1-2 Miles'], ['18483', '30', 'AW00018483', 'NULL', 'Byron', 'J', 'Gill', '0', '1971-09-03', 'S', 'NULL', 'M', 'byron8@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9924 Trinidad', 'NULL', '1 (11) 500 555-0180', '2011-06-27', '1-2 Miles'], ['18484', '3', 'AW00018484', 'NULL', 'Dustin', 'M', 'Sharma', '0', '1972-06-10', 'S', 'NULL', 'M', 'dustin9@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4262 Monterey Ave.', 'NULL', '1 (11) 500 555-0113', '2011-06-07', '1-2 Miles'], ['18485', '35', 'AW00018485', 'NULL', 'Devin', 'NULL', 'Gonzalez', '0', '1961-05-20', 'S', 'NULL', 'M', 'devin31@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9618 San Rafael', 'NULL', '1 (11) 500 555-0110', '2011-06-25', '5-10 Miles'], ['18486', '17', 'AW00018486', 'NULL', 'Kari', 'NULL', 'Torres', '0', '1962-06-05', 'S', 'NULL', 'F', 'kari32@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4006 Jane Ct', 'NULL', '1 (11) 500 555-0140', '2011-06-02', '5-10 Miles'], ['18487', '39', 'AW00018487', 'NULL', 'Tasha', 'J', 'Nath', '0', '1962-04-09', 'S', 'NULL', 'F', 'tasha19@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4992 Yorba Linda', 'NULL', '1 (11) 500 555-0159', '2011-06-07', '1-2 Miles'], ['18488', '27', 'AW00018488', 'NULL', 'Clayton', 'NULL', 'Xu', '0', '1961-11-20', 'M', 'NULL', 'M', 'clayton11@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9510 Roskelley Drive', 'NULL', '1 (11) 500 555-0176', '2011-06-02', '5-10 Miles'], ['18489', '15', 'AW00018489', 'NULL', 'Johnny', 'R', 'Nara', '0', '1973-03-12', 'M', 'NULL', 'M', 'johnny18@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7800 Olivera Rd.', 'NULL', '1 (11) 500 555-0141', '2011-06-15', '5-10 Miles'], ['18490', '25', 'AW00018490', 'NULL', 'Brad', 'S', 'Rai', '0', '1968-11-19', 'S', 'NULL', 'M', 'brad18@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '7305 Ten Penny Lane', 'NULL', '1 (11) 500 555-0189', '2011-06-18', '5-10 Miles'], ['18491', '3', 'AW00018491', 'NULL', 'Michele', 'D', 'Gonzalez', '0', '1962-11-24', 'S', 'NULL', 'F', 'michele32@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2748 Anyway St.', 'NULL', '1 (11) 500 555-0119', '2011-06-14', '5-10 Miles'], ['18492', '17', 'AW00018492', 'NULL', 'Tamara', 'H', 'Johnston', '0', '1964-04-11', 'S', 'NULL', 'F', 'tamara22@adventure-works.com', '100000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7518 Pepperridge Place', 'NULL', '1 (11) 500 555-0194', '2013-07-01', '2-5 Miles'], ['18493', '7', 'AW00018493', 'NULL', 'Kaitlin', 'NULL', 'McDonald', '0', '1969-08-30', 'M', 'NULL', 'F', 'kaitlin14@adventure-works.com', '100000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '3543 Lori Dr.', 'Apt 110c', '1 (11) 500 555-0134', '2011-06-16', '2-5 Miles'], ['18494', '4', 'AW00018494', 'NULL', 'Marcus', 'A', 'Young', '0', '1963-11-04', 'M', 'NULL', 'M', 'marcus27@adventure-works.com', '110000.00', '5', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '7791 Running Springs Road', 'NULL', '1 (11) 500 555-0149', '2011-06-28', '2-5 Miles'], ['18495', '35', 'AW00018495', 'NULL', 'Jeremy', 'E', 'Phillips', '0', '1969-08-30', 'S', 'NULL', 'M', 'jeremy16@adventure-works.com', '120000.00', '5', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '275 South Ranchford Ct', 'NULL', '1 (11) 500 555-0187', '2011-06-07', '2-5 Miles'], ['18496', '25', 'AW00018496', 'NULL', 'Vincent', 'NULL', 'Zheng', '0', '1969-02-01', 'S', 'NULL', 'M', 'vincent19@adventure-works.com', '130000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '7199 Santa Fe Dr.', 'NULL', '1 (11) 500 555-0193', '2011-06-10', '0-1 Miles'], ['18497', '553', 'AW00018497', 'NULL', 'Fernando', 'W', 'Evans', '0', '1979-02-16', 'S', 'NULL', 'M', 'fernando41@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '9314 Icicle Way', 'NULL', '462-555-0162', '2013-12-10', '0-1 Miles'], ['18498', '355', 'AW00018498', 'NULL', 'Zachary', 'NULL', 'Russell', '0', '1979-01-15', 'S', 'NULL', 'M', 'zachary18@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '805 Pinecrest Rd', 'NULL', '373-555-0150', '2013-09-08', '2-5 Miles'], ['18499', '612', 'AW00018499', 'NULL', 'Darren', 'I', 'Rodriguez', '0', '1979-11-17', 'S', 'NULL', 'M', 'darren20@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5414 Cambelback Place', 'NULL', '122-555-0199', '2014-01-18', '5-10 Miles'], ['18500', '539', 'AW00018500', 'NULL', 'Jose', 'NULL', 'Brown', '0', '1979-12-23', 'M', 'NULL', 'M', 'jose61@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4597 Sunshine Drive', 'NULL', '802-555-0182', '2013-12-11', '5-10 Miles'], ['18501', '644', 'AW00018501', 'NULL', 'Alexandra', 'NULL', 'Powell', '0', '1980-02-08', 'S', 'NULL', 'F', 'alexandra32@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '7955 Cleveland Rd.', 'NULL', '528-555-0141', '2013-10-02', '1-2 Miles'], ['18502', '307', 'AW00018502', 'NULL', 'Pamela', 'NULL', 'Madan', '0', '1980-04-02', 'M', 'NULL', 'F', 'pamela10@adventure-works.com', '60000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8494 Rollingwood Dr.', 'NULL', '481-555-0164', '2013-10-04', '5-10 Miles'], ['18503', '368', 'AW00018503', 'NULL', 'Timothy', 'E', 'Peterson', '0', '1971-11-13', 'S', 'NULL', 'M', 'timothy6@adventure-works.com', '150000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '6837 Pirate Lane', 'NULL', '825-555-0169', '2014-01-25', '5-10 Miles'], ['18504', '302', 'AW00018504', 'NULL', 'Angel', 'NULL', 'Adams', '0', '1962-08-06', 'M', 'NULL', 'M', 'angel37@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9556 Lyman Rd.', 'NULL', '467-555-0126', '2013-07-09', '1-2 Miles'], ['18505', '360', 'AW00018505', 'NULL', 'Carol', 'NULL', 'Scott', '0', '1963-05-04', 'M', 'NULL', 'F', 'carol14@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '1837 North Main St.', 'NULL', '380-555-0153', '2014-01-21', '1-2 Miles'], ['18506', '52', 'AW00018506', 'NULL', 'Evan', 'NULL', 'Bradley', '0', '1962-07-17', 'M', 'NULL', 'M', 'evan15@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '5348 Maryland Dr.', 'NULL', '127-555-0111', '2013-06-24', '5-10 Miles'], ['18507', '360', 'AW00018507', 'NULL', 'Edward', 'NULL', 'Baker', '0', '1963-01-10', 'M', 'NULL', 'M', 'edward9@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '7439 Laguna Niguel', 'NULL', '309-555-0161', '2014-01-03', '5-10 Miles'], ['18508', '299', 'AW00018508', 'NULL', 'Michele', 'NULL', 'Chander', '0', '1963-01-21', 'S', 'NULL', 'F', 'michele16@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '2785 Snow Drive', 'NULL', '164-555-0130', '2013-12-13', '5-10 Miles'], ['18509', '352', 'AW00018509', 'NULL', 'Xavier', 'G', 'Foster', '0', '1972-10-10', 'M', 'NULL', 'M', 'xavier56@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '9458 Flame Drive', 'NULL', '580-555-0159', '2013-05-21', '1-2 Miles'], ['18510', '383', 'AW00018510', 'NULL', 'Samuel', 'A', 'Washington', '0', '1961-08-25', 'S', 'NULL', 'M', 'samuel12@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6290 Chinquapin Court', 'NULL', '968-555-0187', '2013-05-01', '5-10 Miles'], ['18511', '343', 'AW00018511', 'NULL', 'Mya', 'NULL', 'Jenkins', '0', '1961-11-20', 'S', 'NULL', 'F', 'mya9@adventure-works.com', '70000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4595 Sudden Loop', 'NULL', '339-555-0115', '2013-12-15', '5-10 Miles'], ['18512', '336', 'AW00018512', 'NULL', 'Alex', 'L', 'Torres', '0', '1961-12-06', 'M', 'NULL', 'M', 'alex7@adventure-works.com', '70000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '3497 Springvale Court', 'NULL', '438-555-0146', '2013-12-06', '0-1 Miles'], ['18513', '302', 'AW00018513', 'NULL', 'Edwin', 'NULL', 'Xu', '0', '1962-05-19', 'M', 'NULL', 'M', 'edwin27@adventure-works.com', '70000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '3396 El Dorado Way', 'NULL', '766-555-0140', '2013-12-05', '5-10 Miles'], ['18514', '298', 'AW00018514', 'NULL', 'Anne', 'NULL', 'Romero', '0', '1962-06-16', 'S', 'NULL', 'F', 'anne10@adventure-works.com', '70000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5781 Sharon Dr.', 'NULL', '332-555-0141', '2013-12-07', '5-10 Miles'], ['18515', '545', 'AW00018515', 'NULL', 'Gabrielle', 'NULL', 'Patterson', '0', '1962-01-05', 'M', 'NULL', 'F', 'gabrielle33@adventure-works.com', '70000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '4224 Almond Avve', 'NULL', '322-555-0185', '2013-12-15', '0-1 Miles'], ['18516', '635', 'AW00018516', 'NULL', 'Juan', 'NULL', 'Brooks', '0', '1938-02-04', 'S', 'NULL', 'M', 'juan11@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6576 Lime Ridge Dr.', 'NULL', '816-555-0165', '2013-12-26', '5-10 Miles'], ['18517', '618', 'AW00018517', 'NULL', 'Tristan', 'NULL', 'Diaz', '0', '1981-08-30', 'M', 'NULL', 'M', 'tristan21@adventure-works.com', '100000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '1781 Old Mt. View Drive', 'NULL', '343-555-0184', '2013-09-16', '0-1 Miles'], ['18518', '626', 'AW00018518', 'NULL', 'Stephanie', 'NULL', 'Scott', '0', '1970-11-09', 'S', 'NULL', 'F', 'stephanie58@adventure-works.com', '100000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '7177 Marsh Drive', 'NULL', '720-555-0158', '2013-12-22', '2-5 Miles'], ['18519', '298', 'AW00018519', 'NULL', 'Alex', 'NULL', 'Cook', '0', '1976-08-20', 'M', 'NULL', 'M', 'alex25@adventure-works.com', '100000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '6692 Black Walnut Court', 'NULL', '628-555-0114', '2013-12-07', '2-5 Miles'], ['18520', '307', 'AW00018520', 'NULL', 'Rafael', 'D', 'Huang', '0', '1971-05-27', 'M', 'NULL', 'M', 'rafael6@adventure-works.com', '110000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '4124 Escobar St', 'NULL', '100-555-0197', '2013-04-16', '1-2 Miles'], ['18521', '307', 'AW00018521', 'NULL', 'Meghan', 'E', 'Rowe', '0', '1976-03-16', 'M', 'NULL', 'F', 'meghan20@adventure-works.com', '110000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '5325 Pinecreek Way', 'NULL', '120-555-0115', '2013-03-18', '1-2 Miles'], ['18522', '337', 'AW00018522', 'NULL', 'Jeremiah', 'L', 'Smith', '0', '1976-03-04', 'M', 'NULL', 'M', 'jeremiah24@adventure-works.com', '130000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '6124 Clay Road', 'NULL', '946-555-0172', '2013-03-24', '0-1 Miles'], ['18523', '53', 'AW00018523', 'NULL', 'Samuel', 'M', 'Foster', '0', '1970-01-10', 'M', 'NULL', 'M', 'samuel15@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '269 Red Leaf Way', 'NULL', '718-555-0125', '2013-03-17', '2-5 Miles'], ['18524', '60', 'AW00018524', 'NULL', 'Edward', 'E', 'Alexander', '0', '1975-03-22', 'M', 'NULL', 'M', 'edward67@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '9755 Glen Road', 'NULL', '139-555-0181', '2013-08-19', '0-1 Miles'], ['18525', '53', 'AW00018525', 'NULL', 'Jack', 'R', 'Lal', '0', '1968-09-29', 'M', 'NULL', 'M', 'jack30@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1306 B St.', 'NULL', '580-555-0160', '2013-12-06', '0-1 Miles'], ['18526', '360', 'AW00018526', 'NULL', 'Kevin', 'NULL', 'Hernandez', '0', '1973-12-20', 'S', 'NULL', 'M', 'kevin56@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4635 Patterson Court', 'NULL', '140-555-0154', '2013-12-24', '2-5 Miles'], ['18527', '642', 'AW00018527', 'NULL', 'Jonathan', 'B', 'Baker', '0', '1973-08-24', 'M', 'NULL', 'M', 'jonathan45@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1560 Harbor View Drive', 'NULL', '110-555-0142', '2013-11-29', '2-5 Miles'], ['18528', '334', 'AW00018528', 'NULL', 'John', 'M', 'Rodriguez', '0', '1968-05-02', 'M', 'NULL', 'M', 'john54@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5371 El Pintado Road', 'NULL', '582-555-0179', '2013-12-05', '2-5 Miles'], ['18529', '602', 'AW00018529', 'NULL', 'Albert', 'W', 'Castro', '0', '1966-08-19', 'S', 'NULL', 'M', 'albert18@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '1083 W. Hookston Road', 'NULL', '322-555-0132', '2014-01-28', '5-10 Miles'], ['18530', '638', 'AW00018530', 'NULL', 'Wyatt', 'M', 'Evans', '0', '1948-06-18', 'M', 'NULL', 'M', 'wyatt46@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6532 Pinecrest Rd', '#508', '616-555-0157', '2013-02-18', '10+ Miles'], ['18531', '329', 'AW00018531', 'NULL', 'Thomas', 'NULL', 'Simmons', '0', '1947-08-14', 'S', 'NULL', 'M', 'thomas17@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1207 Erie Dr', 'NULL', '804-555-0129', '2013-09-09', '10+ Miles'], ['18532', '618', 'AW00018532', 'NULL', 'Marcus', 'NULL', 'Russell', '0', '1947-11-07', 'M', 'NULL', 'M', 'marcus69@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '253 Marfargoa Drive', 'NULL', '157-555-0150', '2013-12-16', '10+ Miles'], ['18533', '383', 'AW00018533', 'NULL', 'Lucas', 'S', 'Martinez', '0', '1959-02-19', 'M', 'NULL', 'M', 'lucas31@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9295 Arcadia Pl', 'NULL', '984-555-0111', '2013-12-23', '10+ Miles'], ['18534', '637', 'AW00018534', 'NULL', 'Hunter', 'NULL', 'Collins', '0', '1949-05-26', 'M', 'NULL', 'M', 'hunter31@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7407 Spring Water St.', 'NULL', '200-555-0190', '2013-03-03', '1-2 Miles'], ['18535', '49', 'AW00018535', 'NULL', 'Donald', 'NULL', 'Kapoor', '0', '1949-04-05', 'S', 'NULL', 'M', 'donald3@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1830 Tabora Drive', 'NULL', '274-555-0190', '2014-01-02', '10+ Miles'], ['18536', '343', 'AW00018536', 'NULL', 'Hailey', 'J', 'Coleman', '0', '1948-09-18', 'M', 'NULL', 'F', 'hailey27@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9231 Santa Ana Drive', 'NULL', '671-555-0191', '2013-11-08', '1-2 Miles'], ['18537', '300', 'AW00018537', 'NULL', 'Kathryn', 'L', 'Carson', '0', '1948-07-03', 'S', 'NULL', 'F', 'kathryn13@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4370 Trafalgar Circle', 'NULL', '666-555-0130', '2013-12-06', '10+ Miles'], ['18538', '618', 'AW00018538', 'NULL', 'Ian', 'NULL', 'Mitchell', '0', '1949-03-13', 'S', 'NULL', 'M', 'ian33@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5186 Elmhurst Lane', 'NULL', '752-555-0198', '2013-12-23', '10+ Miles'], ['18539', '326', 'AW00018539', 'NULL', 'Riley', 'M', 'Russell', '0', '1954-02-14', 'M', 'NULL', 'F', 'riley17@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '535 La Salle Street', 'NULL', '401-555-0112', '2013-12-26', '1-2 Miles'], ['18540', '322', 'AW00018540', 'NULL', 'Victoria', 'M', 'Perry', '0', '1948-12-25', 'S', 'NULL', 'F', 'victoria55@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5717 Shenandoah Drive', 'NULL', '522-555-0115', '2013-12-25', '10+ Miles'], ['18541', '71', 'AW00018541', 'NULL', 'Kayla', 'C', 'Jones', '0', '1949-01-02', 'M', 'NULL', 'F', 'kayla3@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9516 Village Road', 'NULL', '206-555-0113', '2013-04-02', '5-10 Miles'], ['18542', '612', 'AW00018542', 'NULL', 'Dustin', 'E', 'She', '0', '1948-12-30', 'M', 'NULL', 'M', 'dustin0@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4627 Lakefield Place', 'NULL', '779-555-0113', '2013-07-08', '5-10 Miles'], ['18543', '326', 'AW00018543', 'NULL', 'Dalton', 'R', 'Wilson', '0', '1955-03-21', 'M', 'NULL', 'M', 'dalton6@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '5703 Rose Dr', 'NULL', '116-555-0143', '2013-10-09', '10+ Miles'], ['18544', '69', 'AW00018544', 'NULL', 'Riley', 'L', 'Washington', '0', '1950-05-31', 'M', 'NULL', 'F', 'riley11@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '5194 Mendouno Dr', 'NULL', '708-555-0131', '2013-01-01', '10+ Miles'], ['18545', '623', 'AW00018545', 'NULL', 'Ian', 'L', 'Clark', '0', '1955-11-08', 'M', 'NULL', 'M', 'ian17@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '4794 Curtis Drive', 'NULL', '185-555-0165', '2013-10-05', '10+ Miles'], ['18546', '420', 'AW00018546', 'NULL', 'Pieter', 'NULL', 'Wycoff', '0', '1977-12-21', 'M', 'NULL', 'F', 'pieter0@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3794 Francine Court', 'NULL', '354-555-0161', '2013-04-13', '2-5 Miles'], ['18547', '358', 'AW00018547', 'NULL', 'Ethan', 'L', 'Johnson', '0', '1983-03-03', 'M', 'NULL', 'M', 'ethan30@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4049 Hale Court', 'NULL', '621-555-0123', '2013-12-24', '0-1 Miles'], ['18548', '343', 'AW00018548', 'NULL', 'Jordan', 'E', 'Powell', '0', '1981-02-03', 'M', 'NULL', 'M', 'jordan5@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4201 San Carlos', 'NULL', '382-555-0134', '2013-10-06', '2-5 Miles'], ['18549', '69', 'AW00018549', 'NULL', 'Sierra', 'NULL', 'Collins', '0', '1976-04-11', 'M', 'NULL', 'F', 'sierra2@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9627 Kendall Rd', 'NULL', '756-555-0178', '2013-02-20', '2-5 Miles'], ['18550', '372', 'AW00018550', 'NULL', 'Julia', 'R', 'Griffin', '0', '1976-04-18', 'M', 'NULL', 'F', 'julia87@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3382 Greer Ave', 'NULL', '305-555-0182', '2013-12-06', '0-1 Miles'], ['18551', '616', 'AW00018551', 'NULL', 'Chloe', 'E', 'Hall', '0', '1975-10-03', 'M', 'NULL', 'F', 'chloe21@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '210 Stanley Dollar Dr.', 'NULL', '710-555-0180', '2013-09-29', '2-5 Miles'], ['18552', '311', 'AW00018552', 'NULL', 'Kelsey', 'NULL', 'Goel', '0', '1976-04-02', 'M', 'NULL', 'F', 'kelsey18@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9376 Cross Road', 'NULL', '129-555-0179', '2013-03-17', '0-1 Miles'], ['18553', '542', 'AW00018553', 'NULL', 'Alex', 'K', 'Roberts', '0', '1976-01-04', 'M', 'NULL', 'M', 'alex32@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7889 Mitchelleanjen Ln.', 'NULL', '780-555-0125', '2013-10-05', '2-5 Miles'], ['18554', '60', 'AW00018554', 'NULL', 'Isabelle', 'D', 'Ross', '0', '1976-05-17', 'M', 'NULL', 'F', 'isabelle4@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1140 Panoramic Drive', 'NULL', '562-555-0128', '2013-03-17', '0-1 Miles'], ['18555', '374', 'AW00018555', 'NULL', 'Muniraju', 'NULL', 'Pulipalyam', '0', '1976-04-15', 'M', 'NULL', 'F', 'muniraju0@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4606 Charming Court', 'NULL', '162-555-0173', '2014-01-08', '0-1 Miles'], ['18556', '311', 'AW00018556', 'NULL', 'Ruben', 'NULL', 'Perez', '0', '1975-04-02', 'M', 'NULL', 'M', 'ruben22@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6211 Blenheim Way', 'NULL', '410-555-0158', '2013-10-28', '2-5 Miles'], ['18557', '49', 'AW00018557', 'NULL', 'Bailey', 'R', 'Lopez', '0', '1976-09-16', 'M', 'NULL', 'F', 'bailey41@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8486 Julpum Loop', 'NULL', '444-555-0141', '2013-02-11', '2-5 Miles'], ['18558', '635', 'AW00018558', 'NULL', 'Alexandra', 'C', 'Price', '0', '1977-03-21', 'M', 'NULL', 'F', 'alexandra23@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '386 Woodpine', 'NULL', '942-555-0159', '2013-10-17', '0-1 Miles'], ['18559', '638', 'AW00018559', 'NULL', 'Lucas', 'NULL', 'Adams', '0', '1982-12-13', 'M', 'NULL', 'M', 'lucas47@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2500 Ward Court', 'NULL', '300-555-0118', '2013-10-20', '2-5 Miles'], ['18560', '301', 'AW00018560', 'NULL', 'Anna', 'S', 'Miller', '0', '1982-10-29', 'M', 'NULL', 'F', 'anna67@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2073 Hilltop Road', 'NULL', '160-555-0184', '2013-12-05', '2-5 Miles'], ['18561', '310', 'AW00018561', 'NULL', 'Carol', 'A', 'Torres', '0', '1977-01-15', 'S', 'NULL', 'F', 'carol10@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9117 Jacqueline Way', 'NULL', '237-555-0161', '2013-12-27', '2-5 Miles'], ['18562', '347', 'AW00018562', 'NULL', 'Mary', 'P', 'Wright', '0', '1974-12-14', 'M', 'NULL', 'F', 'mary33@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5745 St. Paul Way', 'NULL', '160-555-0188', '2013-10-10', '0-1 Miles'], ['18563', '352', 'AW00018563', 'NULL', 'Evan', 'R', 'Sanchez', '0', '1980-06-04', 'M', 'NULL', 'M', 'evan19@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2950 Polaris Dr.', 'NULL', '138-555-0163', '2013-11-25', '0-1 Miles'], ['18564', '326', 'AW00018564', 'NULL', 'John', 'T', 'Moore', '0', '1978-05-03', 'S', 'NULL', 'M', 'john45@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5117 Oak Creek Ct.', 'NULL', '171-555-0191', '2013-10-29', '2-5 Miles'], ['18565', '543', 'AW00018565', 'NULL', 'Dalton', 'C', 'Bryant', '0', '1975-09-12', 'M', 'NULL', 'M', 'dalton64@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1798 Westbury Dr.', 'NULL', '389-555-0150', '2013-11-22', '2-5 Miles'], ['18566', '314', 'AW00018566', 'NULL', 'Bryce', 'NULL', 'Peterson', '0', '1976-03-16', 'M', 'NULL', 'M', 'bryce5@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6451 Greenwood Pl.', 'NULL', '492-555-0163', '2013-12-15', '0-1 Miles'], ['18567', '361', 'AW00018567', 'NULL', 'Madison', 'NULL', 'Barnes', '0', '1972-07-03', 'S', 'NULL', 'F', 'madison38@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2975 Roslyn Road', 'NULL', '625-555-0162', '2013-11-16', '2-5 Miles'], ['18568', '316', 'AW00018568', 'NULL', 'Mya', 'M', 'Bennett', '0', '1972-12-17', 'S', 'NULL', 'F', 'mya3@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3913 Euclid Ave.', 'NULL', '905-555-0121', '2013-11-16', '2-5 Miles'], ['18569', '548', 'AW00018569', 'NULL', 'Emma', 'E', 'Bryant', '0', '1971-10-03', 'M', 'NULL', 'F', 'emma64@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7909 Yorba Linda', 'NULL', '329-555-0133', '2013-02-06', '0-1 Miles'], ['18570', '51', 'AW00018570', 'NULL', 'Mason', 'A', 'Peterson', '0', '1971-10-20', 'S', 'NULL', 'M', 'mason6@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7438 Sony Hill Circle', 'NULL', '757-555-0144', '2013-03-09', '2-5 Miles'], ['18571', '68', 'AW00018571', 'NULL', 'Cameron', 'S', 'Kumar', '0', '1972-05-05', 'S', 'NULL', 'M', 'cameron24@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8785 Whitehall Drive', 'NULL', '571-555-0120', '2013-03-19', '2-5 Miles'], ['18572', '299', 'AW00018572', 'NULL', 'Danielle', 'NULL', 'Watson', '0', '1972-05-15', 'M', 'NULL', 'F', 'danielle3@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4986 Norse Drive', 'NULL', '668-555-0171', '2013-05-12', '0-1 Miles'], ['18573', '66', 'AW00018573', 'NULL', 'Andrea', 'NULL', 'Phillips', '0', '1971-12-15', 'M', 'NULL', 'F', 'andrea31@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5484 Cornwall Court', 'NULL', '936-555-0114', '2013-05-26', '0-1 Miles'], ['18574', '338', 'AW00018574', 'NULL', 'Kaitlyn', 'L', 'Taylor', '0', '1972-04-18', 'M', 'NULL', 'F', 'kaitlyn31@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4215 Greenhills Circle', 'NULL', '798-555-0110', '2013-03-29', '0-1 Miles'], ['18575', '315', 'AW00018575', 'NULL', 'Erin', 'R', 'Stewart', '0', '1972-04-12', 'M', 'NULL', 'F', 'erin26@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8853 Spring Hill Drive', 'NULL', '805-555-0162', '2013-10-15', '2-5 Miles'], ['18576', '385', 'AW00018576', 'NULL', 'Emily', 'NULL', 'Coleman', '0', '1983-01-09', 'M', 'NULL', 'F', 'emily30@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4125 Adobe Dr.', 'NULL', '165-555-0130', '2013-11-16', '2-5 Miles'], ['18577', '358', 'AW00018577', 'NULL', 'Isabelle', 'C', 'Winston', '0', '1971-12-20', 'M', 'NULL', 'F', 'isabelle12@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3876 Berry Court', 'NULL', '159-555-0119', '2013-03-05', '0-1 Miles'], ['18578', '347', 'AW00018578', 'NULL', 'Patrick', 'M', 'Rogers', '0', '1971-12-11', 'S', 'NULL', 'M', 'patrick24@adventure-works.com', '70000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9806 North Star Dr.', 'NULL', '306-555-0183', '2013-12-10', '2-5 Miles'], ['18579', '536', 'AW00018579', 'NULL', 'William', 'M', 'Brown', '0', '1977-03-11', 'M', 'NULL', 'M', 'william20@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9526 Baird Court', 'NULL', '743-555-0151', '2013-10-28', '2-5 Miles'], ['18580', '52', 'AW00018580', 'NULL', 'Emma', 'A', 'Anderson', '0', '1980-10-06', 'M', 'NULL', 'F', 'emma9@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7554 Grammercy Lane', 'NULL', '154-555-0154', '2013-04-13', '2-5 Miles'], ['18581', '538', 'AW00018581', 'NULL', 'Melinda', 'NULL', 'Dominguez', '0', '1980-06-04', 'S', 'NULL', 'F', 'melinda8@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7776 Partridge Dr.', 'NULL', '344-555-0119', '2013-12-12', '2-5 Miles'], ['18582', '627', 'AW00018582', 'NULL', 'Bryan', 'NULL', 'Morgan', '0', '1974-07-25', 'M', 'NULL', 'M', 'bryan13@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6595 Trailview Circle', 'NULL', '626-555-0137', '2013-12-17', '0-1 Miles'], ['18583', '634', 'AW00018583', 'NULL', 'Luis', 'NULL', 'Kumar', '0', '1975-01-14', 'S', 'NULL', 'M', 'luis28@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '9507 MountainAire Drive', 'NULL', '160-555-0157', '2013-02-08', '2-5 Miles'], ['18584', '637', 'AW00018584', 'NULL', 'Haley', 'NULL', 'Evans', '0', '1985-07-16', 'M', 'NULL', 'F', 'haley42@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '2', '7569 Sierra Drive', '# 105', '849-555-0179', '2013-03-08', '0-1 Miles'], ['18585', '298', 'AW00018585', 'NULL', 'Katherine', 'NULL', 'Blue', '0', '1975-02-24', 'M', 'NULL', 'F', 'katherine9@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '8837 Paris Lane', 'NULL', '884-555-0184', '2013-10-27', '0-1 Miles'], ['18586', '326', 'AW00018586', 'NULL', 'Benjamin', 'NULL', 'Patterson', '0', '1975-02-19', 'S', 'NULL', 'M', 'benjamin11@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2934 Treat Blvd', 'NULL', '178-555-0184', '2013-12-26', '0-1 Miles'], ['18587', '612', 'AW00018587', 'NULL', 'Monica', 'NULL', 'Arun', '0', '1971-02-01', 'S', 'NULL', 'F', 'monica7@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1747 Corte Segundo', 'NULL', '943-555-0153', '2013-10-17', '2-5 Miles'], ['18588', '637', 'AW00018588', 'NULL', 'Isabella', 'NULL', 'Rogers', '0', '1971-05-18', 'S', 'NULL', 'F', 'isabella84@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1946 Valley Crest Drive', 'NULL', '199-555-0140', '2013-10-03', '2-5 Miles'], ['18589', '611', 'AW00018589', 'NULL', 'Anna', 'NULL', 'Stewart', '0', '1976-07-01', 'S', 'NULL', 'F', 'anna2@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '2482 Buckingham Dr.', 'NULL', '680-555-0159', '2013-11-15', '0-1 Miles'], ['18590', '301', 'AW00018590', 'NULL', 'Valerie', 'R', 'Sun', '0', '1971-03-23', 'S', 'NULL', 'F', 'valerie15@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5965 Sugarland Circle', 'NULL', '578-555-0190', '2013-05-22', '2-5 Miles'], ['18591', '337', 'AW00018591', 'NULL', 'Eduardo', 'A', 'Nelson', '0', '1970-11-09', 'M', 'NULL', 'M', 'eduardo33@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7613 Orangewood Dr', 'NULL', '936-555-0134', '2013-03-06', '0-1 Miles'], ['18592', '545', 'AW00018592', 'NULL', 'Mackenzie', 'NULL', 'Evans', '0', '1971-03-09', 'S', 'NULL', 'F', 'mackenzie22@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9883 Sierra Rd', 'NULL', '414-555-0162', '2013-11-29', '2-5 Miles'], ['18593', '635', 'AW00018593', 'NULL', 'Sydney', 'C', 'Martinez', '0', '1970-12-31', 'S', 'NULL', 'F', 'sydney79@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5165 Cambridge Drive', 'NULL', '782-555-0110', '2013-03-04', '0-1 Miles'], ['18594', '301', 'AW00018594', 'NULL', 'Kristi', 'NULL', 'Garcia', '0', '1971-04-20', 'S', 'NULL', 'F', 'kristi32@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '2973 Tanager Road', 'NULL', '959-555-0163', '2013-12-16', '10+ Miles'], ['18595', '59', 'AW00018595', 'NULL', 'Marcus', 'NULL', 'Hernandez', '0', '1981-08-02', 'S', 'NULL', 'M', 'marcus28@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '2197 Clay Road', 'NULL', '735-555-0116', '2013-10-26', '10+ Miles'], ['18596', '310', 'AW00018596', 'NULL', 'Gabriella', 'L', 'Cooper', '0', '1970-12-11', 'S', 'NULL', 'F', 'gabriella16@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '5440 Klamath Woods Pl.', 'NULL', '736-555-0113', '2013-11-17', '0-1 Miles'], ['18597', '374', 'AW00018597', 'NULL', 'Isabel', 'NULL', 'Perry', '0', '1976-06-23', 'M', 'NULL', 'F', 'isabel8@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '590 Sudden Loop', 'NULL', '874-555-0125', '2013-11-16', '0-1 Miles'], ['18598', '358', 'AW00018598', 'NULL', 'Norimichi', 'NULL', 'Yonekura', '0', '1975-03-16', 'S', 'NULL', 'M', 'norimichi0@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6130 Alderwood Lane', 'NULL', '399-555-0174', '2013-11-16', '0-1 Miles'], ['18599', '618', 'AW00018599', 'NULL', 'Kyle', 'J', 'Simmons', '0', '1969-10-06', 'S', 'NULL', 'M', 'kyle10@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9249 Martin St', 'NULL', '283-555-0130', '2013-05-10', '2-5 Miles'], ['18600', '51', 'AW00018600', 'NULL', 'Ashley', 'C', 'Gonzales', '0', '1975-11-10', 'M', 'NULL', 'F', 'ashley44@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4348 Via Romero', 'NULL', '314-555-0183', '2013-05-31', '2-5 Miles'], ['18601', '312', 'AW00018601', 'NULL', 'Cynthia', 'K', 'Garcia', '0', '1969-10-24', 'S', 'NULL', 'F', 'cynthia20@adventure-works.com', '60000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9234 Westbury Drive', 'NULL', '854-555-0146', '2013-03-18', '2-5 Miles'], ['18602', '329', 'AW00018602', 'NULL', 'Patrick', 'NULL', 'Ramirez', '0', '1975-11-15', 'M', 'NULL', 'M', 'patrick13@adventure-works.com', '60000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '8851 Northridge Dr.', 'NULL', '674-555-0147', '2013-04-10', '5-10 Miles'], ['18603', '53', 'AW00018603', 'NULL', 'Gabrielle', 'B', 'Henderson', '0', '1975-03-09', 'S', 'NULL', 'F', 'gabrielle27@adventure-works.com', '60000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '7468 Lindley Ct.', '#8a', '709-555-0164', '2013-04-04', '5-10 Miles'], ['18604', '52', 'AW00018604', 'NULL', 'Paige', 'W', 'Alexander', '0', '1969-11-19', 'M', 'NULL', 'F', 'paige18@adventure-works.com', '60000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '4', '1050 Greenhills Circle', 'NULL', '605-555-0133', '2013-02-08', '2-5 Miles'], ['18605', '612', 'AW00018605', 'NULL', 'David', 'NULL', 'Wright', '0', '1970-05-16', 'S', 'NULL', 'M', 'david35@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6425 Adelia Court', 'NULL', '544-555-0144', '2013-11-03', '2-5 Miles'], ['18606', '632', 'AW00018606', 'NULL', 'Wyatt', 'J', 'Green', '0', '1970-04-24', 'S', 'NULL', 'M', 'wyatt34@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8038 La Paz', 'NULL', '192-555-0118', '2013-11-11', '2-5 Miles'], ['18607', '546', 'AW00018607', 'NULL', 'Katherine', 'B', 'Taylor', '0', '1969-12-11', 'S', 'NULL', 'F', 'katherine79@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '886 Panoramic Drive', 'NULL', '809-555-0139', '2013-11-26', '2-5 Miles'], ['18608', '385', 'AW00018608', 'NULL', 'Ian', 'NULL', 'Phillips', '0', '1969-10-15', 'M', 'NULL', 'M', 'ian36@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4077 St. George Drive', 'NULL', '115-555-0117', '2013-11-25', '2-5 Miles'], ['18609', '547', 'AW00018609', 'NULL', 'Alyssa', 'A', 'Cook', '0', '1980-12-08', 'M', 'NULL', 'F', 'alyssa29@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5509 Newcastle Road', 'NULL', '931-555-0112', '2013-11-15', '2-5 Miles'], ['18610', '311', 'AW00018610', 'NULL', 'Bailey', 'NULL', 'Rivera', '0', '1968-07-10', 'S', 'NULL', 'F', 'bailey14@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '2098 Crown Ct', '# 235', '642-555-0137', '2013-12-26', '0-1 Miles'], ['18611', '548', 'AW00018611', 'NULL', 'Taylor', 'F', 'Foster', '0', '1969-02-24', 'M', 'NULL', 'F', 'taylor40@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '4948 West 4th St', 'NULL', '551-555-0154', '2013-12-05', '2-5 Miles'], ['18612', '315', 'AW00018612', 'NULL', 'Alyssa', 'NULL', 'Flores', '0', '1979-11-16', 'S', 'NULL', 'F', 'alyssa58@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4440 Algiers Drive', 'NULL', '903-555-0145', '2013-08-20', '0-1 Miles'], ['18613', '315', 'AW00018613', 'NULL', 'Cody', 'NULL', 'Murphy', '0', '1974-05-14', 'S', 'NULL', 'M', 'cody15@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '8292 Ferndale Lane', 'NULL', '124-555-0161', '2013-12-16', '2-5 Miles'], ['18614', '345', 'AW00018614', 'NULL', 'Seth', 'L', 'Wright', '0', '1973-11-12', 'S', 'NULL', 'M', 'seth28@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5642 La Orinda Pl', 'NULL', '654-555-0116', '2013-12-20', '2-5 Miles'], ['18615', '383', 'AW00018615', 'NULL', 'Charles', 'NULL', 'Peterson', '0', '1979-09-06', 'S', 'NULL', 'M', 'charles53@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '470 Laurel', 'NULL', '478-555-0143', '2013-12-13', '0-1 Miles'], ['18616', '348', 'AW00018616', 'NULL', 'Spencer', 'A', 'Butler', '0', '1968-08-04', 'S', 'NULL', 'M', 'spencer16@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4140 Delta View Ln.', 'NULL', '139-555-0113', '2013-11-26', '2-5 Miles'], ['18617', '65', 'AW00018617', 'NULL', 'Carlos', 'NULL', 'Lopez', '0', '1969-01-30', 'S', 'NULL', 'M', 'carlos41@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '1480 Canyon Creek Drive', 'NULL', '512-555-0110', '2013-04-12', '0-1 Miles'], ['18618', '200', 'AW00018618', 'NULL', 'Mitchell', 'NULL', 'Rai', '0', '1978-05-20', 'S', 'NULL', 'M', 'mitchell15@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '6, avenue des Laurentides', 'NULL', '1 (11) 500 555-0179', '2014-01-21', '0-1 Miles'], ['18619', '135', 'AW00018619', 'NULL', 'Dominic', 'NULL', 'Mehta', '0', '1978-09-01', 'M', 'NULL', 'M', 'dominic14@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Kappellweg 664', 'NULL', '1 (11) 500 555-0187', '2013-07-13', '1-2 Miles'], ['18620', '266', 'AW00018620', 'NULL', 'Randall', 'A', 'Navarro', '0', '1979-01-15', 'S', 'NULL', 'M', 'randall11@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '8115 Sunview Terrace', 'NULL', '1 (11) 500 555-0180', '2012-11-26', '1-2 Miles'], ['18621', '275', 'AW00018621', 'NULL', 'Cassandra', 'D', 'Prasad', '0', '1979-04-17', 'S', 'NULL', 'F', 'cassandra10@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '6288 Melody Dr.', 'NULL', '1 (11) 500 555-0199', '2012-11-15', '1-2 Miles'], ['18622', '229', 'AW00018622', 'NULL', 'Byron', 'NULL', 'Rubio', '0', '1978-05-17', 'S', 'NULL', 'M', 'byron15@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '1148 Thornwood Drive', 'NULL', '1 (11) 500 555-0158', '2013-11-24', '0-1 Miles'], ['18623', '184', 'AW00018623', 'NULL', 'Anne', 'W', 'Torres', '0', '1978-03-06', 'M', 'NULL', 'F', 'anne13@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '11, rue Philibert-Delorme', 'NULL', '1 (11) 500 555-0132', '2013-08-10', '0-1 Miles'], ['18624', '224', 'AW00018624', 'NULL', 'Jay', 'M', 'Perez', '0', '1983-11-01', 'S', 'NULL', 'M', 'jay28@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '18, rue Henri Gagnon', 'NULL', '1 (11) 500 555-0191', '2013-03-01', '2-5 Miles'], ['18625', '244', 'AW00018625', 'NULL', 'Derrick', 'C', 'Moreno', '0', '1977-12-11', 'S', 'NULL', 'M', 'derrick6@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '8942 Sierra Road', 'NULL', '1 (11) 500 555-0195', '2012-11-13', '1-2 Miles'], ['18626', '118', 'AW00018626', 'NULL', 'Tony', 'S', 'Pal', '0', '1978-03-08', 'S', 'NULL', 'M', 'tony15@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Residenz Straße 4', 'NULL', '1 (11) 500 555-0140', '2012-06-23', '1-2 Miles'], ['18627', '245', 'AW00018627', 'NULL', 'Kristine', 'E', 'Gomez', '0', '1983-09-06', 'S', 'NULL', 'F', 'kristine2@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3754 Olive Ave.', 'NULL', '1 (11) 500 555-0173', '2012-11-26', '1-2 Miles'], ['18628', '180', 'AW00018628', 'NULL', 'Suzanne', 'NULL', 'Yang', '0', '1977-03-14', 'S', 'NULL', 'F', 'suzanne6@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '127, rue Lauriston', 'NULL', '1 (11) 500 555-0189', '2013-06-02', '0-1 Miles'], ['18629', '261', 'AW00018629', 'NULL', 'Martin', 'L', 'Srini', '0', '1976-08-21', 'S', 'NULL', 'M', 'martin13@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '7545 Gonzalez Ct', 'NULL', '1 (11) 500 555-0166', '2013-08-20', '1-2 Miles'], ['18630', '198', 'AW00018630', 'NULL', 'Priscilla', 'NULL', 'She', '0', '1976-08-19', 'S', 'NULL', 'F', 'priscilla0@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '3535, rue des Grands Champs', 'NULL', '1 (11) 500 555-0132', '2013-12-16', '1-2 Miles'], ['18631', '278', 'AW00018631', 'NULL', 'Carly', 'NULL', 'Shan', '0', '1976-07-04', 'S', 'NULL', 'F', 'carly10@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '2928 Harmony Way', 'NULL', '1 (11) 500 555-0155', '2013-12-04', '0-1 Miles'], ['18632', '240', 'AW00018632', 'NULL', 'Russell', 'NULL', 'Tang', '0', '1982-10-05', 'S', 'NULL', 'M', 'russell8@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '9308 Green Valley Rd.', 'NULL', '1 (11) 500 555-0110', '2013-02-20', '1-2 Miles'], ['18633', '273', 'AW00018633', 'NULL', 'Adam', 'M', 'Jenkins', '0', '1982-09-20', 'M', 'NULL', 'M', 'adam4@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '7015 F Mt Hood Circle', 'NULL', '1 (11) 500 555-0164', '2012-11-20', '1-2 Miles'], ['18634', '207', 'AW00018634', 'NULL', 'Veronica', 'J', 'Arun', '0', '1982-12-10', 'S', 'NULL', 'F', 'veronica7@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '870, avenue de Malakoff', 'NULL', '1 (11) 500 555-0168', '2011-11-10', '2-5 Miles'], ['18635', '154', 'AW00018635', 'NULL', 'Toni', 'NULL', 'Martinez', '0', '1977-02-17', 'S', 'NULL', 'F', 'toni18@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Celler Weg 304', 'NULL', '1 (11) 500 555-0167', '2013-02-14', '0-1 Miles'], ['18636', '156', 'AW00018636', 'NULL', 'Edgar', 'C', 'Chapman', '0', '1976-12-12', 'S', 'NULL', 'M', 'edgar2@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Winterfeldtstr 35345', 'NULL', '1 (11) 500 555-0115', '2013-08-28', '0-1 Miles'], ['18637', '53', 'AW00018637', 'NULL', 'Thomas', 'A', 'Sharma', '0', '1981-06-05', 'S', 'NULL', 'M', 'thomas33@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1462 West Cliff Place', 'NULL', '514-555-0198', '2013-03-30', '0-1 Miles'], ['18638', '623', 'AW00018638', 'NULL', 'Alyssa', 'K', 'Thompson', '0', '1979-12-07', 'S', 'NULL', 'F', 'alyssa15@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4480 N. Lucile Lane', 'NULL', '844-555-0186', '2013-11-22', '1-2 Miles'], ['18639', '547', 'AW00018639', 'NULL', 'Maria', 'E', 'Scott', '0', '1980-03-07', 'S', 'NULL', 'F', 'maria56@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '8459 Leed Court West', 'NULL', '297-555-0131', '2013-11-26', '1-2 Miles'], ['18640', '618', 'AW00018640', 'NULL', 'Isaac', 'NULL', 'James', '0', '1979-12-19', 'M', 'NULL', 'M', 'isaac7@adventure-works.com', '30000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2275 Kiska Court', 'NULL', '403-555-0159', '2013-03-08', '0-1 Miles'], ['18641', '49', 'AW00018641', 'NULL', 'Cameron', 'NULL', 'Garcia', '0', '1981-05-11', 'S', 'NULL', 'M', 'cameron34@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7411 Crivello Avenue', 'NULL', '701-555-0114', '2013-04-06', '1-2 Miles'], ['18642', '62', 'AW00018642', 'NULL', 'Brianna', 'X', 'Thompson', '0', '1980-09-16', 'S', 'NULL', 'F', 'brianna14@adventure-works.com', '40000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7672 Ashley Way', 'NULL', '629-555-0177', '2013-05-29', '0-1 Miles'], ['18643', '369', 'AW00018643', 'NULL', 'Joshua', 'A', 'Thomas', '0', '1936-12-22', 'M', 'NULL', 'M', 'joshua12@adventure-works.com', '110000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2427 Notre Dame Ave.', 'NULL', '718-555-0181', '2013-12-11', '0-1 Miles'], ['18644', '49', 'AW00018644', 'NULL', 'Carrie', 'D', 'Ruiz', '0', '1971-08-15', 'S', 'NULL', 'F', 'carrie1@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '3300 Country View Lane', 'NULL', '966-555-0146', '2013-02-14', '0-1 Miles'], ['18645', '631', 'AW00018645', 'NULL', 'Jordan', 'K', 'Bryant', '0', '1971-09-18', 'M', 'NULL', 'M', 'jordan15@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '17, rue de la Centenaire', 'NULL', '371-555-0193', '2013-11-07', '1-2 Miles'], ['18646', '300', 'AW00018646', 'NULL', 'Blake', 'L', 'Adams', '0', '1977-03-08', 'M', 'NULL', 'M', 'blake33@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6055 Broadway Street', 'NULL', '590-555-0140', '2013-11-16', '1-2 Miles'], ['18647', '307', 'AW00018647', 'NULL', 'Christy', 'NULL', 'Huang', '0', '1958-12-17', 'S', 'NULL', 'F', 'christy5@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '1028 Green View Court', 'NULL', '454-555-0161', '2013-07-06', '1-2 Miles'], ['18648', '302', 'AW00018648', 'NULL', 'Hailey', 'NULL', 'Torres', '0', '1959-12-13', 'M', 'NULL', 'F', 'hailey13@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7308 Star Tree Court', 'NULL', '926-555-0159', '2013-08-17', '2-5 Miles'], ['18649', '385', 'AW00018649', 'NULL', 'Jackson', 'H', 'Patterson', '0', '1961-02-10', 'S', 'NULL', 'M', 'jackson13@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '2', '306 Spring Hill Drive', 'NULL', '503-555-0182', '2013-08-19', '1-2 Miles'], ['18650', '315', 'AW00018650', 'NULL', 'Kyle', 'NULL', 'Flores', '0', '1966-01-30', 'S', 'NULL', 'M', 'kyle7@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9889 Loveridge Circle', 'NULL', '219-555-0111', '2013-08-25', '1-2 Miles'], ['18651', '626', 'AW00018651', 'NULL', 'Isaiah', 'A', 'Mitchell', '0', '1971-10-30', 'M', 'NULL', 'M', 'isaiah35@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5014 Steele Drive', 'NULL', '694-555-0195', '2013-08-11', '1-2 Miles'], ['18652', '612', 'AW00018652', 'NULL', 'Meredith', 'W', 'Diaz', '0', '1961-03-03', 'M', 'NULL', 'F', 'meredith25@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '2', '4387 Linden Land', 'NULL', '275-555-0123', '2013-06-29', '0-1 Miles'], ['18653', '611', 'AW00018653', 'NULL', 'Emmanuel', 'D', 'Madan', '0', '1971-10-03', 'M', 'NULL', 'M', 'emmanuel7@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3457 Bel Air Drive', 'NULL', '327-555-0159', '2013-09-05', '1-2 Miles'], ['18654', '339', 'AW00018654', 'NULL', 'Thomas', 'A', 'Lopez', '0', '1960-12-15', 'M', 'NULL', 'M', 'thomas57@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8574 Hidden Oak Ct.', 'NULL', '429-555-0115', '2013-11-11', '0-1 Miles'], ['18655', '623', 'AW00018655', 'NULL', 'Eric', 'R', 'Diaz', '0', '1961-04-07', 'M', 'NULL', 'M', 'eric29@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2587 Windmill Way', 'NULL', '321-555-0190', '2013-11-28', '0-1 Miles'], ['18656', '300', 'AW00018656', 'NULL', 'Charles', 'K', 'Clark', '0', '1961-10-22', 'S', 'NULL', 'M', 'charles23@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4855 James Court', 'NULL', '930-555-0113', '2013-09-04', '1-2 Miles'], ['18657', '334', 'AW00018657', 'NULL', 'Alex', 'M', 'Morgan', '0', '1962-05-23', 'M', 'NULL', 'M', 'alex17@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6341 Darnett Circle', 'NULL', '136-555-0132', '2013-04-10', '0-1 Miles'], ['18658', '641', 'AW00018658', 'NULL', 'Dalton', 'NULL', 'Turner', '0', '1962-02-02', 'M', 'NULL', 'M', 'dalton39@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '530 Northridge Drive', 'NULL', '125-555-0153', '2013-07-26', '1-2 Miles'], ['18659', '338', 'AW00018659', 'NULL', 'Jasmine', 'A', 'Thompson', '0', '1961-12-01', 'M', 'NULL', 'F', 'jasmine13@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5834 Vloching Circle', 'NULL', '943-555-0196', '2013-05-11', '0-1 Miles'], ['18660', '312', 'AW00018660', 'NULL', 'Cristina', 'A', 'Anand', '0', '1962-04-22', 'M', 'NULL', 'F', 'cristina19@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8339 Auburn', 'NULL', '987-555-0197', '2013-11-16', '1-2 Miles'], ['18661', '638', 'AW00018661', 'NULL', 'Daniel', 'E', 'Walker', '0', '1963-05-31', 'M', 'NULL', 'M', 'daniel14@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5349 Keller Ridge Dr.', 'NULL', '567-555-0141', '2013-10-07', '0-1 Miles'], ['18662', '314', 'AW00018662', 'NULL', 'Kyle', 'NULL', 'Sharma', '0', '1963-05-17', 'M', 'NULL', 'M', 'kyle26@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9503 Clark Creek Lane', 'NULL', '365-555-0137', '2013-11-09', '1-2 Miles'], ['18663', '339', 'AW00018663', 'NULL', 'Jason', 'C', 'Flores', '0', '1962-09-21', 'M', 'NULL', 'M', 'jason9@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8908 The Trees Drive', 'NULL', '789-555-0146', '2013-07-24', '0-1 Miles'], ['18664', '635', 'AW00018664', 'NULL', 'Robert', 'C', 'Long', '0', '1973-08-14', 'M', 'NULL', 'M', 'robert23@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1549 Wildewood Dr', 'NULL', '925-555-0172', '2013-02-02', '1-2 Miles'], ['18665', '612', 'AW00018665', 'NULL', 'Olivia', 'NULL', 'Brooks', '0', '1962-10-22', 'M', 'NULL', 'F', 'olivia45@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7427 Grove Way', 'NULL', '571-555-0175', '2013-08-01', '0-1 Miles'], ['18666', '626', 'AW00018666', 'NULL', 'Jordyn', 'K', 'Henderson', '0', '1968-11-08', 'S', 'NULL', 'F', 'jordyn4@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7428 Donegal Court', 'NULL', '562-555-0160', '2013-06-27', '1-2 Miles'], ['18667', '299', 'AW00018667', 'NULL', 'Kelli', 'E', 'Ma', '0', '1968-05-08', 'S', 'NULL', 'F', 'kelli17@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1568 Skyline Dr.', 'NULL', '909-555-0180', '2013-10-02', '1-2 Miles'], ['18668', '542', 'AW00018668', 'NULL', 'Brian', 'J', 'Sanders', '0', '1962-11-14', 'M', 'NULL', 'M', 'brian15@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3793 Apollo Way', 'NULL', '863-555-0178', '2014-01-24', '0-1 Miles'], ['18669', '352', 'AW00018669', 'NULL', 'Adam', 'NULL', 'Griffin', '0', '1964-06-10', 'M', 'NULL', 'M', 'adam17@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5520 Massolo Drive', 'NULL', '531-555-0124', '2013-08-08', '0-1 Miles'], ['18670', '300', 'AW00018670', 'NULL', 'Melanie', 'L', 'Bryant', '0', '1969-06-30', 'M', 'NULL', 'F', 'melanie5@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2634 Yosemite Circle', 'NULL', '431-555-0174', '2013-11-10', '1-2 Miles'], ['18671', '358', 'AW00018671', 'NULL', 'Melanie', 'NULL', 'Kelly', '0', '1964-04-11', 'M', 'NULL', 'F', 'melanie13@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2345 Firestone Drive', 'NULL', '735-555-0127', '2013-03-08', '0-1 Miles'], ['18672', '374', 'AW00018672', 'NULL', 'Anthony', 'NULL', 'Lewis', '0', '1964-04-05', 'M', 'NULL', 'M', 'anthony7@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1877 Turner Dr.', 'NULL', '855-555-0132', '2013-08-22', '1-2 Miles'], ['18673', '300', 'AW00018673', 'NULL', 'James', 'M', 'Green', '0', '1969-08-21', 'M', 'NULL', 'M', 'james63@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '5672 San Jose Ave.', 'NULL', '550-555-0139', '2013-07-10', '0-1 Miles'], ['18674', '70', 'AW00018674', 'NULL', 'Isabelle', 'C', 'Bennett', '0', '1969-03-16', 'S', 'NULL', 'F', 'isabelle1@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '6907 Lagoon Court', 'NULL', '152-555-0140', '2013-05-27', '0-1 Miles'], ['18675', '326', 'AW00018675', 'NULL', 'Abigail', 'NULL', 'Martin', '0', '1975-10-31', 'M', 'NULL', 'F', 'abigail55@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '370 Pine Creek Way', 'NULL', '896-555-0194', '2013-04-14', '0-1 Miles'], ['18676', '626', 'AW00018676', 'NULL', 'Jesse', 'E', 'Young', '0', '1964-09-03', 'M', 'NULL', 'M', 'jesse41@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5744 Medina Dr.', 'NULL', '251-555-0175', '2013-05-05', '1-2 Miles'], ['18677', '49', 'AW00018677', 'NULL', 'Logan', 'NULL', 'Shan', '0', '1964-11-04', 'M', 'NULL', 'M', 'logan4@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5361 Hungry Road', 'NULL', '426-555-0175', '2013-02-03', '0-1 Miles'], ['18678', '372', 'AW00018678', 'NULL', 'Sean', 'NULL', 'Watson', '0', '1970-11-05', 'S', 'NULL', 'M', 'sean7@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4233 Bonita Ave.', 'NULL', '347-555-0186', '2013-06-15', '1-2 Miles'], ['18679', '635', 'AW00018679', 'NULL', 'Seth', 'C', 'Wood', '0', '1978-01-23', 'S', 'NULL', 'M', 'seth50@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2306 Hillridge Way', 'NULL', '313-555-0183', '2013-11-20', '1-2 Miles'], ['18680', '298', 'AW00018680', 'NULL', 'David', 'NULL', 'Shan', '0', '1979-05-03', 'M', 'NULL', 'M', 'david62@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8483 Temple Court', 'NULL', '628-555-0180', '2013-11-03', '0-1 Miles'], ['18681', '335', 'AW00018681', 'NULL', 'Jacqueline', 'NULL', 'Griffin', '0', '1979-04-20', 'M', 'NULL', 'F', 'jacqueline21@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7626 Oxford Place', 'NULL', '868-555-0145', '2013-03-24', '0-1 Miles'], ['18682', '336', 'AW00018682', 'NULL', 'Emily', 'A', 'Bennett', '0', '1979-01-05', 'M', 'NULL', 'F', 'emily26@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2976 York Dr.', 'NULL', '535-555-0133', '2013-09-26', '0-1 Miles'], ['18683', '368', 'AW00018683', 'NULL', 'Robert', 'T', 'Walker', '0', '1979-02-20', 'M', 'NULL', 'M', 'robert83@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6489 Kentucky Drive', 'NULL', '878-555-0163', '2013-06-07', '1-2 Miles'], ['18684', '372', 'AW00018684', 'NULL', 'Makayla', 'D', 'Watson', '0', '1979-03-04', 'M', 'NULL', 'F', 'makayla0@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7981 Center Avenue', 'NULL', '751-555-0124', '2013-11-13', '1-2 Miles'], ['18685', '55', 'AW00018685', 'NULL', 'Sean', 'G', 'Rogers', '0', '1976-11-24', 'M', 'NULL', 'M', 'sean27@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '8524 Parkside Dr.', 'NULL', '277-555-0113', '2013-07-20', '0-1 Miles'], ['18686', '60', 'AW00018686', 'NULL', 'Logan', 'NULL', 'Coleman', '0', '1982-10-09', 'S', 'NULL', 'M', 'logan8@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6607 Panoramic Avenue', 'NULL', '107-555-0161', '2013-03-28', '1-2 Miles'], ['18687', '302', 'AW00018687', 'NULL', 'Olivia', 'C', 'Smith', '0', '1982-01-16', 'M', 'NULL', 'F', 'olivia0@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7728 Morengo Court', 'NULL', '373-555-0118', '2013-02-09', '1-2 Miles'], ['18688', '632', 'AW00018688', 'NULL', 'Antonio', 'NULL', 'Barnes', '0', '1969-01-06', 'M', 'NULL', 'M', 'antonio3@adventure-works.com', '70000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7228 Caravelle Ct.', 'NULL', '224-555-0112', '2013-08-16', '2-5 Miles'], ['18689', '616', 'AW00018689', 'NULL', 'Miguel', 'NULL', 'Miller', '0', '1963-12-29', 'M', 'NULL', 'M', 'miguel5@adventure-works.com', '80000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4293 Concord Ct.', 'NULL', '397-555-0155', '2013-06-08', '0-1 Miles'], ['18690', '611', 'AW00018690', 'NULL', 'Carlos', 'C', 'Rivera', '0', '1934-10-06', 'M', 'NULL', 'M', 'carlos19@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4625 Westcliffe Place', 'NULL', '736-555-0137', '2013-10-17', '0-1 Miles'], ['18691', '5', 'AW00018691', 'NULL', 'Claudia', 'NULL', 'Zheng', '0', '1980-03-20', 'M', 'NULL', 'F', 'claudia17@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '7202 Sun View Court', 'NULL', '1 (11) 500 555-0191', '2011-06-28', '0-1 Miles'], ['18692', '6', 'AW00018692', 'NULL', 'Preston', 'G', 'Mehta', '0', '1980-02-07', 'M', 'NULL', 'M', 'preston13@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '2228 Ashford Court', 'NULL', '1 (11) 500 555-0118', '2011-06-23', '0-1 Miles'], ['18693', '21', 'AW00018693', 'NULL', 'Ann', 'M', 'Subram', '0', '1974-12-17', 'S', 'NULL', 'F', 'ann18@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '1592 Working Drive', 'NULL', '1 (11) 500 555-0178', '2011-06-07', '0-1 Miles'], ['18694', '10', 'AW00018694', 'NULL', 'Derrick', 'NULL', 'Gomez', '0', '1975-01-18', 'M', 'NULL', 'M', 'derrick1@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '2460 Tanager Court', 'NULL', '1 (11) 500 555-0123', '2011-06-02', '0-1 Miles'], ['18695', '36', 'AW00018695', 'NULL', 'Aaron', 'C', 'Diaz', '0', '1975-05-04', 'M', 'NULL', 'M', 'aaron21@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '9413 Maria Vega Court', 'NULL', '1 (11) 500 555-0130', '2011-06-01', '1-2 Miles'], ['18696', '25', 'AW00018696', 'NULL', 'Mindy', 'W', 'Black', '0', '1975-03-24', 'M', 'NULL', 'F', 'mindy25@adventure-works.com', '100000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '9063 Vista Aven.', 'NULL', '1 (11) 500 555-0179', '2011-06-12', '0-1 Miles'], ['18697', '5', 'AW00018697', 'NULL', 'Tara', 'S', 'Lal', '0', '1973-12-02', 'S', 'NULL', 'F', 'tara8@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '2800 San Ramon Road', 'NULL', '1 (11) 500 555-0161', '2011-06-18', '0-1 Miles'], ['18698', '10', 'AW00018698', 'NULL', 'Jaclyn', 'S', 'Chande', '0', '1974-01-03', 'S', 'NULL', 'F', 'jaclyn38@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3847 Larch Ct', 'NULL', '1 (11) 500 555-0190', '2011-06-24', '2-5 Miles'], ['18699', '23', 'AW00018699', 'NULL', 'Blake', 'S', 'Griffin', '0', '1979-10-14', 'M', 'NULL', 'M', 'blake68@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2107 Cardinal', 'NULL', '1 (11) 500 555-0197', '2011-06-22', '0-1 Miles'], ['18700', '37', 'AW00018700', 'NULL', 'Ernest', 'C', 'Zhao', '0', '1974-04-05', 'S', 'NULL', 'M', 'ernest10@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1162 Relief Valley Ct', 'NULL', '1 (11) 500 555-0174', '2011-06-08', '0-1 Miles'], ['18701', '39', 'AW00018701', 'NULL', 'Kenneth', 'J', 'Lal', '0', '1974-01-30', 'S', 'NULL', 'M', 'kenneth8@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2775 Robinson Ave.', 'NULL', '1 (11) 500 555-0121', '2011-06-18', '2-5 Miles'], ['18702', '2', 'AW00018702', 'NULL', 'Adriana', 'NULL', 'Smith', '0', '1973-10-06', 'S', 'NULL', 'F', 'adriana9@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '280 Plymouth Dr.', 'NULL', '1 (11) 500 555-0132', '2011-06-29', '2-5 Miles'], ['18703', '24', 'AW00018703', 'NULL', 'Vincent', 'A', 'Huang', '0', '1978-09-06', 'S', 'NULL', 'M', 'vincent6@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6897 Deerfield Dr.', 'NULL', '1 (11) 500 555-0119', '2011-06-10', '0-1 Miles'], ['18704', '16', 'AW00018704', 'NULL', 'Lacey', 'N', 'Goel', '0', '1972-08-20', 'M', 'NULL', 'F', 'lacey8@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '1687 Chaparral Court', 'NULL', '1 (11) 500 555-0185', '2013-03-19', '10+ Miles'], ['18705', '22', 'AW00018705', 'NULL', 'Karl', 'NULL', 'Goel', '0', '1973-02-24', 'M', 'NULL', 'M', 'karl20@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '9039 Blocking Ct.', 'NULL', '1 (11) 500 555-0149', '2013-05-24', '10+ Miles'], ['18706', '4', 'AW00018706', 'NULL', 'Darryl', 'NULL', 'Zheng', '0', '1974-11-16', 'S', 'NULL', 'M', 'darryl19@adventure-works.com', '110000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '995 Roundtree Place', 'NULL', '1 (11) 500 555-0118', '2011-07-16', '2-5 Miles'], ['18707', '31', 'AW00018707', 'NULL', 'Marshall', 'D', 'She', '0', '1974-10-26', 'M', 'NULL', 'M', 'marshall21@adventure-works.com', '110000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '3140 Park Tree Ct', 'NULL', '1 (11) 500 555-0120', '2013-02-20', '5-10 Miles'], ['18708', '9', 'AW00018708', 'NULL', 'Micah', 'NULL', 'Zhao', '0', '1975-05-24', 'M', 'NULL', 'M', 'micah21@adventure-works.com', '120000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '971 Harness Circle', 'NULL', '1 (11) 500 555-0120', '2011-07-09', '0-1 Miles'], ['18709', '38', 'AW00018709', 'NULL', 'Darren', 'A', 'Hernandez', '0', '1974-12-04', 'M', 'NULL', 'M', 'darren25@adventure-works.com', '130000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '2234 Stimel Dr.', 'NULL', '1 (11) 500 555-0184', '2011-07-29', '0-1 Miles'], ['18710', '17', 'AW00018710', 'NULL', 'Ricardo', 'NULL', 'Xie', '0', '1975-02-18', 'M', 'NULL', 'M', 'ricardo3@adventure-works.com', '130000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '1454 Colton Ln', 'NULL', '1 (11) 500 555-0172', '2011-07-07', '2-5 Miles'], ['18711', '34', 'AW00018711', 'NULL', 'Emma', 'L', 'Diaz', '0', '1972-11-10', 'S', 'NULL', 'F', 'emma67@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '473 Akyn Rock Drive', 'NULL', '1 (11) 500 555-0144', '2013-09-17', '10+ Miles'], ['18712', '26', 'AW00018712', 'NULL', 'Glenn', 'J', 'Guo', '0', '1972-02-07', 'M', 'NULL', 'M', 'glenn19@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '631 Elliott Dr.', 'NULL', '1 (11) 500 555-0115', '2013-03-29', '0-1 Miles'], ['18713', '10', 'AW00018713', 'NULL', 'Rosa', 'NULL', 'Yang', '0', '1972-05-14', 'M', 'NULL', 'F', 'rosa5@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '5673 Arlington Circle', 'NULL', '1 (11) 500 555-0178', '2013-10-27', '0-1 Miles'], ['18714', '16', 'AW00018714', 'NULL', 'Francisco', 'L', 'Lopez', '0', '1972-02-12', 'M', 'NULL', 'M', 'francisco18@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '8108 Goen Road', 'NULL', '1 (11) 500 555-0115', '2013-03-11', '0-1 Miles'], ['18715', '25', 'AW00018715', 'NULL', 'Rafael', 'H', 'Rai', '0', '1971-03-25', 'M', 'NULL', 'M', 'rafael41@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '8869 Lightwood Drive', 'NULL', '1 (11) 500 555-0113', '2013-07-09', '5-10 Miles'], ['18716', '25', 'AW00018716', 'NULL', 'Seth', 'NULL', 'Campbell', '0', '1974-01-29', 'M', 'NULL', 'M', 'seth43@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3639 Blackridge Drive', 'NULL', '1 (11) 500 555-0180', '2011-07-12', '0-1 Miles'], ['18717', '38', 'AW00018717', 'NULL', 'Cassandra', 'B', 'Suri', '0', '1970-07-21', 'M', 'NULL', 'F', 'cassandra0@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7907 Eagle Peak Road', 'NULL', '1 (11) 500 555-0176', '2013-08-17', '0-1 Miles'], ['18718', '24', 'AW00018718', 'NULL', 'Susan', 'NULL', 'Liu', '0', '1970-12-08', 'S', 'NULL', 'F', 'susan13@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7848 Silver Cypress Ct.', 'NULL', '1 (11) 500 555-0164', '2011-07-30', '0-1 Miles'], ['18719', '14', 'AW00018719', 'NULL', 'Alberto', 'G', 'Suarez', '0', '1970-04-19', 'M', 'NULL', 'M', 'alberto18@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '7289 Las Quebrados Ln', 'NULL', '1 (11) 500 555-0182', '2013-04-06', '10+ Miles'], ['18720', '31', 'AW00018720', 'NULL', 'Taylor', 'M', 'Miller', '0', '1969-06-26', 'M', 'NULL', 'F', 'taylor53@adventure-works.com', '60000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '4672 Cardinal', 'NULL', '1 (11) 500 555-0174', '2013-10-10', '2-5 Miles'], ['18721', '7', 'AW00018721', 'NULL', 'Andy', 'NULL', 'Gomez', '0', '1968-12-02', 'S', 'NULL', 'M', 'andy6@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '6863 Shakespeare Dr', 'NULL', '1 (11) 500 555-0167', '2011-07-15', '0-1 Miles'], ['18722', '17', 'AW00018722', 'NULL', 'Jonathon', 'NULL', 'Navarro', '0', '1974-07-15', 'S', 'NULL', 'M', 'jonathon7@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '8308 La Salle Ave.', 'NULL', '1 (11) 500 555-0118', '2011-07-08', '5-10 Miles'], ['18723', '13', 'AW00018723', 'NULL', 'Lacey', 'K', 'Ma', '0', '1968-11-15', 'S', 'NULL', 'F', 'lacey28@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '6900 Chisholm Way', 'NULL', '1 (11) 500 555-0191', '2011-07-24', '0-1 Miles'], ['18724', '32', 'AW00018724', 'NULL', 'Denise', 'A', 'Fernandez', '0', '1984-05-01', 'M', 'NULL', 'F', 'denise16@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '3815 Berry Dr.', 'NULL', '1 (11) 500 555-0174', '2011-07-22', '0-1 Miles'], ['18725', '31', 'AW00018725', 'NULL', 'Denise', 'M', 'Kapoor', '0', '1978-10-05', 'S', 'NULL', 'F', 'denise4@adventure-works.com', '90000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '3252 Hamlet', 'NULL', '1 (11) 500 555-0118', '2011-07-09', '1-2 Miles'], ['18726', '8', 'AW00018726', 'NULL', 'Katrina', 'L', 'Anand', '0', '1967-08-30', 'S', 'NULL', 'F', 'katrina21@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1020 Carletto Drive', 'NULL', '1 (11) 500 555-0129', '2011-07-10', '5-10 Miles'], ['18727', '35', 'AW00018727', 'NULL', 'Hailey', 'A', 'Hernandez', '0', '1967-04-09', 'S', 'NULL', 'F', 'hailey58@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5222 Michael Lance', 'NULL', '1 (11) 500 555-0127', '2013-07-13', '5-10 Miles'], ['18728', '6', 'AW00018728', 'NULL', 'Roger', 'J', 'Luo', '0', '1971-10-18', 'M', 'NULL', 'M', 'roger33@adventure-works.com', '100000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '2059 Clayton Rd', 'NULL', '1 (11) 500 555-0158', '2013-08-21', '5-10 Miles'], ['18729', '36', 'AW00018729', 'NULL', 'Evan', 'R', 'Parker', '0', '1965-10-04', 'S', 'NULL', 'M', 'evan23@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7113 Eastgate Ave.', 'NULL', '1 (11) 500 555-0131', '2011-07-22', '5-10 Miles'], ['18730', '7', 'AW00018730', 'NULL', 'Johnathan', 'NULL', 'Arthur', '0', '1964-10-07', 'M', 'NULL', 'M', 'johnathan8@adventure-works.com', '90000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4186 Silver Oaks Pl.', 'NULL', '1 (11) 500 555-0185', '2013-10-03', '5-10 Miles'], ['18731', '3', 'AW00018731', 'NULL', 'Brett', 'E', 'Malhotra', '0', '1964-12-29', 'S', 'NULL', 'M', 'brett4@adventure-works.com', '90000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6679 Cornelius Dr', 'NULL', '1 (11) 500 555-0150', '2011-07-27', '2-5 Miles'], ['18732', '40', 'AW00018732', 'NULL', 'Zachary', 'M', 'Jai', '0', '1937-11-16', 'M', 'NULL', 'M', 'zachary1@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5891 Madhatter Ln', 'NULL', '1 (11) 500 555-0171', '2014-01-27', '0-1 Miles'], ['18733', '23', 'AW00018733', 'NULL', 'Rafael', 'R', 'Gao', '0', '1971-04-22', 'S', 'NULL', 'M', 'rafael16@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7588 Deerfield Dr', 'NULL', '1 (11) 500 555-0167', '2013-03-01', '5-10 Miles'], ['18734', '20', 'AW00018734', 'NULL', 'Barbara', 'NULL', 'Ashe', '0', '1980-11-07', 'S', 'NULL', 'F', 'barbara50@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4202 Northridge Dr.', 'NULL', '1 (11) 500 555-0121', '2013-05-04', '5-10 Miles'], ['18735', '28', 'AW00018735', 'NULL', 'Latasha', 'R', 'Moreno', '0', '1970-04-19', 'S', 'NULL', 'F', 'latasha6@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5522 Deer Ridge Way', 'NULL', '1 (11) 500 555-0166', '2011-07-11', '5-10 Miles'], ['18736', '35', 'AW00018736', 'NULL', 'Ashley', 'R', 'Patterson', '0', '1970-06-09', 'S', 'NULL', 'F', 'ashley37@adventure-works.com', '90000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5843 Westwood Court', 'NULL', '1 (11) 500 555-0136', '2011-07-26', '2-5 Miles'], ['18737', '32', 'AW00018737', 'NULL', 'Ricky', 'NULL', 'Gomez', '0', '1965-01-17', 'S', 'NULL', 'M', 'ricky1@adventure-works.com', '100000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1218 Trasher Road', 'NULL', '1 (11) 500 555-0165', '2011-07-27', '5-10 Miles'], ['18738', '14', 'AW00018738', 'NULL', 'Tamara', 'NULL', 'Luo', '0', '1974-04-08', 'S', 'NULL', 'F', 'tamara17@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '2229 Oak Rd.', 'NULL', '1 (11) 500 555-0189', '2011-07-16', '0-1 Miles'], ['18739', '34', 'AW00018739', 'NULL', 'Christy', 'R', 'Pal', '0', '1972-06-23', 'M', 'NULL', 'F', 'christy29@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1804 B Southampton Rd.', 'NULL', '1 (11) 500 555-0127', '2011-07-20', '0-1 Miles'], ['18740', '31', 'AW00018740', 'NULL', 'Adam', 'NULL', 'Hill', '0', '1964-03-03', 'M', 'NULL', 'M', 'adam43@adventure-works.com', '80000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5070 Paraiso Ct', 'NULL', '1 (11) 500 555-0163', '2011-07-08', '0-1 Miles'], ['18741', '35', 'AW00018741', 'NULL', 'Edgar', 'B', 'Martinez', '0', '1941-07-22', 'M', 'NULL', 'M', 'edgar18@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7490 Northwood Dr', 'NULL', '1 (11) 500 555-0183', '2013-11-17', '0-1 Miles'], ['18742', '22', 'AW00018742', 'NULL', 'Don', 'NULL', 'Guo', '0', '1965-12-16', 'M', 'NULL', 'M', 'don6@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '4167 Deercreek Ln', 'NULL', '1 (11) 500 555-0118', '2013-06-27', '5-10 Miles'], ['18743', '23', 'AW00018743', 'NULL', 'Glenn', 'NULL', 'Xu', '0', '1966-04-10', 'M', 'NULL', 'M', 'glenn13@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '3128 Ramsey Circle', 'NULL', '1 (11) 500 555-0118', '2013-04-03', '10+ Miles'], ['18744', '14', 'AW00018744', 'NULL', 'April', 'R', 'Raje', '0', '1966-01-24', 'M', 'NULL', 'F', 'april12@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '3119 Moretti Drive', 'NULL', '1 (11) 500 555-0162', '2013-06-04', '5-10 Miles'], ['18745', '26', 'AW00018745', 'NULL', 'Brooke', 'NULL', 'James', '0', '1968-10-14', 'M', 'NULL', 'F', 'brooke8@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6140 Scenic Drive', 'NULL', '1 (11) 500 555-0127', '2013-08-19', '5-10 Miles'], ['18746', '36', 'AW00018746', 'NULL', 'Reginald', 'A', 'Alvarez', '0', '1968-11-11', 'S', 'NULL', 'M', 'reginald12@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '7435 Ricardo', 'NULL', '1 (11) 500 555-0135', '2011-07-02', '0-1 Miles'], ['18747', '27', 'AW00018747', 'NULL', 'Jacquelyn', 'K', 'Diaz', '0', '1961-11-06', 'S', 'NULL', 'F', 'jacquelyn3@adventure-works.com', '70000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '5191 Fishy Lane', 'NULL', '1 (11) 500 555-0185', '2011-07-02', '0-1 Miles'], ['18748', '21', 'AW00018748', 'NULL', 'Gabrielle', 'R', 'Stewart', '0', '1960-12-17', 'M', 'NULL', 'F', 'gabrielle0@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3854 Galindo St.', 'NULL', '1 (11) 500 555-0134', '2014-01-14', '5-10 Miles'], ['18749', '58', 'AW00018749', 'NULL', 'Olivia', 'B', 'Stewart', '0', '1982-02-11', 'M', 'NULL', 'F', 'olivia24@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2844 Plymouth Drive', 'NULL', '478-555-0145', '2013-11-10', '5-10 Miles'], ['18750', '331', 'AW00018750', 'NULL', 'Alexandra', 'L', 'Perry', '0', '1981-11-01', 'M', 'NULL', 'F', 'alexandra31@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8168 Eaker Way', 'NULL', '439-555-0168', '2013-09-29', '5-10 Miles'], ['18751', '299', 'AW00018751', 'NULL', 'Kari', 'K', 'Schmidt', '0', '1981-12-01', 'S', 'NULL', 'F', 'kari11@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2394 Pepperidge Way', 'NULL', '471-555-0166', '2013-02-15', '5-10 Miles'], ['18752', '345', 'AW00018752', 'NULL', 'Samantha', 'NULL', 'Walker', '0', '1980-12-24', 'S', 'NULL', 'F', 'samantha24@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8241 Seawind Dr.', 'NULL', '171-555-0197', '2013-03-22', '5-10 Miles'], ['18753', '547', 'AW00018753', 'NULL', 'James', 'Y', 'Moore', '0', '1986-05-15', 'S', 'NULL', 'M', 'james73@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9293 Mt. Washington Way', 'NULL', '116-555-0196', '2013-07-09', '5-10 Miles'], ['18754', '300', 'AW00018754', 'NULL', 'Isabella', 'NULL', 'Mitchell', '0', '1981-03-25', 'S', 'NULL', 'F', 'isabella41@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4123 Clark Creek Lane', 'NULL', '807-555-0130', '2013-03-11', '0-1 Miles'], ['18755', '50', 'AW00018755', 'NULL', 'Christopher', 'NULL', 'Lewis', '0', '1982-02-21', 'S', 'NULL', 'M', 'christopher21@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7513 Royal Links Ct.', 'NULL', '410-555-0143', '2013-03-26', '5-10 Miles'], ['18756', '71', 'AW00018756', 'NULL', 'Isabella', 'NULL', 'Thompson', '0', '1981-10-31', 'S', 'NULL', 'F', 'isabella71@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4427 Langford Court', 'NULL', '501-555-0117', '2013-07-31', '0-1 Miles'], ['18757', '609', 'AW00018757', 'NULL', 'Frederick', 'NULL', 'Srini', '0', '1982-02-15', 'M', 'NULL', 'M', 'frederick7@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7568 W. Holly Drive', 'NULL', '852-555-0172', '2013-02-08', '5-10 Miles'], ['18758', '49', 'AW00018758', 'NULL', 'Devin', 'M', 'Price', '0', '1984-08-29', 'S', 'NULL', 'M', 'devin66@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6748 Alfred Ave.', 'NULL', '757-555-0140', '2013-02-20', '5-10 Miles'], ['18759', '66', 'AW00018759', 'NULL', 'Devin', 'NULL', 'Phillips', '0', '1983-08-11', 'S', 'NULL', 'M', 'devin38@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2742 Cincerto Circle', 'NULL', '425-555-0163', '2013-05-19', '0-1 Miles'], ['18760', '315', 'AW00018760', 'NULL', 'Morgan', 'M', 'Wood', '0', '1983-08-06', 'M', 'NULL', 'F', 'morgan72@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '451 Buskirk Ave.', 'NULL', '321-555-0111', '2013-02-27', '0-1 Miles'], ['18761', '325', 'AW00018761', 'NULL', 'Luis', 'NULL', 'Wright', '0', '1984-04-04', 'S', 'NULL', 'M', 'luis51@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '107 Woodside Court', 'NULL', '616-555-0158', '2013-08-23', '5-10 Miles'], ['18762', '345', 'AW00018762', 'NULL', 'Arthur', 'NULL', 'Wilson', '0', '1983-11-19', 'M', 'NULL', 'F', 'arthur44@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3997 Ash Lane', 'NULL', '175-555-0196', '2013-11-17', '5-10 Miles'], ['18763', '7', 'AW00018763', 'NULL', 'Julie', 'E', 'Chander', '0', '1954-08-20', 'M', 'NULL', 'F', 'julie20@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '95 Honey Trail Lane', 'NULL', '1 (11) 500 555-0156', '2013-05-15', '0-1 Miles'], ['18764', '355', 'AW00018764', 'NULL', 'Natalie', 'K', 'Scott', '0', '1983-06-23', 'M', 'NULL', 'F', 'natalie56@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8245 Highland Dr.', 'NULL', '882-555-0172', '2013-07-20', '5-10 Miles'], ['18765', '648', 'AW00018765', 'NULL', 'Noah', 'A', 'Shan', '0', '1983-02-15', 'S', 'NULL', 'M', 'noah25@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2750 Logan Ct', 'NULL', '164-555-0113', '2013-10-02', '0-1 Miles'], ['18766', '3', 'AW00018766', 'NULL', 'Francisco', 'W', 'Sai', '0', '1945-07-14', 'M', 'NULL', 'M', 'francisco6@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '11 Sunrise Drive', 'NULL', '1 (11) 500 555-0151', '2011-07-16', '0-1 Miles'], ['18767', '25', 'AW00018767', 'NULL', 'Gary', 'C', 'Alonso', '0', '1951-12-07', 'M', 'NULL', 'M', 'gary19@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1455 Fountain Road', 'NULL', '1 (11) 500 555-0174', '2011-07-14', '5-10 Miles'], ['18768', '23', 'AW00018768', 'NULL', 'Dalton', 'M', 'Garcia', '0', '1947-08-23', 'M', 'NULL', 'M', 'dalton15@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8439 Teak St', 'NULL', '1 (11) 500 555-0129', '2011-07-25', '5-10 Miles'], ['18769', '5', 'AW00018769', 'NULL', 'Theresa', 'L', 'Dominguez', '0', '1949-01-30', 'M', 'NULL', 'F', 'theresa9@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '345 Bisca Y Court', 'NULL', '1 (11) 500 555-0176', '2011-07-18', '5-10 Miles'], ['18770', '301', 'AW00018770', 'NULL', 'Aaron', 'NULL', 'Hernandez', '0', '1981-12-03', 'S', 'NULL', 'M', 'aaron50@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7792 Woodruff Lane', 'NULL', '367-555-0197', '2013-08-22', '5-10 Miles'], ['18771', '325', 'AW00018771', 'NULL', 'Robert', 'L', 'Green', '0', '1981-07-02', 'S', 'NULL', 'M', 'robert55@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4429 Pine Creek Way', 'NULL', '669-555-0150', '2013-10-22', '5-10 Miles'], ['18772', '336', 'AW00018772', 'NULL', 'Julia', 'B', 'Hill', '0', '1981-08-11', 'M', 'NULL', 'F', 'julia19@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2973 Steven Circle', 'NULL', '114-555-0129', '2013-06-21', '5-10 Miles'], ['18773', '336', 'AW00018773', 'NULL', 'Cassidy', 'A', 'Price', '0', '1982-01-10', 'M', 'NULL', 'F', 'cassidy0@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3284 Pheasant Court', 'NULL', '273-555-0123', '2013-05-19', '5-10 Miles'], ['18774', '385', 'AW00018774', 'NULL', 'Justin', 'NULL', 'Flores', '0', '1981-12-17', 'S', 'NULL', 'M', 'justin9@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6559 Via Rerrari', 'NULL', '191-555-0115', '2014-01-26', '1-2 Miles'], ['18775', '546', 'AW00018775', 'NULL', 'Andrea', 'NULL', 'Bell', '0', '1980-11-14', 'M', 'NULL', 'F', 'andrea15@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3392 El Dorado', 'NULL', '757-555-0172', '2013-02-02', '5-10 Miles'], ['18776', '336', 'AW00018776', 'NULL', 'Connor', 'NULL', 'Allen', '0', '1981-04-04', 'S', 'NULL', 'M', 'connor50@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '887 Redwood Road', 'NULL', '891-555-0180', '2013-05-31', '5-10 Miles'], ['18777', '315', 'AW00018777', 'NULL', 'Richard', 'W', 'Clark', '0', '1980-01-23', 'S', 'NULL', 'M', 'richard13@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9852 Shirley Dr', 'NULL', '208-555-0134', '2013-03-14', '5-10 Miles'], ['18778', '343', 'AW00018778', 'NULL', 'Miguel', 'C', 'Washington', '0', '1980-01-05', 'M', 'NULL', 'M', 'miguel59@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6455 Garnet Lane', 'NULL', '187-555-0148', '2013-09-22', '5-10 Miles'], ['18779', '347', 'AW00018779', 'NULL', 'Jose', 'NULL', 'Hill', '0', '1979-10-20', 'M', 'NULL', 'M', 'jose48@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5613 East Altarinda Drive', 'NULL', '197-555-0139', '2013-11-03', '5-10 Miles'], ['18780', '347', 'AW00018780', 'NULL', 'Evan', 'K', 'Carter', '0', '1978-11-06', 'S', 'NULL', 'M', 'evan35@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '419 River Ash Court', 'NULL', '697-555-0113', '2013-11-04', '5-10 Miles'], ['18781', '372', 'AW00018781', 'NULL', 'Hunter', 'J', 'Lewis', '0', '1977-10-11', 'S', 'NULL', 'M', 'hunter54@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '4302 Oakleaf Ct.', 'NULL', '197-555-0167', '2013-12-26', '0-1 Miles'], ['18782', '326', 'AW00018782', 'NULL', 'Patrick', 'NULL', 'Reed', '0', '1977-10-21', 'M', 'NULL', 'M', 'patrick25@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '6485 Langley Ct.', 'NULL', '538-555-0132', '2013-12-18', '1-2 Miles'], ['18783', '552', 'AW00018783', 'NULL', 'Michael', 'NULL', 'Martin', '0', '1973-10-17', 'S', 'NULL', 'M', 'michael46@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '1970 Napa Ct.', 'NULL', '743-555-0126', '2013-12-26', '0-1 Miles'], ['18784', '369', 'AW00018784', 'NULL', 'Trinity', 'M', 'Brooks', '0', '1973-09-30', 'M', 'NULL', 'F', 'trinity1@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '4557 Rolling Hill Way', 'NULL', '259-555-0199', '2013-10-15', '1-2 Miles'], ['18785', '60', 'AW00018785', 'NULL', 'Sara', 'NULL', 'Rivera', '0', '1973-05-04', 'S', 'NULL', 'F', 'sara18@adventure-works.com', '110000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '256 Gumwood Dr', 'NULL', '870-555-0111', '2013-11-28', '0-1 Miles'], ['18786', '298', 'AW00018786', 'NULL', 'Dustin', 'NULL', 'Chande', '0', '1973-04-14', 'S', 'NULL', 'M', 'dustin15@adventure-works.com', '120000.00', '0', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '2292 Springlake Drive', 'NULL', '352-555-0145', '2013-04-03', '1-2 Miles'], ['18787', '618', 'AW00018787', 'NULL', 'Mya', 'L', 'Wood', '0', '1968-11-10', 'M', 'NULL', 'F', 'mya4@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '5917 Panoramic Avenue', 'NULL', '114-555-0195', '2013-09-17', '0-1 Miles'], ['18788', '54', 'AW00018788', 'NULL', 'Madison', 'L', 'Thompson', '0', '1973-08-30', 'S', 'NULL', 'F', 'madison16@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '5967 Greystone Dr.', 'NULL', '697-555-0160', '2013-11-21', '1-2 Miles'], ['18789', '648', 'AW00018789', 'NULL', 'Seth', 'C', 'Robinson', '0', '1979-04-18', 'S', 'NULL', 'M', 'seth17@adventure-works.com', '110000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '7992 Elm Road', 'NULL', '683-555-0147', '2013-12-21', '0-1 Miles'], ['18790', '635', 'AW00018790', 'NULL', 'Julia', 'NULL', 'Martin', '0', '1985-03-25', 'M', 'NULL', 'F', 'julia36@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8315 Near Ct.', 'NULL', '302-555-0133', '2013-11-18', '5-10 Miles'], ['18791', '638', 'AW00018791', 'NULL', 'Megan', 'NULL', 'Blue', '0', '1985-02-19', 'S', 'NULL', 'F', 'megan34@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9652 Los Angeles', 'NULL', '952-555-0115', '2013-12-21', '5-10 Miles'], ['18792', '552', 'AW00018792', 'NULL', 'Gabriella', 'M', 'Peterson', '0', '1985-02-20', 'M', 'NULL', 'F', 'gabriella2@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1829 Satin Court', 'NULL', '193-555-0123', '2013-11-24', '5-10 Miles'], ['18793', '40', 'AW00018793', 'NULL', 'Angel', 'M', 'Cox', '0', '1949-10-17', 'M', 'NULL', 'M', 'angel10@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5812 Cincerto Circle', 'NULL', '1 (11) 500 555-0110', '2013-11-24', '1-2 Miles'], ['18794', '337', 'AW00018794', 'NULL', 'Andrew', 'C', 'Davis', '0', '1984-09-16', 'S', 'NULL', 'M', 'andrew14@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7808 Brown St.', 'NULL', '689-555-0149', '2013-11-02', '5-10 Miles'], ['18795', '62', 'AW00018795', 'NULL', 'Nathan', 'A', 'Alexander', '0', '1984-03-03', 'S', 'NULL', 'M', 'nathan15@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '570 Highridge Court', 'NULL', '161-555-0119', '2013-05-08', '1-2 Miles'], ['18796', '18', 'AW00018796', 'NULL', 'Marvin', 'R', 'Ruiz', '0', '1953-06-04', 'M', 'NULL', 'M', 'marvin2@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1354 Catnip Court', 'NULL', '1 (11) 500 555-0118', '2013-10-09', '5-10 Miles'], ['18797', '634', 'AW00018797', 'NULL', 'Evan', 'L', 'Murphy', '0', '1983-09-21', 'S', 'NULL', 'M', 'evan16@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6900 Bellord Ct.', 'NULL', '794-555-0159', '2014-01-21', '1-2 Miles'], ['18798', '325', 'AW00018798', 'NULL', 'Andrea', 'K', 'Allen', '0', '1983-12-11', 'M', 'NULL', 'F', 'andrea45@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1658 Stonyhill Circle', 'NULL', '306-555-0110', '2013-10-31', '5-10 Miles'], ['18799', '331', 'AW00018799', 'NULL', 'Jacob', 'K', 'Lewis', '0', '1977-04-22', 'M', 'NULL', 'M', 'jacob17@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3114 Notre Dame Ave.', 'NULL', '128-555-0173', '2013-04-04', '0-1 Miles'], ['18800', '542', 'AW00018800', 'NULL', 'Jennifer', 'A', 'Phillips', '0', '1982-10-08', 'M', 'NULL', 'F', 'jennifer8@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1074 Lori Drive', 'NULL', '158-555-0148', '2013-11-06', '1-2 Miles'], ['18801', '299', 'AW00018801', 'NULL', 'Dawn', 'A', 'Yuan', '0', '1976-09-17', 'M', 'NULL', 'F', 'dawn30@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1019 Carletto Drive', 'NULL', '976-555-0113', '2013-10-30', '0-1 Miles'], ['18802', '611', 'AW00018802', 'NULL', 'Mario', 'T', 'Shen', '0', '1982-10-07', 'M', 'NULL', 'M', 'mario1@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4951 G Street', 'NULL', '602-555-0112', '2013-11-26', '0-1 Miles'], ['18803', '611', 'AW00018803', 'NULL', 'Cedric', 'V', 'Zheng', '0', '1977-05-26', 'M', 'NULL', 'M', 'cedric19@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '26 Plymouth Dr.', 'NULL', '433-555-0141', '2013-12-06', '0-1 Miles'], ['18804', '347', 'AW00018804', 'NULL', 'Aaron', 'NULL', 'Gonzales', '0', '1982-05-22', 'M', 'NULL', 'M', 'aaron16@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4247 Bellows Ct', 'NULL', '647-555-0136', '2013-12-16', '1-2 Miles'], ['18805', '536', 'AW00018805', 'NULL', 'Tracy', 'NULL', 'Simpson', '0', '1977-12-19', 'M', 'NULL', 'F', 'tracy4@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7427 Fern Leaf Lane', 'NULL', '242-555-0116', '2014-01-27', '0-1 Miles'], ['18806', '539', 'AW00018806', 'NULL', 'Kaitlyn', 'NULL', 'Torres', '0', '1978-03-08', 'M', 'NULL', 'F', 'kaitlyn60@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3340 Baywood Drive', 'NULL', '635-555-0110', '2013-11-30', '2-5 Miles'], ['18807', '307', 'AW00018807', 'NULL', 'Spencer', 'NULL', 'Bennett', '0', '1970-01-11', 'S', 'NULL', 'M', 'spencer2@adventure-works.com', '130000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '1496 Chilpancingo', 'NULL', '503-555-0131', '2013-03-27', '1-2 Miles'], ['18808', '310', 'AW00018808', 'NULL', 'Gabrielle', 'NULL', 'Perez', '0', '1961-10-24', 'S', 'NULL', 'F', 'gabrielle55@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '5993 Baywood Drive', 'NULL', '988-555-0180', '2013-12-17', '5-10 Miles'], ['18809', '536', 'AW00018809', 'NULL', 'Jason', 'NULL', 'King', '0', '1961-10-06', 'M', 'NULL', 'M', 'jason47@adventure-works.com', '80000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '1078 Aloe Vera Road', 'NULL', '797-555-0190', '2013-04-01', '0-1 Miles'], ['18810', '612', 'AW00018810', 'NULL', 'Casey', 'NULL', 'Dominguez', '0', '1939-12-22', 'M', 'NULL', 'M', 'casey36@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1841 Prestwick Drive', 'NULL', '352-555-0114', '2013-11-09', '1-2 Miles'], ['18811', '59', 'AW00018811', 'NULL', 'Samuel', 'NULL', 'Perry', '0', '1968-12-24', 'M', 'NULL', 'M', 'samuel6@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2192 Pacifica Ave', 'NULL', '240-555-0173', '2013-02-22', '2-5 Miles'], ['18812', '69', 'AW00018812', 'NULL', 'Kyle', 'E', 'Adams', '0', '1979-09-30', 'S', 'NULL', 'M', 'kyle45@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9884 Pacifica Ave.', 'NULL', '274-555-0116', '2013-03-01', '2-5 Miles'], ['18813', '607', 'AW00018813', 'NULL', 'Kristy', 'G', 'Hernandez', '0', '1968-11-05', 'S', 'NULL', 'F', 'kristy4@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '8732 Carob Way', 'NULL', '226-555-0181', '2014-01-20', '5-10 Miles'], ['18814', '616', 'AW00018814', 'NULL', 'Evan', 'NULL', 'Adams', '0', '1980-01-10', 'S', 'NULL', 'M', 'evan39@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '4428 Jones Rd.', 'NULL', '766-555-0180', '2013-07-10', '10+ Miles'], ['18815', '626', 'AW00018815', 'NULL', 'Abigail', 'NULL', 'Rogers', '0', '1968-12-13', 'M', 'NULL', 'F', 'abigail5@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '8585 Los Gatos Ct.', 'NULL', '329-555-0186', '2013-09-20', '10+ Miles'], ['18816', '546', 'AW00018816', 'NULL', 'Taylor', 'NULL', 'Smith', '0', '1968-12-12', 'S', 'NULL', 'F', 'taylor47@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '319 Dale Pl.', 'NULL', '753-555-0165', '2013-02-28', '10+ Miles'], ['18817', '633', 'AW00018817', 'NULL', 'Brittany', 'NULL', 'Russell', '0', '1985-01-06', 'S', 'NULL', 'F', 'brittany18@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '1437 Doon Cr', 'NULL', '118-555-0149', '2013-12-24', '2-5 Miles'], ['18818', '343', 'AW00018818', 'NULL', 'Lucas', 'NULL', 'Torres', '0', '1968-09-12', 'M', 'NULL', 'M', 'lucas76@adventure-works.com', '130000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '3848 Mt. Diablo St.', 'NULL', '476-555-0141', '2013-12-20', '0-1 Miles'], ['18819', '368', 'AW00018819', 'NULL', 'Miranda', 'NULL', 'Bennett', '0', '1974-04-22', 'M', 'NULL', 'F', 'miranda1@adventure-works.com', '150000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7475 Peachwillow Street', 'NULL', '278-555-0150', '2013-12-05', '1-2 Miles'], ['18820', '383', 'AW00018820', 'NULL', 'Alexandria', 'NULL', 'Cook', '0', '1974-01-29', 'M', 'NULL', 'F', 'alexandria42@adventure-works.com', '160000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '8048 Rosina Court', 'NULL', '203-555-0130', '2013-07-08', '0-1 Miles'], ['18821', '55', 'AW00018821', 'NULL', 'Juan', 'C', 'Morgan', '0', '1968-06-14', 'S', 'NULL', 'M', 'juan23@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4032 Woodruff Ln.', 'NULL', '848-555-0112', '2013-06-14', '5-10 Miles'], ['18822', '536', 'AW00018822', 'NULL', 'Gregory', 'J', 'Ferrier', '0', '1967-12-23', 'M', 'NULL', 'M', 'gregory26@adventure-works.com', '90000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '4055 Leonard Ct.', 'NULL', '882-555-0118', '2013-08-10', '1-2 Miles'], ['18823', '298', 'AW00018823', 'NULL', 'Russell', 'NULL', 'Xu', '0', '1967-10-24', 'S', 'NULL', 'M', 'russell9@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '3309 Clayton Way', 'NULL', '719-555-0182', '2013-06-06', '1-2 Miles'], ['18824', '331', 'AW00018824', 'NULL', 'Elijah', 'L', 'Collins', '0', '1968-02-21', 'M', 'NULL', 'M', 'elijah31@adventure-works.com', '120000.00', '1', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '2535 Park Lane', 'NULL', '620-555-0143', '2013-11-29', '5-10 Miles'], ['18825', '358', 'AW00018825', 'NULL', 'Brandon', 'A', 'Smith', '0', '1973-09-18', 'M', 'NULL', 'M', 'brandon37@adventure-works.com', '130000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '8753 Jacaranda Dr.', 'NULL', '179-555-0159', '2013-09-09', '0-1 Miles'], ['18826', '62', 'AW00018826', 'NULL', 'Allison', 'R', 'Stewart', '0', '1972-06-23', 'M', 'NULL', 'F', 'allison24@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '1804 B Southampton Rd.', 'NULL', '334-555-0139', '2013-03-13', '2-5 Miles'], ['18827', '536', 'AW00018827', 'NULL', 'Carmen', 'G', 'Raman', '0', '1972-11-18', 'S', 'NULL', 'F', 'carmen15@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '9327 Roland Drive', 'NULL', '990-555-0183', '2013-12-27', '5-10 Miles'], ['18828', '616', 'AW00018828', 'NULL', 'Morgan', 'NULL', 'Wright', '0', '1966-08-16', 'M', 'NULL', 'F', 'morgan17@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '1121 Ferry Street', 'NULL', '165-555-0175', '2013-09-15', '1-2 Miles'], ['18829', '618', 'AW00018829', 'NULL', 'Jackson', 'C', 'Simmons', '0', '1966-09-11', 'S', 'NULL', 'M', 'jackson17@adventure-works.com', '90000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '6328 Eola', 'NULL', '762-555-0151', '2013-12-03', '5-10 Miles'], ['18830', '298', 'AW00018830', 'NULL', 'Kristine', 'NULL', 'Ortega', '0', '1967-03-08', 'M', 'NULL', 'F', 'kristine22@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '7581 Alaska Dr.', 'NULL', '403-555-0196', '2013-11-17', '5-10 Miles'], ['18831', '298', 'AW00018831', 'NULL', 'Andy', 'NULL', 'Hernandez', '0', '1967-06-27', 'S', 'NULL', 'M', 'andy8@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '5485 Wee Donegal', '# 77', '922-555-0148', '2013-12-26', '5-10 Miles'], ['18832', '355', 'AW00018832', 'NULL', 'Dylan', 'C', 'Jackson', '0', '1967-02-04', 'M', 'NULL', 'M', 'dylan42@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '594 Danesta Dr.', 'NULL', '708-555-0179', '2013-12-12', '2-5 Miles'], ['18833', '334', 'AW00018833', 'NULL', 'Morgan', 'NULL', 'Baker', '0', '1960-08-30', 'M', 'NULL', 'F', 'morgan13@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '3560 River Rock Lane', 'NULL', '156-555-0171', '2013-12-09', '1-2 Miles'], ['18834', '614', 'AW00018834', 'NULL', 'Ana', 'S', 'Foster', '0', '1961-04-18', 'M', 'NULL', 'F', 'ana15@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '7680 Glaze Ct', 'NULL', '117-555-0159', '2013-12-28', '1-2 Miles'], ['18835', '316', 'AW00018835', 'NULL', 'Isabelle', 'J', 'Coleman', '0', '1960-10-11', 'S', 'NULL', 'F', 'isabelle6@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2421 Norse Drive', 'NULL', '336-555-0172', '2013-01-29', '5-10 Miles'], ['18836', '633', 'AW00018836', 'NULL', 'Nicole', 'NULL', 'Cooper', '0', '1960-08-13', 'S', 'NULL', 'F', 'nicole35@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8282 Meadowbrook Court', 'NULL', '236-555-0198', '2013-03-27', '5-10 Miles'], ['18837', '372', 'AW00018837', 'NULL', 'Amanda', 'NULL', 'Hernandez', '0', '1961-04-11', 'M', 'NULL', 'F', 'amanda61@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '7612 Wilbur Drive', 'NULL', '695-555-0150', '2013-06-05', '1-2 Miles'], ['18838', '372', 'AW00018838', 'NULL', 'Natalie', 'C', 'Morris', '0', '1966-09-09', 'M', 'NULL', 'F', 'natalie2@adventure-works.com', '80000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '3159 C Wharton Way', 'NULL', '479-555-0144', '2013-12-17', '5-10 Miles'], ['18839', '60', 'AW00018839', 'NULL', 'Don', 'NULL', 'Lee', '0', '1966-04-09', 'M', 'NULL', 'M', 'don4@adventure-works.com', '80000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6212 C Olivera Rd', 'NULL', '465-555-0196', '2013-11-10', '1-2 Miles'], ['18840', '633', 'AW00018840', 'NULL', 'Alexandria', 'NULL', 'Barnes', '0', '1961-06-17', 'M', 'NULL', 'F', 'alexandria3@adventure-works.com', '80000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '3875 Black Walnut Court', 'NULL', '388-555-0133', '2013-11-29', '1-2 Miles'], ['18841', '63', 'AW00018841', 'NULL', 'Gabriella', 'NULL', 'Campbell', '0', '1942-03-06', 'M', 'NULL', 'F', 'gabriella29@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '2528 G St.', 'NULL', '361-555-0180', '2013-05-02', '5-10 Miles'], ['18842', '69', 'AW00018842', 'NULL', 'James', 'M', 'Gonzalez', '0', '1942-01-05', 'S', 'NULL', 'M', 'james58@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8521 C Mt. Hood Circle', 'NULL', '167-555-0196', '2013-05-10', '5-10 Miles'], ['18843', '536', 'AW00018843', 'NULL', 'Luis', 'M', 'Perez', '0', '1941-07-19', 'M', 'NULL', 'M', 'luis36@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '7290 Sweeney Road', 'NULL', '244-555-0188', '2013-11-20', '1-2 Miles'], ['18844', '635', 'AW00018844', 'NULL', 'Dalton', 'A', 'Hernandez', '0', '1947-10-11', 'S', 'NULL', 'M', 'dalton25@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9507 San Vicente Dr', 'NULL', '865-555-0169', '2013-06-21', '5-10 Miles'], ['18845', '642', 'AW00018845', 'NULL', 'Katherine', 'E', 'Hughes', '0', '1941-09-29', 'M', 'NULL', 'F', 'katherine37@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '47 Catherine Way', 'NULL', '858-555-0114', '2013-04-22', '1-2 Miles'], ['18846', '644', 'AW00018846', 'NULL', 'Deb', 'NULL', 'Hughes', '0', '1941-08-31', 'S', 'NULL', 'M', 'deb8@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2479 Buckingham Dr.', 'NULL', '723-555-0161', '2014-01-03', '5-10 Miles'], ['18847', '553', 'AW00018847', 'NULL', 'Ariana', 'B', 'Richardson', '0', '1947-05-08', 'M', 'NULL', 'F', 'ariana8@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8230 Madrone St', 'NULL', '165-555-0198', '2013-08-19', '5-10 Miles'], ['18848', '299', 'AW00018848', 'NULL', 'Christian', 'J', 'Harris', '0', '1941-11-01', 'M', 'NULL', 'M', 'christian49@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9904 C. Mt. Hood', 'NULL', '755-555-0163', '2013-12-13', '1-2 Miles'], ['18849', '632', 'AW00018849', 'NULL', 'Faith', 'NULL', 'Flores', '0', '1965-12-13', 'S', 'NULL', 'F', 'faith11@adventure-works.com', '100000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '5840 Hillview Ct', 'NULL', '750-555-0154', '2013-12-03', '5-10 Miles'], ['18850', '339', 'AW00018850', 'NULL', 'Ethan', 'NULL', 'Hughes', '0', '1966-01-10', 'M', 'NULL', 'M', 'ethan8@adventure-works.com', '130000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '551 Two Bay Road', 'NULL', '192-555-0120', '2013-12-05', '2-5 Miles'], ['18851', '337', 'AW00018851', 'NULL', 'Dalton', 'E', 'Cook', '0', '1960-04-14', 'M', 'NULL', 'M', 'dalton83@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8634 Mi Casa Court', 'NULL', '944-555-0117', '2013-12-12', '1-2 Miles'], ['18852', '60', 'AW00018852', 'NULL', 'Allison', 'B', 'Sanders', '0', '1965-07-19', 'M', 'NULL', 'F', 'allison2@adventure-works.com', '80000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1693 C Northwood Dr', 'NULL', '692-555-0189', '2013-08-08', '5-10 Miles'], ['18853', '539', 'AW00018853', 'NULL', 'Jacqueline', 'NULL', 'Gray', '0', '1960-01-11', 'M', 'NULL', 'F', 'jacqueline30@adventure-works.com', '80000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5851 Dancing Court', 'NULL', '697-555-0184', '2013-04-26', '5-10 Miles'], ['18854', '623', 'AW00018854', 'NULL', 'Hunter', 'NULL', 'Turner', '0', '1965-05-21', 'M', 'NULL', 'M', 'hunter34@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1908 Petarct', 'NULL', '959-555-0118', '2013-12-19', '1-2 Miles'], ['18855', '54', 'AW00018855', 'NULL', 'Robert', 'NULL', 'Zhang', '0', '1959-11-19', 'S', 'NULL', 'M', 'robert35@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4025 Hill Dr', 'NULL', '163-555-0111', '2013-05-19', '5-10 Miles'], ['18856', '352', 'AW00018856', 'NULL', 'Thomas', 'NULL', 'Green', '0', '1959-09-12', 'M', 'NULL', 'M', 'thomas50@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4135 Kaywood Drive', 'NULL', '198-555-0118', '2013-12-23', '1-2 Miles'], ['18857', '614', 'AW00018857', 'NULL', 'Sebastian', 'L', 'Sanders', '0', '1960-01-01', 'M', 'NULL', 'M', 'sebastian3@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5680 Camelback Ct.', 'NULL', '300-555-0170', '2013-12-20', '5-10 Miles'], ['18858', '336', 'AW00018858', 'NULL', 'Miguel', 'K', 'Parker', '0', '1959-11-02', 'S', 'NULL', 'M', 'miguel42@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5980 Icicle Circle', 'Unit H', '199-555-0159', '2013-12-19', '5-10 Miles'], ['18859', '62', 'AW00018859', 'NULL', 'Olivia', 'NULL', 'Henderson', '0', '1960-03-17', 'M', 'NULL', 'F', 'olivia50@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2555 Via Rosa', 'NULL', '411-555-0118', '2013-06-18', '5-10 Miles'], ['18860', '635', 'AW00018860', 'NULL', 'Sydney', 'J', 'Foster', '0', '1965-12-13', 'M', 'NULL', 'F', 'sydney38@adventure-works.com', '70000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '0', '512 Palms Dr', 'NULL', '714-555-0190', '2013-12-06', '1-2 Miles'], ['18861', '607', 'AW00018861', 'NULL', 'Ashley', 'NULL', 'Wood', '0', '1959-08-22', 'M', 'NULL', 'F', 'ashley28@adventure-works.com', '70000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '192 Bundros Court', 'NULL', '697-555-0180', '2013-10-10', '5-10 Miles'], ['18862', '300', 'AW00018862', 'NULL', 'Luke', 'NULL', 'Zhang', '0', '1960-03-21', 'M', 'NULL', 'M', 'luke13@adventure-works.com', '70000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '824 El Campo Ct', 'NULL', '853-555-0199', '2013-12-04', '5-10 Miles'], ['18863', '383', 'AW00018863', 'NULL', 'Charles', 'M', 'Scott', '0', '1960-05-13', 'S', 'NULL', 'M', 'charles33@adventure-works.com', '70000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '6557 Rose St.', 'NULL', '750-555-0154', '2013-12-20', '5-10 Miles'], ['18864', '361', 'AW00018864', 'NULL', 'Elijah', 'NULL', 'Long', '0', '1965-09-08', 'M', 'NULL', 'M', 'elijah13@adventure-works.com', '70000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '0', '7360 San Benito Drive', 'NULL', '706-555-0161', '2013-12-05', '1-2 Miles'], ['18865', '623', 'AW00018865', 'NULL', 'Ashley', 'P', 'Hayes', '0', '1958-07-23', 'M', 'NULL', 'F', 'ashley50@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8447 Kentucky Dr.', 'NULL', '117-555-0125', '2013-12-12', '1-2 Miles'], ['18866', '311', 'AW00018866', 'NULL', 'Miguel', 'NULL', 'Scott', '0', '1958-09-30', 'M', 'NULL', 'M', 'miguel30@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '975 Madrid', 'NULL', '399-555-0192', '2013-12-12', '1-2 Miles'], ['18867', '545', 'AW00018867', 'NULL', 'Thomas', 'R', 'Perry', '0', '1958-03-15', 'M', 'NULL', 'M', 'thomas9@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '5064 Greendell Rd', 'NULL', '522-555-0149', '2013-12-03', '1-2 Miles'], ['18868', '337', 'AW00018868', 'NULL', 'Adam', 'NULL', 'Long', '0', '1957-11-15', 'S', 'NULL', 'M', 'adam7@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4666 Lancelot Drive', 'NULL', '954-555-0118', '2013-11-29', '5-10 Miles'], ['18869', '343', 'AW00018869', 'NULL', 'Ashley', 'J', 'Flores', '0', '1958-02-25', 'M', 'NULL', 'F', 'ashley39@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '289 D Bel Air Drive', 'NULL', '666-555-0149', '2013-11-30', '5-10 Miles'], ['18870', '536', 'AW00018870', 'NULL', 'Ana', 'NULL', 'Barnes', '0', '1958-01-31', 'M', 'NULL', 'F', 'ana3@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '7600 Tulip Drive', 'NULL', '228-555-0115', '2014-01-21', '5-10 Miles'], ['18871', '43', 'AW00018871', 'NULL', 'Ruben', 'D', 'Rubio', '0', '1943-01-11', 'M', 'NULL', 'M', 'ruben0@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5979 La Corte Bonita', 'NULL', '652-555-0151', '2013-02-04', '10+ Miles'], ['18872', '611', 'AW00018872', 'NULL', 'Miguel', 'NULL', 'Severino', '0', '1943-12-19', 'M', 'NULL', 'M', 'miguel71@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4421 Holiday Hill Dr.', 'NULL', '276-555-0184', '2013-10-20', '10+ Miles'], ['18873', '552', 'AW00018873', 'NULL', 'Austin', 'J', 'Rodriguez', '0', '1945-05-18', 'S', 'NULL', 'M', 'austin35@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6227 Oak Creek Ct.', 'NULL', '145-555-0182', '2013-08-11', '10+ Miles'], ['18874', '638', 'AW00018874', 'NULL', 'Julia', 'NULL', 'Green', '0', '1944-11-03', 'M', 'NULL', 'F', 'julia11@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1120 Curtis Drive', 'NULL', '864-555-0131', '2013-08-03', '10+ Miles'], ['18875', '71', 'AW00018875', 'NULL', 'Devin', 'A', 'Watson', '0', '1944-11-23', 'M', 'NULL', 'M', 'devin62@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5728 Thames Dr', 'NULL', '739-555-0110', '2013-09-03', '1-2 Miles'], ['18876', '300', 'AW00018876', 'NULL', 'Luke', 'NULL', 'Chen', '0', '1945-02-15', 'M', 'NULL', 'M', 'luke15@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8432 Sierra Madre', '#914', '982-555-0198', '2013-12-15', '10+ Miles'], ['18877', '299', 'AW00018877', 'NULL', 'Evan', 'NULL', 'Hall', '0', '1951-07-03', 'M', 'NULL', 'M', 'evan47@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2152 Roan Lane', 'NULL', '142-555-0153', '2013-05-08', '5-10 Miles'], ['18878', '310', 'AW00018878', 'NULL', 'Mallory', 'M', 'Ramos', '0', '1951-10-16', 'M', 'NULL', 'F', 'mallory4@adventure-works.com', '80000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3271 Norse Ct', 'NULL', '295-555-0171', '2013-12-01', '1-2 Miles'], ['18879', '310', 'AW00018879', 'NULL', 'Garrett', 'J', 'Morgan', '0', '1958-03-22', 'M', 'NULL', 'M', 'garrett17@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2964 St. George Dr.', 'NULL', '830-555-0197', '2013-11-05', '10+ Miles'], ['18880', '536', 'AW00018880', 'NULL', 'Jarrod', 'NULL', 'Sanchez', '0', '1946-09-04', 'M', 'NULL', 'M', 'jarrod19@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '1417 Roosevelt Avenue', 'NULL', '175-555-0161', '2013-10-14', '1-2 Miles'], ['18881', '546', 'AW00018881', 'NULL', 'Kimberly', 'NULL', 'James', '0', '1946-08-07', 'M', 'NULL', 'F', 'kimberly11@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '800 Treeline Drive', 'NULL', '311-555-0111', '2013-12-23', '10+ Miles'], ['18882', '63', 'AW00018882', 'NULL', 'Dalton', 'C', 'Hayes', '0', '1947-01-31', 'M', 'NULL', 'M', 'dalton68@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '7311 Blackridge Dr.', 'NULL', '138-555-0196', '2013-11-26', '1-2 Miles'], ['18883', '51', 'AW00018883', 'NULL', 'Jonathan', 'NULL', 'Garcia', '0', '1982-12-05', 'S', 'NULL', 'M', 'jonathan70@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '983 St. Dunstan Ct.', 'NULL', '516-555-0154', '2013-03-12', '5-10 Miles'], ['18884', '60', 'AW00018884', 'NULL', 'Bryan', 'NULL', 'Reed', '0', '1982-12-17', 'S', 'NULL', 'M', 'bryan21@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5071 Stonehedge Dr.', 'NULL', '391-555-0123', '2013-08-16', '5-10 Miles'], ['18885', '10', 'AW00018885', 'NULL', 'Cara', 'NULL', 'Ma', '0', '1953-12-22', 'S', 'NULL', 'F', 'cara11@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6062 Sudden Loop', 'NULL', '1 (11) 500 555-0184', '2013-02-09', '5-10 Miles'], ['18886', '607', 'AW00018886', 'NULL', 'Donald', 'E', 'McDonald', '0', '1983-06-10', 'S', 'NULL', 'M', 'donald7@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2309 Mt. Olivet Ct.', 'NULL', '164-555-0155', '2013-09-26', '1-2 Miles'], ['18887', '607', 'AW00018887', 'NULL', 'Kari', 'NULL', 'Hernandez', '0', '1982-11-21', 'S', 'NULL', 'F', 'kari24@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5486 Maria Vega Court', 'NULL', '318-555-0161', '2013-12-27', '5-10 Miles'], ['18888', '623', 'AW00018888', 'NULL', 'Devin', 'NULL', 'Powell', '0', '1983-06-17', 'S', 'NULL', 'M', 'devin47@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6920 Brook Hollow Ct.', 'NULL', '397-555-0152', '2013-04-24', '5-10 Miles'], ['18889', '627', 'AW00018889', 'NULL', 'Katelyn', 'NULL', 'Murphy', '0', '1982-09-14', 'S', 'NULL', 'F', 'katelyn14@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1250 Sierra Ridge', 'NULL', '714-555-0164', '2013-02-01', '1-2 Miles'], ['18890', '634', 'AW00018890', 'NULL', 'Lauren', 'NULL', 'Blue', '0', '1982-11-30', 'M', 'NULL', 'F', 'lauren5@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3127 Terrace', 'NULL', '983-555-0112', '2013-07-17', '5-10 Miles'], ['18891', '298', 'AW00018891', 'NULL', 'Megan', 'S', 'James', '0', '1983-03-10', 'M', 'NULL', 'F', 'megan45@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4912 La Vuelta', 'NULL', '677-555-0130', '2013-12-31', '5-10 Miles'], ['18892', '310', 'AW00018892', 'NULL', 'Chase', 'K', 'Howard', '0', '1983-05-16', 'S', 'NULL', 'M', 'chase11@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4496 Hurlstone Ct.', 'NULL', '133-555-0121', '2013-11-15', '5-10 Miles'], ['18893', '329', 'AW00018893', 'NULL', 'Devin', 'I', 'White', '0', '1982-12-13', 'S', 'NULL', 'M', 'devin11@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9549 Roxbury Drive', 'NULL', '808-555-0131', '2013-03-16', '1-2 Miles'], ['18894', '345', 'AW00018894', 'NULL', 'Eric', 'O', 'Allen', '0', '1983-03-21', 'S', 'NULL', 'M', 'eric62@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4478 W Lake Drive', 'NULL', '507-555-0146', '2013-12-14', '5-10 Miles'], ['18895', '28', 'AW00018895', 'NULL', 'Marco', 'NULL', 'Madan', '0', '1960-08-13', 'M', 'NULL', 'M', 'marco8@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6675 Andrea Lane', 'NULL', '1 (11) 500 555-0177', '2013-02-26', '5-10 Miles'], ['18896', '31', 'AW00018896', 'NULL', 'Jonathan', 'NULL', 'Russell', '0', '1954-09-13', 'M', 'NULL', 'M', 'jonathan19@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3698 Driftwood Court', 'NULL', '1 (11) 500 555-0149', '2013-04-19', '1-2 Miles'], ['18897', '15', 'AW00018897', 'NULL', 'Russell', 'NULL', 'Black', '0', '1955-02-04', 'M', 'NULL', 'M', 'russell23@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7805 Roslyn Drive', 'NULL', '1 (11) 500 555-0117', '2013-09-01', '5-10 Miles'], ['18898', '15', 'AW00018898', 'NULL', 'Monica', 'H', 'Chandra', '0', '1961-03-10', 'S', 'NULL', 'F', 'monica2@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6456 Eagle Way', 'NULL', '1 (11) 500 555-0186', '2013-03-08', '5-10 Miles'], ['18899', '29', 'AW00018899', 'NULL', 'Glenn', 'NULL', 'Liu', '0', '1955-10-26', 'M', 'NULL', 'M', 'glenn5@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '8186 St. Michael Drive', '#a', '1 (11) 500 555-0146', '2011-07-03', '5-10 Miles'], ['18900', '12', 'AW00018900', 'NULL', 'Mathew', 'L', 'Torres', '0', '1956-04-06', 'M', 'NULL', 'M', 'mathew7@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6939 E. 8th St.', 'NULL', '1 (11) 500 555-0197', '2011-07-14', '5-10 Miles'], ['18901', '19', 'AW00018901', 'NULL', 'Connor', 'C', 'Shan', '0', '1962-09-05', 'S', 'NULL', 'M', 'connor26@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '8049 Jefferson Street', 'NULL', '1 (11) 500 555-0188', '2013-06-15', '5-10 Miles'], ['18902', '35', 'AW00018902', 'NULL', 'Steve', 'R', 'Chen', '0', '1962-08-12', 'M', 'NULL', 'M', 'steve6@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3972 Almond Drive', 'NULL', '1 (11) 500 555-0125', '2011-07-20', '1-2 Miles'], ['18903', '18', 'AW00018903', 'NULL', 'Louis', 'NULL', 'Zeng', '0', '1957-05-26', 'S', 'NULL', 'M', 'louis16@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1700 C Street', 'NULL', '1 (11) 500 555-0194', '2011-07-17', '5-10 Miles'], ['18904', '358', 'AW00018904', 'NULL', 'Emma', 'J', 'Thomas', '0', '1986-04-12', 'S', 'NULL', 'F', 'emma10@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3923 Montgomery Ave.', 'NULL', '684-555-0120', '2013-09-17', '5-10 Miles'], ['18905', '627', 'AW00018905', 'NULL', 'Samuel', 'NULL', 'Adams', '0', '1985-04-01', 'S', 'NULL', 'M', 'samuel44@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3518 Black Pine Lane', 'NULL', '161-555-0157', '2013-12-20', '0-1 Miles'], ['18906', '30', 'AW00018906', 'NULL', 'Adrienne', 'NULL', 'Gutierrez', '0', '1957-10-11', 'S', 'NULL', 'F', 'adrienne7@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8857 Sunshine', 'NULL', '1 (11) 500 555-0110', '2011-07-03', '5-10 Miles'], ['18907', '22', 'AW00018907', 'NULL', 'Priscilla', 'NULL', 'Nara', '0', '1957-11-15', 'M', 'NULL', 'F', 'priscilla15@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6929 Citrus Ave.', 'NULL', '1 (11) 500 555-0118', '2011-07-21', '5-10 Miles'], ['18908', '24', 'AW00018908', 'NULL', 'Krystal', 'NULL', 'Sun', '0', '1960-02-14', 'S', 'NULL', 'F', 'krystal13@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1378 California St.', 'NULL', '1 (11) 500 555-0120', '2011-07-26', '1-2 Miles'], ['18909', '33', 'AW00018909', 'NULL', 'Jodi', 'A', 'Chavez', '0', '1960-12-10', 'S', 'NULL', 'F', 'jodi15@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9189 Shady Ln.', 'NULL', '1 (11) 500 555-0192', '2011-07-03', '5-10 Miles'], ['18910', '536', 'AW00018910', 'NULL', 'Marco', 'NULL', 'Perez', '0', '1981-04-26', 'S', 'NULL', 'M', 'marco20@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4144 Tahoe Place', 'NULL', '368-555-0196', '2013-11-11', '5-10 Miles'], ['18911', '626', 'AW00018911', 'NULL', 'Elijah', 'NULL', 'McDonald', '0', '1980-12-19', 'S', 'NULL', 'M', 'elijah47@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7333 Alderwood Lane', 'NULL', '145-555-0139', '2013-11-22', '5-10 Miles'], ['18912', '626', 'AW00018912', 'NULL', 'Tyler', 'NULL', 'Williams', '0', '1981-04-15', 'M', 'NULL', 'M', 'tyler6@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6361 Appalachia Dr.', 'NULL', '451-555-0115', '2013-06-07', '5-10 Miles'], ['18913', '301', 'AW00018913', 'NULL', 'Jesse', 'NULL', 'Stewart', '0', '1981-05-06', 'M', 'NULL', 'M', 'jesse26@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6938 Harbor View Dr.', 'NULL', '119-555-0123', '2013-10-05', '5-10 Miles'], ['18914', '301', 'AW00018914', 'NULL', 'Felicia', 'L', 'Ruiz', '0', '1981-01-12', 'S', 'NULL', 'F', 'felicia2@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7538 Adobe Dr', 'NULL', '536-555-0198', '2013-12-12', '1-2 Miles'], ['18915', '316', 'AW00018915', 'NULL', 'Sydney', 'NULL', 'Gonzalez', '0', '1980-07-04', 'M', 'NULL', 'F', 'sydney58@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6474 Helen Ave.', 'NULL', '131-555-0112', '2013-08-02', '5-10 Miles'], ['18916', '352', 'AW00018916', 'NULL', 'Christian', 'B', 'Moore', '0', '1979-08-03', 'S', 'NULL', 'M', 'christian41@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '802 Leonard Ct', 'NULL', '858-555-0139', '2013-09-04', '1-2 Miles'], ['18917', '372', 'AW00018917', 'NULL', 'Jonathan', 'E', 'Nelson', '0', '1979-09-08', 'M', 'NULL', 'M', 'jonathan38@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8150 Ryan Rd.', 'NULL', '173-555-0187', '2013-09-20', '1-2 Miles'], ['18918', '641', 'AW00018918', 'NULL', 'Jacqueline', 'NULL', 'Ross', '0', '1979-06-25', 'M', 'NULL', 'F', 'jacqueline4@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2927 Woodside Court', 'NULL', '572-555-0180', '2013-08-18', '5-10 Miles'], ['18919', '59', 'AW00018919', 'NULL', 'Eduardo', 'J', 'Hernandez', '0', '1979-05-17', 'S', 'NULL', 'M', 'eduardo26@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5778 Mt Tri-state Court', 'NULL', '961-555-0194', '2013-03-14', '5-10 Miles'], ['18920', '355', 'AW00018920', 'NULL', 'Jonathan', 'NULL', 'Young', '0', '1978-11-16', 'S', 'NULL', 'M', 'jonathan47@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2372 Cardinet Dr.', 'NULL', '192-555-0178', '2014-01-18', '1-2 Miles'], ['18921', '627', 'AW00018921', 'NULL', 'Rachel', 'R', 'Bailey', '0', '1978-09-22', 'S', 'NULL', 'F', 'rachel36@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '177 Bancroft Road', 'NULL', '901-555-0154', '2013-07-29', '1-2 Miles'], ['18922', '53', 'AW00018922', 'NULL', 'Madeline', 'B', 'Gonzalez', '0', '1979-03-05', 'S', 'NULL', 'F', 'madeline8@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '3091 Hickory Drive', 'NULL', '721-555-0130', '2013-11-28', '5-10 Miles'], ['18923', '609', 'AW00018923', 'NULL', 'Cassandra', 'NULL', 'Kapoor', '0', '1979-04-22', 'M', 'NULL', 'F', 'cassandra1@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '9903 Clearland Circle', 'NULL', '218-555-0141', '2013-03-27', '0-1 Miles'], ['18924', '322', 'AW00018924', 'NULL', 'Rachel', 'C', 'Williams', '0', '1979-05-21', 'S', 'NULL', 'F', 'rachel4@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '7936 Solano Dr.', 'NULL', '762-555-0116', '2013-06-05', '5-10 Miles'], ['18925', '60', 'AW00018925', 'NULL', 'Haley', 'L', 'Griffin', '0', '1981-11-09', 'M', 'NULL', 'F', 'haley40@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '6416 Co Road', 'NULL', '164-555-0180', '2013-05-17', '1-2 Miles'], ['18926', '57', 'AW00018926', 'NULL', 'Alexandre', 'NULL', 'Lobao', '0', '1981-09-25', 'M', 'NULL', 'M', 'alexandre1@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '5448 Near Drive', 'NULL', '609-555-0151', '2013-02-11', '1-2 Miles'], ['18927', '51', 'AW00018927', 'NULL', 'Arianna', 'D', 'Cox', '0', '1981-08-05', 'S', 'NULL', 'F', 'arianna32@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '71 Flora Ave', 'NULL', '238-555-0185', '2013-07-07', '1-2 Miles'], ['18928', '10', 'AW00018928', 'NULL', 'Carmen', 'L', 'Prasad', '0', '1971-08-22', 'M', 'NULL', 'F', 'carmen12@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6478 Pierce Ct', 'NULL', '1 (11) 500 555-0137', '2011-07-29', '5-10 Miles'], ['18929', '30', 'AW00018929', 'NULL', 'Donald', 'NULL', 'Garcia', '0', '1960-12-14', 'S', 'NULL', 'M', 'donald16@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8798 Valley Manor', 'NULL', '1 (11) 500 555-0163', '2011-07-20', '5-10 Miles'], ['18930', '40', 'AW00018930', 'NULL', 'Katelyn', 'NULL', 'Richardson', '0', '1961-04-15', 'S', 'NULL', 'F', 'katelyn8@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5493 Gonzalez Ct', 'Unit C', '1 (11) 500 555-0155', '2011-07-24', '1-2 Miles'], ['18931', '27', 'AW00018931', 'NULL', 'Rosa', 'NULL', 'She', '0', '1962-06-13', 'M', 'NULL', 'F', 'rosa23@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2674 Ridge Circle', 'NULL', '1 (11) 500 555-0129', '2011-07-19', '5-10 Miles'], ['18932', '16', 'AW00018932', 'NULL', 'Carl', 'NULL', 'Chande', '0', '1969-07-31', 'M', 'NULL', 'M', 'carl14@adventure-works.com', '100000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '9901 East Lake Court', 'NULL', '1 (11) 500 555-0115', '2013-03-24', '2-5 Miles'], ['18933', '609', 'AW00018933', 'NULL', 'Kelli', 'NULL', 'Huang', '0', '1985-08-30', 'S', 'NULL', 'F', 'kelli6@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9570 Royal Links Ct', 'NULL', '871-555-0190', '2013-08-09', '5-10 Miles'], ['18934', '642', 'AW00018934', 'NULL', 'Jeremiah', 'U', 'Moore', '0', '1979-08-22', 'S', 'NULL', 'M', 'jeremiah1@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9791 Harvard Court', '# 4', '187-555-0192', '2013-09-18', '5-10 Miles'], ['18935', '331', 'AW00018935', 'NULL', 'Jasmine', 'S', 'Jenkins', '0', '1971-11-15', 'M', 'NULL', 'F', 'jasmine47@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '1239 Linnet Court', 'NULL', '182-555-0195', '2013-02-01', '1-2 Miles'], ['18936', '385', 'AW00018936', 'NULL', 'Morgan', 'NULL', 'Collins', '0', '1971-07-11', 'S', 'NULL', 'F', 'morgan2@adventure-works.com', '160000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '9236 Hanson Lane', 'NULL', '607-555-0114', '2013-06-03', '1-2 Miles'], ['18937', '348', 'AW00018937', 'NULL', 'Ian', 'D', 'Reed', '0', '1962-08-10', 'S', 'NULL', 'M', 'ian87@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '579 Mepham Dr.', 'NULL', '791-555-0194', '2013-12-01', '5-10 Miles'], ['18938', '322', 'AW00018938', 'NULL', 'Lucas', 'J', 'Lopez', '0', '1962-11-30', 'M', 'NULL', 'M', 'lucas44@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '445 Banyan Way', 'NULL', '369-555-0176', '2013-10-18', '5-10 Miles'], ['18939', '385', 'AW00018939', 'NULL', 'Hunter', 'NULL', 'McDonald', '0', '1962-09-24', 'S', 'NULL', 'M', 'hunter6@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3224 Pome Court', 'NULL', '666-555-0142', '2014-01-22', '5-10 Miles'], ['18940', '547', 'AW00018940', 'NULL', 'Seth', 'NULL', 'Bell', '0', '1963-04-16', 'M', 'NULL', 'M', 'seth85@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5445 Tice Valley Blvd.', 'NULL', '737-555-0162', '2013-11-07', '5-10 Miles'], ['18941', '536', 'AW00018941', 'NULL', 'Philip', 'S', 'Torres', '0', '1962-09-05', 'M', 'NULL', 'M', 'philip12@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '0', '3704 Greendell Rd.', 'NULL', '861-555-0133', '2013-12-25', '0-1 Miles'], ['18942', '298', 'AW00018942', 'NULL', 'Billy', 'NULL', 'Ortega', '0', '1962-11-19', 'M', 'NULL', 'M', 'billy22@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '7134 Oakwood Cir', 'NULL', '737-555-0114', '2013-07-15', '5-10 Miles'], ['18943', '634', 'AW00018943', 'NULL', 'Kaitlyn', 'T', 'Hall', '0', '1963-02-01', 'S', 'NULL', 'F', 'kaitlyn21@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '8113 Pepper Drive', 'NULL', '733-555-0189', '2013-08-27', '5-10 Miles'], ['18944', '54', 'AW00018944', 'NULL', 'Marcus', 'A', 'Taylor', '0', '1961-11-03', 'S', 'NULL', 'M', 'marcus9@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8681 Harvard Court', 'NULL', '948-555-0174', '2013-07-05', '5-10 Miles'], ['18945', '335', 'AW00018945', 'NULL', 'Marcus', 'NULL', 'Cox', '0', '1961-12-21', 'M', 'NULL', 'M', 'marcus86@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '6535 Gilardy Dr.', 'NULL', '764-555-0116', '2013-12-28', '5-10 Miles'], ['18946', '310', 'AW00018946', 'NULL', 'Brandon', 'NULL', 'Simmons', '0', '1967-08-05', 'M', 'NULL', 'M', 'brandon12@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '9183 J Ave', 'NULL', '624-555-0150', '2013-08-12', '5-10 Miles'], ['18947', '336', 'AW00018947', 'NULL', 'Devin', 'NULL', 'Bryant', '0', '1961-11-04', 'S', 'NULL', 'M', 'devin55@adventure-works.com', '70000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6239 Monti Dr.', 'NULL', '288-555-0116', '2013-07-31', '5-10 Miles'], ['18948', '311', 'AW00018948', 'NULL', 'Sydney', 'NULL', 'Bailey', '0', '1967-03-13', 'M', 'NULL', 'F', 'sydney9@adventure-works.com', '70000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '4352 Marclair Dr.', 'NULL', '880-555-0151', '2013-08-20', '0-1 Miles'], ['18949', '548', 'AW00018949', 'NULL', 'Jackson', 'NULL', 'Hall', '0', '1937-12-30', 'S', 'NULL', 'M', 'jackson52@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3353 Mayhew Way', 'NULL', '258-555-0177', '2013-08-19', '5-10 Miles'], ['18950', '54', 'AW00018950', 'NULL', 'Lauren', 'NULL', 'Alexander', '0', '1970-10-22', 'S', 'NULL', 'F', 'lauren65@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '5629 San Francisco', 'NULL', '345-555-0173', '2013-11-06', '2-5 Miles'], ['18951', '64', 'AW00018951', 'NULL', 'Dalton', 'T', 'Jones', '0', '1971-06-14', 'S', 'NULL', 'M', 'dalton3@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '9975 Haynes Court', 'NULL', '249-555-0126', '2013-11-27', '2-5 Miles'], ['18952', '545', 'AW00018952', 'NULL', 'Chloe', 'NULL', 'Hernandez', '0', '1971-04-22', 'M', 'NULL', 'F', 'chloe16@adventure-works.com', '100000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '2335 Elkwood Drive', 'NULL', '526-555-0167', '2014-01-13', '0-1 Miles'], ['18953', '298', 'AW00018953', 'NULL', 'Mya', 'A', 'Patterson', '0', '1976-10-20', 'S', 'NULL', 'F', 'mya12@adventure-works.com', '110000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '3994 Revision Drive', 'NULL', '125-555-0121', '2013-09-15', '2-5 Miles'], ['18954', '322', 'AW00018954', 'NULL', 'Dalton', 'R', 'Young', '0', '1970-11-23', 'S', 'NULL', 'M', 'dalton24@adventure-works.com', '120000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '1685 Greenbelt Way', 'NULL', '981-555-0138', '2013-11-21', '1-2 Miles'], ['18955', '352', 'AW00018955', 'NULL', 'Justin', 'NULL', 'Jones', '0', '1967-08-19', 'S', 'NULL', 'M', 'justin34@adventure-works.com', '40000.00', '3', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4174 Tara St.', 'NULL', '638-555-0114', '2013-11-29', '2-5 Miles'], ['18956', '358', 'AW00018956', 'NULL', 'Sara', 'W', 'Howard', '0', '1967-10-15', 'S', 'NULL', 'F', 'sara12@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4730 Peterson Place', 'NULL', '141-555-0158', '2013-12-21', '0-1 Miles'], ['18957', '612', 'AW00018957', 'NULL', 'Mackenzie', 'NULL', 'Lopez', '0', '1967-10-08', 'S', 'NULL', 'F', 'mackenzie42@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9982 San Ramon Road', 'NULL', '856-555-0145', '2013-01-24', '2-5 Miles'], ['18958', '307', 'AW00018958', 'NULL', 'Natalie', 'NULL', 'Sanchez', '0', '1968-01-15', 'S', 'NULL', 'F', 'natalie1@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5336 Roberts Ct', 'NULL', '858-555-0150', '2013-01-05', '2-5 Miles'], ['18959', '71', 'AW00018959', 'NULL', 'Seth', 'NULL', 'Morris', '0', '1967-08-04', 'S', 'NULL', 'M', 'seth89@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6816 Detroit Ave.', 'NULL', '600-555-0112', '2013-11-03', '2-5 Miles'], ['18960', '347', 'AW00018960', 'NULL', 'Marcus', 'NULL', 'Johnson', '0', '1968-04-03', 'S', 'NULL', 'M', 'marcus1@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9882 Clay Rde', 'NULL', '969-555-0195', '2013-01-31', '2-5 Miles'], ['18961', '63', 'AW00018961', 'NULL', 'Jeremiah', 'D', 'Henderson', '0', '1968-03-04', 'S', 'NULL', 'M', 'jeremiah28@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6075 Lake Nadine Pl.', 'NULL', '162-555-0111', '2013-11-16', '2-5 Miles'], ['18962', '310', 'AW00018962', 'NULL', 'Seth', 'R', 'Parker', '0', '1968-06-23', 'M', 'NULL', 'M', 'seth44@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8552 Stillwater Court', 'NULL', '420-555-0174', '2013-02-03', '2-5 Miles'], ['18963', '635', 'AW00018963', 'NULL', 'Amber', 'M', 'Collins', '0', '1967-08-02', 'M', 'NULL', 'F', 'amber2@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '737 Castle Rock Road', 'NULL', '328-555-0180', '2013-02-19', '0-1 Miles'], ['18964', '343', 'AW00018964', 'NULL', 'Thomas', 'M', 'Gonzalez', '0', '1966-09-06', 'S', 'NULL', 'M', 'thomas45@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '17 Chestnut', 'NULL', '638-555-0111', '2013-04-20', '2-5 Miles'], ['18965', '315', 'AW00018965', 'NULL', 'Richard', 'A', 'Turner', '0', '1972-10-12', 'M', 'NULL', 'M', 'richard33@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '3739 Donald Dr', 'NULL', '702-555-0179', '2014-01-19', '10+ Miles'], ['18966', '299', 'AW00018966', 'NULL', 'Carly', 'NULL', 'Rai', '0', '1948-04-16', 'M', 'NULL', 'F', 'carly15@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3978 Spring Hill Dr.', 'NULL', '822-555-0113', '2013-03-08', '10+ Miles'], ['18967', '338', 'AW00018967', 'NULL', 'Xavier', 'L', 'Clark', '0', '1948-01-22', 'M', 'NULL', 'M', 'xavier17@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5180 Lacorso', 'NULL', '465-555-0149', '2013-02-09', '1-2 Miles'], ['18968', '54', 'AW00018968', 'NULL', 'Isaiah', 'NULL', 'Lopez', '0', '1953-04-11', 'M', 'NULL', 'M', 'isaiah36@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4372 Carpetta Circle', 'NULL', '159-555-0157', '2013-10-27', '1-2 Miles'], ['18969', '626', 'AW00018969', 'NULL', 'Anna', 'L', 'Cox', '0', '1948-01-09', 'M', 'NULL', 'F', 'anna15@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5 Edwards Ave.', 'NULL', '491-555-0113', '2014-01-13', '1-2 Miles'], ['18970', '338', 'AW00018970', 'NULL', 'Jason', 'G', 'Roberts', '0', '1949-02-08', 'M', 'NULL', 'M', 'jason34@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4252 Alpine Rd.', 'NULL', '654-555-0146', '2013-11-17', '1-2 Miles'], ['18971', '54', 'AW00018971', 'NULL', 'Wyatt', 'F', 'Moore', '0', '1948-08-11', 'M', 'NULL', 'M', 'wyatt8@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '384 Price Lane', 'NULL', '895-555-0181', '2013-11-17', '10+ Miles'], ['18972', '60', 'AW00018972', 'NULL', 'Benjamin', 'C', 'Butler', '0', '1948-08-06', 'M', 'NULL', 'M', 'benjamin15@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8153 Shoe St.', 'NULL', '117-555-0115', '2013-11-02', '10+ Miles'], ['18973', '302', 'AW00018973', 'NULL', 'Kate', 'NULL', 'Yuan', '0', '1948-12-07', 'M', 'NULL', 'F', 'kate5@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8316 La Salle St.', 'NULL', '501-555-0171', '2013-02-22', '1-2 Miles'], ['18974', '331', 'AW00018974', 'NULL', 'James', 'J', 'Rodriguez', '0', '1948-11-22', 'M', 'NULL', 'M', 'james93@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2987 Turner Dr.', 'NULL', '782-555-0113', '2013-02-25', '1-2 Miles'], ['18975', '334', 'AW00018975', 'NULL', 'Samuel', 'K', 'Bryant', '0', '1955-05-13', 'M', 'NULL', 'M', 'samuel17@adventure-works.com', '30000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '4714 Zulu Court', 'NULL', '385-555-0123', '2013-06-06', '1-2 Miles'], ['18976', '539', 'AW00018976', 'NULL', 'Garrett', 'NULL', 'Howard', '0', '1949-10-19', 'S', 'NULL', 'M', 'garrett16@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1760 Dubne Court', 'NULL', '135-555-0153', '2013-11-30', '10+ Miles'], ['18977', '536', 'AW00018977', 'NULL', 'Jackson', 'S', 'Wang', '0', '1950-02-14', 'M', 'NULL', 'M', 'jackson26@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '5901 Buckthorn Court', 'NULL', '660-555-0162', '2013-12-06', '1-2 Miles'], ['18978', '52', 'AW00018978', 'NULL', 'Isaiah', 'NULL', 'Morgan', '0', '1955-08-04', 'M', 'NULL', 'M', 'isaiah12@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '8034 Cancroft Road', 'NULL', '474-555-0163', '2013-05-02', '1-2 Miles'], ['18979', '372', 'AW00018979', 'NULL', 'Noah', 'E', 'Taylor', '0', '1949-09-18', 'M', 'NULL', 'M', 'noah49@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '6647 Reva Dr', 'NULL', '122-555-0116', '2013-12-09', '10+ Miles'], ['18980', '539', 'AW00018980', 'NULL', 'Sophia', 'NULL', 'Hernandez', '0', '1950-04-16', 'M', 'NULL', 'F', 'sophia16@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '9067 Indigo Ct.', 'NULL', '116-555-0153', '2013-12-06', '10+ Miles'], ['18981', '352', 'AW00018981', 'NULL', 'Savannah', 'S', 'Watson', '0', '1949-10-25', 'M', 'NULL', 'F', 'savannah7@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1711 La Mar Ct', 'NULL', '713-555-0111', '2013-08-06', '10+ Miles'], ['18982', '623', 'AW00018982', 'NULL', 'Kyle', 'NULL', 'Baker', '0', '1950-10-05', 'S', 'NULL', 'M', 'kyle46@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2118 Little Dr.', 'NULL', '685-555-0144', '2013-12-02', '10+ Miles'], ['18983', '361', 'AW00018983', 'NULL', 'Destiny', 'NULL', 'Price', '0', '1956-10-16', 'M', 'NULL', 'F', 'destiny48@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '3761 Cancroft Road', 'NULL', '625-555-0171', '2013-06-17', '2-5 Miles'], ['18984', '618', 'AW00018984', 'NULL', 'Shelby', 'J', 'Rivera', '0', '1962-02-08', 'S', 'NULL', 'F', 'shelby17@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2530 Seeno St', 'NULL', '844-555-0115', '2013-03-23', '10+ Miles'], ['18985', '612', 'AW00018985', 'NULL', 'Paige', 'A', 'Bailey', '0', '1950-07-21', 'M', 'NULL', 'F', 'paige40@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9534 Country View Lane', 'NULL', '572-555-0175', '2013-11-22', '2-5 Miles'], ['18986', '68', 'AW00018986', 'NULL', 'Robert', 'R', 'Roberts', '0', '1951-01-09', 'S', 'NULL', 'M', 'robert47@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9165 San Vincente Dr.', 'NULL', '646-555-0161', '2013-02-10', '10+ Miles'], ['18987', '547', 'AW00018987', 'NULL', 'Hunter', 'NULL', 'Adams', '0', '1950-08-13', 'M', 'NULL', 'M', 'hunter40@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6641 Morgan Territory Rd.', 'NULL', '135-555-0180', '2013-01-30', '2-5 Miles'], ['18988', '322', 'AW00018988', 'NULL', 'Courtney', 'A', 'Baker', '0', '1950-07-05', 'S', 'NULL', 'F', 'courtney13@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '8727 Buena Vista Ave.', 'NULL', '133-555-0128', '2013-11-01', '2-5 Miles'], ['18989', '302', 'AW00018989', 'NULL', 'Cindy', 'NULL', 'Suri', '0', '1956-10-16', 'M', 'NULL', 'F', 'cindy1@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3761 Canning Road', 'NULL', '330-555-0173', '2013-08-30', '2-5 Miles'], ['18990', '609', 'AW00018990', 'NULL', 'Amanda', 'A', 'Henderson', '0', '1951-08-22', 'M', 'NULL', 'F', 'amanda26@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '8719 Wilbur Drive', 'NULL', '442-555-0182', '2013-02-13', '10+ Miles'], ['18991', '611', 'AW00018991', 'NULL', 'Evan', 'H', 'Cook', '0', '1951-10-30', 'M', 'NULL', 'M', 'evan22@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '3315 Providence Dr.', 'NULL', '600-555-0142', '2013-12-01', '2-5 Miles'], ['18992', '338', 'AW00018992', 'NULL', 'David', 'W', 'Perry', '0', '1952-04-17', 'M', 'NULL', 'M', 'david40@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3316 Ringing Dr', 'NULL', '663-555-0184', '2013-06-13', '2-5 Miles'], ['18993', '299', 'AW00018993', 'NULL', 'Kevin', 'L', 'Ross', '0', '1952-05-13', 'M', 'NULL', 'M', 'kevin8@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7153 Bellord Ct', '# 18', '824-555-0115', '2013-12-08', '10+ Miles'], ['18994', '618', 'AW00018994', 'NULL', 'Jackson', 'J', 'Allen', '0', '1958-11-17', 'M', 'NULL', 'M', 'jackson46@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '9890 Bloching Circle', 'NULL', '461-555-0171', '2013-11-06', '10+ Miles'], ['18995', '298', 'AW00018995', 'NULL', 'Melissa', 'A', 'Gray', '0', '1952-10-29', 'S', 'NULL', 'F', 'melissa28@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '4956 Norcross Lane', 'NULL', '734-555-0132', '2013-10-24', '10+ Miles'], ['18996', '383', 'AW00018996', 'NULL', 'Katherine', 'NULL', 'Turner', '0', '1953-05-12', 'M', 'NULL', 'F', 'katherine53@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '5277 Steven Way', 'NULL', '915-555-0169', '2013-12-27', '10+ Miles'], ['18997', '642', 'AW00018997', 'NULL', 'Eric', 'NULL', 'King', '0', '1952-09-05', 'M', 'NULL', 'M', 'eric59@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6556 Gilly Lane', 'NULL', '922-555-0113', '2013-08-31', '10+ Miles'], ['18998', '546', 'AW00018998', 'NULL', 'Aidan', 'NULL', 'Bennett', '0', '1953-05-06', 'M', 'NULL', 'M', 'aidan1@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '9685 La Vista Ave.', 'NULL', '493-555-0174', '2013-12-06', '2-5 Miles'], ['18999', '543', 'AW00018999', 'NULL', 'Mackenzie', 'NULL', 'Watson', '0', '1952-10-21', 'M', 'NULL', 'F', 'mackenzie7@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '4234 Second Avenue', 'NULL', '130-555-0197', '2013-12-12', '2-5 Miles'], ['19000', '70', 'AW00019000', 'NULL', 'Makayla', 'NULL', 'Blue', '0', '1959-11-09', 'M', 'NULL', 'F', 'makayla12@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3005 Potomac Drive', 'NULL', '674-555-0196', '2013-11-06', '2-5 Miles'], ['19001', '70', 'AW00019001', 'NULL', 'Fernando', 'NULL', 'Brown', '0', '1953-08-23', 'M', 'NULL', 'M', 'fernando4@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '1873 Mt. Whitney Dr', 'NULL', '963-555-0129', '2013-03-14', '2-5 Miles'], ['19002', '637', 'AW00019002', 'NULL', 'Alexis', 'R', 'Thompson', '0', '1954-04-07', 'M', 'NULL', 'F', 'alexis13@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '5665 Myrtle Drive', 'NULL', '194-555-0153', '2013-12-10', '2-5 Miles'], ['19003', '347', 'AW00019003', 'NULL', 'Jared', 'L', 'Stewart', '0', '1965-06-04', 'M', 'NULL', 'M', 'jared24@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '0', '8006 Mark Twain Dr.', 'NULL', '905-555-0188', '2013-12-22', '2-5 Miles'], ['19004', '359', 'AW00019004', 'NULL', 'Ian', 'D', 'Rogers', '0', '1959-08-31', 'M', 'NULL', 'M', 'ian86@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '3576 Silver Cypress Ct.', 'NULL', '104-555-0193', '2013-12-27', '2-5 Miles'], ['19005', '637', 'AW00019005', 'NULL', 'Lauren', 'NULL', 'Peterson', '0', '1954-09-24', 'S', 'NULL', 'F', 'lauren15@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9535 Pear Dr.', 'NULL', '804-555-0144', '2013-02-22', '10+ Miles'], ['19006', '536', 'AW00019006', 'NULL', 'Leslie', 'NULL', 'Martin', '0', '1955-10-18', 'M', 'NULL', 'F', 'leslie0@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '805 Stonyhill Circle', 'NULL', '622-555-0196', '2013-12-19', '10+ Miles'], ['19007', '545', 'AW00019007', 'NULL', 'Mackenzie', 'NULL', 'Sanchez', '0', '1961-09-08', 'M', 'NULL', 'F', 'mackenzie26@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3142 Meadow Glen Way', 'NULL', '256-555-0121', '2013-09-04', '10+ Miles'], ['19008', '642', 'AW00019008', 'NULL', 'Hailey', 'F', 'Murphy', '0', '1955-11-08', 'S', 'NULL', 'F', 'hailey6@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '4837 Melrose Place', '# 1', '610-555-0178', '2013-12-04', '2-5 Miles'], ['19009', '299', 'AW00019009', 'NULL', 'Arianna', 'A', 'Watson', '0', '1961-10-20', 'M', 'NULL', 'F', 'arianna21@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '678 Acardia Pl', 'NULL', '180-555-0112', '2014-01-12', '10+ Miles'], ['19010', '311', 'AW00019010', 'NULL', 'Naomi', 'NULL', 'Ortega', '0', '1955-12-06', 'M', 'NULL', 'F', 'naomi21@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '8868 Sudan Loop', 'NULL', '237-555-0193', '2013-02-16', '2-5 Miles'], ['19011', '326', 'AW00019011', 'NULL', 'Maria', 'M', 'Cook', '0', '1956-02-06', 'M', 'NULL', 'F', 'maria5@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '5818 San Rafael', 'NULL', '484-555-0164', '2013-07-13', '1-2 Miles'], ['19012', '372', 'AW00019012', 'NULL', 'Oscar', 'C', 'Bryant', '0', '1955-10-11', 'M', 'NULL', 'M', 'oscar4@adventure-works.com', '80000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '3802 Glenmount Dr.', 'NULL', '930-555-0134', '2013-08-11', '1-2 Miles'], ['19013', '385', 'AW00019013', 'NULL', 'Amanda', 'G', 'Phillips', '0', '1956-05-07', 'S', 'NULL', 'F', 'amanda49@adventure-works.com', '80000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9873 Willow Avenue', 'NULL', '242-555-0111', '2013-03-25', '5-10 Miles'], ['19014', '53', 'AW00019014', 'NULL', 'Jonathan', 'J', 'Hernandez', '0', '1957-01-02', 'M', 'NULL', 'M', 'jonathan48@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2966 St. George Dr.', 'NULL', '215-555-0172', '2013-05-17', '10+ Miles'], ['19015', '59', 'AW00019015', 'NULL', 'Thomas', 'J', 'Griffin', '0', '1962-02-07', 'M', 'NULL', 'M', 'thomas23@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1889 String Drive', 'NULL', '813-555-0168', '2013-03-18', '10+ Miles'], ['19016', '310', 'AW00019016', 'NULL', 'Sierra', 'NULL', 'Wright', '0', '1957-04-25', 'M', 'NULL', 'F', 'sierra17@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1005 Fremont Street', 'NULL', '485-555-0178', '2013-12-14', '2-5 Miles'], ['19017', '310', 'AW00019017', 'NULL', 'Zoe', 'L', 'Brooks', '0', '1957-03-10', 'M', 'NULL', 'F', 'zoe1@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1567 W Lake Drive', 'NULL', '678-555-0110', '2013-11-05', '10+ Miles'], ['19018', '314', 'AW00019018', 'NULL', 'Nicole', 'NULL', 'Gray', '0', '1962-11-07', 'M', 'NULL', 'F', 'nicole41@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1314 Westover Dr.', 'NULL', '667-555-0155', '2013-07-04', '10+ Miles'], ['19019', '352', 'AW00019019', 'NULL', 'Jackson', 'NULL', 'Gonzales', '0', '1962-09-05', 'M', 'NULL', 'M', 'jackson19@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '4446 Walnut Lane', 'NULL', '893-555-0174', '2013-04-19', '1-2 Miles'], ['19020', '315', 'AW00019020', 'NULL', 'Jack', 'L', 'Flores', '0', '1963-03-12', 'S', 'NULL', 'M', 'jack12@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '279 Inverness Drive', 'Unit C3', '737-555-0162', '2013-08-28', '10+ Miles'], ['19021', '635', 'AW00019021', 'NULL', 'Melissa', 'R', 'Russell', '0', '1963-11-18', 'S', 'NULL', 'F', 'melissa15@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4051 Daylight Place', 'NULL', '159-555-0182', '2013-03-18', '2-5 Miles'], ['19022', '326', 'AW00019022', 'NULL', 'Samantha', 'L', 'Wood', '0', '1969-04-11', 'M', 'NULL', 'F', 'samantha27@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '152 Mill Road', 'NULL', '665-555-0155', '2013-10-01', '10+ Miles'], ['19023', '345', 'AW00019023', 'NULL', 'Arianna', 'NULL', 'Powell', '0', '1958-03-22', 'M', 'NULL', 'F', 'arianna8@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '4682 Sunset Meadows Ln', 'NULL', '445-555-0120', '2013-03-08', '10+ Miles'], ['19024', '618', 'AW00019024', 'NULL', 'Dalton', 'NULL', 'Russell', '0', '1958-02-03', 'S', 'NULL', 'M', 'dalton66@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '9661 Walnut Blvd.', 'NULL', '114-555-0156', '2013-03-25', '10+ Miles'], ['19025', '545', 'AW00019025', 'NULL', 'Aaron', 'NULL', 'Roberts', '0', '1958-05-05', 'S', 'NULL', 'M', 'aaron37@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2625 Fremont St.', 'NULL', '114-555-0110', '2013-03-14', '10+ Miles'], ['19026', '49', 'AW00019026', 'NULL', 'Logan', 'J', 'Hayes', '0', '1958-05-06', 'S', 'NULL', 'M', 'logan23@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5464 Olive Ave', 'NULL', '758-555-0153', '2013-03-04', '10+ Miles'], ['19027', '207', 'AW00019027', 'NULL', 'Mayra', 'M', 'Madan', '0', '1963-02-18', 'S', 'NULL', 'F', 'mayra7@adventure-works.com', '100000.00', '2', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '9bis, rue des Peupliers', 'NULL', '1 (11) 500 555-0120', '2011-12-28', '5-10 Miles'], ['19028', '211', 'AW00019028', 'NULL', 'Cedric', 'NULL', 'Wang', '0', '1968-05-22', 'M', 'NULL', 'M', 'cedric1@adventure-works.com', '110000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '74, rue Descartes', 'NULL', '1 (11) 500 555-0182', '2011-12-17', '5-10 Miles'], ['19029', '124', 'AW00019029', 'NULL', 'Alicia', 'S', 'Andersen', '0', '1963-02-10', 'M', 'NULL', 'F', 'alicia11@adventure-works.com', '120000.00', '2', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Rehstr 7777', 'NULL', '1 (11) 500 555-0122', '2012-06-12', '5-10 Miles'], ['19030', '130', 'AW00019030', 'NULL', 'Marco', 'C', 'Arun', '0', '1973-08-14', 'M', 'NULL', 'M', 'marco7@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Kulmer Straße 6', 'NULL', '1 (11) 500 555-0123', '2012-07-21', '5-10 Miles'], ['19031', '253', 'AW00019031', 'NULL', 'Regina', 'S', 'Perez', '0', '1963-01-10', 'M', 'NULL', 'F', 'regina20@adventure-works.com', '150000.00', '2', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6469 Climbing Dr.', 'NULL', '1 (11) 500 555-0129', '2012-12-18', '0-1 Miles'], ['19032', '253', 'AW00019032', 'NULL', 'Katrina', 'NULL', 'Andersen', '0', '1962-10-13', 'S', 'NULL', 'F', 'katrina11@adventure-works.com', '150000.00', '2', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '9838 Stallion Way', 'NULL', '1 (11) 500 555-0189', '2012-12-05', '0-1 Miles'], ['19033', '203', 'AW00019033', 'NULL', 'Omar', 'NULL', 'Lin', '0', '1962-03-01', 'S', 'NULL', 'M', 'omar7@adventure-works.com', '110000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '57, rue de la Comédie', 'NULL', '1 (11) 500 555-0164', '2011-12-10', '5-10 Miles'], ['19034', '117', 'AW00019034', 'NULL', 'Tabitha', 'J', 'Diaz', '0', '1962-04-23', 'S', 'NULL', 'F', 'tabitha22@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Königsteiner Straße 5', 'NULL', '1 (11) 500 555-0146', '2012-07-12', '5-10 Miles'], ['19035', '161', 'AW00019035', 'NULL', 'Stanley', 'C', 'Schmidt', '0', '1962-03-24', 'M', 'NULL', 'M', 'stanley11@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Postfach 2 66 66', 'NULL', '1 (11) 500 555-0121', '2012-07-28', '5-10 Miles'], ['19036', '242', 'AW00019036', 'NULL', 'Allen', 'D', 'Rana', '0', '1960-10-23', 'M', 'NULL', 'M', 'allen9@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '9900 Clearbrook Drive', 'NULL', '1 (11) 500 555-0132', '2012-12-24', '0-1 Miles'], ['19037', '264', 'AW00019037', 'NULL', 'Marshall', 'E', 'Chen', '0', '1961-02-10', 'M', 'NULL', 'M', 'marshall1@adventure-works.com', '160000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '5569 Rubiem Ct.', 'NULL', '1 (11) 500 555-0177', '2012-12-15', '5-10 Miles'], ['19038', '171', 'AW00019038', 'NULL', 'Joe', 'NULL', 'Patel', '0', '1960-02-13', 'S', 'NULL', 'M', 'joe7@adventure-works.com', '80000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', 'Reiherweg 5074', 'NULL', '1 (11) 500 555-0177', '2012-08-12', '10+ Miles'], ['19039', '213', 'AW00019039', 'NULL', 'Melvin', 'A', 'Pal', '0', '1949-08-11', 'M', 'NULL', 'M', 'melvin10@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '820, avenue de Malakoff', 'NULL', '1 (11) 500 555-0183', '2013-07-16', '2-5 Miles'], ['19040', '151', 'AW00019040', 'NULL', 'Eugene', 'J', 'Sun', '0', '1950-03-04', 'M', 'NULL', 'M', 'eugene17@adventure-works.com', '110000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', 'Postfach 66 07 00', 'NULL', '1 (11) 500 555-0165', '2012-08-02', '5-10 Miles'], ['19041', '196', 'AW00019041', 'NULL', 'Autumn', 'A', 'Zheng', '0', '1950-11-30', 'S', 'NULL', 'F', 'autumn19@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '83, avenue des Champs-Elysées', 'NULL', '1 (11) 500 555-0165', '2011-12-19', '10+ Miles'], ['19042', '127', 'AW00019042', 'NULL', 'Ronnie', 'W', 'Cai', '0', '1956-05-08', 'M', 'NULL', 'M', 'ronnie18@adventure-works.com', '80000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Celler Weg 30', 'NULL', '1 (11) 500 555-0121', '2013-08-22', '2-5 Miles'], ['19043', '161', 'AW00019043', 'NULL', 'Jessica', 'G', 'Jones', '0', '1950-12-08', 'M', 'NULL', 'F', 'jessica50@adventure-works.com', '100000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '4', 'Wolfgangstraße 62', 'NULL', '1 (11) 500 555-0131', '2014-01-20', '2-5 Miles'], ['19044', '255', 'AW00019044', 'NULL', 'Cesar', 'L', 'Rana', '0', '1950-09-29', 'M', 'NULL', 'M', 'cesar10@adventure-works.com', '130000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '2669 Clark Creek Rd.', 'NULL', '1 (11) 500 555-0114', '2013-11-10', '0-1 Miles'], ['19045', '184', 'AW00019045', 'NULL', 'Ross', 'D', 'Rodriguez', '0', '1952-01-31', 'S', 'NULL', 'M', 'ross18@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2, avenue des Ternes', 'NULL', '1 (11) 500 555-0146', '2013-05-27', '10+ Miles'], ['19046', '158', 'AW00019046', 'NULL', 'Shawna', 'F', 'Raje', '0', '1951-08-11', 'M', 'NULL', 'F', 'shawna15@adventure-works.com', '110000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', 'Pascalstr 2', 'NULL', '1 (11) 500 555-0113', '2012-09-16', '10+ Miles'], ['19047', '238', 'AW00019047', 'NULL', 'Sydney', 'A', 'Walker', '0', '1951-09-07', 'M', 'NULL', 'F', 'sydney85@adventure-works.com', '130000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '4691 West Street', 'NULL', '1 (11) 500 555-0193', '2013-04-05', '0-1 Miles'], ['19048', '256', 'AW00019048', 'NULL', 'Bryant', 'S', 'Raman', '0', '1952-04-15', 'M', 'NULL', 'M', 'bryant11@adventure-works.com', '130000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '5979 Lynwood Drive', 'NULL', '1 (11) 500 555-0114', '2012-12-09', '5-10 Miles'], ['19049', '277', 'AW00019049', 'NULL', 'Craig', 'NULL', 'Gutierrez', '0', '1952-04-11', 'M', 'NULL', 'M', 'craig12@adventure-works.com', '170000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '8486 Kipling Court', 'NULL', '1 (11) 500 555-0196', '2012-12-24', '5-10 Miles'], ['19050', '236', 'AW00019050', 'NULL', 'Joel', 'NULL', 'Chapman', '0', '1964-10-21', 'M', 'NULL', 'M', 'joel1@adventure-works.com', '90000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '9059 Northgate Road', 'NULL', '1 (11) 500 555-0168', '2013-10-05', '2-5 Miles'], ['19051', '220', 'AW00019051', 'NULL', 'Taylor', 'M', 'Henderson', '0', '1959-11-17', 'S', 'NULL', 'F', 'taylor30@adventure-works.com', '90000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '253, rue Lamarck', 'NULL', '1 (11) 500 555-0179', '2011-12-16', '10+ Miles'], ['19052', '186', 'AW00019052', 'NULL', 'Kristi', 'NULL', 'Kapoor', '0', '1959-12-13', 'M', 'NULL', 'F', 'kristi17@adventure-works.com', '90000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '955, rue Basse-du-Rocher', 'NULL', '1 (11) 500 555-0156', '2012-01-13', '2-5 Miles'], ['19053', '133', 'AW00019053', 'NULL', 'Gerald', 'L', 'Jordan', '0', '1960-02-18', 'S', 'NULL', 'M', 'gerald30@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', 'Lindenalle 4200', 'NULL', '1 (11) 500 555-0163', '2013-12-13', '0-1 Miles'], ['19054', '260', 'AW00019054', 'NULL', 'Arthur', 'M', 'Alonso', '0', '1959-12-19', 'S', 'NULL', 'M', 'arthur32@adventure-works.com', '150000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '4', '8564 Redhead Way', 'NULL', '1 (11) 500 555-0173', '2013-12-09', '0-1 Miles'], ['19055', '262', 'AW00019055', 'NULL', 'Garrett', 'NULL', 'Bailey', '0', '1959-10-13', 'M', 'NULL', 'M', 'garrett20@adventure-works.com', '160000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '2702 Alan Dr.', 'NULL', '1 (11) 500 555-0182', '2013-12-10', '10+ Miles'], ['19056', '218', 'AW00019056', 'NULL', 'Carla', 'C', 'Van', '0', '1959-01-01', 'M', 'NULL', 'F', 'carla7@adventure-works.com', '100000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '1102, rue Maillard', 'NULL', '1 (11) 500 555-0151', '2013-02-18', '10+ Miles'], ['19057', '135', 'AW00019057', 'NULL', 'Joanna', 'A', 'Ramos', '0', '1964-09-12', 'M', 'NULL', 'F', 'joanna16@adventure-works.com', '120000.00', '3', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', 'Celler Weg 4141', 'NULL', '1 (11) 500 555-0148', '2012-08-31', '10+ Miles'], ['19058', '243', 'AW00019058', 'NULL', 'Shawn', 'L', 'Goel', '0', '1958-12-03', 'M', 'NULL', 'M', 'shawn21@adventure-works.com', '130000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1025 Holly Oak Drive', 'NULL', '1 (11) 500 555-0113', '2012-12-27', '10+ Miles'], ['19059', '252', 'AW00019059', 'NULL', 'George', 'A', 'Rodriguez', '0', '1958-08-25', 'M', 'NULL', 'M', 'george26@adventure-works.com', '130000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '526 Oak Street', 'NULL', '1 (11) 500 555-0123', '2014-01-14', '0-1 Miles'], ['19060', '265', 'AW00019060', 'NULL', 'Stephanie', 'S', 'Stone', '0', '1958-11-15', 'M', 'NULL', 'F', 'stephanie3@adventure-works.com', '160000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '780 F Mt Hood Circle', 'NULL', '1 (11) 500 555-0180', '2013-03-13', '0-1 Miles'], ['19061', '199', 'AW00019061', 'NULL', 'Heather', 'NULL', 'Gao', '0', '1957-09-07', 'S', 'NULL', 'F', 'heather14@adventure-works.com', '80000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '98, place de la Concorde', 'NULL', '1 (11) 500 555-0150', '2013-08-09', '10+ Miles'], ['19062', '202', 'AW00019062', 'NULL', 'Erica', 'M', 'Zhou', '0', '1958-03-25', 'M', 'NULL', 'F', 'erica8@adventure-works.com', '80000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Attaché de Presse', 'NULL', '1 (11) 500 555-0177', '2013-07-26', '10+ Miles'], ['19063', '224', 'AW00019063', 'NULL', 'Gabrielle', 'NULL', 'Kelly', '0', '1958-05-23', 'M', 'NULL', 'F', 'gabrielle20@adventure-works.com', '80000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '477, rue des Ecoles', 'NULL', '1 (11) 500 555-0194', '2014-01-18', '10+ Miles'], ['19064', '118', 'AW00019064', 'NULL', 'Veronica', 'C', 'Madan', '0', '1958-06-15', 'M', 'NULL', 'F', 'veronica8@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Celler Weg 2949', 'NULL', '1 (11) 500 555-0191', '2013-03-25', '10+ Miles'], ['19065', '168', 'AW00019065', 'NULL', 'Michele', 'A', 'Arun', '0', '1957-10-22', 'M', 'NULL', 'F', 'michele62@adventure-works.com', '110000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Krönerweg 9249', 'NULL', '1 (11) 500 555-0115', '2012-09-03', '10+ Miles'], ['19066', '238', 'AW00019066', 'NULL', 'Dylan', 'NULL', 'Sharma', '0', '1957-07-22', 'M', 'NULL', 'M', 'dylan29@adventure-works.com', '130000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '5332 Beauty St', 'NULL', '1 (11) 500 555-0164', '2013-10-01', '10+ Miles'], ['19067', '160', 'AW00019067', 'NULL', 'Misty', 'R', 'Luo', '0', '1956-08-07', 'M', 'NULL', 'F', 'misty7@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', 'Postfach 55 00 00', 'NULL', '1 (11) 500 555-0162', '2012-09-07', '5-10 Miles'], ['19068', '162', 'AW00019068', 'NULL', 'Alma', 'L.', 'Son', '0', '1956-10-07', 'M', 'NULL', 'F', 'alma1@adventure-works.com', '120000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', 'Kurfürstenstr 4124', 'NULL', '149-555-0100', '2013-08-05', '10+ Miles'], ['19069', '220', 'AW00019069', 'NULL', 'Thomas', 'NULL', 'Hall', '0', '1961-07-08', 'M', 'NULL', 'M', 'thomas84@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '811, rue Basse-du-Rocher', 'NULL', '1 (11) 500 555-0133', '2012-01-10', '5-10 Miles'], ['19070', '245', 'AW00019070', 'NULL', 'Kristopher', 'M', 'Garcia', '0', '1956-03-26', 'M', 'NULL', 'M', 'kristopher13@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '5665 Maywood Lane', 'NULL', '1 (11) 500 555-0184', '2012-12-15', '0-1 Miles'], ['19071', '245', 'AW00019071', 'NULL', 'Joe', 'NULL', 'Jimenez', '0', '1955-10-13', 'M', 'NULL', 'M', 'joe29@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '3', '9000 Adobe St', 'NULL', '1 (11) 500 555-0179', '2013-05-03', '10+ Miles'], ['19072', '237', 'AW00019072', 'NULL', 'Tamara', 'E', 'Lu', '0', '1960-01-31', 'M', 'NULL', 'F', 'tamara1@adventure-works.com', '150000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '4', '8052 Weston Court', 'NULL', '1 (11) 500 555-0138', '2014-01-28', '10+ Miles'], ['19073', '271', 'AW00019073', 'Ms.', 'Lolan', 'NULL', 'Song', '0', '1955-03-07', 'M', 'NULL', 'M', 'lolan1@adventure-works.com', '170000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '1830 Shore Rd.', 'NULL', '504-555-0100', '2012-12-18', '10+ Miles'], ['19074', '180', 'AW00019074', 'NULL', 'Colleen', 'NULL', 'Shen', '0', '1953-11-08', 'M', 'NULL', 'F', 'colleen26@adventure-works.com', '70000.00', '5', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '4', '9967, rue de Terre Neuve', 'NULL', '1 (11) 500 555-0174', '2013-09-23', '10+ Miles'], ['19075', '201', 'AW00019075', 'NULL', 'Brent', 'NULL', 'Wu', '0', '1953-09-21', 'M', 'NULL', 'M', 'brent6@adventure-works.com', '80000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '34334, rue des Pyrenees', 'NULL', '1 (11) 500 555-0172', '2013-04-27', '10+ Miles'], ['19076', '189', 'AW00019076', 'NULL', 'Jaclyn', 'NULL', 'Pal', '0', '1953-11-30', 'M', 'NULL', 'F', 'jaclyn36@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '1, rue de la Centenaire', 'NULL', '1 (11) 500 555-0147', '2012-02-21', '5-10 Miles'], ['19077', '235', 'AW00019077', 'NULL', 'Pedro', 'D', 'Prasad', '0', '1954-03-10', 'M', 'NULL', 'M', 'pedro9@adventure-works.com', '110000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '54 Virgil Street', 'NULL', '1 (11) 500 555-0196', '2013-06-14', '10+ Miles'], ['19078', '221', 'AW00019078', 'NULL', 'Misty', 'T', 'She', '0', '1952-08-02', 'S', 'NULL', 'F', 'misty1@adventure-works.com', '80000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '58, rue des Berges', 'NULL', '1 (11) 500 555-0114', '2013-03-22', '10+ Miles'], ['19079', '222', 'AW00019079', 'NULL', 'Brett', 'NULL', 'Lopez', '0', '1953-02-14', 'M', 'NULL', 'M', 'brett16@adventure-works.com', '80000.00', '5', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '4', '4, rue Léo Delibes', 'NULL', '1 (11) 500 555-0182', '2013-08-09', '10+ Miles'], ['19080', '182', 'AW00019080', 'NULL', 'Ross', 'J', 'Vance', '0', '1953-03-16', 'S', 'NULL', 'M', 'ross3@adventure-works.com', '90000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1881, boulevard Beau Marchais', 'NULL', '1 (11) 500 555-0180', '2013-02-07', '10+ Miles'], ['19081', '131', 'AW00019081', 'NULL', 'Leslie', 'D', 'Rubio', '0', '1953-02-03', 'M', 'NULL', 'F', 'leslie21@adventure-works.com', '100000.00', '4', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '1', 'Am Gallberg 2494', 'NULL', '1 (11) 500 555-0155', '2013-11-06', '5-10 Miles'], ['19082', '252', 'AW00019082', 'NULL', 'Alvin', 'NULL', 'Zhang', '0', '1953-02-08', 'M', 'NULL', 'M', 'alvin1@adventure-works.com', '120000.00', '5', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '9161 Medina Dr.', 'NULL', '1 (11) 500 555-0187', '2013-07-04', '10+ Miles'], ['19083', '36', 'AW00019083', 'NULL', 'Steven', 'T', 'Rivera', '0', '1980-08-09', 'S', 'NULL', 'M', 'steven26@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '8036 Weaver Lane', 'NULL', '1 (11) 500 555-0143', '2011-07-16', '5-10 Miles'], ['19084', '11', 'AW00019084', 'NULL', 'Colleen', 'M', 'Raje', '0', '1982-02-10', 'S', 'NULL', 'F', 'colleen37@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '6346 Doyle', 'NULL', '1 (11) 500 555-0194', '2011-07-11', '10+ Miles'], ['19085', '15', 'AW00019085', 'NULL', 'Shawna', 'L', 'Kumar', '0', '1982-04-22', 'M', 'NULL', 'F', 'shawna8@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '8181 Landing Dr.', 'NULL', '1 (11) 500 555-0192', '2013-06-27', '10+ Miles'], ['19086', '8', 'AW00019086', 'NULL', 'Tommy', 'NULL', 'Chander', '0', '1981-05-15', 'S', 'NULL', 'M', 'tommy12@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '243 Pine Dr', 'NULL', '1 (11) 500 555-0113', '2013-02-24', '10+ Miles'], ['19087', '28', 'AW00019087', 'NULL', 'Erica', 'R', 'Gao', '0', '1981-02-15', 'M', 'NULL', 'F', 'erica15@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '1433 Manila Avenue', 'NULL', '1 (11) 500 555-0110', '2013-01-31', '10+ Miles'], ['19088', '33', 'AW00019088', 'NULL', 'Rafael', 'L', 'Kumar', '0', '1980-05-01', 'S', 'NULL', 'M', 'rafael31@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '5405 Glenellen Court', 'NULL', '1 (11) 500 555-0197', '2013-01-31', '10+ Miles'], ['19089', '37', 'AW00019089', 'NULL', 'Regina', 'A', 'Arthur', '0', '1981-04-10', 'S', 'NULL', 'F', 'regina6@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '3796 Keller Ridge', 'NULL', '1 (11) 500 555-0144', '2011-07-14', '10+ Miles'], ['19090', '9', 'AW00019090', 'NULL', 'Marshall', 'NULL', 'Chander', '0', '1979-09-13', 'S', 'NULL', 'M', 'marshall36@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '2459 Blue Jay Dr.', 'NULL', '1 (11) 500 555-0147', '2013-02-20', '10+ Miles'], ['19091', '28', 'AW00019091', 'NULL', 'Warren', 'P', 'Yuan', '0', '1978-08-09', 'S', 'NULL', 'M', 'warren15@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '826 Sycamore Drive', 'NULL', '1 (11) 500 555-0144', '2013-06-19', '10+ Miles'], ['19092', '4', 'AW00019092', 'NULL', 'Eric', 'C', 'Gonzalez', '0', '1979-09-04', 'S', 'NULL', 'M', 'eric51@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '2153 Cloudview Dr.', 'NULL', '1 (11) 500 555-0166', '2013-09-22', '10+ Miles'], ['19093', '32', 'AW00019093', 'NULL', 'Tara', 'J', 'Ashe', '0', '1980-06-18', 'S', 'NULL', 'F', 'tara23@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '2', '1058 Kirker Pass Road', 'NULL', '1 (11) 500 555-0172', '2011-07-12', '10+ Miles'], ['19094', '35', 'AW00019094', 'NULL', 'Todd', 'J', 'Yang', '0', '1978-12-21', 'S', 'NULL', 'M', 'todd6@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '904 Bales Court', 'NULL', '1 (11) 500 555-0110', '2011-07-21', '10+ Miles'], ['19095', '3', 'AW00019095', 'NULL', 'Meredith', 'M', 'Martinez', '0', '1979-05-07', 'S', 'NULL', 'F', 'meredith17@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '2', '4734 Sycamore Court', 'NULL', '1 (11) 500 555-0199', '2011-08-22', '10+ Miles'], ['19096', '33', 'AW00019096', 'NULL', 'Douglas', 'NULL', 'Suri', '0', '1978-04-22', 'S', 'NULL', 'M', 'douglas4@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '8982 Mt. Etna', 'NULL', '1 (11) 500 555-0135', '2011-08-02', '10+ Miles'], ['19097', '6', 'AW00019097', 'NULL', 'Mindy', 'NULL', 'Pal', '0', '1977-01-11', 'S', 'NULL', 'F', 'mindy17@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '291 Ironwood Way', 'NULL', '1 (11) 500 555-0131', '2013-06-22', '10+ Miles'], ['19098', '2', 'AW00019098', 'NULL', 'Xavier', 'NULL', 'Evans', '0', '1978-02-19', 'M', 'NULL', 'M', 'xavier40@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', '4884 Maria Vega Court', 'NULL', '1 (11) 500 555-0171', '2013-07-11', '10+ Miles'], ['19099', '17', 'AW00019099', 'NULL', 'Sheena', 'NULL', 'Deng', '0', '1978-05-09', 'M', 'NULL', 'F', 'sheena1@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '984 Talbart St.', 'NULL', '1 (11) 500 555-0124', '2011-08-23', '10+ Miles'], ['19100', '3', 'AW00019100', 'NULL', 'Bradley', 'NULL', 'Rai', '0', '1982-05-28', 'M', 'NULL', 'M', 'bradley20@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '8175 Trinity Ave.', 'NULL', '1 (11) 500 555-0124', '2013-07-22', '10+ Miles'], ['19101', '2', 'AW00019101', 'NULL', 'Susan', 'NULL', 'Cai', '0', '1981-12-03', 'S', 'NULL', 'F', 'susan32@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '9293 Liscome Way', 'NULL', '1 (11) 500 555-0170', '2013-07-18', '10+ Miles'], ['19102', '16', 'AW00019102', 'NULL', 'Claudia', 'J', 'Ye', '0', '1975-09-07', 'S', 'NULL', 'F', 'claudia8@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '4681 Holiday Hills', 'NULL', '1 (11) 500 555-0125', '2011-08-15', '10+ Miles'], ['19103', '21', 'AW00019103', 'NULL', 'Johnathan', 'NULL', 'Raman', '0', '1976-01-23', 'M', 'NULL', 'M', 'johnathan14@adventure-works.com', '150000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '4', '4418 Lisa Lee Lane', 'NULL', '1 (11) 500 555-0157', '2013-03-03', '10+ Miles'], ['19104', '33', 'AW00019104', 'NULL', 'Mariah', 'M', 'James', '0', '1982-02-24', 'M', 'NULL', 'F', 'mariah32@adventure-works.com', '100000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '7555 Hillview Dr', 'NULL', '1 (11) 500 555-0178', '2013-07-24', '10+ Miles'], ['19105', '8', 'AW00019105', 'NULL', 'Stacy', 'S', 'Dominguez', '0', '1976-09-30', 'S', 'NULL', 'F', 'stacy13@adventure-works.com', '150000.00', '0', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '9712 Lexington Road', 'NULL', '1 (11) 500 555-0136', '2011-08-15', '0-1 Miles'], ['19106', '21', 'AW00019106', 'NULL', 'Terrance', 'NULL', 'Sai', '0', '1982-01-30', 'M', 'NULL', 'M', 'terrance4@adventure-works.com', '160000.00', '4', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Management', 'Gestión', 'Direction', '0', '4', '9642 East L Street', 'NULL', '1 (11) 500 555-0135', '2013-03-06', '10+ Miles'], ['19107', '536', 'AW00019107', 'NULL', 'Franklin', 'L', 'Liu', '0', '1975-10-31', 'M', 'NULL', 'M', 'franklin4@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9293 Detroit Ave.', 'NULL', '348-555-0142', '2013-05-10', '2-5 Miles'], ['19108', '634', 'AW00019108', 'NULL', 'Haley', 'NULL', 'Stewart', '0', '1983-04-04', 'S', 'NULL', 'F', 'haley0@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9021 Santa Monica Drive', 'NULL', '564-555-0130', '2013-12-08', '2-5 Miles'], ['19109', '310', 'AW00019109', 'NULL', 'Jade', 'L', 'Brooks', '0', '1977-12-31', 'M', 'NULL', 'F', 'jade0@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5585 Antone Court', 'NULL', '214-555-0119', '2013-12-15', '0-1 Miles'], ['19110', '345', 'AW00019110', 'NULL', 'Jesse', 'NULL', 'Kelly', '0', '1978-02-01', 'M', 'NULL', 'M', 'jesse2@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8890 Limewood Pl.', 'NULL', '847-555-0122', '2013-03-02', '2-5 Miles'], ['19111', '374', 'AW00019111', 'NULL', 'Mariah', 'L', 'Kelly', '0', '1977-08-31', 'M', 'NULL', 'F', 'mariah2@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6231 All Ways Drive', 'NULL', '864-555-0197', '2013-04-06', '0-1 Miles'], ['19112', '347', 'AW00019112', 'NULL', 'Victoria', 'NULL', 'Hughes', '0', '1976-04-11', 'M', 'NULL', 'F', 'victoria59@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8281 Rhoda Way', 'NULL', '584-555-0135', '2013-12-27', '2-5 Miles'], ['19113', '62', 'AW00019113', 'NULL', 'Aaron', 'W', 'Patterson', '0', '1976-04-09', 'M', 'NULL', 'M', 'aaron9@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7197 Fox Way', 'NULL', '528-555-0110', '2013-06-22', '2-5 Miles'], ['19114', '326', 'AW00019114', 'NULL', 'Natalie', 'E', 'Richardson', '0', '1975-10-11', 'M', 'NULL', 'F', 'natalie12@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6150 San Antonio', 'NULL', '490-555-0137', '2013-12-24', '2-5 Miles'], ['19115', '300', 'AW00019115', 'NULL', 'Bailey', 'NULL', 'Sanchez', '0', '1975-04-04', 'M', 'NULL', 'F', 'bailey24@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '446 Wilke Drive', 'NULL', '190-555-0161', '2013-11-06', '0-1 Miles'], ['19116', '70', 'AW00019116', 'NULL', 'Logan', 'E', 'Alexander', '0', '1980-04-10', 'S', 'NULL', 'M', 'logan20@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9228 Golden Meadow', 'NULL', '149-555-0183', '2013-06-02', '2-5 Miles'], ['19117', '301', 'AW00019117', 'NULL', 'Kaitlyn', 'C', 'Coleman', '0', '1986-05-22', 'S', 'NULL', 'F', 'kaitlyn73@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6509 California Street', 'NULL', '975-555-0142', '2013-12-18', '2-5 Miles'], ['19118', '59', 'AW00019118', 'NULL', 'Ian', 'NULL', 'Thomas', '0', '1977-01-30', 'M', 'NULL', 'M', 'ian11@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5008 Falls Ct', 'NULL', '250-555-0122', '2013-06-05', '0-1 Miles'], ['19119', '614', 'AW00019119', 'NULL', 'Connor', 'NULL', 'Simmons', '0', '1982-02-11', 'M', 'NULL', 'M', 'connor10@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '96, rue Royale', 'NULL', '266-555-0110', '2013-12-14', '0-1 Miles'], ['19120', '553', 'AW00019120', 'NULL', 'Caleb', 'R', 'Sharma', '0', '1977-03-31', 'M', 'NULL', 'M', 'caleb26@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8950 Scenic Avenue', 'NULL', '507-555-0125', '2013-12-12', '2-5 Miles'], ['19121', '325', 'AW00019121', 'NULL', 'Kaitlyn', 'F', 'Blue', '0', '1977-05-11', 'M', 'NULL', 'F', 'kaitlyn52@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3554 Trinity Ave', 'NULL', '107-555-0156', '2013-04-03', '2-5 Miles'], ['19122', '348', 'AW00019122', 'NULL', 'Abigail', 'T', 'Hughes', '0', '1977-04-17', 'S', 'NULL', 'F', 'abigail66@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3528 Sweetwater Drive', 'NULL', '341-555-0115', '2013-04-03', '2-5 Miles'], ['19123', '59', 'AW00019123', 'NULL', 'Emma', 'NULL', 'Washington', '0', '1980-05-01', 'M', 'NULL', 'F', 'emma59@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6022 La Salle Ct.', 'NULL', '887-555-0112', '2013-06-29', '0-1 Miles'], ['19124', '352', 'AW00019124', 'NULL', 'Cody', 'G', 'Bailey', '0', '1975-04-08', 'M', 'NULL', 'M', 'cody16@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '99 Marti Marie Dr.', 'NULL', '462-555-0197', '2013-12-24', '0-1 Miles'], ['19125', '612', 'AW00019125', 'NULL', 'Cameron', 'D', 'Russell', '0', '1973-01-18', 'S', 'NULL', 'M', 'cameron15@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7544 Stanford Street', 'NULL', '144-555-0132', '2013-12-01', '2-5 Miles'], ['19126', '607', 'AW00019126', 'NULL', 'Kristopher', 'J', 'Kapoor', '0', '1981-05-19', 'M', 'NULL', 'M', 'kristopher1@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4019 Weaver Lane', 'NULL', '446-555-0190', '2013-09-26', '2-5 Miles'], ['19127', '553', 'AW00019127', 'NULL', 'Alexa', 'J', 'Sanchez', '0', '1976-03-21', 'S', 'NULL', 'F', 'alexa22@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7668 Willow Lake Rd.', 'NULL', '791-555-0178', '2013-04-17', '2-5 Miles'], ['19128', '334', 'AW00019128', 'NULL', 'Madison', 'C', 'Jackson', '0', '1981-03-09', 'M', 'NULL', 'F', 'madison12@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7076 Sol Street', 'NULL', '293-555-0112', '2013-04-13', '0-1 Miles'], ['19129', '338', 'AW00019129', 'NULL', 'Carson', 'A', 'Simmons', '0', '1976-04-22', 'M', 'NULL', 'M', 'carson14@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1673 Kiska Court', 'NULL', '198-555-0191', '2013-04-03', '0-1 Miles'], ['19130', '385', 'AW00019130', 'NULL', 'Madeline', 'NULL', 'Baker', '0', '1981-08-16', 'M', 'NULL', 'F', 'madeline15@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6163 Craig Drive', 'NULL', '166-555-0116', '2013-05-04', '0-1 Miles'], ['19131', '609', 'AW00019131', 'NULL', 'Mason', 'NULL', 'Blue', '0', '1978-10-22', 'S', 'NULL', 'M', 'mason13@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '2225 Ashford Court', 'NULL', '282-555-0154', '2013-12-12', '2-5 Miles'], ['19132', '547', 'AW00019132', 'NULL', 'Benjamin', 'D', 'Washington', '0', '1972-11-12', 'S', 'NULL', 'M', 'benjamin14@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '584 Blue Circle', 'NULL', '199-555-0165', '2013-12-20', '0-1 Miles'], ['19133', '548', 'AW00019133', 'NULL', 'Logan', 'A', 'Martinez', '0', '1978-09-10', 'S', 'NULL', 'M', 'logan69@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6185 Hearturou Court', 'NULL', '292-555-0158', '2013-12-11', '2-5 Miles'], ['19134', '358', 'AW00019134', 'NULL', 'Sierra', 'S', 'Allen', '0', '1972-11-12', 'S', 'NULL', 'F', 'sierra18@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '8921 Jill Ave.', 'NULL', '723-555-0116', '2013-08-24', '0-1 Miles'], ['19135', '623', 'AW00019135', 'NULL', 'Logan', 'C', 'Brown', '0', '1977-02-03', 'M', 'NULL', 'M', 'logan53@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2093 Dubhe Court', 'NULL', '509-555-0189', '2013-04-06', '0-1 Miles'], ['19136', '616', 'AW00019136', 'NULL', 'Richard', 'NULL', 'Cook', '0', '1971-09-30', 'M', 'NULL', 'M', 'richard94@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1626 Green Valley Road', 'NULL', '921-555-0152', '2013-05-03', '0-1 Miles'], ['19137', '632', 'AW00019137', 'NULL', 'Eric', 'NULL', 'Russell', '0', '1977-03-11', 'S', 'NULL', 'M', 'eric27@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7632 Oxford Way', 'NULL', '510-555-0110', '2013-12-12', '2-5 Miles'], ['19138', '545', 'AW00019138', 'NULL', 'Eric', 'T', 'Coleman', '0', '1972-04-16', 'M', 'NULL', 'M', 'eric14@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6218 Alpine Rd', 'NULL', '811-555-0134', '2013-11-30', '2-5 Miles'], ['19139', '616', 'AW00019139', 'NULL', 'Oscar', 'F', 'Simmons', '0', '1983-03-10', 'M', 'NULL', 'M', 'oscar23@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9204 Park Highlands', 'NULL', '463-555-0187', '2013-05-21', '2-5 Miles'], ['19140', '369', 'AW00019140', 'NULL', 'Melanie', 'NULL', 'Rogers', '0', '1972-03-19', 'S', 'NULL', 'F', 'melanie44@adventure-works.com', '70000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9455 Camino Estrada', 'NULL', '622-555-0152', '2013-05-10', '2-5 Miles'], ['19141', '638', 'AW00019141', 'NULL', 'Samuel', 'J', 'Martinez', '0', '1971-08-30', 'S', 'NULL', 'M', 'samuel56@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6969 Lancaster', 'NULL', '848-555-0147', '2013-05-02', '2-5 Miles'], ['19142', '361', 'AW00019142', 'NULL', 'Dalton', 'R', 'Washington', '0', '1972-05-08', 'M', 'NULL', 'M', 'dalton59@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4575 Pinehurst Court', 'NULL', '914-555-0114', '2013-05-17', '0-1 Miles'], ['19143', '614', 'AW00019143', 'NULL', 'Lauren', 'C', 'Long', '0', '1971-01-07', 'S', 'NULL', 'F', 'lauren57@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2639 Anchor Court', 'NULL', '679-555-0118', '2013-05-21', '2-5 Miles'], ['19144', '298', 'AW00019144', 'NULL', 'Edwin', 'NULL', 'He', '0', '1976-12-22', 'S', 'NULL', 'M', 'edwin19@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '9829 Santa Ana Drive', 'NULL', '651-555-0127', '2013-05-21', '10+ Miles'], ['19145', '311', 'AW00019145', 'NULL', 'Adriana', 'NULL', 'Malhotra', '0', '1970-10-22', 'M', 'NULL', 'F', 'adriana5@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '1944 Serene Court', 'NULL', '911-555-0122', '2013-09-20', '10+ Miles'], ['19146', '310', 'AW00019146', 'NULL', 'Mariah', 'NULL', 'Morgan', '0', '1976-07-14', 'S', 'NULL', 'F', 'mariah38@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '6713 Castle Rock', '#3', '533-555-0186', '2013-12-25', '0-1 Miles'], ['19147', '62', 'AW00019147', 'NULL', 'Edward', 'E', 'Thomas', '0', '1975-03-09', 'M', 'NULL', 'M', 'edward33@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9275 Westwood Way', 'NULL', '731-555-0193', '2013-06-05', '0-1 Miles'], ['19148', '536', 'AW00019148', 'NULL', 'Cody', 'M', 'Ramirez', '0', '1975-09-05', 'S', 'NULL', 'M', 'cody7@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1247 Cardiff Dr.', 'NULL', '117-555-0155', '2013-12-14', '0-1 Miles'], ['19149', '612', 'AW00019149', 'NULL', 'Sean', 'C', 'Parker', '0', '1980-09-13', 'S', 'NULL', 'M', 'sean30@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '2841 Macarthur Ave.', 'NULL', '363-555-0144', '2013-07-08', '2-5 Miles'], ['19150', '54', 'AW00019150', 'NULL', 'Maria', 'C', 'Bailey', '0', '1986-02-13', 'M', 'NULL', 'F', 'maria9@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8381 Lake Place', 'NULL', '202-555-0115', '2013-09-24', '2-5 Miles'], ['19151', '632', 'AW00019151', 'NULL', 'Ian', 'NULL', 'Cooper', '0', '1970-02-14', 'S', 'NULL', 'M', 'ian75@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3723 Coachman Pl.', 'NULL', '258-555-0133', '2013-09-28', '2-5 Miles'], ['19152', '536', 'AW00019152', 'NULL', 'Jonathan', 'NULL', 'Walker', '0', '1969-08-01', 'M', 'NULL', 'M', 'jonathan77@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '3083 Alhambra Ave.', 'NULL', '392-555-0184', '2013-04-07', '10+ Miles'], ['19153', '374', 'AW00019153', 'NULL', 'Dylan', 'NULL', 'Griffin', '0', '1975-03-22', 'M', 'NULL', 'M', 'dylan20@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '7422 Meadowbrook', 'NULL', '165-555-0115', '2013-06-02', '10+ Miles'], ['19154', '611', 'AW00019154', 'Mr.', 'William', 'K.', 'Sotelo', '0', '1980-07-08', 'M', 'NULL', 'F', 'william5@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '5629 Seagull Court', 'NULL', '819-555-0100', '2013-12-21', '10+ Miles'], ['19155', '326', 'AW00019155', 'NULL', 'Caroline', 'NULL', 'Flores', '0', '1970-04-24', 'M', 'NULL', 'F', 'caroline13@adventure-works.com', '60000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '1183 Royal Links Circle', 'NULL', '977-555-0139', '2013-05-05', '10+ Miles'], ['19156', '539', 'AW00019156', 'NULL', 'Julia', 'R', 'Jenkins', '0', '1969-07-03', 'S', 'NULL', 'F', 'julia73@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1206 San Simeon Drive', 'NULL', '483-555-0189', '2013-12-08', '0-1 Miles'], ['19157', '611', 'AW00019157', 'NULL', 'Eduardo', 'NULL', 'Thompson', '0', '1970-06-25', 'S', 'NULL', 'M', 'eduardo14@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4924 Mariposa', 'NULL', '973-555-0110', '2013-12-26', '0-1 Miles'], ['19158', '355', 'AW00019158', 'NULL', 'Destiny', 'C', 'Griffin', '0', '1975-03-15', 'S', 'NULL', 'F', 'destiny67@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1624 Carlisle Way', 'NULL', '931-555-0177', '2013-12-12', '0-1 Miles'], ['19159', '326', 'AW00019159', 'NULL', 'Richard', 'J', 'Gonzalez', '0', '1969-11-12', 'M', 'NULL', 'M', 'richard28@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9893 Hastings Dr', 'NULL', '499-555-0148', '2013-01-13', '2-5 Miles'], ['19160', '345', 'AW00019160', 'NULL', 'Sara', 'NULL', 'Perez', '0', '1968-09-21', 'S', 'NULL', 'F', 'sara38@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9121 Monte Cresta Avenue', 'NULL', '516-555-0128', '2013-01-19', '0-1 Miles'], ['19161', '310', 'AW00019161', 'NULL', 'Jeremiah', 'C', 'Hughes', '0', '1969-04-04', 'S', 'NULL', 'M', 'jeremiah31@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1162 Relief Valley Ct', 'NULL', '314-555-0193', '2013-05-01', '0-1 Miles'], ['19162', '301', 'AW00019162', 'NULL', 'Peter', 'L', 'Raji', '0', '1969-05-12', 'M', 'NULL', 'M', 'peter26@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '8671 Appalachia Dr.', 'NULL', '355-555-0191', '2013-04-30', '2-5 Miles'], ['19163', '336', 'AW00019163', 'NULL', 'Riley', 'NULL', 'Bailey', '0', '1979-10-18', 'M', 'NULL', 'F', 'riley35@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '857 San Simeon Drive', 'NULL', '662-555-0171', '2013-05-24', '0-1 Miles'], ['19164', '329', 'AW00019164', 'NULL', 'Danielle', 'NULL', 'Morgan', '0', '1973-12-22', 'S', 'NULL', 'F', 'danielle25@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9116 Sugar Valley Blv.', 'NULL', '274-555-0177', '2013-05-17', '2-5 Miles'], ['19165', '361', 'AW00019165', 'NULL', 'Miranda', 'NULL', 'Russell', '0', '1974-03-02', 'S', 'NULL', 'F', 'miranda20@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4981 Katherine Drive', 'NULL', '751-555-0126', '2013-05-29', '2-5 Miles'], ['19166', '361', 'AW00019166', 'NULL', 'Olivia', 'NULL', 'Jenkins', '0', '1979-12-12', 'S', 'NULL', 'F', 'olivia52@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7254 Buchanan Road', 'NULL', '157-555-0150', '2013-09-13', '0-1 Miles'], ['19167', '374', 'AW00019167', 'NULL', 'Caitlin', 'C', 'Morgan', '0', '1979-12-06', 'S', 'NULL', 'F', 'caitlin19@adventure-works.com', '60000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '6085 Darlene Drive', 'NULL', '175-555-0110', '2013-01-01', '0-1 Miles'], ['19168', '536', 'AW00019168', 'NULL', 'Nathan', 'NULL', 'Kumar', '0', '1969-04-17', 'S', 'NULL', 'M', 'nathan25@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '143 Louisiana Dr', 'NULL', '601-555-0110', '2013-02-03', '2-5 Miles'], ['19169', '632', 'AW00019169', 'NULL', 'Arianna', 'NULL', 'Bryant', '0', '1969-05-01', 'S', 'NULL', 'F', 'arianna16@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '4255 Willow Pass Dr', 'NULL', '725-555-0131', '2013-01-25', '0-1 Miles'], ['19170', '612', 'AW00019170', 'NULL', 'Luis', 'A', 'Campbell', '0', '1969-05-10', 'S', 'NULL', 'M', 'luis39@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '359 Candlestick Dr.', 'NULL', '883-555-0152', '2013-01-16', '0-1 Miles'], ['19171', '369', 'AW00019171', 'NULL', 'Melanie', 'L', 'Torres', '0', '1969-02-24', 'M', 'NULL', 'F', 'melanie29@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4687 York Dr', 'NULL', '685-555-0169', '2013-01-11', '0-1 Miles'], ['19172', '250', 'AW00019172', 'NULL', 'Calvin', 'T', 'Luo', '0', '1985-04-15', 'M', 'NULL', 'M', 'calvin6@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9774 Maywood Lane', 'NULL', '1 (11) 500 555-0128', '2012-01-02', '0-1 Miles'], ['19173', '259', 'AW00019173', 'NULL', 'Kelli', 'J', 'Lal', '0', '1979-09-16', 'M', 'NULL', 'F', 'kelli31@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3450 Rio Grande Dr.', 'NULL', '1 (11) 500 555-0134', '2012-01-24', '1-2 Miles'], ['19174', '189', 'AW00019174', 'NULL', 'Katelyn', 'L', 'Howard', '0', '1979-06-02', 'S', 'NULL', 'F', 'katelyn10@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '10, place de Fontenoy', 'NULL', '1 (11) 500 555-0169', '2012-03-21', '2-5 Miles'], ['19175', '231', 'AW00019175', 'NULL', 'Wayne', 'E', 'Sharma', '0', '1977-08-19', 'S', 'NULL', 'M', 'wayne11@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '7960 South Creek Dr.', 'NULL', '1 (11) 500 555-0173', '2013-07-17', '0-1 Miles'], ['19176', '131', 'AW00019176', 'NULL', 'Ebony', 'B', 'Vazquez', '0', '1977-11-30', 'S', 'NULL', 'F', 'ebony36@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Zimmerstr 311', 'NULL', '1 (11) 500 555-0155', '2013-11-27', '1-2 Miles'], ['19177', '118', 'AW00019177', 'NULL', 'Donna', 'D', 'Chander', '0', '1979-01-22', 'M', 'NULL', 'F', 'donna14@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Postfach 8 11 99', 'NULL', '1 (11) 500 555-0172', '2013-02-20', '1-2 Miles'], ['19178', '117', 'AW00019178', 'NULL', 'Sarah', 'NULL', 'Miller', '0', '1978-02-22', 'S', 'NULL', 'F', 'sarah8@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Berliner Platz 876', 'NULL', '1 (11) 500 555-0136', '2013-04-20', '0-1 Miles'], ['19179', '218', 'AW00019179', 'NULL', 'Gloria', 'V', 'Sanz', '0', '1977-11-20', 'S', 'NULL', 'F', 'gloria20@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '12, avenue du Port', 'NULL', '1 (11) 500 555-0193', '2013-11-06', '0-1 Miles'], ['19180', '205', 'AW00019180', 'NULL', 'Joan', 'NULL', 'Navarro', '0', '1977-09-07', 'S', 'NULL', 'F', 'joan16@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '4, rue des Berges', 'NULL', '1 (11) 500 555-0173', '2013-10-05', '0-1 Miles'], ['19181', '224', 'AW00019181', 'NULL', 'Chad', 'L', 'Pal', '0', '1978-04-24', 'S', 'NULL', 'M', 'chad14@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '141, rue de la Centenaire', 'NULL', '1 (11) 500 555-0154', '2012-03-06', '1-2 Miles'], ['19182', '206', 'AW00019182', 'NULL', 'Lance', 'NULL', 'Dominguez', '0', '1983-05-19', 'S', 'NULL', 'M', 'lance12@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '8787, impasse Notre-Dame', 'NULL', '1 (11) 500 555-0135', '2013-03-21', '2-5 Miles'], ['19183', '198', 'AW00019183', 'NULL', 'Edwin', 'D', 'Raje', '0', '1976-08-07', 'S', 'NULL', 'M', 'edwin36@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '86, rue Mazagran', 'NULL', '1 (11) 500 555-0169', '2013-09-07', '1-2 Miles'], ['19184', '234', 'AW00019184', 'NULL', 'Emily', 'NULL', 'Hayes', '0', '1982-10-05', 'S', 'NULL', 'F', 'emily48@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '9308 Green Valley Rd.', 'NULL', '1 (11) 500 555-0143', '2013-04-08', '1-2 Miles'], ['19185', '189', 'AW00019185', 'NULL', 'Jacqueline', 'NULL', 'Bradley', '0', '1977-05-22', 'S', 'NULL', 'F', 'jacqueline3@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '24, place Beaubernard', 'NULL', '1 (11) 500 555-0193', '2013-02-15', '0-1 Miles'], ['19186', '257', 'AW00019186', 'NULL', 'Bob', 'NULL', 'Garcia', '0', '1982-02-11', 'M', 'NULL', 'M', 'bob7@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '1336 Terrace Road', 'NULL', '1 (11) 500 555-0116', '2012-01-21', '0-1 Miles'], ['19187', '230', 'AW00019187', 'NULL', 'Karl', 'S', 'Pal', '0', '1976-11-10', 'S', 'NULL', 'M', 'karl13@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '8675 Line Court', 'NULL', '1 (11) 500 555-0188', '2013-10-15', '1-2 Miles'], ['19188', '133', 'AW00019188', 'NULL', 'Dalton', 'A', 'Anderson', '0', '1976-12-04', 'S', 'NULL', 'M', 'dalton9@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Postfach 99 92 92', 'NULL', '1 (11) 500 555-0112', '2012-09-18', '2-5 Miles'], ['19189', '187', 'AW00019189', 'NULL', 'Morgan', 'NULL', 'Price', '0', '1976-09-08', 'S', 'NULL', 'F', 'morgan70@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5, rue Malar', 'NULL', '1 (11) 500 555-0160', '2013-05-25', '2-5 Miles'], ['19190', '277', 'AW00019190', 'NULL', 'Carl', 'L', 'Shen', '0', '1976-11-24', 'S', 'NULL', 'M', 'carl2@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '8966 Keywood Ct', 'NULL', '1 (11) 500 555-0196', '2013-09-07', '2-5 Miles'], ['19191', '168', 'AW00019191', 'NULL', 'Keith', 'NULL', 'Chande', '0', '1977-01-19', 'S', 'NULL', 'M', 'keith18@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Räuscherweg 292', 'NULL', '1 (11) 500 555-0131', '2013-06-08', '2-5 Miles'], ['19192', '256', 'AW00019192', 'NULL', 'Erika', 'J', 'Ruiz', '0', '1975-09-09', 'S', 'NULL', 'F', 'erika1@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3582 Schenone Court', 'NULL', '1 (11) 500 555-0168', '2012-02-23', '1-2 Miles'], ['19193', '238', 'AW00019193', 'NULL', 'Omar', 'S', 'Lal', '0', '1976-05-21', 'S', 'NULL', 'M', 'omar28@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9738 Hamilton Drive', 'NULL', '1 (11) 500 555-0112', '2012-02-18', '1-2 Miles'], ['19194', '199', 'AW00019194', 'NULL', 'Cesar', 'L', 'Garcia', '0', '1975-09-29', 'S', 'NULL', 'M', 'cesar14@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '444, chaussée de Tournai', 'NULL', '1 (11) 500 555-0119', '2012-03-18', '1-2 Miles'], ['19195', '232', 'AW00019195', 'NULL', 'Darren', 'A', 'Romero', '0', '1981-05-22', 'S', 'NULL', 'M', 'darren31@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5038 Kenwal Rd', 'NULL', '1 (11) 500 555-0150', '2012-02-15', '1-2 Miles'], ['19196', '171', 'AW00019196', 'NULL', 'April', 'NULL', 'She', '0', '1981-08-31', 'S', 'NULL', 'F', 'april0@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Krönerweg 7677', 'NULL', '1 (11) 500 555-0163', '2012-09-15', '1-2 Miles'], ['19197', '166', 'AW00019197', 'NULL', 'Briana', 'M', 'Sandoval', '0', '1976-05-16', 'S', 'NULL', 'F', 'briana17@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Räuscherweg 292', 'NULL', '1 (11) 500 555-0127', '2012-10-13', '0-1 Miles'], ['19198', '368', 'AW00019198', 'NULL', 'Melissa', 'NULL', 'Brooks', '0', '1986-05-05', 'S', 'NULL', 'F', 'melissa24@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7334 Rockford Dr', 'NULL', '442-555-0165', '2013-01-16', '1-2 Miles'], ['19199', '372', 'AW00019199', 'NULL', 'David', 'NULL', 'Williams', '0', '1980-10-06', 'S', 'NULL', 'M', 'david75@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4138 Pine Creek Way', 'NULL', '999-555-0133', '2013-01-24', '1-2 Miles'], ['19200', '51', 'AW00019200', 'NULL', 'Luke', 'NULL', 'Henderson', '0', '1971-09-22', 'M', 'NULL', 'M', 'luke23@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2536 El Capitan Lane', 'NULL', '198-555-0132', '2013-11-05', '0-1 Miles'], ['19201', '539', 'AW00019201', 'NULL', 'Charles', 'B', 'Brooks', '0', '1972-04-25', 'M', 'NULL', 'M', 'charles48@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9526 Ridgeview Dr.', 'NULL', '164-555-0197', '2013-01-27', '1-2 Miles'], ['19202', '627', 'AW00019202', 'NULL', 'Brianna', 'R', 'Lee', '0', '1972-01-08', 'M', 'NULL', 'F', 'brianna21@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2296 Mota Dr.', 'NULL', '147-555-0117', '2013-01-15', '1-2 Miles'], ['19203', '300', 'AW00019203', 'NULL', 'Darren', 'E', 'Navarro', '0', '1958-12-11', 'S', 'NULL', 'M', 'darren32@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '3798 Vine Hill Way', 'NULL', '902-555-0168', '2013-09-18', '1-2 Miles'], ['19204', '546', 'AW00019204', 'NULL', 'Sydney', 'NULL', 'Evans', '0', '1958-12-17', 'S', 'NULL', 'F', 'sydney44@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '1028 Green View Court', 'NULL', '422-555-0117', '2013-10-15', '1-2 Miles'], ['19205', '68', 'AW00019205', 'NULL', 'James', 'NULL', 'Perry', '0', '1964-09-12', 'M', 'NULL', 'M', 'james23@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '5662 Lane Way', 'NULL', '706-555-0117', '2013-12-14', '1-2 Miles'], ['19206', '329', 'AW00019206', 'NULL', 'Destiny', 'T', 'Cooper', '0', '1975-02-05', 'M', 'NULL', 'F', 'destiny34@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '1371 Rogers Ave', 'NULL', '114-555-0118', '2013-10-09', '0-1 Miles'], ['19207', '53', 'AW00019207', 'NULL', 'Jeremiah', 'F', 'Turner', '0', '1971-04-04', 'M', 'NULL', 'M', 'jeremiah21@adventure-works.com', '20000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '5615 Rock Oak Road', 'NULL', '992-555-0116', '2013-05-17', '1-2 Miles'], ['19208', '638', 'AW00019208', 'NULL', 'Angelica', 'NULL', 'Diaz', '0', '1959-10-02', 'M', 'NULL', 'F', 'angelica21@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9399 Ferndale Lane', 'NULL', '133-555-0128', '2013-07-09', '5-10 Miles'], ['19209', '638', 'AW00019209', 'NULL', 'Alexandra', 'NULL', 'Nelson', '0', '1960-01-01', 'M', 'NULL', 'F', 'alexandra51@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3132 Jacqueline Drive', 'NULL', '415-555-0174', '2013-10-24', '1-2 Miles'], ['19210', '315', 'AW00019210', 'NULL', 'Alexis', 'E', 'Price', '0', '1965-08-02', 'M', 'NULL', 'F', 'alexis22@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3549 Peachwillow St.', 'NULL', '808-555-0189', '2013-12-17', '10+ Miles'], ['19211', '334', 'AW00019211', 'NULL', 'Anna', 'NULL', 'Lee', '0', '1960-02-21', 'M', 'NULL', 'F', 'anna60@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6650 Contuti Avenue', 'NULL', '144-555-0170', '2013-01-24', '0-1 Miles'], ['19212', '543', 'AW00019212', 'NULL', 'Brianna', 'R', 'Clark', '0', '1966-03-07', 'M', 'NULL', 'F', 'brianna18@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '236 Willow Lake Rd.', 'NULL', '498-555-0142', '2013-01-12', '0-1 Miles'], ['19213', '302', 'AW00019213', 'NULL', 'Amanda', 'M', 'Simmons', '0', '1960-07-07', 'M', 'NULL', 'F', 'amanda36@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9324 Bohon Circle', 'NULL', '501-555-0194', '2013-01-19', '0-1 Miles'], ['19214', '336', 'AW00019214', 'NULL', 'Cassidy', 'NULL', 'Powell', '0', '1961-08-15', 'S', 'NULL', 'F', 'cassidy9@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2816 Colton Ln', 'NULL', '114-555-0177', '2013-03-08', '1-2 Miles'], ['19215', '637', 'AW00019215', 'NULL', 'Edward', 'NULL', 'Hall', '0', '1967-09-30', 'S', 'NULL', 'M', 'edward46@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4576 Almond Street', 'NULL', '118-555-0179', '2013-10-26', '1-2 Miles'], ['19216', '298', 'AW00019216', 'NULL', 'Gabriel', 'NULL', 'Lopez', '0', '1962-03-01', 'S', 'NULL', 'M', 'gabriel51@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9469 Mt. Hood Circle', 'NULL', '727-555-0133', '2013-04-29', '1-2 Miles'], ['19217', '59', 'AW00019217', 'NULL', 'Jose', 'NULL', 'Nelson', '0', '1973-03-12', 'M', 'NULL', 'M', 'jose45@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8364 St. Paul Circle', 'NULL', '733-555-0123', '2013-02-24', '1-2 Miles'], ['19218', '307', 'AW00019218', 'NULL', 'Nathaniel', 'V', 'Brooks', '0', '1962-04-09', 'M', 'NULL', 'M', 'nathaniel2@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2131 Covington Court', 'NULL', '934-555-0180', '2013-03-11', '1-2 Miles'], ['19219', '612', 'AW00019219', 'NULL', 'Mary', 'NULL', 'Peterson', '0', '1962-06-05', 'M', 'NULL', 'F', 'mary13@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4006 Jane Ct', 'NULL', '685-555-0115', '2013-04-22', '1-2 Miles'], ['19220', '49', 'AW00019220', 'NULL', 'Mariah', 'R', 'Sanchez', '0', '1962-07-07', 'M', 'NULL', 'F', 'mariah44@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4851 Heights Ave.', 'NULL', '492-555-0152', '2013-02-25', '0-1 Miles'], ['19221', '347', 'AW00019221', 'NULL', 'Kaitlyn', 'A', 'Williams', '0', '1962-09-23', 'M', 'NULL', 'F', 'kaitlyn25@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5964 Sepulveda Ct.', 'NULL', '826-555-0143', '2013-11-18', '1-2 Miles'], ['19222', '648', 'AW00019222', 'NULL', 'Jordan', 'E', 'Hall', '0', '1968-02-17', 'M', 'NULL', 'M', 'jordan75@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6228 Geary Court', 'NULL', '137-555-0144', '2013-12-12', '1-2 Miles'], ['19223', '60', 'AW00019223', 'NULL', 'Jacqueline', 'A', 'Cook', '0', '1974-06-17', 'M', 'NULL', 'F', 'jacqueline46@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8862 Dale Pl.', 'NULL', '339-555-0199', '2013-03-18', '1-2 Miles'], ['19224', '66', 'AW00019224', 'NULL', 'Stephanie', 'L', 'Henderson', '0', '1963-03-21', 'M', 'NULL', 'F', 'stephanie32@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9105 Santa Fe', 'NULL', '607-555-0187', '2013-05-23', '1-2 Miles'], ['19225', '331', 'AW00019225', 'NULL', 'Jeremy', 'A', 'Watson', '0', '1963-04-07', 'M', 'NULL', 'M', 'jeremy32@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6322 Springwood Way', 'NULL', '780-555-0110', '2012-12-31', '1-2 Miles'], ['19226', '299', 'AW00019226', 'NULL', 'Neil', 'M', 'Carlson', '0', '1980-10-14', 'M', 'NULL', 'M', 'neil17@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4496 Stroer Lane', 'NULL', '296-555-0176', '2014-01-23', '0-1 Miles'], ['19227', '536', 'AW00019227', 'NULL', 'Logan', 'F', 'Nelson', '0', '1969-08-16', 'M', 'NULL', 'M', 'logan35@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1355 Palm Avenue', 'NULL', '326-555-0152', '2013-03-13', '1-2 Miles'], ['19228', '612', 'AW00019228', 'NULL', 'Morgan', 'P', 'Ramirez', '0', '1963-09-09', 'M', 'NULL', 'F', 'morgan64@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4077 Chinquapin Ct', 'NULL', '793-555-0190', '2013-09-20', '0-1 Miles'], ['19229', '335', 'AW00019229', 'NULL', 'David', 'C', 'Robinson', '0', '1964-02-20', 'S', 'NULL', 'M', 'david81@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4605 Shenandoah Dr.', 'NULL', '835-555-0146', '2013-10-27', '1-2 Miles'], ['19230', '311', 'AW00019230', 'NULL', 'Joy', 'NULL', 'Moreno', '0', '1963-11-11', 'M', 'NULL', 'F', 'joy7@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7405 Dolores Way', 'NULL', '260-555-0137', '2013-12-21', '1-2 Miles'], ['19231', '310', 'AW00019231', 'NULL', 'Meghan', 'R', 'Gill', '0', '1969-04-11', 'M', 'NULL', 'F', 'meghan13@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9769 Thistle Circle', 'NULL', '824-555-0156', '2013-06-28', '0-1 Miles'], ['19232', '43', 'AW00019232', 'NULL', 'Candice', 'NULL', 'Chow', '0', '1970-11-09', 'S', 'NULL', 'F', 'candice10@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1133 Leisure Lane', 'NULL', '427-555-0160', '2013-05-28', '1-2 Miles'], ['19233', '302', 'AW00019233', 'NULL', 'Omar', 'L', 'Andersen', '0', '1970-05-02', 'M', 'NULL', 'M', 'omar33@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5578 Barbie Dr', 'NULL', '201-555-0147', '2013-04-09', '1-2 Miles'], ['19234', '300', 'AW00019234', 'NULL', 'Micah', 'NULL', 'Zheng', '0', '1983-05-13', 'S', 'NULL', 'M', 'micah7@adventure-works.com', '40000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8526 El Mundo Dr.', 'NULL', '131-555-0198', '2013-12-11', '0-1 Miles'], ['19235', '310', 'AW00019235', 'NULL', 'Kayla', 'NULL', 'Bennett', '0', '1978-02-02', 'M', 'NULL', 'F', 'kayla25@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1610 Ashwood Dr.', 'NULL', '116-555-0117', '2013-10-14', '0-1 Miles'], ['19236', '609', 'AW00019236', 'NULL', 'Chloe', 'K', 'Phillips', '0', '1978-02-09', 'M', 'NULL', 'F', 'chloe3@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3464 Cook Park', 'NULL', '128-555-0134', '2013-12-19', '0-1 Miles'], ['19237', '611', 'AW00019237', 'NULL', 'Kristy', 'M', 'Gomez', '0', '1978-10-15', 'M', 'NULL', 'F', 'kristy1@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9200 Pecan Street', 'NULL', '635-555-0158', '2013-12-01', '0-1 Miles'], ['19238', '633', 'AW00019238', 'NULL', 'Isabella', 'NULL', 'West', '0', '1984-02-04', 'M', 'NULL', 'F', 'isabella7@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9431 College Blvd', 'NULL', '933-555-0122', '2013-05-13', '1-2 Miles'], ['19239', '634', 'AW00019239', 'NULL', 'Jeremy', 'D', 'Alexander', '0', '1979-04-17', 'M', 'NULL', 'M', 'jeremy31@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6288 Melody Dr.', 'NULL', '697-555-0178', '2013-12-20', '1-2 Miles'], ['19240', '298', 'AW00019240', 'NULL', 'Theresa', 'W', 'Jimenez', '0', '1978-10-18', 'M', 'NULL', 'F', 'theresa2@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6057 Hill Street', 'NULL', '175-555-0135', '2013-01-21', '1-2 Miles'], ['19241', '300', 'AW00019241', 'NULL', 'Diane', 'A', 'Dominguez', '0', '1978-12-31', 'M', 'NULL', 'F', 'diane17@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8125 Westbury Drive', 'NULL', '103-555-0142', '2013-02-15', '1-2 Miles'], ['19242', '311', 'AW00019242', 'NULL', 'Devin', 'R', 'Baker', '0', '1979-05-04', 'M', 'NULL', 'M', 'devin30@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1287 Youngsdale Drive', 'NULL', '117-555-0187', '2013-04-28', '1-2 Miles'], ['19243', '358', 'AW00019243', 'NULL', 'James', 'K', 'Thomas', '0', '1984-04-24', 'M', 'NULL', 'M', 'james83@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3623 Buskirk Avenue', 'NULL', '620-555-0118', '2013-06-04', '1-2 Miles'], ['19244', '360', 'AW00019244', 'NULL', 'Sebastian', 'NULL', 'Ward', '0', '1984-06-04', 'M', 'NULL', 'M', 'sebastian4@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3717 Greenway Drive', 'NULL', '165-555-0113', '2013-05-02', '1-2 Miles'], ['19245', '345', 'AW00019245', 'NULL', 'Isaiah', 'P', 'King', '0', '1982-02-23', 'M', 'NULL', 'M', 'isaiah43@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '225 Piedmont', 'NULL', '889-555-0145', '2013-07-06', '0-1 Miles'], ['19246', '618', 'AW00019246', 'NULL', 'Carlos', 'E', 'Campbell', '0', '1977-02-05', 'M', 'NULL', 'M', 'carlos34@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7022 Muth Dr.', 'NULL', '563-555-0146', '2013-07-10', '1-2 Miles'], ['19247', '259', 'AW00019247', 'NULL', 'Michele', 'L', 'Martinez', '0', '1979-05-04', 'M', 'NULL', 'F', 'michele31@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '1955 Sequoia Drive', 'NULL', '1 (11) 500 555-0198', '2013-02-13', '0-1 Miles'], ['19248', '131', 'AW00019248', 'NULL', 'Sheena', 'C', 'Black', '0', '1978-08-22', 'M', 'NULL', 'F', 'sheena19@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Unter Linden 34', 'NULL', '1 (11) 500 555-0158', '2013-07-31', '0-1 Miles'], ['19249', '119', 'AW00019249', 'NULL', 'Chad', 'J', 'Andersen', '0', '1967-06-02', 'M', 'NULL', 'M', 'chad15@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Am Grossen Dern 8249', 'NULL', '1 (11) 500 555-0138', '2013-08-29', '0-1 Miles'], ['19250', '164', 'AW00019250', 'NULL', 'Lacey', 'T', 'Wu', '0', '1966-07-02', 'M', 'NULL', 'F', 'lacey19@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Pascalstr 66', 'NULL', '1 (11) 500 555-0165', '2013-08-03', '0-1 Miles'], ['19251', '142', 'AW00019251', 'NULL', 'Brett', 'NULL', 'Sai', '0', '1966-08-07', 'M', 'NULL', 'M', 'brett5@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Hunzinger Allee 555', 'NULL', '1 (11) 500 555-0118', '2013-08-06', '0-1 Miles'], ['19252', '196', 'AW00019252', 'NULL', 'Jasmine', 'S', 'Brooks', '0', '1961-08-27', 'M', 'NULL', 'F', 'jasmine38@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '11, rue du Puits Dixme', 'NULL', '1 (11) 500 555-0129', '2013-03-30', '1-2 Miles'], ['19253', '271', 'AW00019253', 'NULL', 'Gabrielle', 'J', 'Ross', '0', '1967-03-19', 'S', 'NULL', 'F', 'gabrielle26@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9137 San Remo Ct.', 'NULL', '1 (11) 500 555-0123', '2012-02-12', '0-1 Miles'], ['19254', '155', 'AW00019254', 'Sr.', 'Anibal', 'NULL', 'Sousa', '0', '1962-05-07', 'S', 'NULL', 'M', 'anibal1@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Essener Straße 18', 'NULL', '283-555-0100', '2012-10-10', '0-1 Miles'], ['19255', '210', 'AW00019255', 'NULL', 'Terrance', 'NULL', 'Sara', '0', '1960-08-13', 'S', 'NULL', 'M', 'terrance7@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '61, rue Surcouf', 'NULL', '1 (11) 500 555-0185', '2012-02-29', '0-1 Miles'], ['19256', '196', 'AW00019256', 'NULL', 'Abigail', 'A', 'Griffin', '0', '1966-03-07', 'M', 'NULL', 'F', 'abigail46@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '93, impasse Ste-Madeleine', 'NULL', '1 (11) 500 555-0191', '2012-03-13', '0-1 Miles'], ['19257', '170', 'AW00019257', 'NULL', 'Dana', 'NULL', 'Jiménez', '0', '1965-01-12', 'M', 'NULL', 'F', 'dana21@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Kalkweg 4455', 'NULL', '1 (11) 500 555-0154', '2012-10-27', '0-1 Miles'], ['19258', '250', 'AW00019258', 'NULL', 'Douglas', 'NULL', 'Mehta', '0', '1976-05-13', 'M', 'NULL', 'M', 'douglas18@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '8696 Whitehaven Dr', 'NULL', '1 (11) 500 555-0113', '2012-02-22', '0-1 Miles'], ['19259', '132', 'AW00019259', 'NULL', 'Barbara', 'NULL', 'Lin', '0', '1942-07-22', 'M', 'NULL', 'F', 'barbara17@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Essener Straße 820', 'NULL', '1 (11) 500 555-0182', '2013-04-23', '0-1 Miles'], ['19260', '231', 'AW00019260', 'NULL', 'Latoya', 'NULL', 'Sharma', '0', '1945-01-04', 'S', 'NULL', 'F', 'latoya8@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4290 Wellington Avenue', 'NULL', '1 (11) 500 555-0114', '2012-02-17', '0-1 Miles'], ['19261', '272', 'AW00019261', 'NULL', 'Heather', 'M', 'Wu', '0', '1945-11-23', 'M', 'NULL', 'F', 'heather6@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5024 Euclid Avenue', 'NULL', '1 (11) 500 555-0191', '2013-09-11', '0-1 Miles'], ['19262', '234', 'AW00019262', 'NULL', 'Kari', 'T', 'Sanchez', '0', '1948-05-26', 'M', 'NULL', 'F', 'kari20@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3388 C Del Rio Circle', 'NULL', '1 (11) 500 555-0158', '2013-02-12', '0-1 Miles'], ['19263', '254', 'AW00019263', 'NULL', 'Nina', 'D', 'Chande', '0', '1948-05-06', 'M', 'NULL', 'F', 'nina15@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1531 Birchwood', 'NULL', '1 (11) 500 555-0184', '2012-03-10', '0-1 Miles'], ['19264', '39', 'AW00019264', 'NULL', 'Kristopher', 'C', 'Gonzalez', '0', '1986-03-21', 'S', 'NULL', 'M', 'kristopher17@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '9574 Bancroft Road', 'NULL', '1 (11) 500 555-0131', '2011-08-11', '0-1 Miles'], ['19265', '20', 'AW00019265', 'NULL', 'Dale', 'NULL', 'Raji', '0', '1984-08-22', 'M', 'NULL', 'M', 'dale19@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1315 Union St', 'NULL', '1 (11) 500 555-0117', '2013-11-25', '0-1 Miles'], ['19266', '40', 'AW00019266', 'NULL', 'Grant', 'M', 'Xu', '0', '1985-04-04', 'M', 'NULL', 'M', 'grant7@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '8643 B Way', 'NULL', '1 (11) 500 555-0114', '2013-05-25', '0-1 Miles'], ['19267', '21', 'AW00019267', 'NULL', 'Marshall', 'J', 'Raje', '0', '1984-08-05', 'M', 'NULL', 'M', 'marshall34@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '3101 South Villa Way', 'NULL', '1 (11) 500 555-0146', '2013-12-15', '2-5 Miles'], ['19268', '23', 'AW00019268', 'NULL', 'Alyssa', 'M', 'Ward', '0', '1984-05-10', 'M', 'NULL', 'F', 'alyssa39@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '5312 Riverwood Circle', 'NULL', '1 (11) 500 555-0196', '2014-01-15', '0-1 Miles'], ['19269', '40', 'AW00019269', 'NULL', 'Kathleen', 'J', 'Navarro', '0', '1982-09-20', 'S', 'NULL', 'F', 'kathleen12@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '1704 El Pueblo Pl', 'NULL', '1 (11) 500 555-0179', '2011-08-04', '0-1 Miles'], ['19270', '30', 'AW00019270', 'NULL', 'Shawn', 'NULL', 'Shen', '0', '1985-06-24', 'M', 'NULL', 'M', 'shawn4@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7648 S. Bascom Ave.', 'NULL', '1 (11) 500 555-0173', '2011-08-04', '0-1 Miles'], ['19271', '13', 'AW00019271', 'NULL', 'Kristopher', 'O', 'Fernandez', '0', '1983-11-12', 'M', 'NULL', 'M', 'kristopher14@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8267 Lavene Way', 'NULL', '1 (11) 500 555-0162', '2011-08-03', '0-1 Miles'], ['19272', '179', 'AW00019272', 'NULL', 'Shaun', 'N', 'Andersen', '0', '1948-07-18', 'M', 'NULL', 'M', 'shaun14@adventure-works.com', '20000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '811, rue Basse-du-Rocher', 'NULL', '1 (11) 500 555-0126', '2013-06-29', '0-1 Miles'], ['19273', '223', 'AW00019273', 'NULL', 'Natalie', 'NULL', 'Henderson', '0', '1948-07-23', 'M', 'NULL', 'F', 'natalie27@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '2128, place du Tertre', 'NULL', '1 (11) 500 555-0112', '2013-07-29', '0-1 Miles'], ['19274', '149', 'AW00019274', 'NULL', 'Karen', 'E', 'Yang', '0', '1948-07-08', 'M', 'NULL', 'F', 'karen14@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Galeriestr 123', 'NULL', '1 (11) 500 555-0199', '2012-10-02', '0-1 Miles'], ['19275', '183', 'AW00019275', 'NULL', 'Gregory', 'J', 'Rai', '0', '1972-12-17', 'M', 'NULL', 'M', 'gregory21@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Midi-Couleurs', 'NULL', '1 (11) 500 555-0112', '2013-03-26', '1-2 Miles'], ['19276', '217', 'AW00019276', 'NULL', 'Ruben', 'A', 'Sai', '0', '1972-08-06', 'S', 'NULL', 'M', 'ruben6@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '69, avenue du Port', 'NULL', '1 (11) 500 555-0137', '2012-04-21', '0-1 Miles'], ['19277', '207', 'AW00019277', 'NULL', 'Billy', 'L', 'Jiménez', '0', '1966-01-24', 'M', 'NULL', 'M', 'billy7@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '8734, cours Mirabeau', 'NULL', '1 (11) 500 555-0130', '2013-02-10', '2-5 Miles'], ['19278', '238', 'AW00019278', 'NULL', 'Willie', 'NULL', 'Sun', '0', '1966-01-10', 'S', 'NULL', 'M', 'willie11@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '551 Thors Bay Road', 'NULL', '1 (11) 500 555-0149', '2012-03-08', '0-1 Miles'], ['19279', '247', 'AW00019279', 'NULL', 'Omar', 'R', 'Xu', '0', '1965-09-02', 'S', 'NULL', 'M', 'omar25@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '1780 Abbey Court', 'NULL', '1 (11) 500 555-0177', '2013-09-04', '1-2 Miles'], ['19280', '193', 'AW00019280', 'NULL', 'Darrell', 'NULL', 'Andersen', '0', '1969-08-23', 'M', 'NULL', 'M', 'darrell2@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '9135, rue Malar', 'NULL', '1 (11) 500 555-0111', '2012-05-10', '0-1 Miles'], ['19281', '182', 'AW00019281', 'NULL', 'Mallory', 'A', 'Carlson', '0', '1969-04-13', 'S', 'NULL', 'F', 'mallory5@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '54, avenue de Malakoff', 'NULL', '1 (11) 500 555-0120', '2013-08-31', '2-5 Miles'], ['19282', '190', 'AW00019282', 'NULL', 'Hailey', 'T', 'Wood', '0', '1980-04-30', 'M', 'NULL', 'F', 'hailey23@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3, allée des Princes', 'NULL', '1 (11) 500 555-0153', '2012-05-26', '0-1 Miles'], ['19283', '117', 'AW00019283', 'NULL', 'Adrian', 'NULL', 'Sanders', '0', '1964-01-08', 'M', 'NULL', 'M', 'adrian4@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Knaackstr 659', 'Verkaufsabteilung', '1 (11) 500 555-0139', '2012-10-23', '0-1 Miles'], ['19284', '158', 'AW00019284', 'NULL', 'Briana', 'A', 'Romero', '0', '1969-04-06', 'M', 'NULL', 'F', 'briana9@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Zimmerstr 242', 'NULL', '1 (11) 500 555-0134', '2012-10-22', '0-1 Miles'], ['19285', '133', 'AW00019285', 'NULL', 'Jacqueline', 'H', 'Howard', '0', '1971-08-08', 'M', 'NULL', 'F', 'jacqueline35@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Altendorfer Straße 2', 'NULL', '1 (11) 500 555-0144', '2012-11-04', '0-1 Miles'], ['19286', '133', 'AW00019286', 'NULL', 'Kaitlyn', 'O', 'Butler', '0', '1965-08-30', 'M', 'NULL', 'F', 'kaitlyn81@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Hunzinger Allee 292', 'NULL', '1 (11) 500 555-0164', '2012-11-13', '0-1 Miles'], ['19287', '195', 'AW00019287', 'NULL', 'Shane', 'M', 'Chandra', '0', '1970-07-23', 'M', 'NULL', 'M', 'shane6@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8, rue Pierre-Demoulin', 'NULL', '1 (11) 500 555-0172', '2012-05-26', '0-1 Miles'], ['19288', '150', 'AW00019288', 'NULL', 'Candice', 'NULL', 'Wang', '0', '1964-12-04', 'M', 'NULL', 'F', 'candice9@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Carlsplatz 2', 'NULL', '1 (11) 500 555-0135', '2012-11-27', '0-1 Miles'], ['19289', '174', 'AW00019289', 'NULL', 'Johnathan', 'NULL', 'Patel', '0', '1970-10-22', 'M', 'NULL', 'M', 'johnathan4@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Heiderplatz 662', 'NULL', '1 (11) 500 555-0197', '2012-11-26', '0-1 Miles'], ['19290', '274', 'AW00019290', 'NULL', 'Sergio', 'J', 'Prasad', '0', '1974-10-30', 'S', 'NULL', 'M', 'sergio10@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8186 Geary', 'NULL', '1 (11) 500 555-0183', '2012-03-28', '0-1 Miles'], ['19291', '274', 'AW00019291', 'NULL', 'Colleen', 'NULL', 'Wu', '0', '1981-11-22', 'S', 'NULL', 'F', 'colleen7@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '8031 Danesta Dr.', 'NULL', '1 (11) 500 555-0115', '2013-03-10', '0-1 Miles'], ['19292', '198', 'AW00019292', 'NULL', 'Micah', 'NULL', 'Lin', '0', '1981-12-03', 'M', 'NULL', 'M', 'micah18@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '88, place de la République', 'NULL', '1 (11) 500 555-0160', '2012-05-17', '0-1 Miles'], ['19293', '208', 'AW00019293', 'NULL', 'Chloe', 'O', 'Watson', '0', '1976-02-25', 'M', 'NULL', 'F', 'chloe62@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '155, rue de Bas Marin', 'NULL', '1 (11) 500 555-0117', '2012-06-23', '0-1 Miles'], ['19294', '162', 'AW00019294', 'NULL', 'Stanley', 'R', 'Garcia', '0', '1976-03-06', 'M', 'NULL', 'M', 'stanley16@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Heideweg 1442', 'NULL', '1 (11) 500 555-0156', '2012-11-09', '0-1 Miles'], ['19295', '184', 'AW00019295', 'NULL', 'Katelyn', 'NULL', 'Green', '0', '1975-01-23', 'S', 'NULL', 'F', 'katelyn38@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '1, rue de Maubeuge', 'NULL', '1 (11) 500 555-0111', '2012-06-11', '0-1 Miles'], ['19296', '198', 'AW00019296', 'NULL', 'Jake', 'NULL', 'Zheng', '0', '1974-07-04', 'S', 'NULL', 'M', 'jake17@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '33, rue du Puits Dixme', 'NULL', '1 (11) 500 555-0145', '2012-06-14', '2-5 Miles'], ['19297', '211', 'AW00019297', 'NULL', 'Cedric', 'L', 'Xie', '0', '1975-02-18', 'S', 'NULL', 'M', 'cedric25@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '776, avenue du Président-Kennedy', 'NULL', '1 (11) 500 555-0146', '2012-06-01', '0-1 Miles'], ['19298', '120', 'AW00019298', 'NULL', 'Priscilla', 'NULL', 'Andersen', '0', '1986-04-06', 'S', 'NULL', 'F', 'priscilla11@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Hans-Rosenthal-Platz 426', 'NULL', '1 (11) 500 555-0121', '2012-11-27', '0-1 Miles'], ['19299', '230', 'AW00019299', 'NULL', 'Carrie', 'G', 'Browning', '0', '1980-10-08', 'M', 'NULL', 'F', 'carrie14@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9010 Longview Road', 'NULL', '1 (11) 500 555-0141', '2012-03-08', '0-1 Miles'], ['19300', '134', 'AW00019300', 'NULL', 'Clarence', 'NULL', 'Hu', '0', '1957-10-08', 'M', 'NULL', 'M', 'clarence13@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Erlenweg 7774', 'NULL', '1 (11) 500 555-0185', '2013-09-10', '0-1 Miles'], ['19301', '235', 'AW00019301', 'NULL', 'Jamie', 'J', 'Liu', '0', '1957-08-29', 'M', 'NULL', 'F', 'jamie6@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '7041 Notre Dame Avenue', 'NULL', '1 (11) 500 555-0176', '2012-03-02', '2-5 Miles'], ['19302', '232', 'AW00019302', 'NULL', 'Brad', 'D', 'Xie', '0', '1962-08-07', 'S', 'NULL', 'M', 'brad3@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '1984 Village Pl.', 'NULL', '1 (11) 500 555-0115', '2012-04-17', '0-1 Miles'], ['19303', '208', 'AW00019303', 'Ms.', 'Sylvia', 'N.', 'Spencer', '0', '1957-04-09', 'M', 'NULL', 'M', 'sylvia1@adventure-works.com', '10000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '52, rue Malar', 'NULL', '173-555-0100', '2014-01-11', '0-1 Miles'], ['19304', '162', 'AW00019304', 'NULL', 'Sara', 'I', 'Nelson', '0', '1959-01-07', 'S', 'NULL', 'F', 'sara35@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '3524 Ruth Drive', 'NULL', '1 (11) 500 555-0175', '2014-01-14', '0-1 Miles'], ['19305', '231', 'AW00019305', 'NULL', 'Gabriella', 'M', 'Young', '0', '1973-08-21', 'S', 'NULL', 'F', 'gabriella41@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '880 South St.', 'NULL', '1 (11) 500 555-0174', '2012-04-18', '0-1 Miles'], ['19306', '222', 'AW00019306', 'NULL', 'Candace', 'NULL', 'Perez', '0', '1973-08-13', 'M', 'NULL', 'F', 'candace19@adventure-works.com', '10000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '34, boulevard Tremblay', 'NULL', '1 (11) 500 555-0124', '2013-07-13', '0-1 Miles'], ['19307', '262', 'AW00019307', 'NULL', 'Micheal', 'W', 'Alonso', '0', '1974-03-08', 'M', 'NULL', 'M', 'micheal3@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '7776 Cordoba Way', 'NULL', '1 (11) 500 555-0126', '2013-10-27', '2-5 Miles'], ['19308', '248', 'AW00019308', 'NULL', 'Casey', 'M', 'Rai', '0', '1973-10-16', 'M', 'NULL', 'F', 'casey19@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6206 Heavenly Drive', 'NULL', '1 (11) 500 555-0118', '2012-04-13', '0-1 Miles'], ['19309', '215', 'AW00019309', 'NULL', 'Frank', 'NULL', 'Suarez', '0', '1974-05-22', 'M', 'NULL', 'M', 'frank27@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6, route de Marseille', 'NULL', '1 (11) 500 555-0194', '2012-06-03', '2-5 Miles'], ['19310', '204', 'AW00019310', 'NULL', 'Evelyn', 'W', 'Raman', '0', '1979-04-13', 'M', 'NULL', 'F', 'evelyn13@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '10, avenue du Président-Kennedy', 'NULL', '1 (11) 500 555-0131', '2012-05-31', '0-1 Miles'], ['19311', '153', 'AW00019311', 'NULL', 'Dana', 'NULL', 'Rubio', '0', '1973-09-23', 'M', 'NULL', 'F', 'dana14@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Haberstr 397', 'NULL', '1 (11) 500 555-0138', '2012-10-30', '0-1 Miles'], ['19312', '252', 'AW00019312', 'NULL', 'Valerie', 'R', 'Zheng', '0', '1973-07-18', 'M', 'NULL', 'F', 'valerie21@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5627 Tanager Road', 'NULL', '1 (11) 500 555-0138', '2012-05-05', '0-1 Miles'], ['19313', '184', 'AW00019313', 'NULL', 'Charles', 'NULL', 'Baker', '0', '1972-09-07', 'S', 'NULL', 'M', 'charles36@adventure-works.com', '10000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5757, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0186', '2012-06-27', '0-1 Miles'], ['19314', '162', 'AW00019314', 'NULL', 'Alvin', 'NULL', 'Beck', '0', '1978-03-12', 'S', 'NULL', 'M', 'alvin41@adventure-works.com', '10000.00', '3', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Klara Straße 8464', 'NULL', '1 (11) 500 555-0118', '2012-10-30', '0-1 Miles'], ['19315', '222', 'AW00019315', 'NULL', 'Devon', 'C', 'Sharma', '0', '1973-03-02', 'S', 'NULL', 'M', 'devon7@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '3450 Villageoaks Dr.', 'NULL', '1 (11) 500 555-0126', '2012-06-12', '0-1 Miles'], ['19316', '155', 'AW00019316', 'NULL', 'Raymond', 'C', 'Srini', '0', '1978-05-20', 'M', 'NULL', 'M', 'raymond10@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Bundesallee 112', 'Einkaufsabteilung', '1 (11) 500 555-0122', '2012-12-19', '2-5 Miles'], ['19317', '224', 'AW00019317', 'NULL', 'Sara', 'C', 'Scott', '0', '1978-03-12', 'S', 'NULL', 'F', 'sara40@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '959, rue de la Centenaire', 'NULL', '1 (11) 500 555-0153', '2013-04-16', '2-5 Miles'], ['19318', '211', 'AW00019318', 'NULL', 'Jamie', 'NULL', 'Dominguez', '0', '1972-11-29', 'S', 'NULL', 'M', 'jamie35@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '4, rue Saint Denis', 'NULL', '1 (11) 500 555-0122', '2012-07-01', '0-1 Miles'], ['19319', '183', 'AW00019319', 'NULL', 'Darryl', 'M', 'Guo', '0', '1978-01-29', 'S', 'NULL', 'M', 'darryl17@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '1', '77, rue de Bas Marin', 'NULL', '1 (11) 500 555-0125', '2012-07-29', '0-1 Miles'], ['19320', '211', 'AW00019320', 'NULL', 'Bethany', 'A', 'Deng', '0', '1972-05-02', 'S', 'NULL', 'F', 'bethany5@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1, rue de la Centenaire', 'NULL', '1 (11) 500 555-0177', '2012-07-09', '1-2 Miles'], ['19321', '155', 'AW00019321', 'NULL', 'Clifford', 'A', 'Weber', '0', '1977-08-08', 'M', 'NULL', 'M', 'clifford4@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Klara Straße 8463', 'NULL', '1 (11) 500 555-0124', '2012-11-28', '2-5 Miles'], ['19322', '248', 'AW00019322', 'NULL', 'Gerald', 'K', 'Romero', '0', '1977-04-13', 'S', 'NULL', 'M', 'gerald17@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '4396 Greystone Dr', 'NULL', '1 (11) 500 555-0122', '2012-05-11', '1-2 Miles'], ['19323', '207', 'AW00019323', 'NULL', 'Jeremy', 'G', 'Rogers', '0', '1983-09-06', 'M', 'NULL', 'M', 'jeremy45@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '11, quai de l´ Iton', 'NULL', '1 (11) 500 555-0115', '2012-08-07', '0-1 Miles'], ['19324', '200', 'AW00019324', 'NULL', 'Tanya', 'W', 'Blanco', '0', '1973-04-08', 'M', 'NULL', 'F', 'tanya12@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8, avenue de Norvege', 'NULL', '1 (11) 500 555-0174', '2012-08-11', '0-1 Miles'], ['19325', '134', 'AW00019325', 'NULL', 'Kelli', 'NULL', 'Chen', '0', '1972-09-11', 'M', 'NULL', 'F', 'kelli2@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Rotthäuser Weg 66', 'NULL', '1 (11) 500 555-0167', '2011-02-16', '0-1 Miles'], ['19326', '221', 'AW00019326', 'NULL', 'Marcus', 'J', 'Robinson', '0', '1983-03-10', 'M', 'NULL', 'M', 'marcus19@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', '834, rue Mazagran', 'NULL', '1 (11) 500 555-0133', '2012-08-21', '2-5 Miles'], ['19327', '187', 'AW00019327', 'NULL', 'Candace', 'NULL', 'Gonzalez', '0', '1972-01-31', 'M', 'NULL', 'F', 'candace17@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '34, rue de Maubeuge', 'NULL', '1 (11) 500 555-0169', '2013-02-09', '0-1 Miles'], ['19328', '242', 'AW00019328', 'NULL', 'Shawn', 'NULL', 'Xu', '0', '1970-09-10', 'S', 'NULL', 'M', 'shawn7@adventure-works.com', '10000.00', '4', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '1218 Woodside Court', 'NULL', '1 (11) 500 555-0143', '2013-04-14', '0-1 Miles'], ['19329', '132', 'AW00019329', 'NULL', 'Nancy', 'K', 'Srini', '0', '1971-04-19', 'S', 'NULL', 'F', 'nancy11@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Reiherweg 5944', 'NULL', '1 (11) 500 555-0122', '2011-02-26', '0-1 Miles'], ['19330', '134', 'AW00019330', 'NULL', 'Johnny', 'NULL', 'Shen', '0', '1970-09-30', 'S', 'NULL', 'M', 'johnny3@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Parkstr 123', 'NULL', '1 (11) 500 555-0133', '2013-09-01', '0-1 Miles'], ['19331', '141', 'AW00019331', 'NULL', 'Jessie', 'F', 'Hu', '0', '1976-08-30', 'S', 'NULL', 'M', 'jessie26@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Hochstr 8777', 'NULL', '1 (11) 500 555-0193', '2013-12-28', '0-1 Miles'], ['19332', '130', 'AW00019332', 'NULL', 'Kelvin', 'NULL', 'Alan', '0', '1976-07-14', 'M', 'NULL', 'M', 'kelvin19@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', 'Alte Landstr 9', 'NULL', '1 (11) 500 555-0180', '2013-03-13', '0-1 Miles'], ['19333', '133', 'AW00019333', 'NULL', 'Candace', 'J', 'Malhotra', '0', '1971-01-11', 'M', 'NULL', 'F', 'candace4@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', 'Auf Der Steige 987', 'NULL', '1 (11) 500 555-0152', '2013-11-27', '0-1 Miles'], ['19334', '269', 'AW00019334', 'NULL', 'Katherine', 'NULL', 'Baker', '0', '1975-04-03', 'S', 'NULL', 'F', 'katherine64@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '1037 Hayes Court', 'NULL', '1 (11) 500 555-0112', '2013-03-12', '0-1 Miles'], ['19335', '205', 'AW00019335', 'NULL', 'Cedric', 'K', 'Ye', '0', '1970-02-14', 'S', 'NULL', 'M', 'cedric10@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '48, boulevard Tremblay', 'NULL', '1 (11) 500 555-0172', '2012-08-08', '0-1 Miles'], ['19336', '192', 'AW00019336', 'NULL', 'Ricardo', 'NULL', 'Andersen', '0', '1969-09-07', 'S', 'NULL', 'M', 'ricardo13@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '231, avenue Foch', 'NULL', '1 (11) 500 555-0112', '2012-08-27', '0-1 Miles'], ['19337', '267', 'AW00019337', 'NULL', 'Bonnie', 'NULL', 'Luo', '0', '1975-12-12', 'S', 'NULL', 'F', 'bonnie11@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '6133 Kenston Dr.', 'NULL', '1 (11) 500 555-0151', '2012-06-10', '0-1 Miles'], ['19338', '221', 'AW00019338', 'NULL', 'Paula', 'L', 'Dominguez', '0', '1971-10-04', 'M', 'NULL', 'F', 'paula15@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '7, rue des Vendangeurs', 'NULL', '1 (11) 500 555-0152', '2012-08-25', '0-1 Miles'], ['19339', '156', 'AW00019339', 'NULL', 'Lance', 'L', 'Gomez', '0', '1971-12-21', 'M', 'NULL', 'M', 'lance1@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', 'Pappelallee 6', 'NULL', '1 (11) 500 555-0143', '2011-03-28', '0-1 Miles'], ['19340', '170', 'AW00019340', 'NULL', 'Renee', 'NULL', 'Dominguez', '0', '1971-08-15', 'M', 'NULL', 'F', 'renee12@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', 'Haberstr 57', 'NULL', '1 (11) 500 555-0169', '2011-04-28', '0-1 Miles'], ['19341', '263', 'AW00019341', 'NULL', 'Clarence', 'C', 'Huang', '0', '1972-02-21', 'M', 'NULL', 'M', 'clarence1@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '7113 Ranch Valley Ct', 'NULL', '1 (11) 500 555-0196', '2012-06-23', '0-1 Miles'], ['19342', '246', 'AW00019342', 'NULL', 'Aimee', 'NULL', 'Zeng', '0', '1974-04-05', 'S', 'NULL', 'F', 'aimee16@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7086 O St.', 'NULL', '1 (11) 500 555-0187', '2013-05-06', '0-1 Miles'], ['19343', '207', 'AW00019343', 'NULL', 'Louis', 'E', 'Ye', '0', '1969-01-30', 'S', 'NULL', 'M', 'louis3@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '66808, avenue de Villiers', 'NULL', '1 (11) 500 555-0130', '2012-08-03', '0-1 Miles'], ['19344', '177', 'AW00019344', 'NULL', 'Mandy', 'NULL', 'Ma', '0', '1974-12-16', 'S', 'NULL', 'F', 'mandy17@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Platz des Landtags 44', 'NULL', '1 (11) 500 555-0146', '2013-01-28', '0-1 Miles'], ['19345', '156', 'AW00019345', 'NULL', 'Kaitlin', 'L', 'Prasad', '0', '1976-08-18', 'M', 'NULL', 'F', 'kaitlin9@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Marienplatz 313', 'NULL', '1 (11) 500 555-0117', '2013-03-31', '0-1 Miles'], ['19346', '229', 'AW00019346', 'NULL', 'Donna', 'D', 'She', '0', '1976-10-11', 'M', 'NULL', 'F', 'donna1@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8307 Medina Dr.', 'NULL', '1 (11) 500 555-0115', '2013-02-02', '0-1 Miles'], ['19347', '252', 'AW00019347', 'NULL', 'Alvin', 'A', 'Zhao', '0', '1971-03-04', 'M', 'NULL', 'M', 'alvin10@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1312 Garland Dr.', 'NULL', '1 (11) 500 555-0175', '2014-01-11', '0-1 Miles'], ['19348', '268', 'AW00019348', 'NULL', 'Ebony', 'NULL', 'Raman', '0', '1970-09-15', 'M', 'NULL', 'F', 'ebony12@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2685 Keith Court', 'NULL', '1 (11) 500 555-0157', '2013-02-27', '0-1 Miles'], ['19349', '144', 'AW00019349', 'NULL', 'Warren', 'M', 'Anand', '0', '1975-08-09', 'S', 'NULL', 'M', 'warren13@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Kappellweg 613', 'NULL', '1 (11) 500 555-0134', '2013-09-08', '0-1 Miles'], ['19350', '243', 'AW00019350', 'NULL', 'Bethany', 'NULL', 'Ashe', '0', '1980-09-13', 'M', 'NULL', 'F', 'bethany3@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3704 D Bel Air Dr.', 'NULL', '1 (11) 500 555-0117', '2013-04-20', '0-1 Miles'], ['19351', '215', 'AW00019351', 'NULL', 'Edgar', 'NULL', 'Vance', '0', '1968-10-19', 'S', 'NULL', 'M', 'edgar4@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '68, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0154', '2013-04-22', '0-1 Miles'], ['19352', '208', 'AW00019352', 'NULL', 'Arturo', 'V', 'Chen', '0', '1969-05-11', 'S', 'NULL', 'M', 'arturo2@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '11, rue de Maubeuge', 'NULL', '1 (11) 500 555-0112', '2013-04-21', '0-1 Miles'], ['19353', '117', 'AW00019353', 'NULL', 'Desiree', 'NULL', 'Gill', '0', '1974-08-09', 'S', 'NULL', 'F', 'desiree10@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Pappelallee 620', 'NULL', '1 (11) 500 555-0118', '2011-04-18', '0-1 Miles'], ['19354', '176', 'AW00019354', 'NULL', 'Abby', 'NULL', 'Madan', '0', '1982-08-29', 'S', 'NULL', 'F', 'abby6@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Alte Landstr 5', 'NULL', '1 (11) 500 555-0171', '2013-11-30', '1-2 Miles'], ['19355', '276', 'AW00019355', 'NULL', 'Danny', 'NULL', 'Munoz', '0', '1982-08-08', 'S', 'NULL', 'M', 'danny8@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '4592 Hill Drive', 'NULL', '1 (11) 500 555-0169', '2013-08-25', '2-5 Miles'], ['19356', '127', 'AW00019356', 'NULL', 'Francis', 'F', 'Ortega', '0', '1982-05-10', 'M', 'NULL', 'M', 'francis19@adventure-works.com', '20000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Am Grossen Dern 45', 'NULL', '1 (11) 500 555-0150', '2013-12-27', '0-1 Miles'], ['19357', '121', 'AW00019357', 'NULL', 'Ryan', 'M', 'Flores', '0', '1985-05-25', 'S', 'NULL', 'M', 'ryan15@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Kampstr 9859', 'NULL', '1 (11) 500 555-0160', '2011-05-10', '0-1 Miles'], ['19358', '208', 'AW00019358', 'NULL', 'Jonathan', 'J', 'Bryant', '0', '1983-12-16', 'S', 'NULL', 'M', 'jonathan17@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '51, rue Henri Gagnon', 'NULL', '1 (11) 500 555-0115', '2013-09-10', '2-5 Miles'], ['19359', '234', 'AW00019359', 'NULL', 'Roberto', 'NULL', 'Townsend', '0', '1969-02-16', 'M', 'NULL', 'M', 'roberto12@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8772 Rock Creek Way', 'NULL', '1 (11) 500 555-0199', '2012-06-27', '0-1 Miles'], ['19360', '236', 'AW00019360', 'NULL', 'Joanna', 'NULL', 'Hernandez', '0', '1968-10-01', 'M', 'NULL', 'F', 'joanna2@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5738 Bent Tree Lane', 'NULL', '1 (11) 500 555-0175', '2012-06-18', '0-1 Miles'], ['19361', '243', 'AW00019361', 'NULL', 'Stacey', 'S', 'Sun', '0', '1969-03-24', 'M', 'NULL', 'F', 'stacey14@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1468 Dover Drive', 'NULL', '1 (11) 500 555-0117', '2012-06-01', '0-1 Miles'], ['19362', '253', 'AW00019362', 'NULL', 'Karl', 'NULL', 'Raje', '0', '1974-08-09', 'M', 'NULL', 'M', 'karl15@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3655 Sodaro Dr.', 'NULL', '1 (11) 500 555-0158', '2012-06-08', '0-1 Miles'], ['19363', '185', 'AW00019363', 'NULL', 'Regina', 'NULL', 'Raman', '0', '1967-12-02', 'S', 'NULL', 'F', 'regina11@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '402, boulevard Tremblay', 'NULL', '1 (11) 500 555-0141', '2013-05-16', '2-5 Miles'], ['19364', '167', 'AW00019364', 'NULL', 'Alejandro', 'S', 'Nara', '0', '1973-10-16', 'M', 'NULL', 'M', 'alejandro41@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Rotthäuser Weg 22', 'NULL', '1 (11) 500 555-0110', '2011-05-07', '0-1 Miles'], ['19365', '161', 'AW00019365', 'NULL', 'Wayne', 'NULL', 'Shan', '0', '1967-12-31', 'M', 'NULL', 'M', 'wayne12@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Zur Lindung 6', 'NULL', '1 (11) 500 555-0126', '2011-06-21', '0-1 Miles'], ['19366', '189', 'AW00019366', 'NULL', 'Christy', 'A', 'Beck', '0', '1967-10-01', 'M', 'NULL', 'F', 'christy38@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '82, route de Marseille', 'NULL', '1 (11) 500 555-0116', '2012-08-29', '0-1 Miles'], ['19367', '192', 'AW00019367', 'NULL', 'Johnathan', 'A', 'Gonzalez', '0', '1984-02-14', 'S', 'NULL', 'M', 'johnathan17@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '11, quai de l´ Iton', 'NULL', '1 (11) 500 555-0121', '2013-12-22', '0-1 Miles'], ['19368', '149', 'AW00019368', 'NULL', 'Lindsay', 'A', 'Anand', '0', '1983-09-23', 'S', 'NULL', 'F', 'lindsay22@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Lützowplatz 900', 'NULL', '1 (11) 500 555-0184', '2013-11-14', '0-1 Miles'], ['19369', '261', 'AW00019369', 'NULL', 'Clifford', 'NULL', 'Suri', '0', '1983-09-30', 'S', 'NULL', 'M', 'clifford0@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '3', '7644 Browning Place', 'NULL', '1 (11) 500 555-0172', '2013-03-31', '0-1 Miles'], ['19370', '215', 'AW00019370', 'NULL', 'Gilbert', 'M', 'Yang', '0', '1982-12-22', 'S', 'NULL', 'M', 'gilbert4@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '118, rue Marbeuf', 'NULL', '1 (11) 500 555-0164', '2013-08-23', '2-5 Miles'], ['19371', '168', 'AW00019371', 'NULL', 'Roy', 'NULL', 'Mehta', '0', '1982-12-05', 'S', 'NULL', 'M', 'roy14@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Winter der Böck 8559', 'NULL', '1 (11) 500 555-0112', '2013-10-31', '2-5 Miles'], ['19372', '221', 'AW00019372', 'NULL', 'Cassidy', 'NULL', 'Long', '0', '1981-12-16', 'S', 'NULL', 'F', 'cassidy10@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '14, rue Philibert-Delorme', 'NULL', '1 (11) 500 555-0199', '2013-08-25', '2-5 Miles'], ['19373', '158', 'AW00019373', 'NULL', 'Rebekah', 'A', 'Suri', '0', '1982-03-12', 'S', 'NULL', 'F', 'rebekah0@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Moritzstr 2', 'NULL', '1 (11) 500 555-0116', '2013-07-05', '2-5 Miles'], ['19374', '211', 'AW00019374', 'NULL', 'Paula', 'C', 'Ashe', '0', '1980-09-29', 'S', 'NULL', 'F', 'paula7@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '68, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0178', '2013-10-07', '5-10 Miles'], ['19375', '170', 'AW00019375', 'NULL', 'Omar', 'NULL', 'Anand', '0', '1981-05-27', 'S', 'NULL', 'M', 'omar43@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Postfach 77 06 06', 'NULL', '1 (11) 500 555-0167', '2013-04-16', '1-2 Miles'], ['19376', '196', 'AW00019376', 'NULL', 'Paige', 'C', 'Wood', '0', '1981-10-26', 'S', 'NULL', 'F', 'paige2@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '18, rue de l´Esplanade', 'NULL', '1 (11) 500 555-0150', '2013-11-22', '5-10 Miles'], ['19377', '121', 'AW00019377', 'NULL', 'Dominic', 'NULL', 'Chandra', '0', '1981-08-25', 'S', 'NULL', 'M', 'dominic3@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Krönerweg 92', 'NULL', '1 (11) 500 555-0119', '2014-01-20', '2-5 Miles'], ['19378', '262', 'AW00019378', 'NULL', 'Lucas', 'S', 'Davis', '0', '1981-10-30', 'S', 'NULL', 'M', 'lucas18@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '6600 Chestnut Ave', 'NULL', '1 (11) 500 555-0175', '2013-12-23', '2-5 Miles'], ['19379', '270', 'AW00019379', 'NULL', 'Crystal', 'NULL', 'Guo', '0', '1980-05-22', 'S', 'NULL', 'F', 'crystal18@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '988 Mt. Everest Court', 'NULL', '1 (11) 500 555-0171', '2013-10-17', '0-1 Miles'], ['19380', '183', 'AW00019380', 'NULL', 'Marshall', 'NULL', 'Luo', '0', '1981-01-07', 'S', 'NULL', 'M', 'marshall27@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Attaché de Presse', 'NULL', '1 (11) 500 555-0125', '2012-08-28', '2-5 Miles'], ['19381', '222', 'AW00019381', 'NULL', 'Brandi', 'NULL', 'Romero', '0', '1980-07-11', 'S', 'NULL', 'F', 'brandi9@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '21, cours Mirabeau', 'NULL', '1 (11) 500 555-0131', '2012-09-20', '2-5 Miles'], ['19382', '261', 'AW00019382', 'NULL', 'Jerry', 'NULL', 'Shan', '0', '1981-04-23', 'M', 'NULL', 'M', 'jerry11@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9830 May Way', 'NULL', '1 (11) 500 555-0163', '2012-07-16', '1-2 Miles'], ['19383', '127', 'AW00019383', 'NULL', 'Roger', 'NULL', 'Nath', '0', '1978-08-31', 'S', 'NULL', 'M', 'roger46@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Hüttenstr 9005', 'NULL', '1 (11) 500 555-0140', '2013-03-06', '1-2 Miles'], ['19384', '171', 'AW00019384', 'NULL', 'Gilbert', 'B', 'Rai', '0', '1979-03-05', 'S', 'NULL', 'M', 'gilbert37@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Roßstr 7752', 'Kreditorenbuchhaltung', '1 (11) 500 555-0174', '2013-12-21', '1-2 Miles'], ['19385', '157', 'AW00019385', 'NULL', 'Alisha', 'NULL', 'Lin', '0', '1984-01-20', 'S', 'NULL', 'F', 'alisha8@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Postfach 55 99 99', 'NULL', '1 (11) 500 555-0118', '2013-12-01', '1-2 Miles'], ['19386', '183', 'AW00019386', 'NULL', 'Allen', 'NULL', 'Martinez', '0', '1979-12-23', 'S', 'NULL', 'M', 'allen16@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '810, rue des Rosiers', 'NULL', '1 (11) 500 555-0110', '2012-09-07', '2-5 Miles'], ['19387', '168', 'AW00019387', 'NULL', 'Ruth', 'NULL', 'Rana', '0', '1979-09-22', 'M', 'NULL', 'F', 'ruth15@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Charlottenstr 123', 'NULL', '1 (11) 500 555-0118', '2011-06-27', '0-1 Miles'], ['19388', '149', 'AW00019388', 'NULL', 'Alberto', 'R', 'Martin', '0', '1986-01-24', 'S', 'NULL', 'M', 'alberto1@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Dunckerstr 4', 'NULL', '1 (11) 500 555-0187', '2013-04-17', '0-1 Miles'], ['19389', '242', 'AW00019389', 'NULL', 'Terrence', 'M', 'Goel', '0', '1983-11-13', 'S', 'NULL', 'M', 'terrence20@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '6416 Honey Court', 'NULL', '1 (11) 500 555-0188', '2013-05-21', '2-5 Miles'], ['19390', '223', 'AW00019390', 'NULL', 'Terrance', 'NULL', 'Perez', '0', '1984-04-01', 'S', 'NULL', 'M', 'terrance19@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '33, rue Georges-Clémenceau', 'NULL', '1 (11) 500 555-0119', '2013-08-02', '1-2 Miles'], ['19391', '127', 'AW00019391', 'NULL', 'Sergio', 'A', 'Rana', '0', '1984-03-31', 'S', 'NULL', 'M', 'sergio11@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Kampstr 5855', 'NULL', '1 (11) 500 555-0171', '2013-09-24', '2-5 Miles'], ['19392', '262', 'AW00019392', 'NULL', 'Sergio', 'E', 'Kapoor', '0', '1983-08-16', 'S', 'NULL', 'M', 'sergio1@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Rt. 1546 Box A', 'NULL', '1 (11) 500 555-0118', '2013-02-16', '2-5 Miles'], ['19393', '329', 'AW00019393', 'NULL', 'Miguel', 'NULL', 'Anderson', '0', '1967-05-17', 'M', 'NULL', 'M', 'miguel9@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '529 Leewood Place', 'NULL', '578-555-0132', '2013-01-07', '0-1 Miles'], ['19394', '55', 'AW00019394', 'NULL', 'Henry', 'NULL', 'Nelson', '0', '1966-12-14', 'M', 'NULL', 'M', 'henry23@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '715 Pheasant Circle', 'NULL', '306-555-0183', '2013-06-12', '2-5 Miles'], ['19395', '325', 'AW00019395', 'NULL', 'Austin', 'NULL', 'Zhang', '0', '1965-11-29', 'S', 'NULL', 'M', 'austin20@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1697 Sunny Ave', 'NULL', '952-555-0132', '2013-02-24', '2-5 Miles'], ['19396', '536', 'AW00019396', 'NULL', 'Tammy', 'NULL', 'Prasad', '0', '1965-09-08', 'S', 'NULL', 'F', 'tammy10@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '4', '5736 Candle Dr.', 'NULL', '709-555-0156', '2013-02-27', '2-5 Miles'], ['19397', '300', 'AW00019397', 'NULL', 'Terry', 'F', 'Shen', '0', '1971-08-24', 'S', 'NULL', 'M', 'terry5@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9421 Thissen Court', 'NULL', '968-555-0196', '2013-09-07', '2-5 Miles'], ['19398', '355', 'AW00019398', 'NULL', 'Dylan', 'J', 'Gonzales', '0', '1966-04-08', 'S', 'NULL', 'M', 'dylan16@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '8531 Doncaster Dr', 'NULL', '493-555-0113', '2013-11-09', '2-5 Miles'], ['19399', '59', 'AW00019399', 'NULL', 'Anthony', 'J', 'Brown', '0', '1966-04-09', 'S', 'NULL', 'M', 'anthony13@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6960 Lakewood Court', 'NULL', '128-555-0181', '2013-05-02', '2-5 Miles'], ['19400', '68', 'AW00019400', 'NULL', 'Gavin', 'A', 'Hayes', '0', '1972-09-07', 'S', 'NULL', 'M', 'gavin21@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6123 Lancelot Dr.', 'NULL', '699-555-0137', '2013-06-16', '2-5 Miles'], ['19401', '307', 'AW00019401', 'NULL', 'Kyle', 'A', 'Hernandez', '0', '1972-12-09', 'S', 'NULL', 'M', 'kyle48@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '8947 Rio Grande Drive', 'NULL', '611-555-0170', '2013-02-22', '0-1 Miles'], ['19402', '315', 'AW00019402', 'NULL', 'Jeremiah', 'NULL', 'Scott', '0', '1972-12-18', 'S', 'NULL', 'M', 'jeremiah17@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '2141 Delaware Ct.', 'NULL', '474-555-0169', '2013-02-10', '2-5 Miles'], ['19403', '337', 'AW00019403', 'NULL', 'Morgan', 'G', 'Cook', '0', '1972-12-01', 'S', 'NULL', 'F', 'morgan51@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '9030 Louisiana Dr.', 'NULL', '173-555-0114', '2013-01-30', '2-5 Miles'], ['19404', '299', 'AW00019404', 'NULL', 'Nicole', 'L', 'Moore', '0', '1934-02-12', 'M', 'NULL', 'F', 'nicole8@adventure-works.com', '10000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8108 Goen Road', 'NULL', '864-555-0156', '2013-12-25', '2-5 Miles'], ['19405', '542', 'AW00019405', 'NULL', 'Abigail', 'NULL', 'Smith', '0', '1971-08-17', 'M', 'NULL', 'F', 'abigail47@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5238 Jemco Court', 'NULL', '692-555-0110', '2013-02-09', '0-1 Miles'], ['19406', '548', 'AW00019406', 'NULL', 'Brooke', 'NULL', 'Travers', '0', '1971-10-05', 'M', 'NULL', 'F', 'brooke4@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4642 Peabody Road', 'NULL', '116-555-0118', '2013-02-26', '0-1 Miles'], ['19407', '546', 'AW00019407', 'NULL', 'Sarah', 'M', 'Perry', '0', '1965-08-05', 'M', 'NULL', 'F', 'sarah32@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2205 Stonehedge Dr.', 'NULL', '506-555-0177', '2013-02-22', '0-1 Miles'], ['19408', '329', 'AW00019408', 'NULL', 'Taylor', 'NULL', 'Richardson', '0', '1965-07-20', 'M', 'NULL', 'F', 'taylor12@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6369 Ellis Street', 'NULL', '545-555-0144', '2013-02-20', '2-5 Miles'], ['19409', '336', 'AW00019409', 'NULL', 'Savannah', 'NULL', 'Allen', '0', '1965-08-08', 'M', 'NULL', 'F', 'savannah46@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7680 Ashwood Dr', 'NULL', '524-555-0149', '2013-02-08', '2-5 Miles'], ['19410', '627', 'AW00019410', 'NULL', 'Chloe', 'A', 'Adams', '0', '1964-08-03', 'M', 'NULL', 'F', 'chloe13@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3001 N. 48th Street', 'NULL', '788-555-0147', '2013-02-25', '0-1 Miles'], ['19411', '66', 'AW00019411', 'NULL', 'Sarah', 'NULL', 'Alexander', '0', '1964-09-29', 'M', 'NULL', 'F', 'sarah43@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '6732 Tanager Court', 'NULL', '281-555-0114', '2013-11-23', '2-5 Miles'], ['19412', '609', 'AW00019412', 'NULL', 'Jaime', 'L', 'Chander', '0', '1965-03-26', 'M', 'NULL', 'M', 'jaime38@adventure-works.com', '80000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2061 Matchstick Drive', 'NULL', '420-555-0125', '2013-05-19', '0-1 Miles'], ['19413', '612', 'AW00019413', 'NULL', 'Xavier', 'M', 'Kelly', '0', '1964-03-04', 'S', 'NULL', 'M', 'xavier68@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1657 Almond Avenue', 'NULL', '136-555-0114', '2013-01-28', '0-1 Miles'], ['19414', '71', 'AW00019414', 'NULL', 'Alexis', 'S', 'Ashe', '0', '1974-10-20', 'M', 'NULL', 'F', 'alexis9@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2328 Sand View Way', 'NULL', '535-555-0197', '2013-06-01', '2-5 Miles'], ['19415', '131', 'AW00019415', 'NULL', 'Devin', 'NULL', 'Collins', '0', '1971-06-10', 'M', 'NULL', 'M', 'devin42@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Rotthäuser Weg 15', 'NULL', '1 (11) 500 555-0138', '2011-06-14', '0-1 Miles'], ['19416', '273', 'AW00019416', 'NULL', 'Caitlin', 'NULL', 'Morris', '0', '1965-07-20', 'M', 'NULL', 'F', 'caitlin16@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4544 Bohon Circle', 'NULL', '1 (11) 500 555-0155', '2012-07-01', '0-1 Miles'], ['19417', '131', 'AW00019417', 'NULL', 'Alexis', 'NULL', 'Foster', '0', '1965-04-06', 'M', 'NULL', 'F', 'alexis39@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Brunnenstr 4422', 'NULL', '1 (11) 500 555-0110', '2011-06-07', '0-1 Miles'], ['19418', '237', 'AW00019418', 'NULL', 'Nathan', 'l', 'Miller', '0', '1964-12-08', 'S', 'NULL', 'M', 'nathan64@adventure-works.com', '40000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1312 Creekside Dr.', 'NULL', '1 (11) 500 555-0180', '2012-07-12', '0-1 Miles'], ['19419', '189', 'AW00019419', 'NULL', 'Allison', 'L', 'Adams', '0', '1976-02-19', 'S', 'NULL', 'F', 'allison38@adventure-works.com', '40000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '112, rue Faubourg St Antoine', 'NULL', '1 (11) 500 555-0153', '2012-09-22', '0-1 Miles'], ['19420', '126', 'AW00019420', 'NULL', 'Stanley', 'L', 'Raman', '0', '1964-12-16', 'S', 'NULL', 'M', 'stanley13@adventure-works.com', '40000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Alte Landstr 991', 'NULL', '1 (11) 500 555-0129', '2011-07-28', '0-1 Miles'], ['19421', '187', 'AW00019421', 'NULL', 'Jay', 'NULL', 'Rana', '0', '1976-03-08', 'S', 'NULL', 'M', 'jay18@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '2, rue Pierre-Demoulin', 'NULL', '1 (11) 500 555-0186', '2012-10-11', '2-5 Miles'], ['19422', '121', 'AW00019422', 'NULL', 'Paula', 'A', 'Gutierrez', '0', '1976-05-18', 'S', 'NULL', 'F', 'paula14@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Reiherweg 5944', 'NULL', '1 (11) 500 555-0185', '2011-07-30', '2-5 Miles'], ['19423', '184', 'AW00019423', 'NULL', 'Maria', 'NULL', 'Price', '0', '1976-02-04', 'S', 'NULL', 'F', 'maria23@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '951, rue Villedo', 'NULL', '1 (11) 500 555-0164', '2012-10-17', '2-5 Miles'], ['19424', '269', 'AW00019424', 'NULL', 'Terrance', 'I', 'Smith', '0', '1975-01-12', 'S', 'NULL', 'M', 'terrance6@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '8715 Birchwood', 'NULL', '1 (11) 500 555-0182', '2012-07-07', '0-1 Miles'], ['19425', '231', 'AW00019425', 'NULL', 'Arturo', 'NULL', 'Zhao', '0', '1975-02-25', 'M', 'NULL', 'M', 'arturo11@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '3033 Lord Court', 'NULL', '1 (11) 500 555-0111', '2013-06-08', '0-1 Miles'], ['19426', '220', 'AW00019426', 'NULL', 'Brian', 'NULL', 'Stewart', '0', '1975-12-12', 'S', 'NULL', 'M', 'brian34@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '10, rue Lauriston', 'NULL', '1 (11) 500 555-0178', '2012-10-22', '0-1 Miles'], ['19427', '197', 'AW00019427', 'NULL', 'Troy', 'M', 'Lopez', '0', '1975-09-09', 'S', 'NULL', 'M', 'troy18@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5711, rue Basse-du-Rocher', 'NULL', '1 (11) 500 555-0113', '2012-09-28', '0-1 Miles'], ['19428', '127', 'AW00019428', 'NULL', 'Eric', 'B', 'Turner', '0', '1981-04-23', 'M', 'NULL', 'M', 'eric47@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Waldstr 191', 'NULL', '1 (11) 500 555-0115', '2011-07-05', '0-1 Miles'], ['19429', '133', 'AW00019429', 'NULL', 'Jared', 'J', 'Kelly', '0', '1976-03-04', 'S', 'NULL', 'M', 'jared4@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Königstr 284', 'NULL', '1 (11) 500 555-0170', '2011-08-25', '0-1 Miles'], ['19430', '268', 'AW00019430', 'NULL', 'Sharon', 'M', 'Goel', '0', '1926-01-10', 'M', 'NULL', 'F', 'sharon25@adventure-works.com', '20000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7538 Sherry Circle', 'NULL', '1 (11) 500 555-0111', '2013-11-22', '2-5 Miles'], ['19431', '220', 'AW00019431', 'NULL', 'Bonnie', 'NULL', 'She', '0', '1975-02-16', 'S', 'NULL', 'F', 'bonnie5@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '78, rue de l´Esplanade', 'NULL', '1 (11) 500 555-0162', '2013-09-22', '2-5 Miles'], ['19432', '161', 'AW00019432', 'NULL', 'Armando', 'L', 'Dominguez', '0', '1980-09-09', 'S', 'NULL', 'M', 'armando13@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Rehstr 6446', 'NULL', '1 (11) 500 555-0192', '2011-08-02', '1-2 Miles'], ['19433', '265', 'AW00019433', 'NULL', 'Bridget', 'A', 'Raje', '0', '1975-06-01', 'M', 'NULL', 'F', 'bridget16@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9549 Sandra Circle', 'NULL', '1 (11) 500 555-0115', '2012-08-12', '0-1 Miles'], ['19434', '183', 'AW00019434', 'NULL', 'Geoffrey', 'E', 'Ashe', '0', '1980-07-18', 'S', 'NULL', 'M', 'geoffrey6@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6, rue Léo Delibes', 'NULL', '1 (11) 500 555-0124', '2012-10-16', '0-1 Miles'], ['19435', '231', 'AW00019435', 'NULL', 'Benjamin', 'NULL', 'Thompson', '0', '1980-07-16', 'M', 'NULL', 'M', 'benjamin52@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '3074 Columbia River Ct.', 'NULL', '1 (11) 500 555-0191', '2012-08-02', '0-1 Miles'], ['19436', '202', 'AW00019436', 'NULL', 'Gregory', 'NULL', 'Pal', '0', '1975-03-31', 'M', 'NULL', 'M', 'gregory15@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4024 Calhoun Court', 'NULL', '1 (11) 500 555-0166', '2012-10-17', '1-2 Miles'], ['19437', '260', 'AW00019437', 'NULL', 'Kelsey', 'L', 'Rai', '0', '1980-05-21', 'S', 'NULL', 'F', 'kelsey16@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6265 Greendell Rd.', 'NULL', '1 (11) 500 555-0130', '2012-08-13', '0-1 Miles'], ['19438', '125', 'AW00019438', 'NULL', 'Shannon', 'NULL', 'Hu', '0', '1980-09-16', 'M', 'NULL', 'F', 'shannon19@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Hauptstr 6039', 'NULL', '1 (11) 500 555-0170', '2011-09-12', '0-1 Miles'], ['19439', '115', 'AW00019439', 'NULL', 'Franklin', 'C', 'Xu', '0', '1974-09-11', 'S', 'NULL', 'M', 'franklin11@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Potsdamer Straße 939', 'NULL', '1 (11) 500 555-0191', '2011-10-17', '0-1 Miles'], ['19440', '260', 'AW00019440', 'NULL', 'Alicia', 'L', 'Sharma', '0', '1974-12-23', 'M', 'NULL', 'F', 'alicia7@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5086 Fitzuren', 'NULL', '1 (11) 500 555-0116', '2012-08-28', '0-1 Miles'], ['19441', '182', 'AW00019441', 'NULL', 'Dale', 'L', 'She', '0', '1974-07-17', 'S', 'NULL', 'M', 'dale0@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '242, avenue Reille', 'NULL', '1 (11) 500 555-0119', '2012-10-20', '0-1 Miles'], ['19442', '190', 'AW00019442', 'NULL', 'Connor', 'L', 'Hill', '0', '1985-10-21', 'S', 'NULL', 'M', 'connor43@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '640bis, boulevard Saint Germain', 'NULL', '1 (11) 500 555-0133', '2012-10-01', '0-1 Miles'], ['19443', '177', 'AW00019443', 'NULL', 'Dominic', 'NULL', 'Raman', '0', '1962-09-30', 'M', 'NULL', 'M', 'dominic12@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Parise Straße 6441', 'NULL', '1 (11) 500 555-0176', '2011-10-10', '2-5 Miles'], ['19444', '220', 'AW00019444', 'NULL', 'Kayla', 'NULL', 'Thomas', '0', '1973-08-31', 'M', 'NULL', 'F', 'kayla11@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '22, avenue du Québec', 'NULL', '1 (11) 500 555-0187', '2013-10-12', '0-1 Miles'], ['19445', '243', 'AW00019445', 'NULL', 'Emma', 'C', 'Thompson', '0', '1973-08-07', 'M', 'NULL', 'F', 'emma14@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '7473 Condor Dr.', 'NULL', '1 (11) 500 555-0135', '2013-10-27', '0-1 Miles'], ['19446', '179', 'AW00019446', 'NULL', 'Bridget', 'C', 'Nath', '0', '1973-10-06', 'M', 'NULL', 'F', 'bridget20@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '244, rue Maillard', 'NULL', '1 (11) 500 555-0135', '2012-10-16', '0-1 Miles'], ['19447', '186', 'AW00019447', 'NULL', 'Yolanda', 'NULL', 'Simpson', '0', '1973-12-20', 'M', 'NULL', 'F', 'yolanda2@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '188, avenue de la Gare', 'NULL', '1 (11) 500 555-0188', '2012-10-18', '0-1 Miles'], ['19448', '256', 'AW00019448', 'NULL', 'Meagan', 'C', 'Fernandez', '0', '1972-09-03', 'S', 'NULL', 'F', 'meagan15@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '3879 Longview Rd.', 'NULL', '1 (11) 500 555-0127', '2012-09-18', '0-1 Miles'], ['19449', '156', 'AW00019449', 'NULL', 'Nuan', 'NULL', 'Yuan', '0', '1932-02-10', 'M', 'NULL', 'M', 'nuan4@adventure-works.com', '10000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Höhenstr 9415', 'NULL', '1 (11) 500 555-0148', '2013-06-27', '0-1 Miles'], ['19450', '162', 'AW00019450', 'NULL', 'Keith', 'NULL', 'Lal', '0', '1972-08-17', 'M', 'NULL', 'M', 'keith11@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Herzogstr 4228', 'NULL', '1 (11) 500 555-0146', '2011-10-12', '2-5 Miles'], ['19451', '167', 'AW00019451', 'NULL', 'Pedro', 'F', 'Sara', '0', '1972-03-20', 'S', 'NULL', 'M', 'pedro10@adventure-works.com', '10000.00', '4', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Welt Platz 9', 'NULL', '1 (11) 500 555-0112', '2011-10-26', '0-1 Miles'], ['19452', '190', 'AW00019452', 'NULL', 'Jacob', 'V', 'Anderson', '0', '1972-12-17', 'M', 'NULL', 'M', 'jacob9@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '801, rue de la Cavalerie', 'NULL', '1 (11) 500 555-0168', '2012-11-17', '0-1 Miles'], ['19453', '163', 'AW00019453', 'NULL', 'Veronica', 'R', 'Rana', '0', '1978-05-07', 'M', 'NULL', 'F', 'veronica12@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Hellweg 4493', 'NULL', '1 (11) 500 555-0133', '2011-10-28', '0-1 Miles'], ['19454', '171', 'AW00019454', 'NULL', 'Roger', 'L', 'Sharma', '0', '1973-02-13', 'M', 'NULL', 'M', 'roger37@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Pflugstr 65', 'NULL', '1 (11) 500 555-0174', '2011-10-22', '0-1 Miles'], ['19455', '241', 'AW00019455', 'NULL', 'Jack', 'NULL', 'Perez', '0', '1972-11-29', 'S', 'NULL', 'M', 'jack38@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7717 Amador Valley Blvd.', 'NULL', '1 (11) 500 555-0177', '2012-09-08', '0-1 Miles'], ['19456', '155', 'AW00019456', 'NULL', 'Jesse', 'NULL', 'Perez', '0', '1933-01-23', 'M', 'NULL', 'M', 'jesse27@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Zollhof 1866', 'NULL', '1 (11) 500 555-0165', '2013-12-20', '2-5 Miles'], ['19457', '261', 'AW00019457', 'NULL', 'Jennifer', 'E', 'Williams', '0', '1933-01-16', 'S', 'NULL', 'F', 'jennifer30@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '2629 West Road', 'NULL', '1 (11) 500 555-0110', '2013-12-13', '1-2 Miles'], ['19458', '188', 'AW00019458', 'NULL', 'Tyrone', 'F', 'Blanco', '0', '1972-04-21', 'M', 'NULL', 'M', 'tyrone14@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '57, place de la Concorde', 'NULL', '1 (11) 500 555-0157', '2012-11-23', '2-5 Miles'], ['19459', '271', 'AW00019459', 'NULL', 'Katie', 'NULL', 'Yuan', '0', '1972-03-24', 'M', 'NULL', 'F', 'katie9@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7706 California St.', 'NULL', '1 (11) 500 555-0168', '2012-10-23', '0-1 Miles'], ['19460', '212', 'AW00019460', 'NULL', 'Arthur', 'NULL', 'Diaz', '0', '1971-12-11', 'M', 'NULL', 'M', 'arthur26@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '811bis, rue des Peupliers', 'NULL', '1 (11) 500 555-0157', '2013-03-08', '0-1 Miles'], ['19461', '235', 'AW00019461', 'NULL', 'Nichole', 'K', 'Shan', '0', '1971-04-19', 'S', 'NULL', 'F', 'nichole10@adventure-works.com', '10000.00', '4', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '6441 Roberta Avenue', 'NULL', '1 (11) 500 555-0117', '2013-09-08', '0-1 Miles'], ['19462', '190', 'AW00019462', 'NULL', 'Paige', 'J', 'Travers', '0', '1976-10-13', 'S', 'NULL', 'F', 'paige27@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '987, boulevard d´Albi', 'NULL', '1 (11) 500 555-0116', '2013-03-10', '0-1 Miles'], ['19463', '218', 'AW00019463', 'NULL', 'Cassandra', 'NULL', 'Chandra', '0', '1971-05-20', 'M', 'NULL', 'F', 'cassandra2@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2, rue de Courtaboeuf', 'NULL', '1 (11) 500 555-0191', '2013-03-09', '0-1 Miles'], ['19464', '203', 'AW00019464', 'NULL', 'Tyrone', 'NULL', 'Alonso', '0', '1935-05-08', 'M', 'NULL', 'M', 'tyrone8@adventure-works.com', '10000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '12, rue Philibert-Delorme', 'NULL', '1 (11) 500 555-0117', '2013-10-17', '0-1 Miles'], ['19465', '189', 'AW00019465', 'NULL', 'Sierra', 'NULL', 'Baker', '0', '1934-09-02', 'S', 'NULL', 'F', 'sierra14@adventure-works.com', '10000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '88, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0151', '2013-05-19', '0-1 Miles'], ['19466', '241', 'AW00019466', 'NULL', 'Morgan', 'F', 'Lopez', '0', '1969-07-20', 'M', 'NULL', 'F', 'morgan18@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '1219 Hilltop Road', 'NULL', '1 (11) 500 555-0117', '2013-05-20', '0-1 Miles'], ['19467', '258', 'AW00019467', 'NULL', 'Krista', 'NULL', 'Alvarez', '0', '1969-10-09', 'S', 'NULL', 'F', 'krista5@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '5556 Poppy Place', 'NULL', '1 (11) 500 555-0175', '2012-10-25', '0-1 Miles'], ['19468', '216', 'AW00019468', 'NULL', 'Ramon', 'NULL', 'Lin', '0', '1974-08-04', 'S', 'NULL', 'M', 'ramon7@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '66, allée des Princes', 'NULL', '1 (11) 500 555-0194', '2013-11-23', '0-1 Miles'], ['19469', '196', 'AW00019469', 'NULL', 'Valerie', 'J', 'Cai', '0', '1968-08-13', 'S', 'NULL', 'F', 'valerie23@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '20, boulevard d´Albi', 'NULL', '1 (11) 500 555-0167', '2014-01-08', '0-1 Miles'], ['19470', '274', 'AW00019470', 'NULL', 'Kelli', 'NULL', 'Ye', '0', '1974-09-09', 'S', 'NULL', 'F', 'kelli10@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '7813 Worth Ct.', 'NULL', '1 (11) 500 555-0191', '2013-09-01', '0-1 Miles'], ['19471', '264', 'AW00019471', 'NULL', 'Bryant', 'NULL', 'Martinez', '0', '1968-10-30', 'S', 'NULL', 'M', 'bryant17@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '3429 Fourth Street', 'NULL', '1 (11) 500 555-0181', '2012-10-03', '0-1 Miles'], ['19472', '151', 'AW00019472', 'NULL', 'Heidi', 'T', 'Sara', '0', '1974-02-08', 'S', 'NULL', 'F', 'heidi12@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '3', 'Heidestieg Straße 2664', 'NULL', '1 (11) 500 555-0114', '2011-10-23', '0-1 Miles'], ['19473', '202', 'AW00019473', 'NULL', 'Roger', 'NULL', 'Chande', '0', '1974-08-22', 'S', 'NULL', 'M', 'roger42@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '4', '20, boulevard d´Albi', 'NULL', '1 (11) 500 555-0162', '2012-11-01', '0-1 Miles'], ['19474', '180', 'AW00019474', 'NULL', 'Jenny', 'L', 'Luo', '0', '1972-04-03', 'S', 'NULL', 'F', 'jenny29@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '12, place de la Concorde', 'NULL', '1 (11) 500 555-0196', '2012-11-25', '0-1 Miles'], ['19475', '193', 'AW00019475', 'NULL', 'Mandy', 'NULL', 'Ye', '0', '1971-08-31', 'M', 'NULL', 'F', 'mandy11@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '6, rue de la Cavalerie', 'NULL', '1 (11) 500 555-0129', '2012-11-12', '0-1 Miles'], ['19476', '162', 'AW00019476', 'NULL', 'Sarah', 'T', 'Anderson', '0', '1977-10-21', 'M', 'NULL', 'F', 'sarah12@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', 'Am Kreuz 4124', 'NULL', '1 (11) 500 555-0189', '2011-11-03', '0-1 Miles'], ['19477', '255', 'AW00019477', 'NULL', 'Lance', 'E', 'Rubio', '0', '1972-02-19', 'M', 'NULL', 'M', 'lance21@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '729 Trembath Court', 'NULL', '1 (11) 500 555-0125', '2012-09-30', '0-1 Miles'], ['19478', '270', 'AW00019478', 'NULL', 'Tasha', 'R', 'Goel', '0', '1972-06-23', 'M', 'NULL', 'F', 'tasha20@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '488 Meadow Glen Way', 'NULL', '1 (11) 500 555-0129', '2013-10-01', '0-1 Miles'], ['19479', '273', 'AW00019479', 'NULL', 'Jessica', 'NULL', 'Gray', '0', '1974-06-04', 'S', 'NULL', 'F', 'jessica18@adventure-works.com', '20000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '4817 July Loop', 'NULL', '1 (11) 500 555-0132', '2012-10-14', '0-1 Miles'], ['19480', '216', 'AW00019480', 'NULL', 'Lisa', 'R', 'Zeng', '0', '1973-10-07', 'M', 'NULL', 'F', 'lisa25@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Midi-Couleurs', 'NULL', '1 (11) 500 555-0179', '2012-11-08', '0-1 Miles'], ['19481', '219', 'AW00019481', 'NULL', 'Darren', 'C', 'Suarez', '0', '1973-05-11', 'M', 'NULL', 'M', 'darren42@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '15, rue Basse-du-Rocher', 'NULL', '1 (11) 500 555-0171', '2013-09-04', '2-5 Miles'], ['19482', '160', 'AW00019482', 'NULL', 'Andy', 'A', 'Ortega', '0', '1967-12-17', 'M', 'NULL', 'M', 'andy25@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Alte Landstr 799', 'NULL', '1 (11) 500 555-0137', '2011-11-21', '0-1 Miles'], ['19483', '268', 'AW00019483', 'NULL', 'Michele', 'R', 'Serrano', '0', '1945-03-30', 'M', 'NULL', 'F', 'michele50@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2570 Harmless Drive', 'NULL', '1 (11) 500 555-0187', '2013-08-26', '0-1 Miles'], ['19484', '198', 'AW00019484', 'NULL', 'Willie', 'M', 'Liang', '0', '1970-08-26', 'M', 'NULL', 'M', 'willie15@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '25, rue de Terre Neuve', 'NULL', '1 (11) 500 555-0126', '2013-11-17', '0-1 Miles'], ['19485', '193', 'AW00019485', 'NULL', 'Raul', 'L', 'Shan', '0', '1971-05-02', 'S', 'NULL', 'M', 'raul9@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '25, rue de l´Esplanade', 'NULL', '1 (11) 500 555-0117', '2013-12-09', '0-1 Miles'], ['19486', '241', 'AW00019486', 'NULL', 'Melanie', 'NULL', 'Price', '0', '1970-09-25', 'M', 'NULL', 'F', 'melanie15@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4855 Lavetta Way', 'NULL', '1 (11) 500 555-0196', '2014-01-16', '0-1 Miles'], ['19487', '214', 'AW00019487', 'NULL', 'Dwayne', 'NULL', 'Gutierrez', '0', '1970-01-11', 'M', 'NULL', 'M', 'dwayne10@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', "11, rue de l'Espace De Schengen", 'NULL', '1 (11) 500 555-0114', '2013-09-04', '0-1 Miles'], ['19488', '211', 'AW00019488', 'NULL', 'Jamie', 'NULL', 'Lin', '0', '1969-12-10', 'S', 'NULL', 'F', 'jamie10@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '910, place de la Concorde', 'NULL', '1 (11) 500 555-0152', '2013-10-17', '0-1 Miles'], ['19489', '184', 'AW00019489', 'NULL', 'Alexandra', 'A', 'Patterson', '0', '1969-08-05', 'S', 'NULL', 'F', 'alexandra33@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '27, place de Brazaville', 'NULL', '1 (11) 500 555-0143', '2013-08-29', '0-1 Miles'], ['19490', '204', 'AW00019490', 'NULL', 'Kristina', 'D', 'Smith', '0', '1970-05-16', 'S', 'NULL', 'F', 'kristina9@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '11, rue de Cambrai', 'NULL', '1 (11) 500 555-0167', '2013-04-04', '0-1 Miles'], ['19491', '188', 'AW00019491', 'NULL', 'Stanley', 'NULL', 'Prasad', '0', '1980-12-08', 'S', 'NULL', 'M', 'stanley10@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2, route de Marseille', 'NULL', '1 (11) 500 555-0198', '2014-01-19', '0-1 Miles'], ['19492', '224', 'AW00019492', 'NULL', 'Andres', 'NULL', 'Andersen', '0', '1975-04-15', 'S', 'NULL', 'M', 'andres10@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '84, avenue des Ternes', 'NULL', '1 (11) 500 555-0126', '2013-08-03', '0-1 Miles'], ['19493', '270', 'AW00019493', 'NULL', 'Karla', 'NULL', 'Shan', '0', '1969-11-09', 'M', 'NULL', 'F', 'karla11@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4285 South Street', 'NULL', '1 (11) 500 555-0188', '2012-11-08', '0-1 Miles'], ['19494', '198', 'AW00019494', 'NULL', 'Sergio', 'C', 'Martinez', '0', '1984-09-16', 'S', 'NULL', 'M', 'sergio18@adventure-works.com', '20000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '11, rue Villedo', 'NULL', '1 (11) 500 555-0138', '2013-10-14', '0-1 Miles'], ['19495', '201', 'AW00019495', 'NULL', 'Francis', 'NULL', 'Gill', '0', '1984-10-31', 'S', 'NULL', 'M', 'francis11@adventure-works.com', '20000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '99, rue du Départ', 'NULL', '1 (11) 500 555-0188', '2013-06-22', '0-1 Miles'], ['19496', '167', 'AW00019496', 'NULL', 'Edgar', 'NULL', 'Subram', '0', '1984-07-08', 'S', 'NULL', 'M', 'edgar14@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Werftstr 5400', 'NULL', '1 (11) 500 555-0187', '2011-11-21', '0-1 Miles'], ['19497', '255', 'AW00019497', 'NULL', 'Raul', 'NULL', 'She', '0', '1984-10-23', 'S', 'NULL', 'M', 'raul1@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5225 Harbor View Dr', 'NULL', '1 (11) 500 555-0185', '2013-08-17', '0-1 Miles'], ['19498', '271', 'AW00019498', 'NULL', 'Christy', 'NULL', 'Wang', '0', '1984-08-02', 'S', 'NULL', 'F', 'christy1@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9152 Rogers Ave.', 'NULL', '1 (11) 500 555-0120', '2013-06-28', '0-1 Miles'], ['19499', '255', 'AW00019499', 'NULL', 'Shawn', 'A', 'Black', '0', '1969-05-22', 'M', 'NULL', 'M', 'shawn22@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7 Paso Nogal', 'NULL', '1 (11) 500 555-0124', '2012-11-09', '0-1 Miles'], ['19500', '269', 'AW00019500', 'NULL', 'Russell', 'NULL', 'Shan', '0', '1974-05-13', 'M', 'NULL', 'M', 'russell13@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3027 W 69th St', 'NULL', '1 (11) 500 555-0110', '2012-11-19', '0-1 Miles'], ['19501', '161', 'AW00019501', 'NULL', 'Allison', 'NULL', 'Edwards', '0', '1973-05-07', 'M', 'NULL', 'F', 'allison22@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Zollstr 6', 'NULL', '1 (11) 500 555-0174', '2011-11-02', '0-1 Miles'], ['19502', '259', 'AW00019502', 'NULL', 'Felicia', 'NULL', 'Carlson', '0', '1973-01-30', 'M', 'NULL', 'F', 'felicia17@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7785 Westchester Pl.', 'NULL', '1 (11) 500 555-0112', '2012-11-07', '0-1 Miles'], ['19503', '213', 'AW00019503', 'NULL', 'Bridget', 'A', 'Luo', '0', '1967-09-23', 'M', 'NULL', 'F', 'bridget7@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '24, rue Lauriston', 'NULL', '1 (11) 500 555-0114', '2012-12-05', '0-1 Miles'], ['19504', '179', 'AW00019504', 'NULL', 'Dominic', 'A', 'Garcia', '0', '1968-02-10', 'M', 'NULL', 'M', 'dominic15@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '24, rue Royale', 'NULL', '1 (11) 500 555-0119', '2012-12-19', '0-1 Miles'], ['19505', '229', 'AW00019505', 'NULL', 'Gilbert', 'NULL', 'She', '0', '1983-09-09', 'S', 'NULL', 'M', 'gilbert21@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2899 Cimarron Drive', 'NULL', '1 (11) 500 555-0162', '2013-06-17', '0-1 Miles'], ['19506', '257', 'AW00019506', 'NULL', 'Candice', 'K', 'Lin', '0', '1983-12-11', 'S', 'NULL', 'F', 'candice13@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '3', '1658 Stonyhill Circle', 'NULL', '1 (11) 500 555-0195', '2012-11-18', '0-1 Miles'], ['19507', '201', 'AW00019507', 'NULL', 'Raul', 'NULL', 'Shen', '0', '1983-06-10', 'S', 'NULL', 'M', 'raul3@adventure-works.com', '30000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '3', '51, impasse Ste-Madeleine', 'NULL', '1 (11) 500 555-0182', '2013-07-12', '0-1 Miles'], ['19508', '200', 'AW00019508', 'NULL', 'Troy', 'L', 'Rana', '0', '1981-04-30', 'M', 'NULL', 'M', 'troy12@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '113, rue Ste-Honoré', 'NULL', '1 (11) 500 555-0168', '2013-09-07', '0-1 Miles'], ['19509', '131', 'AW00019509', 'NULL', 'Nancy', 'NULL', 'Suri', '0', '1981-07-18', 'S', 'NULL', 'F', 'nancy5@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Marketplatz 5292', 'NULL', '1 (11) 500 555-0119', '2013-11-02', '2-5 Miles'], ['19510', '247', 'AW00019510', 'NULL', 'Renee', 'L', 'Torres', '0', '1981-11-16', 'S', 'NULL', 'F', 'renee11@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '7342 Pueblo Dr.', 'NULL', '1 (11) 500 555-0188', '2012-10-30', '0-1 Miles'], ['19511', '262', 'AW00019511', 'NULL', 'Marcus', 'L', 'Ward', '0', '1981-11-16', 'S', 'NULL', 'M', 'marcus78@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '7342 Pueblo Dr.', 'NULL', '1 (11) 500 555-0113', '2012-11-26', '0-1 Miles'], ['19512', '270', 'AW00019512', 'NULL', 'Marco', 'NULL', 'Kapoor', '0', '1982-01-08', 'M', 'NULL', 'M', 'marco1@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '2893 Vera', 'NULL', '1 (11) 500 555-0149', '2013-04-10', '0-1 Miles'], ['19513', '251', 'AW00019513', 'NULL', 'Jessie', 'NULL', 'Liang', '0', '1985-06-02', 'M', 'NULL', 'M', 'jessie21@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '6913 Island Drive', 'NULL', '1 (11) 500 555-0185', '2013-08-17', '0-1 Miles'], ['19514', '172', 'AW00019514', 'NULL', 'Kari', 'NULL', 'Rodriguez', '0', '1985-11-16', 'S', 'NULL', 'F', 'kari19@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Alte Landstr 6', 'NULL', '1 (11) 500 555-0169', '2013-07-23', '1-2 Miles'], ['19515', '207', 'AW00019515', 'NULL', 'Nancy', 'NULL', 'Garcia', '0', '1986-02-13', 'S', 'NULL', 'F', 'nancy18@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '872, rue Mazagran', 'NULL', '1 (11) 500 555-0150', '2013-03-28', '2-5 Miles'], ['19516', '207', 'AW00019516', 'NULL', 'Kaitlyn', 'NULL', 'Griffin', '0', '1980-07-08', 'S', 'NULL', 'F', 'kaitlyn88@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '55, rue de Courtaboeuf', 'NULL', '1 (11) 500 555-0115', '2013-03-24', '0-1 Miles'], ['19517', '222', 'AW00019517', 'NULL', 'Max', 'NULL', 'Gomez', '0', '1981-03-21', 'S', 'NULL', 'M', 'max2@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '6, rue de Cambrai', 'NULL', '1 (11) 500 555-0113', '2012-12-14', '2-5 Miles'], ['19518', '159', 'AW00019518', 'NULL', 'Clifford', 'NULL', 'Arun', '0', '1980-07-09', 'S', 'NULL', 'M', 'clifford7@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Pascalstr 756', 'NULL', '1 (11) 500 555-0176', '2011-12-16', '2-5 Miles'], ['19519', '199', 'AW00019519', 'NULL', 'Bianca', 'D', 'Zhu', '0', '1979-04-17', 'S', 'NULL', 'F', 'bianca10@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '363, rue de la Centenaire', 'NULL', '1 (11) 500 555-0159', '2013-06-02', '1-2 Miles'], ['19520', '265', 'AW00019520', 'NULL', 'Kari', 'NULL', 'Muñoz', '0', '1984-02-17', 'M', 'NULL', 'F', 'kari27@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '7377 Morello Heights Circle', 'NULL', '1 (11) 500 555-0136', '2013-03-13', '0-1 Miles'], ['19521', '222', 'AW00019521', 'NULL', 'Jaime', 'R', 'Dominguez', '0', '1978-09-22', 'S', 'NULL', 'F', 'jaime14@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '7, rue de la Centenaire', 'NULL', '1 (11) 500 555-0194', '2013-02-14', '0-1 Miles'], ['19522', '279', 'AW00019522', 'NULL', 'Christian', 'NULL', 'Powell', '0', '1985-08-12', 'M', 'NULL', 'M', 'christian23@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '3920 Valley Run', 'NULL', '1 (11) 500 555-0133', '2013-05-16', '0-1 Miles'], ['19523', '250', 'AW00019523', 'NULL', 'Brittney', 'NULL', 'Holt', '0', '1983-08-23', 'S', 'NULL', 'F', 'brittney4@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '7923 Prospect St.', 'NULL', '1 (11) 500 555-0118', '2013-05-17', '2-5 Miles'], ['19524', '224', 'AW00019524', 'NULL', 'Denise', 'NULL', 'Malhotra', '0', '1983-08-03', 'S', 'NULL', 'F', 'denise7@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '2, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0119', '2013-06-25', '1-2 Miles'], ['19525', '68', 'AW00019525', 'NULL', 'Hannah', 'NULL', 'Flores', '0', '1965-11-21', 'S', 'NULL', 'F', 'hannah34@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1191 Rhoda Way', 'NULL', '607-555-0157', '2013-09-10', '2-5 Miles'], ['19526', '64', 'AW00019526', 'NULL', 'Angela', 'NULL', 'Cooper', '0', '1972-12-31', 'S', 'NULL', 'F', 'angela35@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '8934 Lacanda', 'NULL', '981-555-0127', '2013-06-03', '2-5 Miles'], ['19527', '69', 'AW00019527', 'NULL', 'Gabriel', 'S', 'Adams', '0', '1978-06-12', 'S', 'NULL', 'M', 'gabriel47@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '8989 Adelia Court', 'NULL', '453-555-0116', '2013-06-28', '2-5 Miles'], ['19528', '536', 'AW00019528', 'NULL', 'Bailey', 'C', 'Hall', '0', '1972-11-10', 'S', 'NULL', 'F', 'bailey42@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '444 9th St.', 'NULL', '731-555-0175', '2013-08-09', '0-1 Miles'], ['19529', '641', 'AW00019529', 'NULL', 'Bailey', 'A', 'Parker', '0', '1978-08-05', 'S', 'NULL', 'F', 'bailey28@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '4507 Kenmore', 'NULL', '604-555-0112', '2013-02-10', '2-5 Miles'], ['19530', '302', 'AW00019530', 'NULL', 'Lisa', 'NULL', 'Liang', '0', '1972-12-31', 'S', 'NULL', 'F', 'lisa20@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '639 Bird Drive', 'NULL', '644-555-0144', '2013-02-25', '2-5 Miles'], ['19531', '310', 'AW00019531', 'NULL', 'John', 'I', 'Robinson', '0', '1973-04-04', 'S', 'NULL', 'M', 'john40@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '2000 Newcastle Road', 'NULL', '150-555-0193', '2013-02-08', '2-5 Miles'], ['19532', '314', 'AW00019532', 'NULL', 'Victoria', 'B', 'Brown', '0', '1972-07-31', 'S', 'NULL', 'F', 'victoria5@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '3144 Via Rerrari', 'NULL', '686-555-0192', '2013-01-31', '2-5 Miles'], ['19533', '331', 'AW00019533', 'NULL', 'Vanessa', 'R', 'Long', '0', '1972-10-02', 'S', 'NULL', 'F', 'vanessa10@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '6088 Clark Creek Rd', 'NULL', '727-555-0159', '2013-02-17', '0-1 Miles'], ['19534', '331', 'AW00019534', 'NULL', 'Adrian', 'NULL', 'Torres', '0', '1972-12-21', 'S', 'NULL', 'M', 'adrian6@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '2393 Brook Hollow Ct.', 'NULL', '113-555-0170', '2013-02-07', '2-5 Miles'], ['19535', '343', 'AW00019535', 'NULL', 'Alex', 'S', 'Mitchell', '0', '1973-01-18', 'S', 'NULL', 'M', 'alex40@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '6764 Eastgate', 'NULL', '158-555-0175', '2013-02-15', '2-5 Miles'], ['19536', '69', 'AW00019536', 'NULL', 'Brooke', 'NULL', 'Cooper', '0', '1965-11-07', 'M', 'NULL', 'F', 'brooke15@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1629 Queens Road', 'NULL', '668-555-0142', '2013-06-18', '2-5 Miles'], ['19537', '545', 'AW00019537', 'NULL', 'Michelle', 'C', 'Brooks', '0', '1971-10-02', 'M', 'NULL', 'F', 'michelle3@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7080 Bayview Circle', 'NULL', '195-555-0153', '2013-03-20', '2-5 Miles'], ['19538', '631', 'AW00019538', 'NULL', 'Connor', 'E', 'Hall', '0', '1965-10-07', 'M', 'NULL', 'M', 'connor49@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '8562 Cynthia Drive', 'NULL', '118-555-0177', '2013-03-08', '0-1 Miles'], ['19539', '310', 'AW00019539', 'NULL', 'Latoya', 'NULL', 'Raji', '0', '1965-03-26', 'M', 'NULL', 'F', 'latoya20@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3384 Malibu Place', 'NULL', '647-555-0135', '2013-03-12', '2-5 Miles'], ['19540', '623', 'AW00019540', 'NULL', 'Jade', 'R', 'Richardson', '0', '1965-04-01', 'M', 'NULL', 'F', 'jade7@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '4598 Rhea Ct', 'NULL', '207-555-0172', '2013-11-01', '2-5 Miles'], ['19541', '70', 'AW00019541', 'NULL', 'Alexandra', 'NULL', 'Cooper', '0', '1964-09-05', 'M', 'NULL', 'F', 'alexandra12@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6749 Orchid Ct.', 'NULL', '383-555-0192', '2013-08-06', '0-1 Miles'], ['19542', '548', 'AW00019542', 'NULL', 'Robert', 'E', 'Allen', '0', '1965-01-17', 'M', 'NULL', 'M', 'robert88@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '618 Bentley Ct.', 'NULL', '818-555-0182', '2013-06-10', '2-5 Miles'], ['19543', '539', 'AW00019543', 'NULL', 'Evan', 'NULL', 'Torres', '0', '1965-01-07', 'M', 'NULL', 'M', 'evan4@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '3', '6447 Garcia Ranch Road', 'NULL', '862-555-0119', '2013-05-01', '10+ Miles'], ['19544', '372', 'AW00019544', 'NULL', 'Katherine', 'R', 'Price', '0', '1964-09-04', 'M', 'NULL', 'F', 'katherine25@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '3', '9610 Moccasin Ct', 'NULL', '241-555-0125', '2013-02-14', '10+ Miles'], ['19545', '343', 'AW00019545', 'NULL', 'Garrett', 'R', 'Watson', '0', '1980-10-14', 'S', 'NULL', 'M', 'garrett4@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5087 Valle Vista Avenue', 'NULL', '475-555-0175', '2013-03-09', '2-5 Miles'], ['19546', '68', 'AW00019546', 'NULL', 'Angel', 'D', 'Campbell', '0', '1963-12-07', 'S', 'NULL', 'M', 'angel29@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6554 Sucamore Dr.', 'NULL', '942-555-0139', '2013-06-14', '2-5 Miles'], ['19547', '329', 'AW00019547', 'NULL', 'Lauren', 'A', 'Patterson', '0', '1974-08-11', 'M', 'NULL', 'F', 'lauren58@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6097 Mt. Mckinley Ct.', 'NULL', '601-555-0132', '2013-03-19', '2-5 Miles'], ['19548', '299', 'AW00019548', 'NULL', 'Kaitlyn', 'R', 'Howard', '0', '1964-04-16', 'M', 'NULL', 'F', 'kaitlyn58@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2313 Santa Cruz Drive', 'NULL', '795-555-0163', '2013-03-12', '0-1 Miles'], ['19549', '627', 'AW00019549', 'NULL', 'Kevin', 'NULL', 'Sharma', '0', '1964-02-18', 'M', 'NULL', 'M', 'kevin33@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6969 Hobby Court', 'NULL', '480-555-0162', '2013-03-18', '2-5 Miles'], ['19550', '316', 'AW00019550', 'NULL', 'Lucas', 'C', 'Perez', '0', '1969-10-06', 'M', 'NULL', 'M', 'lucas4@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9309 Silver Oak Pl', 'NULL', '205-555-0113', '2013-03-10', '2-5 Miles'], ['19551', '634', 'AW00019551', 'NULL', 'Samuel', 'NULL', 'Alexander', '0', '1969-01-29', 'M', 'NULL', 'M', 'samuel18@adventure-works.com', '70000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6210 S. 88th Street', 'NULL', '571-555-0176', '2013-09-27', '0-1 Miles'], ['19552', '612', 'AW00019552', 'NULL', 'Margaret', 'M', 'Zhu', '0', '1969-07-03', 'M', 'NULL', 'F', 'margaret20@adventure-works.com', '70000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '2', '9650 Leisure Lane', 'NULL', '997-555-0116', '2013-03-12', '0-1 Miles'], ['19553', '49', 'AW00019553', 'NULL', 'Karen', 'P', 'Wang', '0', '1964-04-03', 'M', 'NULL', 'F', 'karen11@adventure-works.com', '70000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '2407 Erie Dr.', 'NULL', '308-555-0116', '2013-06-14', '2-5 Miles'], ['19554', '49', 'AW00019554', 'NULL', 'Emmanuel', 'W', 'Raman', '0', '1969-10-02', 'S', 'NULL', 'M', 'emmanuel11@adventure-works.com', '70000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '799 Temple Dr.', 'NULL', '171-555-0134', '2013-09-24', '2-5 Miles'], ['19555', '34', 'AW00019555', 'NULL', 'Alejandro', 'R', 'Liu', '0', '1974-07-21', 'M', 'NULL', 'M', 'alejandro6@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '0', '9778 Concord Royale', 'NULL', '1 (11) 500 555-0111', '2011-08-11', '0-1 Miles'], ['19556', '32', 'AW00019556', 'NULL', 'Shawna', 'C', 'Andersen', '0', '1974-12-31', 'M', 'NULL', 'F', 'shawna14@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '5165 Cambridge Drive', 'NULL', '1 (11) 500 555-0149', '2011-08-24', '0-1 Miles'], ['19557', '17', 'AW00019557', 'NULL', 'Bridget', 'M', 'She', '0', '1974-03-08', 'S', 'NULL', 'F', 'bridget1@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1247 Cardiff Dr.', 'NULL', '1 (11) 500 555-0190', '2011-08-28', '0-1 Miles'], ['19558', '32', 'AW00019558', 'NULL', 'Gloria', 'R', 'Ortega', '0', '1975-09-05', 'M', 'NULL', 'F', 'gloria22@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '3916 Blue Jay Dr.', 'NULL', '1 (11) 500 555-0122', '2011-08-16', '0-1 Miles'], ['19559', '9', 'AW00019559', 'NULL', 'Cedric', 'NULL', 'Cai', '0', '1981-12-13', 'M', 'NULL', 'M', 'cedric21@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7119 Iowa Drive', 'NULL', '1 (11) 500 555-0133', '2011-08-17', '0-1 Miles'], ['19560', '10', 'AW00019560', 'NULL', 'Randall', 'B', 'Martin', '0', '1981-04-23', 'M', 'NULL', 'M', 'randall1@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '1042 Hooftrail Way', 'NULL', '1 (11) 500 555-0154', '2011-08-07', '2-5 Miles'], ['19561', '5', 'AW00019561', 'NULL', 'Orlando', 'NULL', 'Serrano', '0', '1975-11-17', 'M', 'NULL', 'M', 'orlando16@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '5439 Mcelroy Court', 'NULL', '1 (11) 500 555-0141', '2011-08-11', '2-5 Miles'], ['19562', '9', 'AW00019562', 'NULL', 'Leah', 'R', 'Guo', '0', '1974-03-22', 'S', 'NULL', 'F', 'leah14@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4251 San Onofre Court', 'NULL', '1 (11) 500 555-0118', '2011-08-01', '2-5 Miles'], ['19563', '32', 'AW00019563', 'NULL', 'Robin', 'NULL', 'Moreno', '0', '1974-04-15', 'M', 'NULL', 'F', 'robin3@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7362 Arguello Blvd.', 'NULL', '1 (11) 500 555-0135', '2011-08-23', '2-5 Miles'], ['19564', '7', 'AW00019564', 'NULL', 'Lawrence', 'M', 'Gutierrez', '0', '1979-12-12', 'M', 'NULL', 'M', 'lawrence9@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1939 Meadow Glen Way', 'NULL', '1 (11) 500 555-0125', '2011-08-23', '0-1 Miles'], ['19565', '33', 'AW00019565', 'NULL', 'Patricia', 'J', 'Saunders', '0', '1984-08-02', 'M', 'NULL', 'F', 'patricia14@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4908 Chickpea Ct.', 'NULL', '1 (11) 500 555-0186', '2011-08-03', '0-1 Miles'], ['19566', '25', 'AW00019566', 'NULL', 'Ruben', 'A', 'Sara', '0', '1973-08-04', 'S', 'NULL', 'M', 'ruben11@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '4140 Delta View Ln.', 'NULL', '1 (11) 500 555-0199', '2013-05-18', '10+ Miles'], ['19567', '17', 'AW00019567', 'NULL', 'Barbara', 'NULL', 'Hu', '0', '1972-12-10', 'M', 'NULL', 'F', 'barbara29@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '3008 Brookdale Dr.', 'NULL', '1 (11) 500 555-0115', '2013-03-27', '10+ Miles'], ['19568', '12', 'AW00019568', 'NULL', 'Candice', 'A', 'Sun', '0', '1975-03-06', 'M', 'NULL', 'F', 'candice19@adventure-works.com', '120000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '7427 Terra Catalina', 'NULL', '1 (11) 500 555-0174', '2011-08-01', '2-5 Miles'], ['19569', '28', 'AW00019569', 'NULL', 'Kellie', 'NULL', 'Torres', '0', '1978-12-09', 'M', 'NULL', 'F', 'kellie10@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '3591 Pepperidge Way', 'NULL', '1 (11) 500 555-0140', '2013-08-17', '10+ Miles'], ['19570', '7', 'AW00019570', 'NULL', 'Kristy', 'J', 'Navarro', '0', '1972-11-10', 'M', 'NULL', 'F', 'kristy9@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '3663 A St.', 'NULL', '1 (11) 500 555-0137', '2013-02-11', '0-1 Miles'], ['19571', '19', 'AW00019571', 'NULL', 'Sydney', 'NULL', 'Johnson', '0', '1978-08-09', 'S', 'NULL', 'F', 'sydney65@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '7341 Rockne Drive', 'NULL', '1 (11) 500 555-0128', '2013-03-16', '0-1 Miles'], ['19572', '21', 'AW00019572', 'NULL', 'Melissa', 'C', 'Bailey', '0', '1978-04-17', 'M', 'NULL', 'F', 'melissa38@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '7906 Clear', 'NULL', '1 (11) 500 555-0197', '2013-04-09', '0-1 Miles'], ['19573', '23', 'AW00019573', 'NULL', 'Deanna', 'T', 'Rubio', '0', '1978-11-10', 'M', 'NULL', 'F', 'deanna47@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '2935 Pine Creek Way', 'NULL', '1 (11) 500 555-0129', '2013-12-25', '0-1 Miles'], ['19574', '32', 'AW00019574', 'NULL', 'Michele', 'J', 'Ramos', '0', '1971-08-10', 'S', 'NULL', 'F', 'michele51@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '8957 Madhatter Circle', 'NULL', '1 (11) 500 555-0124', '2013-04-20', '0-1 Miles'], ['19575', '19', 'AW00019575', 'NULL', 'Marco', 'L', 'Patel', '0', '1983-02-20', 'S', 'NULL', 'M', 'marco3@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '6850 Monument Blvd.', 'NULL', '1 (11) 500 555-0140', '2013-03-07', '0-1 Miles'], ['19576', '31', 'AW00019576', 'NULL', 'Mackenzie', 'NULL', 'Hill', '0', '1971-07-20', 'S', 'NULL', 'F', 'mackenzie33@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '5144 Alvecedo', 'NULL', '1 (11) 500 555-0151', '2011-08-11', '0-1 Miles'], ['19577', '37', 'AW00019577', 'NULL', 'Martin', 'NULL', 'Perez', '0', '1977-08-16', 'M', 'NULL', 'M', 'martin5@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '5238 Jemco Court', 'NULL', '1 (11) 500 555-0119', '2011-08-24', '0-1 Miles'], ['19578', '17', 'AW00019578', 'NULL', 'Max', 'L', 'Rubio', '0', '1971-02-11', 'M', 'NULL', 'M', 'max19@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7874 Jones Lane', 'NULL', '1 (11) 500 555-0149', '2013-07-04', '2-5 Miles'], ['19579', '18', 'AW00019579', 'NULL', 'Dawn', 'F', 'Zheng', '0', '1971-02-24', 'M', 'NULL', 'F', 'dawn21@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6400 Sunshine Drive', 'NULL', '1 (11) 500 555-0184', '2013-10-24', '2-5 Miles'], ['19580', '12', 'AW00019580', 'NULL', 'Eddie', 'A', 'Sanz', '0', '1971-03-04', 'M', 'NULL', 'M', 'eddie20@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '7228 Sierra Ridge', 'Unit A309', '1 (11) 500 555-0138', '2013-04-04', '5-10 Miles'], ['19581', '35', 'AW00019581', 'NULL', 'Todd', 'NULL', 'Ma', '0', '1970-08-08', 'M', 'NULL', 'M', 'todd15@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '3625 Pinehurst Court', 'NULL', '1 (11) 500 555-0161', '2013-09-19', '10+ Miles'], ['19582', '20', 'AW00019582', 'NULL', 'Bethany', 'NULL', 'Luo', '0', '1974-03-25', 'S', 'NULL', 'F', 'bethany9@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '6868 Firestone', 'NULL', '1 (11) 500 555-0142', '2013-11-14', '10+ Miles'], ['19583', '3', 'AW00019583', 'NULL', 'Jake', 'L', 'Li', '0', '1973-11-12', 'M', 'NULL', 'M', 'jake3@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '5642 La Orinda Pl', 'NULL', '1 (11) 500 555-0123', '2013-05-18', '10+ Miles'], ['19584', '23', 'AW00019584', 'NULL', 'Terrance', 'NULL', 'Sanchez', '0', '1979-05-05', 'S', 'NULL', 'M', 'terrance18@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4050 Canyon Road', 'NULL', '1 (11) 500 555-0192', '2013-02-05', '5-10 Miles'], ['19585', '31', 'AW00019585', 'NULL', 'Kristi', 'NULL', 'Fernandez', '0', '1974-05-14', 'S', 'NULL', 'F', 'kristi33@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '8292 Ferndale Lane', 'NULL', '1 (11) 500 555-0145', '2013-08-12', '5-10 Miles'], ['19586', '26', 'AW00019586', 'NULL', 'Alvin', 'M', 'Sharma', '0', '1973-12-04', 'S', 'NULL', 'M', 'alvin32@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3945 Cedar St.', 'NULL', '1 (11) 500 555-0127', '2011-08-20', '5-10 Miles'], ['19587', '39', 'AW00019587', 'NULL', 'Alyssa', 'NULL', 'Martin', '0', '1973-12-25', 'M', 'NULL', 'F', 'alyssa14@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '1276 Quartermaster', 'NULL', '1 (11) 500 555-0124', '2013-04-14', '0-1 Miles'], ['19588', '40', 'AW00019588', 'NULL', 'Raymond', 'R', 'Raman', '0', '1974-01-01', 'M', 'NULL', 'M', 'raymond14@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '7482 Melody', 'NULL', '1 (11) 500 555-0113', '2011-08-07', '1-2 Miles'], ['19589', '15', 'AW00019589', 'NULL', 'Jake', 'NULL', 'Huang', '0', '1970-03-07', 'M', 'NULL', 'M', 'jake6@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '2553 RaceCourt', 'NULL', '1 (11) 500 555-0134', '2013-04-11', '5-10 Miles'], ['19590', '26', 'AW00019590', 'NULL', 'Martin', 'S', 'Subram', '0', '1980-09-16', 'M', 'NULL', 'M', 'martin18@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '6979 Euclid Ave.', 'NULL', '1 (11) 500 555-0135', '2013-03-01', '10+ Miles'], ['19591', '40', 'AW00019591', 'NULL', 'Derek', 'D', 'Raji', '0', '1969-08-31', 'S', 'NULL', 'M', 'derek19@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '2730 Dewing Lane', 'NULL', '1 (11) 500 555-0151', '2013-04-24', '5-10 Miles'], ['19592', '3', 'AW00019592', 'NULL', 'Tara', 'NULL', 'Xu', '0', '1974-02-21', 'S', 'NULL', 'F', 'tara5@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '2189 Alamo Way', 'NULL', '1 (11) 500 555-0146', '2011-08-22', '0-1 Miles'], ['19593', '22', 'AW00019593', 'NULL', 'Carla', 'K', 'Rana', '0', '1969-04-12', 'S', 'NULL', 'F', 'carla13@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '5235 St Paul Way', 'NULL', '1 (11) 500 555-0169', '2011-08-26', '0-1 Miles'], ['19594', '26', 'AW00019594', 'NULL', 'Suzanne', 'NULL', 'Liu', '0', '1969-02-14', 'S', 'NULL', 'F', 'suzanne5@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5963 Meadow Lane', 'NULL', '1 (11) 500 555-0186', '2011-08-08', '0-1 Miles'], ['19595', '37', 'AW00019595', 'NULL', 'Carl', 'NULL', 'Raji', '0', '1968-09-12', 'S', 'NULL', 'M', 'carl20@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4352 Marclair Dr.', 'NULL', '1 (11) 500 555-0179', '2011-08-22', '0-1 Miles'], ['19596', '3', 'AW00019596', 'NULL', 'Allen', 'NULL', 'Fernandez', '0', '1974-05-07', 'S', 'NULL', 'M', 'allen14@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5678 Arlington Way', 'NULL', '1 (11) 500 555-0175', '2011-08-05', '0-1 Miles'], ['19597', '9', 'AW00019597', 'NULL', 'Jay', 'NULL', 'Martin', '0', '1984-03-20', 'M', 'NULL', 'M', 'jay29@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '8384 Potomac Drive', 'NULL', '1 (11) 500 555-0160', '2013-06-11', '0-1 Miles'], ['19598', '18', 'AW00019598', 'NULL', 'Kaitlyn', 'NULL', 'Powell', '0', '1973-12-05', 'M', 'NULL', 'F', 'kaitlyn75@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9032 Santa Fe', 'NULL', '1 (11) 500 555-0180', '2011-08-09', '5-10 Miles'], ['19599', '29', 'AW00019599', 'NULL', 'Alvin', 'NULL', 'Jai', '0', '1972-02-01', 'M', 'NULL', 'M', 'alvin33@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9720 Morning Glory Dr.', 'NULL', '1 (11) 500 555-0156', '2011-08-19', '0-1 Miles'], ['19600', '8', 'AW00019600', 'NULL', 'Lacey', 'NULL', 'Andersen', '0', '1967-02-11', 'M', 'NULL', 'F', 'lacey3@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8141 Mitchell Canyon Road', 'NULL', '1 (11) 500 555-0148', '2013-04-20', '5-10 Miles'], ['19601', '24', 'AW00019601', 'NULL', 'Alfredo', 'NULL', 'Suarez', '0', '1966-07-17', 'M', 'NULL', 'M', 'alfredo20@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '27 Elkwood Dr.', 'NULL', '1 (11) 500 555-0158', '2011-08-22', '0-1 Miles'], ['19602', '8', 'AW00019602', 'NULL', 'Stanley', 'NULL', 'Madan', '0', '1971-10-09', 'S', 'NULL', 'M', 'stanley8@adventure-works.com', '100000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '8521 Knewal Rd', 'NULL', '1 (11) 500 555-0116', '2011-08-24', '2-5 Miles'], ['19603', '8', 'AW00019603', 'NULL', 'Tabitha', 'L', 'Hernandez', '0', '1972-05-18', 'S', 'NULL', 'F', 'tabitha23@adventure-works.com', '100000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7368 South Royal Links', 'NULL', '1 (11) 500 555-0181', '2013-03-27', '5-10 Miles'], ['19604', '11', 'AW00019604', 'NULL', 'Wendy', 'J', 'Blanco', '0', '1972-03-05', 'S', 'NULL', 'F', 'wendy14@adventure-works.com', '110000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '991 Vista Verde', 'NULL', '1 (11) 500 555-0138', '2013-03-30', '5-10 Miles'], ['19605', '17', 'AW00019605', 'NULL', 'Brad', 'H', 'Shan', '0', '1971-11-24', 'M', 'NULL', 'M', 'brad10@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4649 Peachwillow', 'NULL', '1 (11) 500 555-0118', '2011-08-19', '0-1 Miles'], ['19606', '25', 'AW00019606', 'NULL', 'Gabriel', 'NULL', 'Parker', '0', '1937-11-20', 'S', 'NULL', 'M', 'gabriel30@adventure-works.com', '20000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2639 Tono Lane', 'NULL', '1 (11) 500 555-0166', '2013-03-23', '5-10 Miles'], ['19607', '21', 'AW00019607', 'NULL', 'Troy', 'R', 'Subram', '0', '1970-08-21', 'S', 'NULL', 'M', 'troy14@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7779 Lake Meadow Circle', 'NULL', '1 (11) 500 555-0172', '2011-08-06', '5-10 Miles'], ['19608', '9', 'AW00019608', 'NULL', 'Harold', 'NULL', 'Prasad', '0', '1982-04-23', 'M', 'NULL', 'M', 'harold6@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '8784 Detroit Ave.', 'NULL', '1 (11) 500 555-0118', '2013-07-07', '1-2 Miles'], ['19609', '34', 'AW00019609', 'NULL', 'Kari', 'NULL', 'Martinez', '0', '1969-12-20', 'S', 'NULL', 'F', 'kari18@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3416 Ravenwood Drive', 'NULL', '1 (11) 500 555-0117', '2011-08-25', '0-1 Miles'], ['19610', '2', 'AW00019610', 'NULL', 'Deborah', 'NULL', 'Andersen', '0', '1970-06-19', 'M', 'NULL', 'F', 'deborah17@adventure-works.com', '90000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6002 Hickory Drive', 'Studio # 403', '1 (11) 500 555-0161', '2013-04-30', '5-10 Miles'], ['19611', '2', 'AW00019611', 'NULL', 'Meagan', 'NULL', 'Prasad', '0', '1969-04-13', 'S', 'NULL', 'F', 'meagan9@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5302 Argonne Drive', 'NULL', '1 (11) 500 555-0117', '2011-08-21', '0-1 Miles'], ['19612', '25', 'AW00019612', 'NULL', 'Marvin', 'NULL', 'Sanz', '0', '1974-02-22', 'S', 'NULL', 'M', 'marvin20@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5064 South Villa Way', 'NULL', '1 (11) 500 555-0176', '2011-08-10', '0-1 Miles'], ['19613', '26', 'AW00019613', 'NULL', 'Ruben', 'NULL', 'Garcia', '0', '1980-03-15', 'S', 'NULL', 'M', 'ruben16@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '2081 Elkwood Drive', 'NULL', '1 (11) 500 555-0117', '2011-08-01', '5-10 Miles'], ['19614', '27', 'AW00019614', 'NULL', 'Wyatt', 'E', 'Williams', '0', '1969-01-31', 'S', 'NULL', 'M', 'wyatt2@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '6284 Romero Circle', 'NULL', '1 (11) 500 555-0175', '2011-08-22', '0-1 Miles'], ['19615', '4', 'AW00019615', 'NULL', 'Franklin', 'NULL', 'Sun', '0', '1973-11-29', 'S', 'NULL', 'M', 'franklin12@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3925 North 39th Street', 'NULL', '1 (11) 500 555-0187', '2011-08-26', '5-10 Miles'], ['19616', '31', 'AW00019616', 'NULL', 'Stefanie', 'K', 'Rana', '0', '1967-12-02', 'M', 'NULL', 'F', 'stefanie8@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1544 Quiz Street', 'NULL', '1 (11) 500 555-0138', '2011-08-26', '0-1 Miles'], ['19617', '9', 'AW00019617', 'NULL', 'Keith', 'NULL', 'Nath', '0', '1973-03-12', 'M', 'NULL', 'M', 'keith22@adventure-works.com', '70000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '8005 Water St.', 'NULL', '1 (11) 500 555-0115', '2013-08-17', '5-10 Miles'], ['19618', '27', 'AW00019618', 'NULL', 'Ross', 'NULL', 'Johnsen', '0', '1967-11-07', 'M', 'NULL', 'M', 'ross26@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5041 Stillwater Court', 'NULL', '1 (11) 500 555-0189', '2013-07-07', '0-1 Miles'], ['19619', '40', 'AW00019619', 'NULL', 'Eduardo', 'NULL', 'Morris', '0', '1968-05-10', 'M', 'NULL', 'M', 'eduardo85@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4721 Barberry Court', 'NULL', '1 (11) 500 555-0139', '2013-03-05', '5-10 Miles'], ['19620', '4', 'AW00019620', 'NULL', 'Andy', 'NULL', 'Vazquez', '0', '1972-11-12', 'S', 'NULL', 'M', 'andy19@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6490 El Camino', 'NULL', '1 (11) 500 555-0118', '2011-09-22', '5-10 Miles'], ['19621', '27', 'AW00019621', 'NULL', 'Mariah', 'H', 'Barnes', '0', '1963-12-04', 'M', 'NULL', 'F', 'mariah7@adventure-works.com', '80000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5583 Garland Dr', 'NULL', '1 (11) 500 555-0157', '2011-09-17', '0-1 Miles'], ['19622', '5', 'AW00019622', 'NULL', 'Roger', 'NULL', 'Yuan', '0', '1964-06-24', 'M', 'NULL', 'M', 'roger34@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3290 Lakewood Court', 'NULL', '1 (11) 500 555-0196', '2013-06-05', '5-10 Miles'], ['19623', '10', 'AW00019623', 'NULL', 'Cristina', 'D', 'Tang', '0', '1964-05-09', 'M', 'NULL', 'F', 'cristina4@adventure-works.com', '100000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7223 Brush Creek Court', 'NULL', '1 (11) 500 555-0188', '2013-06-05', '0-1 Miles'], ['19624', '14', 'AW00019624', 'NULL', 'Wesley', 'L', 'Zhu', '0', '1962-07-09', 'M', 'NULL', 'M', 'wesley14@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2553 Croyden Dr.', 'NULL', '1 (11) 500 555-0110', '2013-08-26', '5-10 Miles'], ['19625', '24', 'AW00019625', 'NULL', 'Ivan', 'C', 'Gonzalez', '0', '1973-09-12', 'S', 'NULL', 'M', 'ivan15@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9897 East L Street', 'NULL', '1 (11) 500 555-0129', '2013-03-30', '5-10 Miles'], ['19626', '4', 'AW00019626', 'NULL', 'Bradley', 'NULL', 'Anand', '0', '1971-10-05', 'M', 'NULL', 'M', 'bradley24@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '4346 Via Rerrari', 'NULL', '1 (11) 500 555-0154', '2013-07-13', '5-10 Miles'], ['19627', '30', 'AW00019627', 'NULL', 'Kari', 'NULL', 'Blanco', '0', '1965-08-03', 'M', 'NULL', 'F', 'kari36@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6879 Winthrop St.', 'NULL', '1 (11) 500 555-0126', '2013-02-25', '10+ Miles'], ['19628', '40', 'AW00019628', 'NULL', 'Holly', 'B', 'Martinez', '0', '1962-05-07', 'S', 'NULL', 'F', 'holly17@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9959 Edwards Ave.', 'NULL', '1 (11) 500 555-0194', '2011-08-31', '0-1 Miles'], ['19629', '22', 'AW00019629', 'NULL', 'Theresa', 'L', 'Carlson', '0', '1961-08-13', 'M', 'NULL', 'F', 'theresa14@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7711 Fieldcrest Dr.', 'NULL', '1 (11) 500 555-0151', '2013-04-01', '5-10 Miles'], ['19630', '25', 'AW00019630', 'NULL', 'Jodi', 'E', 'Raje', '0', '1962-03-13', 'M', 'NULL', 'F', 'jodi14@adventure-works.com', '80000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6004 Peabody Road', 'NULL', '1 (11) 500 555-0166', '2013-05-23', '5-10 Miles'], ['19631', '2', 'AW00019631', 'NULL', 'Timothy', 'NULL', 'Scott', '0', '1964-03-22', 'M', 'NULL', 'M', 'timothy37@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '1226 Linden Lane', 'NULL', '1 (11) 500 555-0131', '2011-09-22', '0-1 Miles'], ['19632', '10', 'AW00019632', 'NULL', 'Lawrence', 'NULL', 'Vazquez', '0', '1955-04-22', 'S', 'NULL', 'M', 'lawrence13@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3409 Meadowbrook Court', 'NULL', '1 (11) 500 555-0169', '2013-02-21', '5-10 Miles'], ['19633', '325', 'AW00019633', 'NULL', 'Destiny', 'B', 'Gray', '0', '1982-02-21', 'S', 'NULL', 'F', 'destiny41@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8420 Dayton Court', 'NULL', '301-555-0176', '2013-06-15', '5-10 Miles'], ['19634', '307', 'AW00019634', 'NULL', 'Gregory', 'NULL', 'Nath', '0', '1980-10-08', 'M', 'NULL', 'M', 'gregory22@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3505 Graham St.', 'NULL', '465-555-0134', '2013-09-19', '5-10 Miles'], ['19635', '536', 'AW00019635', 'NULL', 'Dawn', 'J', 'Shan', '0', '1982-04-27', 'S', 'NULL', 'F', 'dawn34@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7895 Stanley Dollar Dr.', 'NULL', '258-555-0167', '2013-11-26', '5-10 Miles'], ['19636', '536', 'AW00019636', 'NULL', 'Jessica', 'NULL', 'Lee', '0', '1982-05-17', 'M', 'NULL', 'F', 'jessica70@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6594 Bent Tree Lane', 'NULL', '955-555-0190', '2013-09-02', '5-10 Miles'], ['19637', '609', 'AW00019637', 'NULL', 'Eduardo', 'F', 'Long', '0', '1982-01-04', 'S', 'NULL', 'M', 'eduardo54@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '396 North Ridge Dr.', 'NULL', '384-555-0198', '2013-08-23', '0-1 Miles'], ['19638', '552', 'AW00019638', 'NULL', 'Kimberly', 'P', 'Peterson', '0', '1986-04-25', 'M', 'NULL', 'F', 'kimberly8@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6026 Lacanda Ct', 'NULL', '557-555-0183', '2013-12-26', '0-1 Miles'], ['19639', '307', 'AW00019639', 'NULL', 'Victor', 'NULL', 'Gill', '0', '1985-09-12', 'S', 'NULL', 'M', 'victor14@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9775 Redrock Drive', 'NULL', '182-555-0166', '2013-02-14', '5-10 Miles'], ['19640', '60', 'AW00019640', 'NULL', 'Richard', 'T', 'Walker', '0', '1986-03-17', 'M', 'NULL', 'M', 'richard17@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6088 Gonzalez Court', 'NULL', '859-555-0114', '2013-06-27', '5-10 Miles'], ['19641', '542', 'AW00019641', 'NULL', 'Richard', 'NULL', 'Evans', '0', '1985-09-18', 'S', 'NULL', 'M', 'richard37@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '4155 Working Drive', 'NULL', '834-555-0117', '2013-04-13', '5-10 Miles'], ['19642', '52', 'AW00019642', 'NULL', 'Kaylee', 'NULL', 'Evans', '0', '1984-09-05', 'S', 'NULL', 'F', 'kaylee20@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '311 Wolf Way', 'NULL', '280-555-0166', '2013-04-20', '5-10 Miles'], ['19643', '547', 'AW00019643', 'NULL', 'Jacqueline', 'F', 'Watson', '0', '1984-06-21', 'M', 'NULL', 'F', 'jacqueline24@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3882 Upland Dr', 'NULL', '510-555-0134', '2013-02-17', '5-10 Miles'], ['19644', '307', 'AW00019644', 'NULL', 'Gloria', 'NULL', 'Gill', '0', '1983-03-20', 'S', 'NULL', 'F', 'gloria14@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5126 La Corte Bonita', 'NULL', '988-555-0144', '2013-09-11', '5-10 Miles'], ['19645', '60', 'AW00019645', 'NULL', 'Carlos', 'NULL', 'Rogers', '0', '1982-07-18', 'M', 'NULL', 'M', 'carlos22@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9725 C Olivera Rd', 'NULL', '375-555-0185', '2013-04-04', '0-1 Miles'], ['19646', '53', 'AW00019646', 'NULL', 'Ian', 'NULL', 'Lee', '0', '1985-01-01', 'S', 'NULL', 'M', 'ian20@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2190 Rock Creek Way', 'NULL', '328-555-0164', '2013-11-04', '5-10 Miles'], ['19647', '57', 'AW00019647', 'NULL', 'Hailey', 'NULL', 'Sanders', '0', '1985-04-16', 'S', 'NULL', 'F', 'hailey20@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2436 Pheasant Cr.', 'NULL', '685-555-0184', '2013-05-10', '5-10 Miles'], ['19648', '62', 'AW00019648', 'NULL', 'Lauren', 'A', 'Hall', '0', '1985-04-02', 'S', 'NULL', 'F', 'lauren42@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7989 Pinehurst Court', 'NULL', '503-555-0165', '2013-05-04', '5-10 Miles'], ['19649', '623', 'AW00019649', 'NULL', 'Elizabeth', 'L', 'Martin', '0', '1985-02-22', 'S', 'NULL', 'F', 'elizabeth18@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6271 Ironwood Way', 'NULL', '732-555-0125', '2013-09-25', '5-10 Miles'], ['19650', '22', 'AW00019650', 'NULL', 'Sabrina', 'A', 'Sanz', '0', '1944-10-24', 'M', 'NULL', 'F', 'sabrina14@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5331 Buskrik Avenue', 'NULL', '1 (11) 500 555-0144', '2013-12-15', '0-1 Miles'], ['19651', '12', 'AW00019651', 'NULL', 'Jarrod', 'C', 'Perez', '0', '1945-05-13', 'M', 'NULL', 'M', 'jarrod20@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8937 Two Bay Road', 'NULL', '1 (11) 500 555-0113', '2014-01-05', '5-10 Miles'], ['19652', '36', 'AW00019652', 'NULL', 'Douglas', 'W', 'Rodriguez', '0', '1948-05-15', 'S', 'NULL', 'M', 'douglas23@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3509 Hanson Lane', 'NULL', '1 (11) 500 555-0135', '2011-09-25', '5-10 Miles'], ['19653', '27', 'AW00019653', 'NULL', 'Tina', 'NULL', 'Gonzalez', '0', '1947-09-12', 'M', 'NULL', 'F', 'tina20@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '7943 Altura Drive', 'NULL', '1 (11) 500 555-0112', '2011-09-19', '5-10 Miles'], ['19654', '543', 'AW00019654', 'NULL', 'Richard', 'M', 'Alexander', '0', '1981-10-15', 'M', 'NULL', 'M', 'richard74@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6406 Golden Leaf Way', 'NULL', '146-555-0119', '2013-06-29', '1-2 Miles'], ['19655', '383', 'AW00019655', 'NULL', 'Cindy', 'M', 'Murphy', '0', '1982-05-14', 'S', 'NULL', 'F', 'cindy24@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '5508 Trembath Court', 'NULL', '364-555-0177', '2013-05-17', '1-2 Miles'], ['19656', '326', 'AW00019656', 'NULL', 'Sydney', 'NULL', 'Travers', '0', '1980-02-20', 'M', 'NULL', 'F', 'sydney14@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3365 Atherton Circle', '# 11', '641-555-0112', '2013-08-29', '5-10 Miles'], ['19657', '635', 'AW00019657', 'NULL', 'Emily', 'NULL', 'Griffin', '0', '1977-09-19', 'S', 'NULL', 'F', 'emily46@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '7034 Petarct', 'NULL', '648-555-0129', '2013-06-22', '0-1 Miles'], ['19658', '361', 'AW00019658', 'NULL', 'Dylan', 'W', 'Russell', '0', '1973-10-02', 'S', 'NULL', 'M', 'dylan19@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '2763 Pass', 'NULL', '138-555-0118', '2013-06-16', '1-2 Miles'], ['19659', '337', 'AW00019659', 'NULL', 'Wyatt', 'NULL', 'Robinson', '0', '1974-11-18', 'S', 'NULL', 'M', 'wyatt19@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '735 S. 39th Street', 'NULL', '311-555-0145', '2013-06-16', '5-10 Miles'], ['19660', '368', 'AW00019660', 'NULL', 'Devin', 'NULL', 'Hill', '0', '1968-08-03', 'M', 'NULL', 'M', 'devin27@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '5560 Hanover St.', 'NULL', '565-555-0115', '2013-05-29', '0-1 Miles'], ['19661', '53', 'AW00019661', 'NULL', 'Nathaniel', 'A', 'Cox', '0', '1973-08-24', 'S', 'NULL', 'M', 'nathaniel11@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '4866 Sequoia Woods Pl.', 'NULL', '432-555-0179', '2013-11-11', '1-2 Miles'], ['19662', '59', 'AW00019662', 'NULL', 'Lauren', 'E', 'Powell', '0', '1979-05-17', 'M', 'NULL', 'F', 'lauren56@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '1143 Julpum Loop', 'NULL', '610-555-0134', '2013-07-25', '1-2 Miles'], ['19663', '607', 'AW00019663', 'NULL', 'Alex', 'NULL', 'Allen', '0', '1985-05-11', 'M', 'NULL', 'M', 'alex46@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '4930 Augustine Drive', 'NULL', '673-555-0180', '2013-08-25', '0-1 Miles'], ['19664', '547', 'AW00019664', 'NULL', 'Ethan', 'A', 'Alexander', '0', '1979-07-14', 'S', 'NULL', 'M', 'ethan15@adventure-works.com', '100000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '4038 Elk Dr', 'NULL', '997-555-0118', '2013-12-22', '1-2 Miles'], ['19665', '299', 'AW00019665', 'NULL', 'Eduardo', 'C', 'Gonzales', '0', '1973-10-10', 'M', 'NULL', 'M', 'eduardo61@adventure-works.com', '110000.00', '2', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '8178 Kendree St.', 'NULL', '420-555-0156', '2013-11-08', '1-2 Miles'], ['19666', '31', 'AW00019666', 'NULL', 'Hailey', 'C', 'Alexander', '0', '1950-06-05', 'M', 'NULL', 'F', 'hailey39@adventure-works.com', '10000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2614 Park Glen Ct.', 'NULL', '1 (11) 500 555-0126', '2013-10-09', '5-10 Miles'], ['19667', '38', 'AW00019667', 'NULL', 'Billy', 'C', 'Carlson', '0', '1950-01-14', 'M', 'NULL', 'M', 'billy18@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2354 Frayne Ln.', 'NULL', '1 (11) 500 555-0130', '2013-11-19', '1-2 Miles'], ['19668', '612', 'AW00019668', 'NULL', 'Erick', 'C', 'Patel', '0', '1984-04-10', 'M', 'NULL', 'M', 'erick2@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '7836 Roux Court', 'NULL', '557-555-0134', '2013-12-18', '1-2 Miles'], ['19669', '638', 'AW00019669', 'NULL', 'Hailey', 'NULL', 'Hill', '0', '1983-10-25', 'S', 'NULL', 'F', 'hailey61@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '5587 Esperanza', 'NULL', '288-555-0157', '2013-06-24', '5-10 Miles'], ['19670', '301', 'AW00019670', 'NULL', 'Erik', 'S', 'Gutierrez', '0', '1983-09-13', 'S', 'NULL', 'M', 'erik11@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9919 Macarthur Avenue', 'NULL', '725-555-0195', '2013-03-13', '5-10 Miles'], ['19671', '311', 'AW00019671', 'NULL', 'Michael', 'B', 'Davis', '0', '1983-12-30', 'M', 'NULL', 'M', 'michael37@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2144 San Rafael', 'NULL', '172-555-0156', '2013-03-26', '5-10 Miles'], ['19672', '20', 'AW00019672', 'NULL', 'Rosa', 'A', 'Zhao', '0', '1950-12-14', 'M', 'NULL', 'F', 'rosa11@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '545 Los Gatos Court', 'NULL', '1 (11) 500 555-0159', '2013-10-22', '1-2 Miles'], ['19673', '11', 'AW00019673', 'NULL', 'Mathew', 'A', 'Navarro', '0', '1950-08-13', 'M', 'NULL', 'M', 'mathew6@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5941 Gill Dr.', 'NULL', '1 (11) 500 555-0125', '2013-08-24', '1-2 Miles'], ['19674', '26', 'AW00019674', 'NULL', 'Casey', 'C', 'Deng', '0', '1951-03-27', 'S', 'NULL', 'F', 'casey1@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6887 Deerberry Ct.', 'NULL', '1 (11) 500 555-0194', '2013-10-01', '5-10 Miles'], ['19675', '33', 'AW00019675', 'NULL', 'Dwayne', 'A', 'Gill', '0', '1951-09-07', 'M', 'NULL', 'M', 'dwayne13@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4691 West Street', 'NULL', '1 (11) 500 555-0129', '2013-09-10', '5-10 Miles'], ['19676', '17', 'AW00019676', 'NULL', 'Diana', 'NULL', 'Gutierrez', '0', '1952-03-14', 'M', 'NULL', 'F', 'diana10@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7323 Apple Drive', 'NULL', '1 (11) 500 555-0160', '2013-05-20', '1-2 Miles'], ['19677', '23', 'AW00019677', 'NULL', 'Dylan', 'NULL', 'Shan', '0', '1957-11-15', 'M', 'NULL', 'M', 'dylan30@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1192 A St.', 'NULL', '1 (11) 500 555-0162', '2013-04-19', '1-2 Miles'], ['19678', '612', 'AW00019678', 'NULL', 'Martin', 'NULL', 'Rodriguez', '0', '1977-02-03', 'M', 'NULL', 'M', 'martin3@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9752 Benita Way', 'NULL', '284-555-0150', '2013-03-21', '1-2 Miles'], ['19679', '312', 'AW00019679', 'NULL', 'Erick', 'C', 'Rana', '0', '1982-03-07', 'M', 'NULL', 'M', 'erick11@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '255 Mt. Orange Ct.', 'NULL', '738-555-0129', '2013-03-10', '1-2 Miles'], ['19680', '543', 'AW00019680', 'NULL', 'Jan', 'NULL', 'King', '0', '1977-06-01', 'M', 'NULL', 'F', 'jan16@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5220 Mountain Spring Rd.', 'NULL', '133-555-0114', '2013-03-23', '0-1 Miles'], ['19681', '50', 'AW00019681', 'NULL', 'Morgan', 'NULL', 'King', '0', '1983-09-06', 'M', 'NULL', 'F', 'morgan16@adventure-works.com', '50000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3610 Seal Way', 'NULL', '883-555-0145', '2013-07-15', '1-2 Miles'], ['19682', '623', 'AW00019682', 'NULL', 'Eric', 'NULL', 'Kumar', '0', '1978-02-04', 'M', 'NULL', 'M', 'eric36@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4255 Detroit Ave', 'NULL', '589-555-0121', '2013-03-14', '0-1 Miles'], ['19683', '545', 'AW00019683', 'NULL', 'Marcus', 'NULL', 'Parker', '0', '1977-07-06', 'M', 'NULL', 'M', 'marcus45@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3478 Hillside Way', 'NULL', '496-555-0122', '2013-03-01', '0-1 Miles'], ['19684', '631', 'AW00019684', 'NULL', 'Alexandra', 'NULL', 'Lee', '0', '1975-08-31', 'S', 'NULL', 'F', 'alexandra86@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '7942 C Mt. Hood', 'NULL', '788-555-0170', '2013-03-23', '10+ Miles'], ['19685', '300', 'AW00019685', 'NULL', 'Brandy', 'C', 'Perez', '0', '1969-09-13', 'M', 'NULL', 'F', 'brandy17@adventure-works.com', '110000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '993 Piedmont Dr.', 'NULL', '523-555-0117', '2013-10-14', '1-2 Miles'], ['19686', '314', 'AW00019686', 'NULL', 'Charles', 'D', 'Hernandez', '0', '1969-12-19', 'M', 'NULL', 'M', 'charles30@adventure-works.com', '130000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2245 Fairfield Ave', 'NULL', '141-555-0148', '2013-08-13', '0-1 Miles'], ['19687', '345', 'AW00019687', 'NULL', 'Connor', 'NULL', 'Coleman', '0', '1969-11-29', 'M', 'NULL', 'M', 'connor2@adventure-works.com', '130000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '4211 Eastgate Avenue', 'NULL', '535-555-0112', '2013-05-30', '0-1 Miles'], ['19688', '352', 'AW00019688', 'NULL', 'Timothy', 'NULL', 'Baker', '0', '1961-08-11', 'M', 'NULL', 'M', 'timothy33@adventure-works.com', '70000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '0', '444 Northstar Drive', 'NULL', '506-555-0126', '2013-07-09', '0-1 Miles'], ['19689', '641', 'AW00019689', 'NULL', 'Elizabeth', 'E', 'Gonzales', '0', '1961-09-08', 'S', 'NULL', 'F', 'elizabeth45@adventure-works.com', '90000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '6483 Crystal Ave.', 'NULL', '731-555-0142', '2013-06-15', '5-10 Miles'], ['19690', '369', 'AW00019690', 'NULL', 'Robert', 'C', 'White', '0', '1945-05-18', 'S', 'NULL', 'M', 'robert71@adventure-works.com', '170000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '3269 Fourth St.', 'NULL', '238-555-0112', '2013-06-04', '1-2 Miles'], ['19691', '638', 'AW00019691', 'NULL', 'Gabriella', 'NULL', 'Cox', '0', '1968-08-31', 'S', 'NULL', 'F', 'gabriella8@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '2559 Sequoia Woods Pl', 'NULL', '435-555-0154', '2013-06-01', '2-5 Miles'], ['19692', '300', 'AW00019692', 'NULL', 'Aaron', 'NULL', 'Edwards', '0', '1969-05-14', 'M', 'NULL', 'M', 'aaron34@adventure-works.com', '110000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '663 Contra Loma Blvd.', 'NULL', '355-555-0115', '2013-06-02', '1-2 Miles'], ['19693', '68', 'AW00019693', 'NULL', 'Kayla', 'NULL', 'Foster', '0', '1968-06-26', 'M', 'NULL', 'F', 'kayla40@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '8421 St. Francis', 'NULL', '363-555-0115', '2013-05-20', '5-10 Miles'], ['19694', '614', 'AW00019694', 'NULL', 'Stephanie', 'NULL', 'Perez', '0', '1968-03-13', 'M', 'NULL', 'F', 'stephanie57@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '6888 Relief Valley Ct.', 'NULL', '553-555-0146', '2013-07-27', '5-10 Miles'], ['19695', '546', 'AW00019695', 'NULL', 'Angel', 'D', 'Gonzalez', '0', '1973-12-14', 'M', 'NULL', 'M', 'angel31@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '4930 Virginia Hills Drive', 'NULL', '532-555-0122', '2013-02-07', '1-2 Miles'], ['19696', '316', 'AW00019696', 'NULL', 'Adam', 'M', 'Patterson', '0', '1967-08-09', 'M', 'NULL', 'M', 'adam8@adventure-works.com', '120000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '2235 Craig Drive', 'NULL', '611-555-0183', '2013-06-02', '5-10 Miles'], ['19697', '326', 'AW00019697', 'NULL', 'Isabella', 'C', 'Wood', '0', '1967-11-25', 'S', 'NULL', 'F', 'isabella13@adventure-works.com', '120000.00', '1', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '7941 Cristobal', 'NULL', '752-555-0172', '2013-06-26', '5-10 Miles'], ['19698', '359', 'AW00019698', 'NULL', 'Stephanie', 'J', 'Barnes', '0', '1967-10-30', 'M', 'NULL', 'F', 'stephanie30@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '4151 Olivera', 'NULL', '181-555-0198', '2013-06-18', '0-1 Miles'], ['19699', '641', 'AW00019699', 'NULL', 'Stephanie', 'NULL', 'James', '0', '1972-05-08', 'M', 'NULL', 'F', 'stephanie23@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2696 Santa Rita Dr.', 'NULL', '685-555-0141', '2013-10-13', '1-2 Miles'], ['19700', '302', 'AW00019700', 'NULL', 'Gabriel', 'NULL', 'Hall', '0', '1972-07-09', 'M', 'NULL', 'M', 'gabriel52@adventure-works.com', '110000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '4173 Rockledge Lane', 'NULL', '198-555-0112', '2013-08-30', '5-10 Miles'], ['19701', '635', 'AW00019701', 'NULL', 'Arianna', 'NULL', 'Wood', '0', '1960-12-18', 'M', 'NULL', 'F', 'arianna2@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '7632 Greenhills Circle', 'NULL', '743-555-0131', '2013-03-22', '1-2 Miles'], ['19702', '361', 'AW00019702', 'NULL', 'Edward', 'NULL', 'Diaz', '0', '1961-03-31', 'M', 'NULL', 'M', 'edward70@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '9369 Alovera Road', 'NULL', '506-555-0128', '2013-05-21', '5-10 Miles'], ['19703', '300', 'AW00019703', 'NULL', 'Katelyn', 'E', 'Baker', '0', '1961-03-31', 'M', 'NULL', 'F', 'katelyn40@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '9714 Stroer Lane', 'NULL', '771-555-0166', '2013-02-18', '5-10 Miles'], ['19704', '51', 'AW00019704', 'NULL', 'Nathan', 'F', 'Collins', '0', '1960-12-23', 'M', 'NULL', 'M', 'nathan32@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '2708 Saclan Terr.', 'NULL', '292-555-0132', '2013-07-26', '1-2 Miles'], ['19705', '66', 'AW00019705', 'NULL', 'Anna', 'NULL', 'Hughes', '0', '1960-08-29', 'S', 'NULL', 'F', 'anna36@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '7902 Crescent Avenue', 'NULL', '747-555-0119', '2013-11-05', '5-10 Miles'], ['19706', '631', 'AW00019706', 'NULL', 'Benjamin', 'M', 'Diaz', '0', '1961-04-10', 'S', 'NULL', 'M', 'benjamin23@adventure-works.com', '80000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '3280 Oil Road', 'NULL', '321-555-0185', '2013-06-26', '5-10 Miles'], ['19707', '369', 'AW00019707', 'NULL', 'Cole', 'C', 'Cooper', '0', '1965-07-19', 'M', 'NULL', 'M', 'cole10@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8458 Wiget Lane', 'NULL', '144-555-0150', '2013-06-02', '5-10 Miles'], ['19708', '310', 'AW00019708', 'NULL', 'April', 'NULL', 'Luo', '0', '1941-03-08', 'M', 'NULL', 'F', 'april5@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4575 Shannondale Drive', 'NULL', '223-555-0162', '2013-06-10', '1-2 Miles'], ['19709', '71', 'AW00019709', 'NULL', 'Christian', 'V', 'Martin', '0', '1941-11-17', 'M', 'NULL', 'M', 'christian50@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '2606 Lacanda', 'NULL', '178-555-0122', '2013-06-30', '5-10 Miles'], ['19710', '60', 'AW00019710', 'NULL', 'Arianna', 'S', 'Gonzales', '0', '1966-04-06', 'S', 'NULL', 'F', 'arianna15@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '7886 Ruth Drive', 'NULL', '223-555-0195', '2013-11-19', '5-10 Miles'], ['19711', '545', 'AW00019711', 'NULL', 'Devin', 'NULL', 'Cooper', '0', '1966-05-25', 'S', 'NULL', 'M', 'devin76@adventure-works.com', '100000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '4831 Via Del Sol', 'NULL', '976-555-0180', '2014-01-09', '1-2 Miles'], ['19712', '633', 'AW00019712', 'NULL', 'Eric', 'W', 'Phillips', '0', '1966-05-23', 'M', 'NULL', 'M', 'eric48@adventure-works.com', '100000.00', '0', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '3610 Barberry Court', 'NULL', '803-555-0139', '2013-06-19', '5-10 Miles'], ['19713', '634', 'AW00019713', 'NULL', 'Morgan', 'D', 'Stewart', '0', '1971-08-05', 'M', 'NULL', 'F', 'morgan46@adventure-works.com', '100000.00', '0', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7882 Las Lomas Way', 'NULL', '345-555-0128', '2013-02-01', '1-2 Miles'], ['19714', '315', 'AW00019714', 'NULL', 'Angela', 'D', 'Price', '0', '1971-03-24', 'S', 'NULL', 'F', 'angela2@adventure-works.com', '120000.00', '1', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '5318 Black Pine Lane', 'NULL', '849-555-0139', '2013-07-14', '5-10 Miles'], ['19715', '329', 'AW00019715', 'NULL', 'Elijah', 'NULL', 'Parker', '0', '1965-12-05', 'M', 'NULL', 'M', 'elijah28@adventure-works.com', '120000.00', '1', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '4', '2171 H Stagecoach Rd', 'NULL', '344-555-0136', '2013-07-13', '2-5 Miles'], ['19716', '361', 'AW00019716', 'NULL', 'Logan', 'NULL', 'Martin', '0', '1965-04-22', 'S', 'NULL', 'M', 'logan66@adventure-works.com', '60000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6114 Hobby Court', 'NULL', '397-555-0188', '2013-03-29', '5-10 Miles'], ['19717', '553', 'AW00019717', 'NULL', 'Edward', 'A', 'Hill', '0', '1965-08-02', 'S', 'NULL', 'M', 'edward5@adventure-works.com', '60000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1204 Weber Blvd.', 'NULL', '295-555-0147', '2013-03-15', '5-10 Miles'], ['19718', '545', 'AW00019718', 'NULL', 'Taylor', 'NULL', 'Butler', '0', '1959-11-10', 'M', 'NULL', 'F', 'taylor39@adventure-works.com', '70000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '249 Alexander Pl.', 'NULL', '989-555-0194', '2013-07-14', '1-2 Miles'], ['19719', '347', 'AW00019719', 'NULL', 'Hunter', 'H', 'Baker', '0', '1964-02-16', 'S', 'NULL', 'M', 'hunter42@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9203 Birch Bark Dr.', 'NULL', '924-555-0151', '2013-07-03', '5-10 Miles'], ['19720', '536', 'AW00019720', 'NULL', 'Kaitlyn', 'W', 'Phillips', '0', '1959-03-21', 'M', 'NULL', 'F', 'kaitlyn4@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9151 Mount Dr.', 'NULL', '720-555-0175', '2013-08-07', '5-10 Miles'], ['19721', '616', 'AW00019721', 'NULL', 'Noah', 'NULL', 'Allen', '0', '1958-10-10', 'S', 'NULL', 'M', 'noah71@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '912 Fremont St.', 'NULL', '386-555-0114', '2013-07-15', '5-10 Miles'], ['19722', '334', 'AW00019722', 'NULL', 'Dalton', 'P', 'Bailey', '0', '1964-09-09', 'M', 'NULL', 'M', 'dalton87@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6507 Fieldcrest Dr.', 'NULL', '561-555-0134', '2013-07-30', '1-2 Miles'], ['19723', '310', 'AW00019723', 'NULL', 'Olivia', 'NULL', 'Russell', '0', '1964-08-05', 'M', 'NULL', 'F', 'olivia65@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2809 Via Montana', 'NULL', '556-555-0118', '2013-07-17', '5-10 Miles'], ['19724', '542', 'AW00019724', 'NULL', 'Bryce', 'NULL', 'Morris', '0', '1964-03-08', 'S', 'NULL', 'M', 'bryce17@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2839 Redhead Way', 'NULL', '121-555-0178', '2013-02-28', '5-10 Miles'], ['19725', '352', 'AW00019725', 'NULL', 'Alexandria', 'A', 'Ramirez', '0', '1958-04-03', 'M', 'NULL', 'F', 'alexandria30@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '2918 Pleasant Circle', 'NULL', '492-555-0166', '2013-03-20', '5-10 Miles'], ['19726', '49', 'AW00019726', 'NULL', 'Javier', 'E', 'Rubio', '0', '1942-10-01', 'M', 'NULL', 'M', 'javier14@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '791 Monte Cresta', 'NULL', '756-555-0133', '2013-02-14', '10+ Miles'], ['19727', '612', 'AW00019727', 'NULL', 'Natasha', 'J', 'Vazquez', '0', '1953-09-21', 'M', 'NULL', 'F', 'natasha14@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '9736 Colorado Dr.', 'NULL', '177-555-0115', '2013-02-03', '1-2 Miles'], ['19728', '627', 'AW00019728', 'NULL', 'Wyatt', 'NULL', 'Edwards', '0', '1944-04-09', 'M', 'NULL', 'M', 'wyatt47@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4609 Rosebrook Ct.', 'NULL', '885-555-0175', '2013-02-28', '1-2 Miles'], ['19729', '60', 'AW00019729', 'NULL', 'Nicole', 'NULL', 'Patterson', '0', '1943-10-30', 'M', 'NULL', 'F', 'nicole59@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9431 Sun View Terrace', 'NULL', '117-555-0178', '2013-06-15', '10+ Miles'], ['19730', '300', 'AW00019730', 'NULL', 'Ricardo', 'M', 'Black', '0', '1944-02-18', 'M', 'NULL', 'M', 'ricardo19@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '9334 Carpetta Circle', 'NULL', '501-555-0167', '2013-07-09', '1-2 Miles'], ['19731', '339', 'AW00019731', 'NULL', 'Jonathan', 'NULL', 'Allen', '0', '1943-12-19', 'M', 'NULL', 'M', 'jonathan53@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4421 Holiday Hill Dr.', 'NULL', '784-555-0126', '2013-12-04', '5-10 Miles'], ['19732', '298', 'AW00019732', 'NULL', 'Kyle', 'NULL', 'Hill', '0', '1950-05-14', 'S', 'NULL', 'M', 'kyle41@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7068 Rock Island Drive', 'NULL', '180-555-0128', '2013-05-02', '10+ Miles'], ['19733', '623', 'AW00019733', 'NULL', 'Caitlin', 'C', 'Watson', '0', '1945-04-19', 'M', 'NULL', 'F', 'caitlin0@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8582 Los Gatos Court', 'NULL', '434-555-0167', '2013-02-04', '1-2 Miles'], ['19734', '359', 'AW00019734', 'NULL', 'Natalie', 'NULL', 'Weisman', '0', '1944-12-08', 'M', 'NULL', 'F', 'natalie80@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3924 Cactus Court', 'NULL', '913-555-0184', '2013-10-27', '1-2 Miles'], ['19735', '331', 'AW00019735', 'NULL', 'Mackenzie', 'M', 'Reed', '0', '1945-04-12', 'M', 'NULL', 'F', 'mackenzie19@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7111 Atchinson Stage Ct', '# 180', '488-555-0194', '2013-07-13', '1-2 Miles'], ['19736', '360', 'AW00019736', 'NULL', 'Rachel', 'NULL', 'Kelly', '0', '1945-08-27', 'M', 'NULL', 'F', 'rachel45@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9149 San Simeon Drive', 'NULL', '696-555-0119', '2013-07-15', '1-2 Miles'], ['19737', '612', 'AW00019737', 'NULL', 'Erin', 'J', 'Ramirez', '0', '1951-08-16', 'S', 'NULL', 'F', 'erin11@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3518 Benita Way', 'NULL', '265-555-0132', '2013-07-25', '10+ Miles'], ['19738', '609', 'AW00019738', 'NULL', 'Henry', 'NULL', 'Martinez', '0', '1946-01-22', 'M', 'NULL', 'M', 'henry19@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '8993 Escobar', 'NULL', '248-555-0138', '2013-07-31', '1-2 Miles'], ['19739', '307', 'AW00019739', 'NULL', 'Lucas', 'A', 'Perry', '0', '1945-08-01', 'M', 'NULL', 'M', 'lucas57@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3918 Catalpa Court', 'NULL', '677-555-0122', '2013-08-23', '10+ Miles'], ['19740', '611', 'AW00019740', 'NULL', 'Connie', 'R', 'Liang', '0', '1946-05-21', 'S', 'NULL', 'F', 'connie2@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7914 H St.', '#9', '269-555-0133', '2013-08-08', '10+ Miles'], ['19741', '616', 'AW00019741', 'NULL', 'MarÃ\xada', 'R', 'Rivera', '0', '1946-05-21', 'S', 'NULL', 'F', 'marÃ\xada10@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7914 H St.', '#9', '948-555-0124', '2013-10-16', '5-10 Miles'], ['19742', '609', 'AW00019742', 'NULL', 'Alexia', 'NULL', 'Russell', '0', '1946-12-09', 'M', 'NULL', 'F', 'alexia16@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9810 Dumbarton Drive', 'NULL', '191-555-0146', '2013-10-21', '10+ Miles'], ['19743', '609', 'AW00019743', 'NULL', 'Holly', 'NULL', 'Rana', '0', '1947-02-07', 'S', 'NULL', 'F', 'holly10@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2080 Sycamore Drive', 'NULL', '481-555-0142', '2013-04-10', '10+ Miles'], ['19744', '310', 'AW00019744', 'NULL', 'Tamara', 'NULL', 'Cai', '0', '1947-01-31', 'M', 'NULL', 'F', 'tamara10@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7600 Tupelp Drive', 'NULL', '735-555-0147', '2013-04-29', '10+ Miles'], ['19745', '343', 'AW00019745', 'NULL', 'Kayla', 'D', 'Simmons', '0', '1952-09-14', 'M', 'NULL', 'F', 'kayla39@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9606 Premier Pl.', 'NULL', '881-555-0160', '2013-04-03', '10+ Miles'], ['19746', '50', 'AW00019746', 'NULL', 'Stephanie', 'A', 'Sanders', '0', '1952-08-17', 'M', 'NULL', 'F', 'stephanie27@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8423 Roundtree Court', 'NULL', '356-555-0193', '2013-11-10', '10+ Miles'], ['19747', '311', 'AW00019747', 'NULL', 'Louis', 'NULL', 'Rai', '0', '1948-06-17', 'M', 'NULL', 'M', 'louis33@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2505 N Francisco Way', 'NULL', '823-555-0168', '2013-02-28', '10+ Miles'], ['19748', '10', 'AW00019748', 'NULL', 'Cory', 'NULL', 'Prasad', '0', '1951-12-19', 'M', 'NULL', 'M', 'cory7@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4228 Pacheco St.', 'NULL', '1 (11) 500 555-0196', '2013-09-10', '1-2 Miles'], ['19749', '359', 'AW00019749', 'NULL', 'Natalie', 'A', 'Jackson', '0', '1984-03-15', 'S', 'NULL', 'F', 'natalie79@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2429 Brown Street', 'NULL', '393-555-0186', '2013-08-17', '0-1 Miles'], ['19750', '52', 'AW00019750', 'NULL', 'Miguel', 'NULL', 'Flores', '0', '1982-12-03', 'S', 'NULL', 'M', 'miguel58@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3505 Bisca Y Court', 'NULL', '983-555-0156', '2013-09-08', '5-10 Miles'], ['19751', '53', 'AW00019751', 'NULL', 'Kaylee', 'E', 'Hall', '0', '1983-01-03', 'S', 'NULL', 'F', 'kaylee45@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '8062 Oakgrove', 'NULL', '738-555-0155', '2013-05-17', '1-2 Miles'], ['19752', '12', 'AW00019752', 'NULL', 'Ebony', 'NULL', 'Madan', '0', '1959-09-23', 'M', 'NULL', 'F', 'ebony7@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7773 Hillcrest', 'NULL', '1 (11) 500 555-0189', '2014-01-21', '5-10 Miles'], ['19753', '12', 'AW00019753', 'NULL', 'Lisa', 'A', 'Gao', '0', '1953-11-18', 'M', 'NULL', 'F', 'lisa18@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3326 Icicle Ct.', 'NULL', '1 (11) 500 555-0166', '2013-10-10', '1-2 Miles'], ['19754', '612', 'AW00019754', 'NULL', 'Francisco', 'NULL', 'Rana', '0', '1983-01-19', 'S', 'NULL', 'M', 'francisco12@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '2903 Marsh Dr.', 'NULL', '449-555-0131', '2013-10-21', '1-2 Miles'], ['19755', '641', 'AW00019755', 'NULL', 'Lauren', 'M', 'Foster', '0', '1982-12-22', 'M', 'NULL', 'F', 'lauren62@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2598 La Vista Circle', 'NULL', '543-555-0120', '2013-10-26', '5-10 Miles'], ['19756', '307', 'AW00019756', 'NULL', 'Nicolas', 'J', 'Yuan', '0', '1983-01-31', 'S', 'NULL', 'M', 'nicolas4@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3168 Limewood Pl.', 'NULL', '891-555-0117', '2013-08-14', '5-10 Miles'], ['19757', '66', 'AW00019757', 'NULL', 'Allison', 'A', 'Allen', '0', '1981-11-06', 'M', 'NULL', 'F', 'allison45@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8707 Goen Road', 'NULL', '785-555-0139', '2013-06-08', '1-2 Miles'], ['19758', '385', 'AW00019758', 'NULL', 'Alex', 'NULL', 'Wright', '0', '1982-06-24', 'S', 'NULL', 'M', 'alex50@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2923 Stanford Street', 'NULL', '150-555-0169', '2013-03-06', '1-2 Miles'], ['19759', '355', 'AW00019759', 'NULL', 'Sydney', 'NULL', 'Barnes', '0', '1981-10-04', 'M', 'NULL', 'F', 'sydney25@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8629 English Court', 'NULL', '616-555-0166', '2013-05-29', '5-10 Miles'], ['19760', '326', 'AW00019760', 'NULL', 'Sydney', 'NULL', 'Russell', '0', '1981-10-30', 'S', 'NULL', 'F', 'sydney42@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3076 Mount Dr', 'NULL', '841-555-0132', '2013-05-26', '1-2 Miles'], ['19761', '30', 'AW00019761', 'NULL', 'Alan', 'NULL', 'Lu', '0', '1955-12-09', 'M', 'NULL', 'M', 'alan14@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9246 Martin St', 'NULL', '1 (11) 500 555-0140', '2013-12-12', '1-2 Miles'], ['19762', '35', 'AW00019762', 'NULL', 'Warren', 'A', 'Ma', '0', '1961-06-20', 'S', 'NULL', 'M', 'warren30@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3910 Fawn Glen Circle', 'NULL', '1 (11) 500 555-0165', '2013-07-20', '5-10 Miles'], ['19763', '29', 'AW00019763', 'NULL', 'Roger', 'F', 'Lu', '0', '1961-10-05', 'M', 'NULL', 'M', 'roger16@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '1294 Golden Rain Road', 'NULL', '1 (11) 500 555-0114', '2011-08-30', '1-2 Miles'], ['19764', '37', 'AW00019764', 'NULL', 'Wayne', 'NULL', 'Pal', '0', '1956-10-15', 'M', 'NULL', 'M', 'wayne14@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5652 Driving Dr.', 'NULL', '1 (11) 500 555-0194', '2013-03-14', '1-2 Miles'], ['19765', '28', 'AW00019765', 'NULL', 'Ruben', 'I', 'Patel', '0', '1957-03-15', 'M', 'NULL', 'M', 'ruben3@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5045 Vancouver Way', 'NULL', '1 (11) 500 555-0125', '2011-09-17', '1-2 Miles'], ['19766', '7', 'AW00019766', 'NULL', 'Edwin', 'NULL', 'Lin', '0', '1957-01-29', 'M', 'NULL', 'M', 'edwin8@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8225 Hidden Oak Ct', 'NULL', '1 (11) 500 555-0198', '2011-09-05', '5-10 Miles'], ['19767', '299', 'AW00019767', 'NULL', 'Ross', 'NULL', 'Serrano', '0', '1985-08-13', 'S', 'NULL', 'M', 'ross34@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '8299 Fernwood Drive', 'NULL', '118-555-0171', '2013-10-07', '5-10 Miles'], ['19768', '310', 'AW00019768', 'NULL', 'Christopher', 'C', 'Jackson', '0', '1986-04-15', 'S', 'NULL', 'M', 'christopher12@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5378 Kentucky Drive', 'NULL', '178-555-0116', '2013-04-21', '1-2 Miles'], ['19769', '337', 'AW00019769', 'NULL', 'Andrea', 'NULL', 'Peterson', '0', '1986-01-24', 'M', 'NULL', 'F', 'andrea5@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2551 Damascus Loop', 'NULL', '603-555-0114', '2013-10-15', '5-10 Miles'], ['19770', '14', 'AW00019770', 'NULL', 'Rosa', 'L', 'Liang', '0', '1963-02-19', 'M', 'NULL', 'F', 'rosa16@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9174 Jill Ave', 'NULL', '1 (11) 500 555-0124', '2011-09-18', '5-10 Miles'], ['19771', '23', 'AW00019771', 'NULL', 'Tasha', 'A', 'Jai', '0', '1958-01-08', 'M', 'NULL', 'F', 'tasha12@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4573 Beauty Street', 'NULL', '1 (11) 500 555-0142', '2011-09-09', '1-2 Miles'], ['19772', '38', 'AW00019772', 'NULL', 'Hector', 'E', 'Vazquez', '0', '1965-05-06', 'S', 'NULL', 'M', 'hector12@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4376 Golf Club Road', 'NULL', '1 (11) 500 555-0170', '2011-09-23', '1-2 Miles'], ['19773', '23', 'AW00019773', 'NULL', 'Ricky', 'NULL', 'Gutierrez', '0', '1959-09-08', 'M', 'NULL', 'M', 'ricky11@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8403 Roskelley Drive', 'NULL', '1 (11) 500 555-0139', '2011-09-14', '5-10 Miles'], ['19774', '631', 'AW00019774', 'NULL', 'Brianna', 'M', 'Davis', '0', '1981-05-06', 'M', 'NULL', 'F', 'brianna4@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3186 Concord Ct.', 'NULL', '255-555-0183', '2013-03-03', '5-10 Miles'], ['19775', '307', 'AW00019775', 'NULL', 'Alisha', 'NULL', 'Cai', '0', '1980-10-23', 'S', 'NULL', 'F', 'alisha22@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5458 Encino Drive', 'NULL', '345-555-0133', '2013-04-05', '1-2 Miles'], ['19776', '314', 'AW00019776', 'NULL', 'Judith', 'NULL', 'Murphy', '0', '1980-11-18', 'M', 'NULL', 'F', 'judith6@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9266 Trees Drive', 'NULL', '692-555-0193', '2013-06-06', '5-10 Miles'], ['19777', '338', 'AW00019777', 'NULL', 'Jonathan', 'C', 'Thomas', '0', '1986-05-15', 'M', 'NULL', 'M', 'jonathan64@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5549 Bluejay Dr.', 'NULL', '154-555-0158', '2013-07-28', '1-2 Miles'], ['19778', '343', 'AW00019778', 'NULL', 'Isabella', 'NULL', 'Jones', '0', '1981-02-12', 'M', 'NULL', 'F', 'isabella60@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '623 Chestnut Ave', 'NULL', '387-555-0117', '2013-02-20', '5-10 Miles'], ['19779', '542', 'AW00019779', 'NULL', 'Emily', 'NULL', 'Foster', '0', '1978-07-10', 'S', 'NULL', 'F', 'emily41@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3230 Hamilton Ave', 'NULL', '156-555-0175', '2013-06-30', '5-10 Miles'], ['19780', '338', 'AW00019780', 'NULL', 'Brianna', 'J', 'White', '0', '1979-06-10', 'S', 'NULL', 'F', 'brianna11@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '1985 Hickory Drive', 'NULL', '231-555-0138', '2013-08-28', '0-1 Miles'], ['19781', '52', 'AW00019781', 'NULL', 'Alexis', 'NULL', 'Washington', '0', '1981-09-30', 'M', 'NULL', 'F', 'alexis36@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '2267 Rampo Ct.', 'NULL', '472-555-0117', '2013-01-31', '1-2 Miles'], ['19782', '38', 'AW00019782', 'NULL', 'Derek', 'R', 'Shan', '0', '1960-10-15', 'S', 'NULL', 'M', 'derek9@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7168 Belmont', 'NULL', '1 (11) 500 555-0148', '2011-09-06', '1-2 Miles'], ['19783', '34', 'AW00019783', 'NULL', 'Tony', 'P', 'Kumar', '0', '1966-05-04', 'S', 'NULL', 'M', 'tony10@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2470 Indianhead Circle', 'NULL', '1 (11) 500 555-0196', '2011-09-18', '5-10 Miles'], ['19784', '27', 'AW00019784', 'NULL', 'Christy', 'NULL', 'Liu', '0', '1961-03-17', 'M', 'NULL', 'F', 'christy4@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4809 Ward Court', 'NULL', '1 (11) 500 555-0189', '2011-08-30', '5-10 Miles'], ['19785', '4', 'AW00019785', 'NULL', 'Olivia', 'D', 'Ramirez', '0', '1966-07-09', 'M', 'NULL', 'F', 'olivia42@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9986 El Pintado', 'NULL', '1 (11) 500 555-0141', '2011-09-27', '5-10 Miles'], ['19786', '34', 'AW00019786', 'NULL', 'Robin', 'NULL', 'Carlson', '0', '1962-01-25', 'M', 'NULL', 'F', 'robin14@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4579 Glenside Drive', 'NULL', '1 (11) 500 555-0170', '2011-09-22', '5-10 Miles'], ['19787', '32', 'AW00019787', 'NULL', 'Alex', 'C', 'Hill', '0', '1961-12-26', 'S', 'NULL', 'M', 'alex42@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8390 E. 32nd Street', 'NULL', '1 (11) 500 555-0124', '2011-09-03', '5-10 Miles'], ['19788', '20', 'AW00019788', 'NULL', 'Kristen', 'C', 'Hu', '0', '1967-06-15', 'S', 'NULL', 'F', 'kristen17@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6049 Dalis Dr.', 'NULL', '1 (11) 500 555-0112', '2011-09-22', '1-2 Miles'], ['19789', '8', 'AW00019789', 'NULL', 'Gloria', 'L', 'Munoz', '0', '1961-10-08', 'M', 'NULL', 'F', 'gloria7@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '658 Liscome Way', 'NULL', '1 (11) 500 555-0168', '2011-09-13', '5-10 Miles'], ['19790', '11', 'AW00019790', 'NULL', 'Amy', 'NULL', 'Wu', '0', '1962-04-25', 'S', 'NULL', 'F', 'amy14@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6946 Ridge Circle', 'NULL', '1 (11) 500 555-0127', '2011-09-12', '1-2 Miles'], ['19791', '20', 'AW00019791', 'NULL', 'Warren', 'NULL', 'Zhou', '0', '1961-10-06', 'S', 'NULL', 'M', 'warren24@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1893 Northridge Drive', 'NULL', '1 (11) 500 555-0197', '2011-09-08', '5-10 Miles'], ['19792', '11', 'AW00019792', 'NULL', 'Cristina', 'R', 'Nara', '0', '1963-02-23', 'S', 'NULL', 'F', 'cristina15@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '7128 Paris Lane', 'NULL', '1 (11) 500 555-0196', '2011-09-21', '1-2 Miles'], ['19793', '8', 'AW00019793', 'NULL', 'Tina', 'K', 'Smith', '0', '1962-11-19', 'S', 'NULL', 'F', 'tina10@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '7546 Woodside Court', 'NULL', '1 (11) 500 555-0187', '2011-09-17', '5-10 Miles'], ['19794', '28', 'AW00019794', 'NULL', 'Danny', 'K', 'Ortega', '0', '1968-11-08', 'S', 'NULL', 'M', 'danny23@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '7428 Donegal Court', 'NULL', '1 (11) 500 555-0126', '2011-08-31', '5-10 Miles'], ['19795', '40', 'AW00019795', 'NULL', 'Casey', 'NULL', 'Navarro', '0', '1963-07-13', 'M', 'NULL', 'M', 'casey33@adventure-works.com', '100000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '1426 Waterfall Way', 'NULL', '1 (11) 500 555-0124', '2011-09-04', '0-1 Miles'], ['19796', '4', 'AW00019796', 'NULL', 'Marshall', 'M', 'Xie', '0', '1964-05-12', 'S', 'NULL', 'M', 'marshall24@adventure-works.com', '120000.00', '5', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '7665 Terrace Road', 'NULL', '1 (11) 500 555-0179', '2013-02-25', '2-5 Miles'], ['19797', '36', 'AW00019797', 'NULL', 'Clarence', 'NULL', 'Liu', '0', '1964-05-23', 'S', 'NULL', 'M', 'clarence40@adventure-works.com', '130000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '1726 Chestnut', 'NULL', '1 (11) 500 555-0118', '2011-09-10', '0-1 Miles'], ['19798', '12', 'AW00019798', 'NULL', 'Bianca', 'NULL', 'Ma', '0', '1970-05-06', 'M', 'NULL', 'F', 'bianca12@adventure-works.com', '110000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '3165 Willowwood Ct.', 'Apt 213', '1 (11) 500 555-0118', '2013-02-24', '2-5 Miles'], ['19799', '385', 'AW00019799', 'NULL', 'Austin', 'L', 'Taylor', '0', '1978-12-15', 'S', 'NULL', 'M', 'austin46@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '637 Lindsey Court', 'NULL', '621-555-0135', '2013-10-06', '2-5 Miles'], ['19800', '339', 'AW00019800', 'NULL', 'Lauren', 'E', 'White', '0', '1978-09-10', 'S', 'NULL', 'F', 'lauren31@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '6904 Sunset Way', 'NULL', '981-555-0176', '2013-06-21', '2-5 Miles'], ['19801', '54', 'AW00019801', 'NULL', 'John', 'NULL', 'Lee', '0', '1985-10-04', 'S', 'NULL', 'M', 'john56@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2767 Seaview Dr.', 'NULL', '913-555-0143', '2013-06-24', '5-10 Miles'], ['19802', '56', 'AW00019802', 'NULL', 'Sara', 'NULL', 'James', '0', '1980-01-10', 'S', 'NULL', 'F', 'sara8@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '546 Leonard Ct', 'NULL', '142-555-0175', '2011-01-27', '1-2 Miles'], ['19803', '611', 'AW00019803', 'NULL', 'Jermaine', 'E', 'Mehta', '0', '1985-10-04', 'S', 'NULL', 'M', 'jermaine12@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4442 Carlos Dr.', 'NULL', '197-555-0160', '2013-10-24', '1-2 Miles'], ['19804', '539', 'AW00019804', 'NULL', 'Cameron', 'C', 'Foster', '0', '1985-08-13', 'S', 'NULL', 'M', 'cameron11@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '4128 Stanford Way', 'NULL', '120-555-0136', '2013-08-01', '5-10 Miles'], ['19805', '301', 'AW00019805', 'NULL', 'Mariah', 'S', 'Butler', '0', '1985-08-02', 'S', 'NULL', 'F', 'mariah19@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '9601 Rainier Dr', 'NULL', '364-555-0160', '2013-06-23', '5-10 Miles'], ['19806', '302', 'AW00019806', 'NULL', 'Nancy', 'U', 'Perez', '0', '1979-08-22', 'S', 'NULL', 'F', 'nancy24@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9791 Harvard Court', 'NULL', '737-555-0153', '2013-08-26', '5-10 Miles'], ['19807', '15', 'AW00019807', 'NULL', 'Shannon', 'NULL', 'Zhao', '0', '1964-10-21', 'M', 'NULL', 'F', 'shannon11@adventure-works.com', '110000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '1415 Edwards Ave', 'NULL', '1 (11) 500 555-0193', '2013-08-05', '2-5 Miles'], ['19808', '326', 'AW00019808', 'NULL', 'Brooke', 'NULL', 'Kelly', '0', '1971-07-26', 'M', 'NULL', 'F', 'brooke2@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '890 Breck Court', 'NULL', '466-555-0171', '2013-08-19', '0-1 Miles'], ['19809', '335', 'AW00019809', 'NULL', 'Eric', 'NULL', 'Sharma', '0', '1977-10-20', 'M', 'NULL', 'M', 'eric38@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '2119 Little Dr', 'NULL', '695-555-0124', '2013-04-22', '1-2 Miles'], ['19810', '369', 'AW00019810', 'NULL', 'Oscar', 'NULL', 'Long', '0', '1963-04-14', 'S', 'NULL', 'M', 'oscar17@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '950 Norman Ave.', 'NULL', '602-555-0169', '2013-11-11', '5-10 Miles'], ['19811', '552', 'AW00019811', 'NULL', 'Evan', 'NULL', 'Allen', '0', '1963-04-21', 'M', 'NULL', 'M', 'evan42@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '1940 Detroit Ave.', 'NULL', '757-555-0188', '2013-08-19', '5-10 Miles'], ['19812', '312', 'AW00019812', 'NULL', 'Sydney', 'K', 'Morgan', '0', '1968-08-13', 'S', 'NULL', 'F', 'sydney6@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '3538 Esperanza Drive', 'NULL', '187-555-0175', '2013-08-27', '5-10 Miles'], ['19813', '618', 'AW00019813', 'NULL', 'Rebecca', 'H', 'Perez', '0', '1962-07-16', 'M', 'NULL', 'F', 'rebecca14@adventure-works.com', '80000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '7529 Potomac Drive', 'NULL', '333-555-0157', '2013-08-24', '0-1 Miles'], ['19814', '302', 'AW00019814', 'NULL', 'Blake', 'T', 'Washington', '0', '1962-08-12', 'M', 'NULL', 'M', 'blake61@adventure-works.com', '80000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '4324 Freedom Ct.', 'NULL', '763-555-0126', '2013-08-03', '2-5 Miles'], ['19815', '638', 'AW00019815', 'NULL', 'Christian', 'A', 'Thompson', '0', '1962-10-06', 'M', 'NULL', 'M', 'christian51@adventure-works.com', '80000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '5637 Boyd Road', 'NULL', '237-555-0184', '2013-09-22', '2-5 Miles'], ['19816', '536', 'AW00019816', 'NULL', 'Lucas', 'NULL', 'Brown', '0', '1968-11-15', 'M', 'NULL', 'M', 'lucas17@adventure-works.com', '90000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '3396 El Dorado Way', 'NULL', '875-555-0124', '2013-09-11', '5-10 Miles'], ['19817', '51', 'AW00019817', 'NULL', 'Morgan', 'NULL', 'Flores', '0', '1967-08-05', 'S', 'NULL', 'F', 'morgan82@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '9809 Cardinet Drive', 'NULL', '607-555-0156', '2013-02-25', '5-10 Miles'], ['19818', '326', 'AW00019818', 'NULL', 'Brianna', 'R', 'Anderson', '0', '1961-07-17', 'M', 'NULL', 'F', 'brianna8@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '917 Mark Twain Dr.', 'NULL', '394-555-0134', '2013-08-17', '5-10 Miles'], ['19819', '343', 'AW00019819', 'NULL', 'Andrew', 'NULL', 'Brown', '0', '1961-11-09', 'M', 'NULL', 'M', 'andrew13@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '4350 Mota Dr.', 'NULL', '987-555-0117', '2013-10-24', '5-10 Miles'], ['19820', '336', 'AW00019820', 'NULL', 'Alexandra', 'A', 'Coleman', '0', '1961-08-31', 'M', 'NULL', 'F', 'alexandra29@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '3469 Fish Ct.', 'NULL', '621-555-0199', '2013-04-19', '1-2 Miles'], ['19821', '300', 'AW00019821', 'NULL', 'Tabitha', 'E', 'Vazquez', '0', '1972-12-08', 'M', 'NULL', 'F', 'tabitha35@adventure-works.com', '70000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '1133 Fillet Ave', 'NULL', '627-555-0117', '2013-09-24', '5-10 Miles'], ['19822', '51', 'AW00019822', 'NULL', 'Carlos', 'NULL', 'Adams', '0', '1976-01-24', 'M', 'NULL', 'M', 'carlos42@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '2079 Mountaire Pkwy.', 'NULL', '167-555-0143', '2013-06-29', '2-5 Miles'], ['19823', '60', 'AW00019823', 'NULL', 'Abigail', 'NULL', 'Foster', '0', '1971-04-26', 'M', 'NULL', 'F', 'abigail41@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '4665 Military Way E.', 'NULL', '897-555-0167', '2013-12-03', '2-5 Miles'], ['19824', '609', 'AW00019824', 'NULL', 'Jordan', 'NULL', 'Perry', '0', '1970-11-13', 'S', 'NULL', 'M', 'jordan4@adventure-works.com', '90000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '9287 Pecan Pl', 'NULL', '562-555-0196', '2013-09-07', '2-5 Miles'], ['19825', '311', 'AW00019825', 'NULL', 'Gilbert', 'I', 'Ferrier', '0', '1970-08-13', 'M', 'NULL', 'M', 'gilbert42@adventure-works.com', '120000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '3624 Garland Drive', 'NULL', '345-555-0149', '2013-06-16', '2-5 Miles'], ['19826', '41', 'AW00019826', 'NULL', 'Clarence', 'R', 'Zhao', '0', '1975-08-02', 'S', 'NULL', 'M', 'clarence6@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '4900 La Salle St.', 'NULL', '968-555-0116', '2013-02-11', '2-5 Miles'], ['19827', '53', 'AW00019827', 'NULL', 'Justin', 'P', 'Smith', '0', '1975-03-08', 'M', 'NULL', 'M', 'justin32@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '623 Davis Ave.', 'NULL', '617-555-0179', '2013-08-02', '0-1 Miles'], ['19828', '62', 'AW00019828', 'NULL', 'Madison', 'H', 'Wilson', '0', '1969-07-05', 'M', 'NULL', 'F', 'madison7@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '3017 Buskirk Ave.', 'NULL', '793-555-0191', '2013-08-19', '2-5 Miles'], ['19829', '62', 'AW00019829', 'NULL', 'Lucas', 'C', 'Mitchell', '0', '1969-03-02', 'S', 'NULL', 'M', 'lucas3@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '3450 Villageoaks Dr.', 'NULL', '491-555-0164', '2011-02-28', '0-1 Miles'], ['19830', '51', 'AW00019830', 'NULL', 'Gabrielle', 'NULL', 'Long', '0', '1973-12-20', 'S', 'NULL', 'F', 'gabrielle32@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9818 Frisbie Court', 'NULL', '328-555-0139', '2011-02-19', '2-5 Miles'], ['19831', '358', 'AW00019831', 'NULL', 'Charles', 'NULL', 'Green', '0', '1968-02-20', 'M', 'NULL', 'M', 'charles34@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6090 San Francisco', 'NULL', '118-555-0181', '2013-09-11', '0-1 Miles'], ['19832', '307', 'AW00019832', 'NULL', 'Sheila', 'S', 'Hernandez', '0', '1978-05-21', 'M', 'NULL', 'F', 'sheila4@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '2100 Grant Street', 'NULL', '202-555-0187', '2013-12-17', '5-10 Miles'], ['19833', '539', 'AW00019833', 'NULL', 'Michelle', 'N', 'Kelly', '0', '1947-08-22', 'M', 'NULL', 'F', 'michelle4@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1104 Colton Ln', 'NULL', '763-555-0131', '2013-04-12', '10+ Miles'], ['19834', '612', 'AW00019834', 'NULL', 'Johnny', 'NULL', 'Sharma', '0', '1948-02-02', 'M', 'NULL', 'M', 'johnny10@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9811 Toledo', 'NULL', '395-555-0165', '2013-06-15', '10+ Miles'], ['19835', '545', 'AW00019835', 'NULL', 'Jordan', 'L', 'Allen', '0', '1947-07-09', 'M', 'NULL', 'F', 'jordan52@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2553 Croyden Dr.', 'NULL', '461-555-0187', '2013-12-17', '10+ Miles'], ['19836', '51', 'AW00019836', 'NULL', 'Kevin', 'NULL', 'Jai', '0', '1948-02-02', 'M', 'NULL', 'M', 'kevin35@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '5087 Pastime Drive', 'NULL', '861-555-0126', '2013-03-18', '1-2 Miles'], ['19837', '299', 'AW00019837', 'NULL', 'Philip', 'B', 'Jimenez', '0', '1958-09-04', 'M', 'NULL', 'M', 'philip5@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2059 Brookdale Dr', 'NULL', '842-555-0128', '2013-09-20', '10+ Miles'], ['19838', '552', 'AW00019838', 'NULL', 'Jared', 'NULL', 'Ramirez', '0', '1948-04-16', 'M', 'NULL', 'M', 'jared10@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3978 Spring Hill Dr.', 'NULL', '979-555-0180', '2013-09-03', '10+ Miles'], ['19839', '41', 'AW00019839', 'NULL', 'Carly', 'NULL', 'Yuan', '0', '1949-01-19', 'M', 'NULL', 'F', 'carly6@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '5831 Mountain View Place', 'NULL', '938-555-0142', '2013-04-16', '1-2 Miles'], ['19840', '329', 'AW00019840', 'NULL', 'Jessica', 'NULL', 'James', '0', '1949-03-10', 'M', 'NULL', 'F', 'jessica20@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9770 Fraga Court', '#91', '983-555-0126', '2013-12-28', '10+ Miles'], ['19841', '316', 'AW00019841', 'NULL', 'Alexandria', 'L', 'Jenkins', '0', '1954-09-30', 'M', 'NULL', 'F', 'alexandria7@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '3274 Reading Dr', 'NULL', '741-555-0112', '2013-09-20', '1-2 Miles'], ['19842', '611', 'AW00019842', 'NULL', 'Katherine', 'S', 'Phillips', '0', '1948-10-29', 'M', 'NULL', 'F', 'katherine54@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6414 Honey Court', 'NULL', '998-555-0115', '2013-10-28', '10+ Miles'], ['19843', '326', 'AW00019843', 'NULL', 'Connor', 'G', 'Kumar', '0', '1954-06-16', 'S', 'NULL', 'M', 'connor23@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1855 Rio Blanco Drive', 'NULL', '652-555-0150', '2013-10-05', '10+ Miles'], ['19844', '59', 'AW00019844', 'NULL', 'Emma', 'NULL', 'Murphy', '0', '1949-03-02', 'M', 'NULL', 'F', 'emma32@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3754 Alray Drive', 'NULL', '831-555-0134', '2011-04-14', '1-2 Miles'], ['19845', '648', 'AW00019845', 'NULL', 'Fernando', 'P', 'Hernandez', '0', '1948-08-07', 'M', 'NULL', 'M', 'fernando24@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1156 Corte Poquito', 'NULL', '207-555-0132', '2013-10-11', '10+ Miles'], ['19846', '548', 'AW00019846', 'NULL', 'Seth', 'J', 'Patterson', '0', '1949-04-20', 'M', 'NULL', 'M', 'seth58@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2093 Frayne Ct.', 'NULL', '652-555-0172', '2013-10-03', '10+ Miles'], ['19847', '49', 'AW00019847', 'NULL', 'Brendan', 'L', 'Anand', '0', '1948-08-25', 'S', 'NULL', 'M', 'brendan20@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '769 Algiers Drive', 'NULL', '744-555-0142', '2013-11-16', '10+ Miles'], ['19848', '611', 'AW00019848', 'NULL', 'Bryant', 'C', 'Malhotra', '0', '1948-08-12', 'M', 'NULL', 'M', 'bryant5@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1362 Somerset Place', 'NULL', '405-555-0129', '2013-12-20', '5-10 Miles'], ['19849', '298', 'AW00019849', 'NULL', 'Jorge', 'J', 'Wu', '0', '1955-04-12', 'M', 'NULL', 'M', 'jorge8@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '4732 Mt. Hood Circle', 'NULL', '276-555-0137', '2013-04-23', '10+ Miles'], ['19850', '338', 'AW00019850', 'NULL', 'Jeremiah', 'C', 'Hill', '0', '1950-01-14', 'M', 'NULL', 'M', 'jeremiah16@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '2354 Frame Ln.', 'NULL', '452-555-0170', '2013-12-23', '1-2 Miles'], ['19851', '301', 'AW00019851', 'NULL', 'Louis', 'M', 'Pal', '0', '1950-12-02', 'S', 'NULL', 'M', 'louis28@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3752 San Ramon Valley Blvd.', 'NULL', '277-555-0119', '2013-06-02', '10+ Miles'], ['19852', '626', 'AW00019852', 'NULL', 'Eric', 'NULL', 'Carter', '0', '1951-04-22', 'S', 'NULL', 'M', 'eric52@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3409 Meadowbrook Court', 'NULL', '556-555-0163', '2013-03-17', '10+ Miles'], ['19853', '305', 'AW00019853', 'NULL', 'Ricky', 'E', 'Ramos', '0', '1957-08-09', 'M', 'NULL', 'M', 'ricky18@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '2141 Pepperridge Way', 'NULL', '905-555-0186', '2013-10-11', '2-5 Miles'], ['19854', '347', 'AW00019854', 'NULL', 'Katherine', 'E', 'Hall', '0', '1952-04-15', 'S', 'NULL', 'F', 'katherine95@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '2386 Juniper Drive', 'NULL', '419-555-0137', '2013-10-01', '10+ Miles'], ['19855', '60', 'AW00019855', 'NULL', 'John', 'NULL', 'Smith', '0', '1957-02-22', 'M', 'NULL', 'M', 'john37@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '9869 Fall Creek', 'NULL', '835-555-0141', '2011-05-21', '2-5 Miles'], ['19856', '301', 'AW00019856', 'NULL', 'Tammy', 'K', 'Madan', '0', '1951-12-14', 'M', 'NULL', 'F', 'tammy8@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7421 Palisade Court', 'NULL', '875-555-0133', '2013-05-31', '2-5 Miles'], ['19857', '368', 'AW00019857', 'NULL', 'Megan', 'M', 'Rogers', '0', '1952-03-12', 'S', 'NULL', 'F', 'megan30@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9006 Woodside Way', 'NULL', '496-555-0117', '2013-04-22', '10+ Miles'], ['19858', '548', 'AW00019858', 'NULL', 'Jenna', 'G', 'Collins', '0', '1952-04-21', 'M', 'NULL', 'F', 'jenna2@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8600 Camelot Court', 'NULL', '229-555-0196', '2013-12-03', '10+ Miles'], ['19859', '302', 'AW00019859', 'NULL', 'Lisa', 'C', 'Zhao', '0', '1952-01-08', 'M', 'NULL', 'F', 'lisa14@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '491 Cali', 'NULL', '432-555-0153', '2013-05-19', '10+ Miles'], ['19860', '607', 'AW00019860', 'NULL', 'Sara', 'NULL', 'Young', '0', '1953-04-11', 'S', 'NULL', 'F', 'sara44@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '5793 St. Helena Drive', 'NULL', '729-555-0182', '2013-02-26', '10+ Miles'], ['19861', '542', 'AW00019861', 'NULL', 'Caroline', 'NULL', 'Perry', '0', '1953-03-03', 'M', 'NULL', 'F', 'caroline9@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '8325 Newcastle Rd', 'NULL', '125-555-0159', '2013-06-12', '2-5 Miles'], ['19862', '63', 'AW00019862', 'NULL', 'Emily', 'P', 'Harris', '0', '1954-02-07', 'M', 'NULL', 'F', 'emily14@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '4203 Windmill Way', 'NULL', '141-555-0154', '2013-04-28', '2-5 Miles'], ['19863', '612', 'AW00019863', 'NULL', 'Paige', 'NULL', 'Powell', '0', '1954-03-13', 'M', 'NULL', 'F', 'paige9@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '3399 Climbing Dr', 'NULL', '868-555-0111', '2014-01-07', '10+ Miles'], ['19864', '547', 'AW00019864', 'NULL', 'Isaiah', 'J', 'Brooks', '0', '1954-06-16', 'M', 'NULL', 'M', 'isaiah1@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '9353 Creekside Dr.', 'NULL', '886-555-0188', '2013-07-01', '10+ Miles'], ['19865', '553', 'AW00019865', 'NULL', 'Hailey', 'D', 'Butler', '0', '1953-08-04', 'M', 'NULL', 'F', 'hailey34@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3936 Cleveland Rd.', 'NULL', '783-555-0174', '2013-04-04', '2-5 Miles'], ['19866', '307', 'AW00019866', 'NULL', 'Martin', 'P', 'Patel', '0', '1953-12-15', 'M', 'NULL', 'M', 'martin8@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5728 Benedict Ct.', 'NULL', '995-555-0197', '2013-09-28', '10+ Miles'], ['19867', '307', 'AW00019867', 'NULL', 'Juan', 'J', 'Sanchez', '0', '1954-06-19', 'M', 'NULL', 'M', 'juan28@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1084 Meadow Glen Way', 'NULL', '890-555-0159', '2013-04-29', '2-5 Miles'], ['19868', '345', 'AW00019868', 'NULL', 'Kyle', 'L', 'Jenkins', '0', '1954-06-23', 'S', 'NULL', 'M', 'kyle2@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '4798 Macaroon Drive', 'NULL', '458-555-0162', '2013-10-27', '10+ Miles'], ['19869', '383', 'AW00019869', 'NULL', 'Carol', 'A', 'Brooks', '0', '1953-11-18', 'M', 'NULL', 'F', 'carol23@adventure-works.com', '70000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3326 Indianhead Ct.', 'NULL', '322-555-0180', '2013-10-12', '1-2 Miles'], ['19870', '54', 'AW00019870', 'NULL', 'James', 'M', 'Martin', '0', '1960-10-13', 'M', 'NULL', 'M', 'james87@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9996 Solano Drive', 'NULL', '627-555-0119', '2013-03-29', '10+ Miles'], ['19871', '638', 'AW00019871', 'NULL', 'Bryce', 'NULL', 'Rivera', '0', '1960-03-13', 'S', 'NULL', 'M', 'bryce16@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5086 Rampo Ct.', 'NULL', '874-555-0150', '2013-08-25', '10+ Miles'], ['19872', '49', 'AW00019872', 'NULL', 'Faith', 'NULL', 'Foster', '0', '1966-09-19', 'M', 'NULL', 'F', 'faith15@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2076 Westover Dr', 'NULL', '201-555-0197', '2014-01-17', '2-5 Miles'], ['19873', '58', 'AW00019873', 'NULL', 'Dylan', 'NULL', 'Thomas', '0', '1956-01-31', 'S', 'NULL', 'M', 'dylan41@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4225 Almond Drive', 'NULL', '200-555-0184', '2013-04-07', '10+ Miles'], ['19874', '70', 'AW00019874', 'NULL', 'Sara', 'NULL', 'Rogers', '0', '1966-09-19', 'M', 'NULL', 'F', 'sara21@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '2061 Normal Ave.', 'NULL', '120-555-0113', '2011-06-07', '10+ Miles'], ['19875', '611', 'AW00019875', 'NULL', 'Patrick', 'NULL', 'James', '0', '1955-11-16', 'M', 'NULL', 'M', 'patrick5@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6872 Jimno Ave.', 'NULL', '199-555-0131', '2013-04-24', '2-5 Miles'], ['19876', '302', 'AW00019876', 'NULL', 'Nathan', 'K', 'Edwards', '0', '1955-12-11', 'M', 'NULL', 'M', 'nathan31@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '6050 Camino Ricardo', 'NULL', '463-555-0137', '2013-07-01', '2-5 Miles'], ['19877', '307', 'AW00019877', 'NULL', 'Steve', 'D', 'Zheng', '0', '1961-04-19', 'M', 'NULL', 'M', 'steve22@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '525 Sea Point Way', 'NULL', '183-555-0122', '2013-09-03', '2-5 Miles'], ['19878', '331', 'AW00019878', 'NULL', 'Morgan', 'P', 'Jackson', '0', '1956-01-24', 'M', 'NULL', 'F', 'morgan34@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6102 Lakeview Place', 'NULL', '296-555-0186', '2013-12-08', '1-2 Miles'], ['19879', '335', 'AW00019879', 'NULL', 'Ian', 'S', 'Green', '0', '1955-11-14', 'M', 'NULL', 'M', 'ian29@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7922 Rancho View Drive', 'NULL', '183-555-0146', '2013-03-04', '1-2 Miles'], ['19880', '348', 'AW00019880', 'NULL', 'Emma', 'E', 'Bennett', '0', '1955-11-13', 'M', 'NULL', 'F', 'emma49@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '2217 Pueblo Dr.', 'NULL', '408-555-0111', '2013-03-30', '1-2 Miles'], ['19881', '369', 'AW00019881', 'NULL', 'Aidan', 'J', 'Long', '0', '1955-10-19', 'M', 'NULL', 'M', 'aidan10@adventure-works.com', '80000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '5800 Abbey Court', 'NULL', '967-555-0155', '2013-03-29', '1-2 Miles'], ['19882', '374', 'AW00019882', 'NULL', 'Richard', 'L', 'Phillips', '0', '1955-12-21', 'S', 'NULL', 'M', 'richard34@adventure-works.com', '80000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '5234 Esperanza Drive', 'NULL', '882-555-0162', '2013-07-14', '5-10 Miles'], ['19883', '385', 'AW00019883', 'NULL', 'Kevin', 'NULL', 'Young', '0', '1956-04-16', 'M', 'NULL', 'M', 'kevin53@adventure-works.com', '80000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7286 Norris Court', 'NULL', '230-555-0112', '2013-10-23', '5-10 Miles'], ['19884', '66', 'AW00019884', 'NULL', 'James', 'NULL', 'Simmons', '0', '1962-04-05', 'M', 'NULL', 'M', 'james31@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3445 Fine Drive', 'NULL', '151-555-0130', '2011-07-22', '2-5 Miles'], ['19885', '609', 'AW00019885', 'NULL', 'Isaac', 'NULL', 'Turner', '0', '1957-03-21', 'S', 'NULL', 'M', 'isaac27@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6169 Delacy Ave.', 'NULL', '827-555-0120', '2013-12-29', '10+ Miles'], ['19886', '623', 'AW00019886', 'NULL', 'Marcus', 'V', 'Butler', '0', '1957-01-29', 'M', 'NULL', 'M', 'marcus64@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2735 Acardia Pl.', 'NULL', '834-555-0187', '2013-04-12', '10+ Miles'], ['19887', '553', 'AW00019887', 'NULL', 'Olivia', 'NULL', 'Walker', '0', '1957-06-16', 'M', 'NULL', 'F', 'olivia22@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '6389 Atherton Circle', 'NULL', '577-555-0116', '2013-12-18', '2-5 Miles'], ['19888', '325', 'AW00019888', 'NULL', 'Carson', 'NULL', 'Washington', '0', '1956-07-02', 'S', 'NULL', 'M', 'carson12@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3809 Lancelot Dr.', 'NULL', '518-555-0192', '2013-07-24', '10+ Miles'], ['19889', '316', 'AW00019889', 'NULL', 'Catherine', 'NULL', 'Sanders', '0', '1957-12-19', 'S', 'NULL', 'F', 'catherine4@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '65 Joseph Ave', 'NULL', '669-555-0129', '2013-10-24', '2-5 Miles'], ['19890', '312', 'AW00019890', 'NULL', 'Lee', 'A', 'Alvarez', '0', '1963-08-19', 'S', 'NULL', 'M', 'lee2@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4569 La Salle Ct.', 'NULL', '843-555-0135', '2013-07-17', '10+ Miles'], ['19891', '616', 'AW00019891', 'NULL', 'Jennifer', 'L', 'Morgan', '0', '1958-05-16', 'M', 'NULL', 'F', 'jennifer58@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4837 Mohr Lane', 'NULL', '179-555-0118', '2013-04-15', '2-5 Miles'], ['19892', '358', 'AW00019892', 'NULL', 'Richard', 'A', 'Campbell', '0', '1957-11-20', 'M', 'NULL', 'M', 'richard35@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1349 Steven Way', 'NULL', '817-555-0174', '2013-04-28', '2-5 Miles'], ['19893', '627', 'AW00019893', 'NULL', 'Evan', 'E', 'Baker', '0', '1963-02-18', 'S', 'NULL', 'M', 'evan32@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '9896 Ida Ave', 'NULL', '665-555-0181', '2014-01-28', '10+ Miles'], ['19894', '609', 'AW00019894', 'NULL', 'Elijah', 'M', 'Sharma', '0', '1958-01-10', 'S', 'NULL', 'M', 'elijah4@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8561 Hilltop Road', 'NULL', '783-555-0176', '2013-05-30', '10+ Miles'], ['19895', '301', 'AW00019895', 'NULL', 'Ricky', 'J', 'Jimenez', '0', '1963-02-19', 'M', 'NULL', 'M', 'ricky5@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8211 Fremont Street', 'NULL', '291-555-0134', '2014-01-14', '10+ Miles'], ['19896', '546', 'AW00019896', 'NULL', 'Kaitlyn', 'NULL', 'Thomas', '0', '1963-02-12', 'M', 'NULL', 'F', 'kaitlyn33@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8914 Amador Ct.', 'NULL', '364-555-0125', '2013-03-28', '10+ Miles'], ['19897', '361', 'AW00019897', 'NULL', 'Gabriella', 'O', 'Nelson', '0', '1958-10-05', 'S', 'NULL', 'F', 'gabriella32@adventure-works.com', '70000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6671 Santa Barbara', 'NULL', '183-555-0176', '2013-11-19', '10+ Miles'], ['19898', '177', 'AW00019898', 'NULL', 'Desiree', 'NULL', 'Serrano', '0', '1963-11-07', 'S', 'NULL', 'F', 'desiree13@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', 'Klara Straße 844', 'NULL', '1 (11) 500 555-0168', '2013-12-20', '0-1 Miles'], ['19899', '223', 'AW00019899', 'NULL', 'Marcus', 'L', 'Richardson', '0', '1973-09-12', 'M', 'NULL', 'M', 'marcus85@adventure-works.com', '110000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '33, quai de l´ Iton', 'NULL', '1 (11) 500 555-0140', '2012-12-21', '5-10 Miles'], ['19900', '155', 'AW00019900', 'NULL', 'Zoe', 'NULL', 'Richardson', '0', '1962-08-08', 'M', 'NULL', 'F', 'zoe8@adventure-works.com', '120000.00', '2', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Heideweg 1459', 'NULL', '1 (11) 500 555-0181', '2013-08-27', '5-10 Miles'], ['19901', '178', 'AW00019901', 'NULL', 'Ronald', 'A', 'Sara', '0', '1968-10-19', 'M', 'NULL', 'M', 'ronald12@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', 'Königstr 486', 'NULL', '1 (11) 500 555-0154', '2011-12-13', '5-10 Miles'], ['19902', '208', 'AW00019902', 'NULL', 'Johnny', 'NULL', 'Pal', '0', '1962-03-12', 'M', 'NULL', 'M', 'johnny13@adventure-works.com', '100000.00', '2', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '67, avenue de Villiers', 'NULL', '1 (11) 500 555-0174', '2012-12-18', '5-10 Miles'], ['19903', '184', 'AW00019903', 'NULL', 'Marcus', 'N', 'Nelson', '0', '1962-06-03', 'S', 'NULL', 'M', 'marcus37@adventure-works.com', '100000.00', '2', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '5, rue des Bouchers', 'NULL', '1 (11) 500 555-0181', '2012-11-28', '5-10 Miles'], ['19904', '121', 'AW00019904', 'NULL', 'Jasmine', 'A', 'Gray', '0', '1961-09-11', 'M', 'NULL', 'F', 'jasmine34@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Erftplatz 990', 'NULL', '1 (11) 500 555-0129', '2011-12-17', '5-10 Miles'], ['19905', '275', 'AW00019905', 'NULL', 'Chelsea', 'J', 'Fernandez', '0', '1967-10-18', 'S', 'NULL', 'F', 'chelsea17@adventure-works.com', '170000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '662 T St.', 'NULL', '1 (11) 500 555-0120', '2013-11-01', '0-1 Miles'], ['19906', '277', 'AW00019906', 'NULL', 'Armando', 'E', 'Muñoz', '0', '1961-10-31', 'M', 'NULL', 'M', 'armando7@adventure-works.com', '170000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '7072 Meadow Lane', 'NULL', '1 (11) 500 555-0129', '2013-08-09', '0-1 Miles'], ['19907', '222', 'AW00019907', 'NULL', 'Bruce', 'L', 'Diaz', '0', '1961-04-03', 'M', 'NULL', 'M', 'bruce25@adventure-works.com', '100000.00', '2', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '461, boulevard Beau Marchais', 'NULL', '1 (11) 500 555-0143', '2013-10-04', '10+ Miles'], ['19908', '200', 'AW00019908', 'NULL', 'Pamela', 'J', 'Prasad', '0', '1961-01-04', 'S', 'NULL', 'F', 'pamela12@adventure-works.com', '100000.00', '2', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '870, rue de Fontfroide', 'NULL', '1 (11) 500 555-0149', '2013-12-24', '10+ Miles'], ['19909', '143', 'AW00019909', 'NULL', 'Geoffrey', 'M', 'Chandra', '0', '1960-09-05', 'M', 'NULL', 'M', 'geoffrey2@adventure-works.com', '110000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Galeriestr 6816', 'NULL', '1 (11) 500 555-0158', '2013-05-30', '10+ Miles'], ['19910', '162', 'AW00019910', 'NULL', 'Orlando', 'NULL', 'Rubio', '0', '1960-12-01', 'M', 'NULL', 'M', 'orlando21@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', 'Viktoria-Luise-Platz 464', 'NULL', '1 (11) 500 555-0159', '2012-01-16', '5-10 Miles'], ['19911', '250', 'AW00019911', 'NULL', 'Valerie', 'NULL', 'Chen', '0', '1961-01-15', 'S', 'NULL', 'F', 'valerie3@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '1739 Sun View Terr', 'NULL', '1 (11) 500 555-0121', '2012-11-10', '0-1 Miles'], ['19912', '261', 'AW00019912', 'NULL', 'Tara', 'NULL', 'Xie', '0', '1977-05-24', 'M', 'NULL', 'F', 'tara3@adventure-works.com', '160000.00', '2', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '6512 Cypress Ave', 'NULL', '1 (11) 500 555-0133', '2012-11-17', '0-1 Miles'], ['19913', '220', 'AW00019913', 'NULL', 'Jennifer', 'M', 'Perez', '0', '1949-12-03', 'M', 'NULL', 'F', 'jennifer14@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '210, rue Maillard', 'NULL', '1 (11) 500 555-0187', '2013-02-25', '2-5 Miles'], ['19914', '188', 'AW00019914', 'NULL', 'Willie', 'NULL', 'Ma', '0', '1949-10-25', 'M', 'NULL', 'M', 'willie14@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '24, place de Brazaville', 'NULL', '1 (11) 500 555-0122', '2013-06-14', '2-5 Miles'], ['19915', '149', 'AW00019915', 'NULL', 'Claudia', 'NULL', 'McDonald', '0', '1950-03-20', 'M', 'NULL', 'F', 'claudia10@adventure-works.com', '100000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', 'Altendorfer Straße 99', 'NULL', '1 (11) 500 555-0123', '2014-01-17', '2-5 Miles'], ['19916', '273', 'AW00019916', 'NULL', 'Katie', 'C', 'Xie', '0', '1950-06-05', 'M', 'NULL', 'F', 'katie6@adventure-works.com', '170000.00', '3', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2614 Park Glen Ct.', 'NULL', '1 (11) 500 555-0145', '2012-12-09', '0-1 Miles'], ['19917', '275', 'AW00019917', 'NULL', 'Jenny', 'A', 'Chander', '0', '1955-02-04', 'M', 'NULL', 'F', 'jenny38@adventure-works.com', '170000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '6177 Ana Mile', 'NULL', '1 (11) 500 555-0142', '2012-12-04', '0-1 Miles'], ['19918', '277', 'AW00019918', 'NULL', 'Joy', 'A', 'Alonso', '0', '1949-10-17', 'M', 'NULL', 'F', 'joy9@adventure-works.com', '170000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '1697 Charlotte Court', 'NULL', '1 (11) 500 555-0129', '2012-12-05', '0-1 Miles'], ['19919', '265', 'AW00019919', 'NULL', 'Rebekah', 'J', 'Johnsen', '0', '1956-07-17', 'M', 'NULL', 'F', 'rebekah25@adventure-works.com', '150000.00', '3', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', 'Welt Platz 9', 'NULL', '1 (11) 500 555-0126', '2013-05-13', '0-1 Miles'], ['19920', '194', 'AW00019920', 'NULL', 'Meredith', 'S', 'Sanchez', '0', '1951-10-07', 'S', 'NULL', 'F', 'meredith20@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '60, rue Lauriston', 'NULL', '1 (11) 500 555-0188', '2013-02-19', '10+ Miles'], ['19921', '150', 'AW00019921', 'NULL', 'Cara', 'L', 'Cai', '0', '1957-02-01', 'S', 'NULL', 'F', 'cara17@adventure-works.com', '110000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', 'Postfach 66 07 00', 'NULL', '1 (11) 500 555-0110', '2013-04-13', '10+ Miles'], ['19922', '215', 'AW00019922', 'NULL', 'Nancy', 'R', 'Gonzalez', '0', '1960-04-23', 'S', 'NULL', 'F', 'nancy22@adventure-works.com', '90000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '6, rue Lafayette', 'NULL', '1 (11) 500 555-0157', '2012-12-13', '10+ Miles'], ['19923', '202', 'AW00019923', 'NULL', 'Joe', 'A', 'Prasad', '0', '1960-05-02', 'M', 'NULL', 'M', 'joe12@adventure-works.com', '100000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '440, rue de Linois', 'NULL', '1 (11) 500 555-0143', '2013-04-30', '10+ Miles'], ['19924', '121', 'AW00019924', 'NULL', 'Douglas', 'NULL', 'Perez', '0', '1965-04-16', 'M', 'NULL', 'M', 'douglas25@adventure-works.com', '120000.00', '2', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Wasserstr 25', 'NULL', '1 (11) 500 555-0147', '2012-01-08', '5-10 Miles'], ['19925', '133', 'AW00019925', 'NULL', 'Madison', 'A', 'Jenkins', '0', '1960-05-13', 'M', 'NULL', 'F', 'madison42@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Hauptstr 2929', 'NULL', '1 (11) 500 555-0184', '2013-07-08', '0-1 Miles'], ['19926', '236', 'AW00019926', 'NULL', 'Alexandria', 'NULL', 'Diaz', '0', '1959-11-03', 'M', 'NULL', 'F', 'alexandria22@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '873 South Ranchford Ct', 'NULL', '1 (11) 500 555-0141', '2013-04-06', '5-10 Miles'], ['19927', '270', 'AW00019927', 'NULL', 'Ruben', 'NULL', 'Fernandez', '0', '1960-01-23', 'M', 'NULL', 'M', 'ruben17@adventure-works.com', '170000.00', '5', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '989 Caravelle Ct', 'NULL', '1 (11) 500 555-0166', '2013-07-29', '0-1 Miles'], ['19928', '273', 'AW00019928', 'NULL', 'Jaime', 'C', 'Sanz', '0', '1965-05-31', 'M', 'NULL', 'F', 'jaime22@adventure-works.com', '170000.00', '0', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '2298 Pinto Rd', 'NULL', '1 (11) 500 555-0161', '2013-05-03', '0-1 Miles'], ['19929', '211', 'AW00019929', 'NULL', 'Dale', 'NULL', 'Chander', '0', '1964-09-12', 'M', 'NULL', 'M', 'dale13@adventure-works.com', '100000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '5662 Leland Way', 'NULL', '1 (11) 500 555-0197', '2013-03-30', '10+ Miles'], ['19930', '149', 'AW00019930', 'NULL', 'Tony', 'C', 'Tang', '0', '1959-02-03', 'M', 'NULL', 'M', 'tony7@adventure-works.com', '110000.00', '2', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Kurfürstenstr 5234', 'NULL', '1 (11) 500 555-0117', '2011-12-29', '10+ Miles'], ['19931', '135', 'AW00019931', 'NULL', 'Darryl', 'NULL', 'Xu', '0', '1964-11-18', 'M', 'NULL', 'M', 'darryl12@adventure-works.com', '120000.00', '2', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', 'Krönerweg 6666', 'NULL', '1 (11) 500 555-0190', '2012-01-07', '10+ Miles'], ['19932', '203', 'AW00019932', 'NULL', 'Javier', 'E', 'Sanz', '0', '1969-01-18', 'S', 'NULL', 'M', 'javier13@adventure-works.com', '80000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '22, rue Saint Denis', 'NULL', '1 (11) 500 555-0114', '2014-01-14', '10+ Miles'], ['19933', '235', 'AW00019933', 'NULL', 'Nichole', 'NULL', 'Deng', '0', '1963-02-12', 'M', 'NULL', 'F', 'nichole1@adventure-works.com', '120000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '8914 Amador Ct.', 'NULL', '1 (11) 500 555-0124', '2013-03-24', '10+ Miles'], ['19934', '165', 'AW00019934', 'NULL', 'Neil', 'NULL', 'Blanco', '0', '1956-12-24', 'M', 'NULL', 'M', 'neil14@adventure-works.com', '80000.00', '5', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Curieweg 3997', 'NULL', '1 (11) 500 555-0121', '2013-05-14', '10+ Miles'], ['19935', '173', 'AW00019935', 'NULL', 'Clinton', 'NULL', 'Navarro', '0', '1957-06-20', 'M', 'NULL', 'M', 'clinton7@adventure-works.com', '100000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Auf dem Ufer 764', 'NULL', '1 (11) 500 555-0176', '2013-08-17', '10+ Miles'], ['19936', '155', 'AW00019936', 'NULL', 'Corey', 'NULL', 'Luo', '0', '1961-09-08', 'M', 'NULL', 'M', 'corey5@adventure-works.com', '100000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '4', 'Auf Der Steige 1010', 'NULL', '1 (11) 500 555-0133', '2013-12-27', '10+ Miles'], ['19937', '133', 'AW00019937', 'NULL', 'Jimmy', 'NULL', 'Gomez', '0', '1956-06-18', 'S', 'NULL', 'M', 'jimmy3@adventure-works.com', '100000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '4', 'Postfach 20 99 99', 'NULL', '1 (11) 500 555-0143', '2014-01-04', '10+ Miles'], ['19938', '253', 'AW00019938', 'NULL', 'Chelsea', 'P', 'Patel', '0', '1956-01-24', 'M', 'NULL', 'F', 'chelsea3@adventure-works.com', '150000.00', '4', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '6102 Lakeview Place', 'NULL', '1 (11) 500 555-0139', '2013-09-13', '10+ Miles'], ['19939', '269', 'AW00019939', 'NULL', 'Alvin', 'NULL', 'Wang', '0', '1956-02-02', 'M', 'NULL', 'M', 'alvin2@adventure-works.com', '160000.00', '2', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', '658 Pecan Street', 'NULL', '1 (11) 500 555-0112', '2013-12-09', '10+ Miles'], ['19940', '254', 'AW00019940', 'NULL', 'Rosa', 'C', 'Ye', '0', '1971-02-08', 'M', 'NULL', 'F', 'rosa10@adventure-works.com', '160000.00', '3', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '4', '7638 Diokmo Ct.', 'NULL', '1 (11) 500 555-0181', '2012-11-29', '10+ Miles'], ['19941', '256', 'AW00019941', 'NULL', 'Cedric', 'R', 'Liang', '0', '1954-09-08', 'S', 'NULL', 'M', 'cedric16@adventure-works.com', '160000.00', '3', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '2023 Flame Drive', 'NULL', '1 (11) 500 555-0192', '2011-01-12', '0-1 Miles'], ['19942', '264', 'AW00019942', 'NULL', 'Armando', 'NULL', 'Navarro', '0', '1960-08-04', 'S', 'NULL', 'M', 'armando10@adventure-works.com', '170000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '4', '6957 Olivewood Ct.', 'NULL', '1 (11) 500 555-0159', '2011-01-25', '0-1 Miles'], ['19943', '193', 'AW00019943', 'NULL', 'Walter', 'NULL', 'Carlson', '0', '1953-08-26', 'M', 'NULL', 'M', 'walter11@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '3', '5, rue de la Cavalerie', 'NULL', '1 (11) 500 555-0143', '2012-12-25', '5-10 Miles'], ['19944', '156', 'AW00019944', 'NULL', 'Jonathon', 'P', 'Suarez', '0', '1954-02-07', 'M', 'NULL', 'M', 'jonathon15@adventure-works.com', '90000.00', '4', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '4', 'Dunckerstr 135', 'NULL', '1 (11) 500 555-0175', '2012-02-22', '5-10 Miles'], ['19945', '225', 'AW00019945', 'NULL', 'Phillip', 'P', 'Garcia', '0', '1952-12-19', 'M', 'NULL', 'M', 'phillip16@adventure-works.com', '80000.00', '5', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '4', '48, rue des Berges', 'NULL', '1 (11) 500 555-0199', '2012-11-29', '5-10 Miles'], ['19946', '243', 'AW00019946', 'NULL', 'Tamara', 'J', 'Raje', '0', '1952-12-06', 'S', 'NULL', 'F', 'tamara25@adventure-works.com', '120000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '1682 Klier Drive', 'NULL', '1 (11) 500 555-0142', '2013-04-15', '10+ Miles'], ['19947', '39', 'AW00019947', 'NULL', 'Darryl', 'NULL', 'Liu', '0', '1986-05-22', 'S', 'NULL', 'M', 'darryl4@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '4404 Mildred Avenue', 'NULL', '1 (11) 500 555-0157', '2011-09-16', '5-10 Miles'], ['19948', '35', 'AW00019948', 'NULL', 'Lacey', 'NULL', 'Hu', '0', '1981-04-20', 'S', 'NULL', 'F', 'lacey33@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '5914 Overhill Rd', 'NULL', '1 (11) 500 555-0178', '2011-09-12', '10+ Miles'], ['19949', '11', 'AW00019949', 'NULL', 'Niñia', 'L', 'Anand', '0', '1982-06-25', 'M', 'NULL', 'F', 'niñia0@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '2151 Twincreek Ct', 'NULL', '1 (11) 500 555-0116', '2011-09-27', '10+ Miles'], ['19950', '30', 'AW00019950', 'NULL', 'Ronnie', 'NULL', 'Lu', '0', '1981-07-10', 'M', 'NULL', 'M', 'ronnie9@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '1887 Mt. Diablo St', 'NULL', '1 (11) 500 555-0113', '2011-09-13', '10+ Miles'], ['19951', '24', 'AW00019951', 'NULL', 'Roy', 'J', 'Moreno', '0', '1982-01-23', 'S', 'NULL', 'M', 'roy27@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '6500 Soto Street', 'NULL', '1 (11) 500 555-0187', '2011-09-03', '10+ Miles'], ['19952', '38', 'AW00019952', 'NULL', 'Adrienne', 'NULL', 'Martin', '0', '1980-09-24', 'S', 'NULL', 'F', 'adrienne0@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '5188 Duke Way', 'NULL', '1 (11) 500 555-0124', '2013-03-06', '10+ Miles'], ['19953', '37', 'AW00019953', 'NULL', 'Darrell', 'NULL', 'Lal', '0', '1979-08-23', 'S', 'NULL', 'M', 'darrell17@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '8790 N. 108th St.', 'NULL', '1 (11) 500 555-0114', '2013-05-14', '10+ Miles'], ['19954', '34', 'AW00019954', 'NULL', 'Jose', 'NULL', 'Carlson', '0', '1980-01-31', 'M', 'NULL', 'M', 'jose36@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '9782 Joan Ave.', 'NULL', '1 (11) 500 555-0150', '2013-02-07', '10+ Miles'], ['19955', '34', 'AW00019955', 'NULL', 'Jake', 'A', 'Gao', '0', '1984-05-08', 'S', 'NULL', 'M', 'jake13@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '7348 Quail Court', 'NULL', '1 (11) 500 555-0179', '2013-06-22', '10+ Miles'], ['19956', '40', 'AW00019956', 'NULL', 'Susan', 'NULL', 'She', '0', '1984-12-20', 'M', 'NULL', 'F', 'susan34@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '3962 Cambelback Place', 'NULL', '1 (11) 500 555-0125', '2011-09-26', '10+ Miles'], ['19957', '21', 'AW00019957', 'NULL', 'Arthur', 'A', 'Mehta', '0', '1979-09-16', 'S', 'NULL', 'M', 'arthur16@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '8586 D Kiska Ct.', 'NULL', '1 (11) 500 555-0197', '2011-09-11', '10+ Miles'], ['19958', '18', 'AW00019958', 'NULL', 'Erika', 'NULL', 'Romero', '0', '1984-12-02', 'M', 'NULL', 'F', 'erika6@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '5430 Park Glen Ct.', 'NULL', '1 (11) 500 555-0149', '2011-09-14', '10+ Miles'], ['19959', '40', 'AW00019959', 'NULL', 'Tabitha', 'NULL', 'Moreno', '0', '1984-03-07', 'S', 'NULL', 'F', 'tabitha26@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '2', '1028 Indigo Ct.', 'NULL', '1 (11) 500 555-0192', '2011-09-25', '10+ Miles'], ['19960', '38', 'AW00019960', 'Mr.', 'Phil', 'NULL', 'Spencer', '0', '1978-08-02', 'M', 'NULL', 'M', 'phil0@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '2', '9208 West Rd', 'NULL', '161-555-0100', '2011-09-21', '10+ Miles'], ['19961', '2', 'AW00019961', 'NULL', 'Kristin', 'L', 'She', '0', '1977-08-04', 'M', 'NULL', 'F', 'kristin2@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '4242 Coggins Dr.', 'NULL', '1 (11) 500 555-0121', '2013-04-27', '10+ Miles'], ['19962', '22', 'AW00019962', 'NULL', 'Dominic', 'D', 'Prasad', '0', '1979-04-07', 'M', 'NULL', 'M', 'dominic9@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', '7962 Macaroon Drive', 'NULL', '1 (11) 500 555-0171', '2013-04-22', '10+ Miles'], ['19963', '13', 'AW00019963', 'NULL', 'Geoffrey', 'NULL', 'Fernandez', '0', '1979-05-20', 'M', 'NULL', 'M', 'geoffrey13@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '6819 Krueger Drive', 'NULL', '1 (11) 500 555-0123', '2011-09-17', '10+ Miles'], ['19964', '29', 'AW00019964', 'NULL', 'Gloria', 'S', 'Alonso', '0', '1978-12-09', 'S', 'NULL', 'F', 'gloria8@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '3318 N. 8th St.', 'NULL', '1 (11) 500 555-0146', '2011-09-06', '10+ Miles'], ['19965', '39', 'AW00019965', 'NULL', 'Jay', 'A', 'Lopez', '0', '1979-05-13', 'M', 'NULL', 'M', 'jay23@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '2842 Inverness Drive', 'NULL', '1 (11) 500 555-0154', '2011-09-21', '0-1 Miles'], ['19966', '19', 'AW00019966', 'NULL', 'Abby', 'J', 'Sanchez', '0', '1983-07-20', 'M', 'NULL', 'F', 'abby17@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '347 San Simeon Dr.', 'NULL', '1 (11) 500 555-0118', '2011-09-23', '10+ Miles'], ['19967', '18', 'AW00019967', 'NULL', 'Devon', 'H', 'Deng', '0', '1983-10-29', 'S', 'NULL', 'M', 'devon0@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '4587 Sunset Meadows', 'NULL', '1 (11) 500 555-0172', '2011-09-01', '10+ Miles'], ['19968', '9', 'AW00019968', 'NULL', 'Katrina', 'L', 'Chande', '0', '1983-07-25', 'M', 'NULL', 'F', 'katrina13@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '3', '7834 Roux Court', 'NULL', '1 (11) 500 555-0139', '2011-10-07', '10+ Miles'], ['19969', '29', 'AW00019969', 'NULL', 'Jake', 'P', 'Guo', '0', '1982-03-21', 'S', 'NULL', 'M', 'jake15@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '9605 Pheasant Circle', 'NULL', '1 (11) 500 555-0194', '2013-01-30', '10+ Miles'], ['19970', '27', 'AW00019970', 'NULL', 'Tanya', 'D', 'Jimenez', '0', '1978-05-08', 'S', 'NULL', 'F', 'tanya1@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '6793 Almond Street', 'NULL', '1 (11) 500 555-0157', '2011-10-19', '0-1 Miles'], ['19971', '6', 'AW00019971', 'NULL', 'Jeffery', 'B', 'Lu', '0', '1977-01-01', 'S', 'NULL', 'M', 'jeffery12@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '9644 55th St.', 'NULL', '1 (11) 500 555-0113', '2011-10-28', '10+ Miles'], ['19972', '33', 'AW00019972', 'NULL', 'Lindsay', 'R', 'Chander', '0', '1982-11-13', 'M', 'NULL', 'F', 'lindsay16@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '4463 Temple Court', 'NULL', '1 (11) 500 555-0119', '2013-07-30', '10+ Miles'], ['19973', '16', 'AW00019973', 'NULL', 'Colin', 'NULL', 'Zhu', '0', '1981-10-11', 'M', 'NULL', 'M', 'colin15@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '3788 Bahia Vista Court', 'NULL', '1 (11) 500 555-0114', '2013-03-25', '10+ Miles'], ['19974', '18', 'AW00019974', 'NULL', 'George', 'NULL', 'Fernandez', '0', '1976-02-10', 'M', 'NULL', 'M', 'george22@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '4363 Galindo Street', 'NULL', '1 (11) 500 555-0146', '2011-10-19', '10+ Miles'], ['19975', '25', 'AW00019975', 'NULL', 'Brittney', 'W', 'Zhang', '0', '1976-03-15', 'S', 'NULL', 'F', 'brittney0@adventure-works.com', '100000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '6514 Morello Ave.', 'NULL', '1 (11) 500 555-0164', '2011-10-09', '10+ Miles'], ['19976', '22', 'AW00019976', 'NULL', 'Tamara', 'L', 'Sun', '0', '1975-10-05', 'M', 'NULL', 'F', 'tamara2@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '8333 Polk Street', 'NULL', '1 (11) 500 555-0148', '2013-05-26', '10+ Miles'], ['19977', '29', 'AW00019977', 'NULL', 'Kristine', 'NULL', 'Gill', '0', '1976-04-08', 'S', 'NULL', 'F', 'kristine14@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '1833 Worth Ct', 'NULL', '1 (11) 500 555-0127', '2011-10-24', '10+ Miles'], ['19978', '39', 'AW00019978', 'NULL', 'Marshall', 'P', 'Yuan', '0', '1976-10-25', 'M', 'NULL', 'M', 'marshall28@adventure-works.com', '110000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '8577 Dies Dorados', 'NULL', '1 (11) 500 555-0177', '2011-10-18', '10+ Miles'], ['19979', '36', 'AW00019979', 'NULL', 'Janet', 'NULL', 'Browning', '0', '1977-06-22', 'M', 'NULL', 'F', 'janet21@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Management', 'Gestión', 'Direction', '1', '4', '209 Richland Dr.', 'NULL', '1 (11) 500 555-0152', '2011-10-20', '10+ Miles'], ['19980', '623', 'AW00019980', 'NULL', 'Alexandra', 'E', 'Carter', '0', '1970-01-31', 'M', 'NULL', 'F', 'alexandra52@adventure-works.com', '90000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '4212, rue Saint-Lazare', 'NULL', '894-555-0115', '2014-01-16', '2-5 Miles'], ['19981', '315', 'AW00019981', 'NULL', 'Kelly', 'E', 'Russell', '0', '1977-09-15', 'M', 'NULL', 'F', 'kelly24@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '319 Revision Dr', 'NULL', '640-555-0129', '2013-04-04', '0-1 Miles'], ['19982', '338', 'AW00019982', 'NULL', 'Charles', 'K', 'Cox', '0', '1977-07-21', 'S', 'NULL', 'M', 'charles59@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4480 Las Trampas Road', 'NULL', '862-555-0121', '2013-11-11', '2-5 Miles'], ['19983', '298', 'AW00019983', 'NULL', 'Michael', 'B', 'Martinez', '0', '1975-11-17', 'M', 'NULL', 'M', 'michael49@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6202 Seeno St.', 'NULL', '596-555-0158', '2013-04-22', '2-5 Miles'], ['19984', '316', 'AW00019984', 'NULL', 'Sara', 'NULL', 'Morris', '0', '1975-12-05', 'M', 'NULL', 'F', 'sara20@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4365 Brook Way', 'NULL', '813-555-0119', '2013-04-26', '2-5 Miles'], ['19985', '611', 'AW00019985', 'NULL', 'Tamara', 'NULL', 'Ma', '0', '1975-03-24', 'S', 'NULL', 'F', 'tamara5@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '515 Wiget Lane', 'NULL', '837-555-0130', '2013-04-08', '2-5 Miles'], ['19986', '310', 'AW00019986', 'NULL', 'Jamie', 'NULL', 'Huang', '0', '1980-07-09', 'S', 'NULL', 'F', 'jamie8@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '312 Via Del Verdes', 'NULL', '410-555-0145', '2013-04-02', '2-5 Miles'], ['19987', '55', 'AW00019987', 'NULL', 'Taylor', 'A', 'Moore', '0', '1977-01-15', 'S', 'NULL', 'F', 'taylor55@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9117 Jacqueline Way', 'NULL', '161-555-0178', '2011-07-06', '2-5 Miles'], ['19988', '66', 'AW00019988', 'NULL', 'Jordan', 'NULL', 'Long', '0', '1982-04-06', 'M', 'NULL', 'M', 'jordan6@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3733 Water Street', 'NULL', '445-555-0153', '2011-08-06', '2-5 Miles'], ['19989', '68', 'AW00019989', 'NULL', 'Ethan', 'NULL', 'Thompson', '0', '1982-01-09', 'M', 'NULL', 'M', 'ethan49@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8452 Green Street', 'NULL', '450-555-0194', '2011-08-22', '2-5 Miles'], ['19990', '301', 'AW00019990', 'NULL', 'Peter', 'NULL', 'Rai', '0', '1977-02-04', 'M', 'NULL', 'M', 'peter22@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8680 Newell Ave.', 'NULL', '823-555-0135', '2013-11-11', '0-1 Miles'], ['19991', '307', 'AW00019991', 'NULL', 'Jacob', 'C', 'Thomas', '0', '1982-10-14', 'M', 'NULL', 'M', 'jacob10@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1792 Belmont Rd.', 'NULL', '297-555-0139', '2013-11-15', '0-1 Miles'], ['19992', '345', 'AW00019992', 'NULL', 'Stephanie', 'M', 'Hill', '0', '1976-11-30', 'M', 'NULL', 'F', 'stephanie66@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6309 Poplar Avenue', 'NULL', '163-555-0162', '2013-11-22', '0-1 Miles'], ['19993', '623', 'AW00019993', 'NULL', 'Nathan', 'NULL', 'Russell', '0', '1975-05-20', 'M', 'NULL', 'M', 'nathan16@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4975 Black Pine Lane', 'NULL', '795-555-0137', '2013-04-06', '0-1 Miles'], ['19994', '347', 'AW00019994', 'NULL', 'Madeline', 'B', 'King', '0', '1979-10-19', 'S', 'NULL', 'F', 'madeline17@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1087 Knollview Court', 'NULL', '252-555-0155', '2013-11-01', '2-5 Miles'], ['19995', '355', 'AW00019995', 'NULL', 'Jordyn', 'NULL', 'Gonzales', '0', '1973-10-07', 'M', 'NULL', 'F', 'jordyn16@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2943 Hilton Way', 'NULL', '828-555-0137', '2013-11-21', '2-5 Miles'], ['19996', '612', 'AW00019996', 'NULL', 'Grant', 'E', 'She', '0', '1979-05-10', 'S', 'NULL', 'M', 'grant2@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '5234 Martindale', 'NULL', '588-555-0164', '2013-09-17', '0-1 Miles'], ['19997', '49', 'AW00019997', 'NULL', 'Beth', 'NULL', 'Gill', '0', '1973-12-04', 'M', 'NULL', 'F', 'beth16@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9326 Mayda Way', 'NULL', '938-555-0177', '2011-08-12', '0-1 Miles'], ['19998', '310', 'AW00019998', 'NULL', 'Laura', 'NULL', 'Liu', '0', '1978-10-01', 'S', 'NULL', 'F', 'laura11@adventure-works.com', '40000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '5840 Delta Fair Blvd.', 'NULL', '121-555-0179', '2013-04-04', '10+ Miles'], ['19999', '331', 'AW00019999', 'NULL', 'Danielle', 'NULL', 'Brooks', '0', '1972-07-15', 'S', 'NULL', 'F', 'danielle4@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '71 Tobi Drive', '# 778', '990-555-0144', '2013-04-01', '2-5 Miles'], ['20000', '50', 'AW00020000', 'NULL', 'Elijah', 'NULL', 'Diaz', '0', '1981-10-19', 'M', 'NULL', 'M', 'elijah23@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3128 Morgan Territory Rd', 'NULL', '200-555-0143', '2011-09-19', '0-1 Miles'], ['20001', '627', 'AW00020001', 'NULL', 'Jordan', 'A', 'Hill', '0', '1975-07-05', 'S', 'NULL', 'F', 'jordan41@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '404 Marita Drive', 'NULL', '718-555-0140', '2013-04-24', '2-5 Miles'], ['20002', '299', 'AW00020002', 'NULL', 'Elizabeth', 'A', 'White', '0', '1975-11-03', 'M', 'NULL', 'F', 'elizabeth16@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5243 Brown St.', 'NULL', '307-555-0183', '2013-12-09', '0-1 Miles'], ['20003', '300', 'AW00020003', 'NULL', 'Dalton', 'E', 'Gonzalez', '0', '1975-12-19', 'S', 'NULL', 'M', 'dalton33@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4028 Rosina Court', 'NULL', '524-555-0113', '2013-12-15', '2-5 Miles'], ['20004', '311', 'AW00020004', 'NULL', 'Kaitlin', 'NULL', 'Perez', '0', '1976-05-06', 'M', 'NULL', 'F', 'kaitlin20@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '712 Sweetwater Drive', 'NULL', '333-555-0179', '2013-12-10', '0-1 Miles'], ['20005', '315', 'AW00020005', 'NULL', 'Kevin', 'V', 'Zhang', '0', '1973-04-14', 'S', 'NULL', 'M', 'kevin26@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3592 Ambush Dr.', 'NULL', '163-555-0159', '2013-05-16', '2-5 Miles'], ['20006', '553', 'AW00020006', 'NULL', 'Grace', 'A', 'Morris', '0', '1973-01-04', 'S', 'NULL', 'F', 'grace27@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8122 Cincerto Circle', 'NULL', '756-555-0138', '2013-05-29', '2-5 Miles'], ['20007', '71', 'AW00020007', 'NULL', 'Ashley', 'J', 'Alexander', '0', '1973-03-02', 'S', 'NULL', 'F', 'ashley46@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '5884 Maureen Circle', 'NULL', '432-555-0113', '2011-10-09', '0-1 Miles'], ['20008', '343', 'AW00020008', 'NULL', 'Jack', 'NULL', 'Foster', '0', '1977-08-30', 'M', 'NULL', 'M', 'jack16@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9677 Elkwood Dr', 'NULL', '208-555-0143', '2013-10-17', '2-5 Miles'], ['20009', '383', 'AW00020009', 'NULL', 'Noah', 'E', 'Walker', '0', '1972-01-31', 'S', 'NULL', 'M', 'noah70@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3111 First Ave.', 'NULL', '736-555-0115', '2013-05-07', '2-5 Miles'], ['20010', '359', 'AW00020010', 'NULL', 'Jackson', 'S', 'Carter', '0', '1983-06-11', 'M', 'NULL', 'M', 'jackson40@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1233 Wesley Ct.', 'NULL', '433-555-0112', '2013-09-23', '2-5 Miles'], ['20011', '542', 'AW00020011', 'NULL', 'Eduardo', 'NULL', 'Sanders', '0', '1971-08-30', 'M', 'NULL', 'M', 'eduardo70@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8162 Olympic Dr.', 'NULL', '990-555-0162', '2013-12-23', '2-5 Miles'], ['20012', '298', 'AW00020012', 'NULL', 'Jessica', 'NULL', 'Robinson', '0', '1977-10-08', 'M', 'NULL', 'F', 'jessica66@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '359 Shepberry Court', 'NULL', '258-555-0137', '2013-12-08', '2-5 Miles'], ['20013', '539', 'AW00020013', 'NULL', 'Jocelyn', 'S', 'Hughes', '0', '1974-08-31', 'S', 'NULL', 'F', 'jocelyn12@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5593 Falcon Place', 'NULL', '631-555-0137', '2013-12-23', '2-5 Miles'], ['20014', '307', 'AW00020014', 'NULL', 'Anne', 'NULL', 'Blanco', '0', '1980-03-03', 'M', 'NULL', 'F', 'anne17@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '2', '8192 Pine Creek Way', 'NULL', '126-555-0117', '2013-03-28', '0-1 Miles'], ['20015', '334', 'AW00020015', 'NULL', 'Jenna', 'R', 'King', '0', '1975-05-20', 'M', 'NULL', 'F', 'jenna18@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8055 Shadow Falls Drive', 'NULL', '955-555-0135', '2013-12-15', '0-1 Miles'], ['20016', '552', 'AW00020016', 'NULL', 'Katherine', 'NULL', 'Kelly', '0', '1971-02-01', 'S', 'NULL', 'F', 'katherine23@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1747 Corte Segundo', 'NULL', '559-555-0188', '2013-08-11', '2-5 Miles'], ['20017', '322', 'AW00020017', 'NULL', 'Anna', 'E', 'Sanders', '0', '1976-10-11', 'S', 'NULL', 'F', 'anna24@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4191 Yosemite Dr', 'NULL', '623-555-0125', '2013-12-25', '2-5 Miles'], ['20018', '635', 'AW00020018', 'NULL', 'Lauren', 'NULL', 'Gray', '0', '1970-08-13', 'M', 'NULL', 'F', 'lauren16@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1285 Greenbrier Street', 'NULL', '158-555-0155', '2013-06-15', '0-1 Miles'], ['20019', '626', 'AW00020019', 'NULL', 'Brittany', 'NULL', 'Diaz', '0', '1971-04-20', 'M', 'NULL', 'F', 'brittany20@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2973 Tanager Road', 'NULL', '753-555-0176', '2013-09-04', '2-5 Miles'], ['20020', '338', 'AW00020020', 'NULL', 'Jacqueline', 'K', 'Foster', '0', '1970-09-30', 'S', 'NULL', 'F', 'jacqueline17@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1859 St. George Dr', 'NULL', '349-555-0195', '2013-10-04', '0-1 Miles'], ['20021', '50', 'AW00020021', 'NULL', 'Alexander', 'I', 'Jones', '0', '1976-06-24', 'M', 'NULL', 'M', 'alexander5@adventure-works.com', '80000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5805 Nob Hill Drive', 'NULL', '172-555-0116', '2013-12-19', '2-5 Miles'], ['20022', '310', 'AW00020022', 'NULL', 'Arthur', 'NULL', 'Perry', '0', '1970-12-20', 'M', 'NULL', 'F', 'arthur1@adventure-works.com', '50000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8042 Placer Dr.', 'NULL', '623-555-0117', '2013-10-07', '2-5 Miles'], ['20023', '68', 'AW00020023', 'NULL', 'Edward', 'NULL', 'Hughes', '0', '1970-12-22', 'S', 'NULL', 'M', 'edward60@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1120 Jeff Ct.', 'NULL', '459-555-0138', '2011-11-11', '2-5 Miles'], ['20024', '335', 'AW00020024', 'NULL', 'Fernando', 'NULL', 'Miller', '0', '1970-05-10', 'S', 'NULL', 'M', 'fernando6@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9736 Montana', 'NULL', '666-555-0155', '2013-04-30', '2-5 Miles'], ['20025', '616', 'AW00020025', 'NULL', 'Bryce', 'O', 'Bell', '0', '1975-09-19', 'S', 'NULL', 'M', 'bryce13@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '475 Grant St.', 'NULL', '203-555-0116', '2013-11-10', '2-5 Miles'], ['20026', '648', 'AW00020026', 'NULL', 'Jasmine', 'NULL', 'Richardson', '0', '1970-01-21', 'S', 'NULL', 'F', 'jasmine29@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '8929 Dayton Court', 'NULL', '514-555-0131', '2013-05-20', '0-1 Miles'], ['20027', '325', 'AW00020027', 'NULL', 'Danielle', 'NULL', 'Murphy', '0', '1970-06-16', 'M', 'NULL', 'F', 'danielle17@adventure-works.com', '60000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '8766 Arthur Rd', 'NULL', '786-555-0110', '2013-11-02', '10+ Miles'], ['20028', '355', 'AW00020028', 'NULL', 'Angela', 'B', 'Flores', '0', '1970-05-06', 'S', 'NULL', 'F', 'angela15@adventure-works.com', '60000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '976, rue de Terre Neuve', 'NULL', '367-555-0172', '2013-05-28', '5-10 Miles'], ['20029', '338', 'AW00020029', 'NULL', 'Jan', 'M', 'Evans', '0', '1970-04-23', 'M', 'NULL', 'F', 'jan10@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7787 Olive St.', 'NULL', '163-555-0164', '2013-05-04', '2-5 Miles'], ['20030', '302', 'AW00020030', 'NULL', 'Alexander', 'E', 'Harris', '0', '1969-09-18', 'M', 'NULL', 'M', 'alexander17@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '175 Loeffler Lane', 'NULL', '612-555-0175', '2013-05-14', '0-1 Miles'], ['20031', '302', 'AW00020031', 'NULL', 'Devin', 'NULL', 'James', '0', '1969-11-08', 'S', 'NULL', 'M', 'devin61@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8794 Gumwood', 'NULL', '584-555-0185', '2013-05-11', '2-5 Miles'], ['20032', '642', 'AW00020032', 'NULL', 'Marcus', 'NULL', 'Walker', '0', '1975-03-08', 'S', 'NULL', 'M', 'marcus24@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8386 Candelero Place', 'NULL', '324-555-0182', '2013-05-27', '2-5 Miles'], ['20033', '369', 'AW00020033', 'NULL', 'Carlos', 'E', 'Turner', '0', '1980-04-12', 'M', 'NULL', 'M', 'carlos32@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '5741 Glen Wood Dr.', 'NULL', '213-555-0189', '2013-12-09', '0-1 Miles'], ['20034', '68', 'AW00020034', 'NULL', 'Wyatt', 'NULL', 'Turner', '0', '1974-04-23', 'S', 'NULL', 'M', 'wyatt43@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '2444 North Ranchford', 'NULL', '924-555-0116', '2011-11-15', '2-5 Miles'], ['20035', '49', 'AW00020035', 'NULL', 'Cesar', 'NULL', 'Fernandez', '0', '1974-02-25', 'M', 'NULL', 'M', 'cesar15@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '9699 Gilardy Drive', 'NULL', '677-555-0141', '2011-12-26', '2-5 Miles'], ['20036', '310', 'AW00020036', 'NULL', 'Kate', 'NULL', 'Tang', '0', '1979-10-01', 'M', 'NULL', 'F', 'kate3@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '6587 B Way', 'NULL', '219-555-0142', '2013-01-16', '2-5 Miles'], ['20037', '336', 'AW00020037', 'NULL', 'Alyssa', 'NULL', 'Sanchez', '0', '1973-09-07', 'S', 'NULL', 'F', 'alyssa25@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6110 Price Lane', 'NULL', '777-555-0117', '2013-01-27', '2-5 Miles'], ['20038', '348', 'AW00020038', 'NULL', 'Taylor', 'NULL', 'Price', '0', '1973-12-20', 'S', 'NULL', 'F', 'taylor25@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6871 Thornwood Dr.', 'NULL', '405-555-0128', '2012-12-31', '2-5 Miles'], ['20039', '638', 'AW00020039', 'NULL', 'Stephanie', 'C', 'Evans', '0', '1968-10-05', 'S', 'NULL', 'F', 'stephanie50@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '5513 Cortez', 'NULL', '378-555-0116', '2013-01-18', '0-1 Miles'], ['20040', '339', 'AW00020040', 'NULL', 'Victoria', 'C', 'Rivera', '0', '1968-12-20', 'S', 'NULL', 'F', 'victoria34@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '9130 San Ramon Road', 'NULL', '882-555-0153', '2013-05-11', '0-1 Miles'], ['20041', '212', 'AW00020041', 'NULL', 'Joe', 'E', 'Alvarez', '0', '1984-04-24', 'S', 'NULL', 'M', 'joe45@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '14, avenue Reille', 'NULL', '1 (11) 500 555-0182', '2013-04-24', '2-5 Miles'], ['20042', '268', 'AW00020042', 'NULL', 'Brad', 'D', 'Deng', '0', '1979-11-01', 'M', 'NULL', 'M', 'brad2@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2732 Frisbie Ct.', 'NULL', '1 (11) 500 555-0111', '2010-12-31', '1-2 Miles'], ['20043', '121', 'AW00020043', 'NULL', 'Brent', 'NULL', 'Zheng', '0', '1978-02-22', 'S', 'NULL', 'M', 'brent19@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Zollstr 28', 'NULL', '1 (11) 500 555-0114', '2013-12-25', '1-2 Miles'], ['20044', '207', 'AW00020044', 'NULL', 'Jillian', 'NULL', 'Rana', '0', '1978-10-23', 'S', 'NULL', 'F', 'jillian12@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '88, allée des Princes', 'NULL', '1 (11) 500 555-0151', '2013-06-11', '2-5 Miles'], ['20045', '206', 'AW00020045', 'NULL', 'Andres', 'NULL', 'Shen', '0', '1979-05-03', 'M', 'NULL', 'M', 'andres1@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '101, avenue de la Gare', 'NULL', '1 (11) 500 555-0189', '2013-04-03', '0-1 Miles'], ['20046', '179', 'AW00020046', 'NULL', 'Peter', 'D', 'She', '0', '1979-03-04', 'M', 'NULL', 'M', 'peter8@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '11, avenue de la Gare', 'NULL', '1 (11) 500 555-0113', '2013-05-29', '1-2 Miles'], ['20047', '219', 'AW00020047', 'NULL', 'Ronnie', 'NULL', 'Huang', '0', '1978-10-22', 'M', 'NULL', 'M', 'ronnie5@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Attaché de Presse', 'NULL', '1 (11) 500 555-0142', '2013-05-29', '1-2 Miles'], ['20048', '232', 'AW00020048', 'NULL', 'Virginia', 'NULL', 'Srini', '0', '1978-01-02', 'S', 'NULL', 'F', 'virginia10@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1926 Fish Dr.', 'NULL', '1 (11) 500 555-0121', '2011-02-02', '1-2 Miles'], ['20049', '272', 'AW00020049', 'NULL', 'Colleen', 'H', 'Chavez', '0', '1976-12-20', 'S', 'NULL', 'F', 'colleen38@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '6841 Curletto Dr.', 'NULL', '1 (11) 500 555-0147', '2011-02-05', '1-2 Miles'], ['20050', '216', 'AW00020050', 'NULL', 'Adriana', 'W', 'Prasad', '0', '1977-08-30', 'S', 'NULL', 'F', 'adriana10@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '879 Megan Dr', 'NULL', '1 (11) 500 555-0182', '2013-02-01', '2-5 Miles'], ['20051', '164', 'AW00020051', 'NULL', 'Linda', 'NULL', 'Dominguez', '0', '1983-10-16', 'S', 'NULL', 'F', 'linda28@adventure-works.com', '40000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Lindenalle 8473', 'NULL', '1 (11) 500 555-0140', '2012-02-13', '0-1 Miles'], ['20052', '233', 'AW00020052', 'NULL', 'Theodore', 'NULL', 'Ruiz', '0', '1977-07-14', 'S', 'NULL', 'M', 'theodore2@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1061 Carzino Ct', 'NULL', '1 (11) 500 555-0119', '2011-03-13', '1-2 Miles'], ['20053', '234', 'AW00020053', 'NULL', 'Jessie', 'E', 'Yang', '0', '1977-09-15', 'S', 'NULL', 'M', 'jessie10@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '319 Revision Dr', 'NULL', '1 (11) 500 555-0184', '2013-06-25', '0-1 Miles'], ['20054', '253', 'AW00020054', 'NULL', 'Clarence', 'G', 'Nara', '0', '1978-05-23', 'S', 'NULL', 'M', 'clarence31@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8539 Glaze Dr.', 'NULL', '1 (11) 500 555-0168', '2011-03-13', '1-2 Miles'], ['20055', '259', 'AW00020055', 'NULL', 'Ruben', 'A', 'Ruiz', '0', '1976-10-30', 'S', 'NULL', 'M', 'ruben25@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '8885 Alta Vista', 'NULL', '1 (11) 500 555-0182', '2013-06-26', '1-2 Miles'], ['20056', '124', 'AW00020056', 'NULL', 'Johnny', 'NULL', 'She', '0', '1977-05-22', 'S', 'NULL', 'M', 'johnny1@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Carlsplatz 3046', 'NULL', '1 (11) 500 555-0126', '2013-11-21', '0-1 Miles'], ['20057', '183', 'AW00020057', 'NULL', 'Ramon', 'D', 'Zhou', '0', '1976-07-14', 'S', 'NULL', 'M', 'ramon8@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '11, rue du Puits Dixme', 'NULL', '1 (11) 500 555-0164', '2013-09-10', '1-2 Miles'], ['20058', '240', 'AW00020058', 'NULL', 'Roger', 'E', 'Liu', '0', '1976-08-06', 'S', 'NULL', 'M', 'roger8@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '4201 San Carlos', 'NULL', '1 (11) 500 555-0112', '2013-05-31', '1-2 Miles'], ['20059', '220', 'AW00020059', 'NULL', 'Madison', 'NULL', 'Washington', '0', '1976-07-05', 'M', 'NULL', 'F', 'madison25@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '826, rue de Berri', 'NULL', '1 (11) 500 555-0184', '2013-07-15', '1-2 Miles'], ['20060', '267', 'AW00020060', 'NULL', 'Kayla', 'R', 'Jackson', '0', '1977-04-06', 'S', 'NULL', 'F', 'kayla12@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '4684 Frigate Ct.', 'NULL', '1 (11) 500 555-0148', '2011-03-21', '2-5 Miles'], ['20061', '198', 'AW00020061', 'NULL', 'Sharon', 'E', 'Nath', '0', '1977-03-26', 'S', 'NULL', 'F', 'sharon24@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '15, avenue Reille', 'NULL', '1 (11) 500 555-0146', '2013-07-24', '2-5 Miles'], ['20062', '176', 'AW00020062', 'NULL', 'Russell', 'J', 'Carson', '0', '1977-03-15', 'S', 'NULL', 'M', 'russell17@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Celler Weg 1234', 'NULL', '1 (11) 500 555-0156', '2012-01-29', '2-5 Miles'], ['20063', '193', 'AW00020063', 'NULL', 'Kristy', 'E', 'Ortega', '0', '1975-11-29', 'S', 'NULL', 'F', 'kristy20@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '76, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0137', '2013-12-09', '0-1 Miles'], ['20064', '124', 'AW00020064', 'NULL', 'Whitney', 'C', 'Prasad', '0', '1982-12-03', 'S', 'NULL', 'F', 'whitney8@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Heidestieg Straße 6486', 'NULL', '1 (11) 500 555-0119', '2013-06-18', '0-1 Miles'], ['20065', '133', 'AW00020065', 'NULL', 'Grant', 'L', 'Lal', '0', '1977-05-22', 'M', 'NULL', 'M', 'grant10@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Herzogstr 2128', 'NULL', '1 (11) 500 555-0124', '2013-12-19', '0-1 Miles'], ['20066', '626', 'AW00020066', 'NULL', 'Marcus', 'NULL', 'White', '0', '1985-08-10', 'S', 'NULL', 'M', 'marcus13@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4409 North Ranchford', 'NULL', '937-555-0171', '2013-05-09', '1-2 Miles'], ['20067', '355', 'AW00020067', 'NULL', 'Destiny', 'P', 'Thompson', '0', '1980-04-08', 'S', 'NULL', 'F', 'destiny15@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4423 Bayview Circle', 'NULL', '114-555-0117', '2013-05-21', '1-2 Miles'], ['20068', '347', 'AW00020068', 'NULL', 'Alexandria', 'F', 'Peterson', '0', '1979-10-22', 'S', 'NULL', 'F', 'alexandria28@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7480 Violet Ct', 'NULL', '193-555-0142', '2013-05-27', '1-2 Miles'], ['20069', '369', 'AW00020069', 'NULL', 'Jessica', 'C', 'Smith', '0', '1980-01-24', 'S', 'NULL', 'F', 'jessica47@adventure-works.com', '30000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9475 Old Oak Drive', 'NULL', '131-555-0197', '2013-10-01', '1-2 Miles'], ['20070', '68', 'AW00020070', 'NULL', 'Richard', 'NULL', 'Morris', '0', '1971-10-07', 'M', 'NULL', 'M', 'richard99@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '1090 El Dorado Way', 'NULL', '168-555-0122', '2013-07-22', '0-1 Miles'], ['20071', '612', 'AW00020071', 'NULL', 'Sean', 'L', 'Campbell', '0', '1977-01-30', 'M', 'NULL', 'M', 'sean38@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6051 Mepham Dr.', 'NULL', '710-555-0145', '2013-03-03', '0-1 Miles'], ['20072', '616', 'AW00020072', 'NULL', 'Kaitlyn', 'S', 'Martinez', '0', '1971-10-17', 'M', 'NULL', 'F', 'kaitlyn40@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7464 Mozden Lane', 'NULL', '271-555-0116', '2013-05-13', '1-2 Miles'], ['20073', '632', 'AW00020073', 'NULL', 'Melissa', 'NULL', 'Cooper', '0', '1977-01-02', 'M', 'NULL', 'F', 'melissa30@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5025 North Star Dr', 'NULL', '137-555-0114', '2013-05-08', '1-2 Miles'], ['20074', '311', 'AW00020074', 'NULL', 'Preston', 'NULL', 'Madan', '0', '1959-02-23', 'S', 'NULL', 'M', 'preston6@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '1828 Robinson Ave.', 'NULL', '322-555-0174', '2013-10-16', '1-2 Miles'], ['20075', '66', 'AW00020075', 'NULL', 'Aaron', 'A', 'Allen', '0', '1958-11-15', 'S', 'NULL', 'M', 'aaron55@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '6695 Black Walnut Court', 'NULL', '648-555-0141', '2011-12-02', '1-2 Miles'], ['20076', '301', 'AW00020076', 'NULL', 'Beth', 'A', 'Vazquez', '0', '1958-11-15', 'S', 'NULL', 'F', 'beth17@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '6695 Black Walnut Court', 'NULL', '569-555-0124', '2013-11-21', '1-2 Miles'], ['20077', '312', 'AW00020077', 'NULL', 'Aidan', 'L', 'Coleman', '0', '1959-05-05', 'M', 'NULL', 'M', 'aidan6@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '6908 Laguna Circle', 'NULL', '181-555-0114', '2013-11-01', '1-2 Miles'], ['20078', '546', 'AW00020078', 'NULL', 'Jose', 'E', 'Lee', '0', '1964-10-17', 'M', 'NULL', 'M', 'jose65@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '6899 Pembroke Dr.', 'NULL', '914-555-0154', '2013-11-21', '0-1 Miles'], ['20079', '536', 'AW00020079', 'NULL', 'Alexandra', 'NULL', 'Taylor', '0', '1964-05-03', 'M', 'NULL', 'F', 'alexandra72@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '4559 Julpum Loop', 'NULL', '625-555-0198', '2013-11-19', '0-1 Miles'], ['20080', '612', 'AW00020080', 'NULL', 'Maria', 'D', 'Stewart', '0', '1969-12-18', 'M', 'NULL', 'F', 'maria1@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '14 Delta Road', 'NULL', '743-555-0161', '2013-11-02', '1-2 Miles'], ['20081', '612', 'AW00020081', 'NULL', 'Jerry', 'NULL', 'Xie', '0', '1958-07-17', 'M', 'NULL', 'M', 'jerry3@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '8494 Ryan Rd.', 'NULL', '109-555-0120', '2013-10-15', '1-2 Miles'], ['20082', '59', 'AW00020082', 'NULL', 'Caroline', 'NULL', 'Henderson', '0', '1958-08-24', 'S', 'NULL', 'F', 'caroline7@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '2384 Encinal Place', 'NULL', '115-555-0148', '2013-07-20', '1-2 Miles'], ['20083', '300', 'AW00020083', 'NULL', 'Terry', 'E', 'Kumar', '0', '1964-06-10', 'M', 'NULL', 'M', 'terry11@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '233 Heights Ave.', 'NULL', '536-555-0156', '2013-11-04', '0-1 Miles'], ['20084', '69', 'AW00020084', 'NULL', 'Alex', 'M', 'Stewart', '0', '1969-08-01', 'M', 'NULL', 'M', 'alex30@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '7539 Santa Fe Court', 'NULL', '448-555-0151', '2013-05-23', '0-1 Miles'], ['20085', '53', 'AW00020085', 'NULL', 'Jessica', 'J', 'Moore', '0', '1959-10-26', 'M', 'NULL', 'F', 'jessica55@adventure-works.com', '20000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '8274 Springvale Court', 'NULL', '894-555-0174', '2013-06-18', '0-1 Miles'], ['20086', '59', 'AW00020086', 'NULL', 'Jeremiah', 'W', 'Hayes', '0', '1971-04-04', 'M', 'NULL', 'M', 'jeremiah38@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '8852 Lacorso Dr.', 'NULL', '547-555-0143', '2013-03-18', '1-2 Miles'], ['20087', '62', 'AW00020087', 'NULL', 'Seth', 'M', 'Gray', '0', '1965-02-10', 'M', 'NULL', 'M', 'seth79@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '133 Westwood Way', 'NULL', '538-555-0180', '2013-06-14', '1-2 Miles'], ['20088', '618', 'AW00020088', 'NULL', 'Jose', 'NULL', 'Lewis', '0', '1965-01-13', 'M', 'NULL', 'M', 'jose63@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7500 Sheffield Place', 'NULL', '394-555-0121', '2013-06-07', '1-2 Miles'], ['20089', '635', 'AW00020089', 'NULL', 'Luis', 'J', 'Powell', '0', '1959-11-03', 'M', 'NULL', 'M', 'luis7@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '8382 Cinnabar St', 'NULL', '756-555-0134', '2013-07-17', '5-10 Miles'], ['20090', '311', 'AW00020090', 'NULL', 'Blake', 'NULL', 'Edwards', '0', '1960-01-19', 'M', 'NULL', 'M', 'blake46@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1569 Eagle Ct', 'NULL', '447-555-0181', '2013-11-28', '2-5 Miles'], ['20091', '312', 'AW00020091', 'NULL', 'Andrea', 'L', 'Parker', '0', '1976-05-13', 'M', 'NULL', 'F', 'andrea23@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4659 Cape Cod Way', 'NULL', '612-555-0113', '2013-11-21', '2-5 Miles'], ['20092', '374', 'AW00020092', 'NULL', 'Ethan', 'M', 'Sharma', '0', '1959-12-19', 'M', 'NULL', 'M', 'ethan26@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8564 Red Tree Way', 'NULL', '398-555-0168', '2013-05-26', '1-2 Miles'], ['20093', '374', 'AW00020093', 'NULL', 'Megan', 'NULL', 'Clark', '0', '1965-04-09', 'M', 'NULL', 'F', 'megan22@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '663 Sunset Meadows Ln.', 'NULL', '356-555-0148', '2013-05-04', '1-2 Miles'], ['20094', '300', 'AW00020094', 'NULL', 'Lindsey', 'NULL', 'Chande', '0', '1961-06-20', 'M', 'NULL', 'F', 'lindsey16@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6133 Balhan Dr.', 'NULL', '152-555-0117', '2013-08-07', '0-1 Miles'], ['20095', '338', 'AW00020095', 'NULL', 'Ana', 'NULL', 'Flores', '0', '1961-03-31', 'M', 'NULL', 'F', 'ana11@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '2', '592 Woodcrest Drive', 'NULL', '567-555-0151', '2013-09-06', '0-1 Miles'], ['20096', '64', 'AW00020096', 'NULL', 'Jonathan', 'NULL', 'Lal', '0', '1960-10-31', 'M', 'NULL', 'M', 'jonathan27@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6180 Ryan Court', 'NULL', '726-555-0190', '2013-07-20', '0-1 Miles'], ['20097', '339', 'AW00020097', 'NULL', 'Brittany', 'W', 'Griffin', '0', '1961-03-03', 'M', 'NULL', 'F', 'brittany19@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4387 Linden Land', 'NULL', '438-555-0111', '2013-05-03', '0-1 Miles'], ['20098', '316', 'AW00020098', 'NULL', 'Alexis', 'G', 'Lewis', '0', '1973-05-10', 'M', 'NULL', 'F', 'alexis18@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9510 Lakespring Place', 'NULL', '325-555-0196', '2013-10-19', '0-1 Miles'], ['20099', '302', 'AW00020099', 'NULL', 'Devon', 'L', 'Xie', '0', '1961-10-01', 'M', 'NULL', 'M', 'devon2@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2614 Sandiago Drive', 'NULL', '254-555-0194', '2013-09-01', '0-1 Miles'], ['20100', '337', 'AW00020100', 'NULL', 'Jesse', 'NULL', 'Watson', '0', '1961-09-24', 'S', 'NULL', 'M', 'jesse0@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1283 Teakwood Court', 'NULL', '907-555-0117', '2013-12-19', '1-2 Miles'], ['20101', '546', 'AW00020101', 'NULL', 'Devin', 'NULL', 'Hayes', '0', '1967-01-22', 'M', 'NULL', 'M', 'devin60@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5171 Polk St.', 'NULL', '644-555-0160', '2013-11-13', '1-2 Miles'], ['20102', '635', 'AW00020102', 'NULL', 'Arianna', 'E', 'Jenkins', '0', '1961-10-31', 'M', 'NULL', 'F', 'arianna7@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7072 Meadow Lane', 'NULL', '259-555-0132', '2013-09-14', '1-2 Miles'], ['20103', '51', 'AW00020103', 'NULL', 'William', 'NULL', 'Robinson', '0', '1962-06-13', 'M', 'NULL', 'M', 'william13@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6999 Yosemite Circle', 'NULL', '131-555-0115', '2013-05-04', '0-1 Miles'], ['20104', '49', 'AW00020104', 'NULL', 'Louis', 'NULL', 'Xu', '0', '1963-02-22', 'M', 'NULL', 'M', 'louis6@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5039 Keywood Ct.', 'NULL', '539-555-0148', '2013-02-12', '1-2 Miles'], ['20105', '331', 'AW00020105', 'NULL', 'Alexis', 'NULL', 'Taylor', '0', '1963-02-23', 'M', 'NULL', 'F', 'alexis8@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5960 Springfield Drive', 'NULL', '511-555-0186', '2013-08-20', '0-1 Miles'], ['20106', '53', 'AW00020106', 'NULL', 'Amber', 'NULL', 'Hall', '0', '1963-03-21', 'M', 'NULL', 'F', 'amber22@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9355 Armstrong Rd.', 'NULL', '840-555-0170', '2013-04-30', '0-1 Miles'], ['20107', '635', 'AW00020107', 'NULL', 'Danielle', 'W', 'Morris', '0', '1962-09-05', 'M', 'NULL', 'F', 'danielle21@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3165 Fountain Rd.', 'NULL', '146-555-0110', '2013-07-24', '0-1 Miles'], ['20108', '612', 'AW00020108', 'NULL', 'Glenn', 'NULL', 'Gao', '0', '1969-11-02', 'M', 'NULL', 'M', 'glenn16@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9784 Vine Lane', 'NULL', '495-555-0147', '2013-05-03', '1-2 Miles'], ['20109', '345', 'AW00020109', 'NULL', 'Katelyn', 'K', 'Stewart', '0', '1963-12-31', 'S', 'NULL', 'F', 'katelyn25@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4407 Mildred Ln.', 'NULL', '599-555-0182', '2013-05-17', '1-2 Miles'], ['20110', '385', 'AW00020110', 'NULL', 'Austin', 'C', 'Perry', '0', '1963-07-23', 'M', 'NULL', 'M', 'austin3@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4590 Mori Court', 'NULL', '716-555-0137', '2013-05-30', '1-2 Miles'], ['20111', '301', 'AW00020111', 'NULL', 'Brittney', 'E', 'Zhu', '0', '1964-03-19', 'M', 'NULL', 'F', 'brittney13@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7906 Clayburn Road', 'NULL', '976-555-0116', '2013-06-03', '1-2 Miles'], ['20112', '374', 'AW00020112', 'NULL', 'Shelby', 'A', 'James', '0', '1963-12-11', 'S', 'NULL', 'F', 'shelby8@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4991 Lindenwood Drive', 'NULL', '374-555-0151', '2013-10-20', '1-2 Miles'], ['20113', '632', 'AW00020113', 'NULL', 'Christina', 'NULL', 'Murphy', '0', '1963-11-22', 'M', 'NULL', 'F', 'christina13@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7618 Rogers Lane', 'NULL', '730-555-0188', '2013-10-27', '0-1 Miles'], ['20114', '635', 'AW00020114', 'NULL', 'Joseph', 'NULL', 'Thompson', '0', '1964-01-02', 'M', 'NULL', 'M', 'joseph22@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6307 Grenadine Way', 'NULL', '251-555-0115', '2013-05-31', '1-2 Miles'], ['20115', '335', 'AW00020115', 'NULL', 'Megan', 'NULL', 'Jones', '0', '1964-07-11', 'M', 'NULL', 'F', 'megan6@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3717 Via Cordona', 'NULL', '118-555-0179', '2013-03-03', '0-1 Miles'], ['20116', '307', 'AW00020116', 'NULL', 'Hannah', 'D', 'Bryant', '0', '1964-07-23', 'M', 'NULL', 'F', 'hannah39@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8454 Monti Circle', 'NULL', '475-555-0143', '2013-03-04', '1-2 Miles'], ['20117', '547', 'AW00020117', 'NULL', 'Brandon', 'J', 'Jenkins', '0', '1977-11-07', 'M', 'NULL', 'M', 'brandon4@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '852 Ravenwood Drive', 'NULL', '422-555-0193', '2013-03-26', '0-1 Miles'], ['20118', '372', 'AW00020118', 'NULL', 'Jacqueline', 'R', 'Henderson', '0', '1978-02-10', 'M', 'NULL', 'F', 'jacqueline5@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1512 Birch Bark Dr', 'NULL', '171-555-0124', '2013-06-21', '1-2 Miles'], ['20119', '614', 'AW00020119', 'NULL', 'Carlos', 'NULL', 'Hernandez', '0', '1978-09-24', 'M', 'NULL', 'M', 'carlos48@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6598 Lorie Ln.', 'NULL', '871-555-0149', '2013-10-04', '0-1 Miles'], ['20120', '635', 'AW00020120', 'NULL', 'Fernando', 'NULL', 'Hughes', '0', '1979-01-02', 'S', 'NULL', 'M', 'fernando54@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2801 San Ramon Road', 'NULL', '836-555-0119', '2013-04-09', '1-2 Miles'], ['20121', '548', 'AW00020121', 'NULL', 'Dylan', 'NULL', 'Butler', '0', '1979-01-01', 'M', 'NULL', 'M', 'dylan13@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '2590 Wesley Court', 'NULL', '771-555-0195', '2013-03-18', '0-1 Miles'], ['20122', '315', 'AW00020122', 'NULL', 'Jeremy', 'NULL', 'Bailey', '0', '1979-05-06', 'M', 'NULL', 'M', 'jeremy44@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4584 Hamiliton Ave.', 'NULL', '578-555-0130', '2013-11-12', '1-2 Miles'], ['20123', '326', 'AW00020123', 'NULL', 'Aaron', 'M', 'Gonzalez', '0', '1978-10-03', 'M', 'NULL', 'M', 'aaron41@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1431 Semillon Circle', 'NULL', '628-555-0119', '2013-10-10', '1-2 Miles'], ['20124', '355', 'AW00020124', 'NULL', 'Natalie', 'V', 'Coleman', '0', '1979-03-13', 'M', 'NULL', 'F', 'natalie28@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5300 Turning Dr.', 'NULL', '184-555-0115', '2013-06-08', '0-1 Miles'], ['20125', '623', 'AW00020125', 'NULL', 'Natalie', 'L', 'Clark', '0', '1977-03-19', 'M', 'NULL', 'F', 'natalie86@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1228 Francine Court', 'NULL', '442-555-0154', '2013-05-29', '1-2 Miles'], ['20126', '368', 'AW00020126', 'NULL', 'Seth', 'A', 'Carter', '0', '1977-04-15', 'M', 'NULL', 'M', 'seth37@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6630 Cook Pk.', 'NULL', '119-555-0147', '2014-01-09', '1-2 Miles'], ['20127', '539', 'AW00020127', 'NULL', 'Carlos', 'NULL', 'Sanders', '0', '1976-08-16', 'M', 'NULL', 'M', 'carlos5@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4179 Green St.', 'NULL', '114-555-0114', '2013-04-12', '1-2 Miles'], ['20128', '553', 'AW00020128', 'NULL', 'Ian', 'B', 'Miller', '0', '1976-10-12', 'M', 'NULL', 'M', 'ian7@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6076 Citrus Ave', 'NULL', '454-555-0190', '2013-07-11', '0-1 Miles'], ['20129', '536', 'AW00020129', 'NULL', 'Nicole', 'A', 'Stewart', '0', '1977-04-17', 'S', 'NULL', 'F', 'nicole25@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2341 Lindley Ct', 'NULL', '358-555-0129', '2013-04-04', '1-2 Miles'], ['20130', '50', 'AW00020130', 'NULL', 'Jordan', 'H', 'Nelson', '0', '1977-02-17', 'M', 'NULL', 'M', 'jordan63@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9218 Old Mt. View Drive', 'NULL', '614-555-0137', '2013-01-31', '0-1 Miles'], ['20131', '217', 'AW00020131', 'NULL', 'Carolyn', 'M', 'Gutierrez', '0', '1969-08-10', 'M', 'NULL', 'F', 'carolyn31@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '13, boulevard d´Albi', 'NULL', '1 (11) 500 555-0190', '2013-12-26', '0-1 Miles'], ['20132', '126', 'AW00020132', 'NULL', 'Jenny', 'V', 'Shen', '0', '1968-02-05', 'M', 'NULL', 'F', 'jenny26@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Erlenweg 9794', 'NULL', '1 (11) 500 555-0191', '2013-06-10', '0-1 Miles'], ['20133', '255', 'AW00020133', 'NULL', 'Jorge', 'V', 'Li', '0', '1973-10-06', 'M', 'NULL', 'M', 'jorge4@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3769 Loma Linda', 'NULL', '1 (11) 500 555-0167', '2013-07-04', '0-1 Miles'], ['20134', '259', 'AW00020134', 'NULL', 'Franklin', 'NULL', 'Zhao', '0', '1967-07-09', 'M', 'NULL', 'M', 'franklin10@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '882 South St.', 'NULL', '1 (11) 500 555-0135', '2014-01-26', '0-1 Miles'], ['20135', '121', 'AW00020135', 'NULL', 'Grace', 'E', 'Price', '0', '1966-12-03', 'M', 'NULL', 'F', 'grace47@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Werftstr 55434', 'NULL', '1 (11) 500 555-0156', '2013-07-01', '0-1 Miles'], ['20136', '277', 'AW00020136', 'NULL', 'Bonnie', 'C', 'Kennedy', '0', '1972-12-09', 'M', 'NULL', 'F', 'bonnie13@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '6158 May Way', 'NULL', '1 (11) 500 555-0198', '2014-01-04', '0-1 Miles'], ['20137', '135', 'AW00020137', 'NULL', 'Jarrod', 'B', 'Fernandez', '0', '1966-11-08', 'M', 'NULL', 'M', 'jarrod15@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Hüttenstr 6114', 'NULL', '1 (11) 500 555-0162', '2013-12-06', '0-1 Miles'], ['20138', '128', 'AW00020138', 'NULL', 'Kendra', 'NULL', 'Moreno', '0', '1940-12-18', 'M', 'NULL', 'F', 'kendra6@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Pascalstr 9', 'Verkaufsabteilung', '1 (11) 500 555-0119', '2013-02-06', '0-1 Miles'], ['20139', '369', 'AW00020139', 'NULL', 'Connor', 'NULL', 'Wright', '0', '1984-08-07', 'M', 'NULL', 'M', 'connor48@adventure-works.com', '10000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '4592 Hill Drive', 'NULL', '528-555-0127', '2013-05-04', '0-1 Miles'], ['20140', '144', 'AW00020140', 'NULL', 'Joe', 'A', 'Navarro', '0', '1964-03-06', 'M', 'NULL', 'M', 'joe33@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Auf der Krone 93', 'NULL', '1 (11) 500 555-0160', '2013-05-04', '0-1 Miles'], ['20141', '186', 'AW00020141', 'NULL', 'Angelica', 'M', 'Flores', '0', '1964-06-10', 'M', 'NULL', 'F', 'angelica12@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '6662 Torino Court', 'NULL', '1 (11) 500 555-0128', '2013-11-08', '0-1 Miles'], ['20142', '215', 'AW00020142', 'NULL', 'Lydia', 'NULL', 'Lopez', '0', '1962-05-06', 'M', 'NULL', 'F', 'lydia15@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '52, route de Marseille', 'NULL', '1 (11) 500 555-0151', '2013-01-31', '0-1 Miles'], ['20143', '128', 'AW00020143', 'NULL', 'Jimmy', 'J', 'Suarez', '0', '1962-03-31', 'M', 'NULL', 'M', 'jimmy23@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Königsteiner Straße 950', 'NULL', '1 (11) 500 555-0189', '2013-07-28', '0-1 Miles'], ['20144', '173', 'AW00020144', 'NULL', 'Roger', 'W', 'Lin', '0', '1961-12-21', 'M', 'NULL', 'M', 'roger12@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Am Gallberg 35', 'NULL', '1 (11) 500 555-0131', '2013-12-29', '0-1 Miles'], ['20145', '207', 'AW00020145', 'NULL', 'Fernando', 'K', 'Lee', '0', '1971-04-19', 'M', 'NULL', 'M', 'fernando20@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '63, allée des Princes', 'NULL', '1 (11) 500 555-0142', '2013-07-12', '0-1 Miles'], ['20146', '190', 'AW00020146', 'NULL', 'Mackenzie', 'A', 'Hall', '0', '1951-04-25', 'M', 'NULL', 'F', 'mackenzie43@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5757, impasse Notre-Dame', 'NULL', '1 (11) 500 555-0194', '2013-02-15', '2-5 Miles'], ['20147', '230', 'AW00020147', 'NULL', 'Tabitha', 'NULL', 'Ramos', '0', '1947-01-08', 'M', 'NULL', 'F', 'tabitha38@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1645 Alicante Court', 'NULL', '1 (11) 500 555-0195', '2013-06-19', '0-1 Miles'], ['20148', '189', 'AW00020148', 'NULL', 'Terry', 'E', 'Nath', '0', '1947-12-18', 'M', 'NULL', 'M', 'terry21@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '333, rue de la Cavalerie', 'NULL', '1 (11) 500 555-0111', '2013-03-16', '0-1 Miles'], ['20149', '228', 'AW00020149', 'NULL', 'Heidi', 'Z', 'Arun', '0', '1948-04-01', 'M', 'NULL', 'F', 'heidi9@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8605 Flamingo Dr', 'NULL', '1 (11) 500 555-0139', '2011-03-27', '0-1 Miles'], ['20150', '279', 'AW00020150', 'NULL', 'Gary', 'M', 'Rubio', '0', '1948-06-18', 'M', 'NULL', 'M', 'gary30@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6532 Pinecrest Rd', 'NULL', '1 (11) 500 555-0117', '2011-04-27', '0-1 Miles'], ['20151', '33', 'AW00020151', 'NULL', 'Jamie', 'NULL', 'Guo', '0', '1986-04-05', 'M', 'NULL', 'F', 'jamie21@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5636 Barcelona', 'NULL', '1 (11) 500 555-0135', '2011-10-01', '2-5 Miles'], ['20152', '40', 'AW00020152', 'NULL', 'Rafael', 'I', 'She', '0', '1986-01-05', 'M', 'NULL', 'M', 'rafael23@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5931 San Carlos', 'NULL', '1 (11) 500 555-0115', '2011-10-13', '2-5 Miles'], ['20153', '34', 'AW00020153', 'NULL', 'Diane', 'M', 'Sanz', '0', '1984-11-21', 'M', 'NULL', 'F', 'diane25@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '5033 N. 8th St.', 'NULL', '1 (11) 500 555-0190', '2013-07-30', '0-1 Miles'], ['20154', '8', 'AW00020154', 'NULL', 'Raul', 'Q', 'Luo', '0', '1984-04-01', 'S', 'NULL', 'M', 'raul6@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6253 Panorama Dr.', 'NULL', '1 (11) 500 555-0156', '2011-10-04', '0-1 Miles'], ['20155', '6', 'AW00020155', 'NULL', 'Jay', 'NULL', 'Fernandez', '0', '1983-04-06', 'M', 'NULL', 'M', 'jay22@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '6589 Viewpoint Ct', 'NULL', '1 (11) 500 555-0176', '2013-06-29', '2-5 Miles'], ['20156', '39', 'AW00020156', 'NULL', 'Jay', 'L', 'Madan', '0', '1982-10-17', 'S', 'NULL', 'M', 'jay14@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '5868 Clayton Road', 'NULL', '1 (11) 500 555-0123', '2011-10-22', '0-1 Miles'], ['20157', '2', 'AW00020157', 'NULL', 'Riley', 'A', 'Reed', '0', '1983-04-09', 'M', 'NULL', 'F', 'riley39@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '615 Patterson Blvd.', 'NULL', '1 (11) 500 555-0131', '2011-10-07', '0-1 Miles'], ['20158', '35', 'AW00020158', 'NULL', 'Rodney', 'A', 'Blanco', '0', '1984-08-28', 'S', 'NULL', 'M', 'rodney11@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '2012 Reisling Court', 'NULL', '1 (11) 500 555-0147', '2011-10-01', '2-5 Miles'], ['20159', '8', 'AW00020159', 'NULL', 'Ernest', 'NULL', 'Zhu', '0', '1984-12-01', 'M', 'NULL', 'M', 'ernest14@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2665 Escobar', 'NULL', '1 (11) 500 555-0163', '2011-10-13', '0-1 Miles'], ['20160', '32', 'AW00020160', 'NULL', 'George', 'NULL', 'Garcia', '0', '1984-05-08', 'S', 'NULL', 'M', 'george21@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4760 Bryce Dr.', 'NULL', '1 (11) 500 555-0148', '2011-09-29', '0-1 Miles'], ['20161', '225', 'AW00020161', 'NULL', 'Albert', 'G', 'Sanz', '0', '1954-06-16', 'S', 'NULL', 'M', 'albert20@adventure-works.com', '20000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '87, rue de la Comédie', 'NULL', '1 (11) 500 555-0118', '2013-06-26', '1-2 Miles'], ['20162', '155', 'AW00020162', 'NULL', 'Kelsey', 'K', 'Nath', '0', '1949-03-02', 'M', 'NULL', 'F', 'kelsey17@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Moritzstr 5', 'NULL', '1 (11) 500 555-0199', '2012-02-12', '0-1 Miles'], ['20163', '166', 'AW00020163', 'NULL', 'Krystal', 'S', 'Zhang', '0', '1948-10-29', 'M', 'NULL', 'F', 'krystal0@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Kappellweg 222', 'NULL', '1 (11) 500 555-0116', '2012-03-29', '1-2 Miles'], ['20164', '242', 'AW00020164', 'Ms.', 'Carol Ann', 'F.', 'Rockne', '0', '1949-01-11', 'M', 'NULL', 'M', 'carolann0@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1312 Skycrest Drive', 'NULL', '439-555-0100', '2011-04-26', '0-1 Miles'], ['20165', '266', 'AW00020165', 'NULL', 'Kristina', 'R', 'Mehta', '0', '1948-09-20', 'M', 'NULL', 'F', 'kristina14@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2581 Bentley Ct', 'NULL', '1 (11) 500 555-0142', '2011-04-04', '0-1 Miles'], ['20166', '118', 'AW00020166', 'NULL', 'Monique', 'NULL', 'Gutierrez', '0', '1967-03-24', 'S', 'NULL', 'F', 'monique7@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Herzogstr 29908', 'NULL', '1 (11) 500 555-0150', '2012-03-13', '0-1 Miles'], ['20167', '248', 'AW00020167', 'NULL', 'Joe', 'M', 'Serrano', '0', '1972-01-08', 'S', 'NULL', 'M', 'joe40@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7514 Laguna St.', 'NULL', '1 (11) 500 555-0112', '2011-05-07', '0-1 Miles'], ['20168', '126', 'AW00020168', 'NULL', 'Jessie', 'A', 'Serrano', '0', '1966-01-31', 'M', 'NULL', 'F', 'jessie35@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Am Grossen Dern 4983', 'NULL', '1 (11) 500 555-0165', '2013-12-31', '2-5 Miles'], ['20169', '175', 'AW00020169', 'NULL', 'Garrett', 'N', 'Gray', '0', '1966-03-25', 'S', 'NULL', 'M', 'garrett11@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Höhenstr 6466', 'NULL', '1 (11) 500 555-0122', '2014-01-25', '1-2 Miles'], ['20170', '264', 'AW00020170', 'NULL', 'Jerome', 'D', 'Martin', '0', '1965-12-20', 'M', 'NULL', 'M', 'jerome0@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7370 Mission Drive', 'NULL', '1 (11) 500 555-0112', '2011-05-14', '0-1 Miles'], ['20171', '133', 'AW00020171', 'NULL', 'Bailey', 'A', 'King', '0', '1965-03-25', 'M', 'NULL', 'F', 'bailey39@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Marketplatz 5492', 'NULL', '1 (11) 500 555-0183', '2012-03-17', '0-1 Miles'], ['20172', '263', 'AW00020172', 'NULL', 'Kelli', 'NULL', 'Gao', '0', '1970-11-13', 'S', 'NULL', 'F', 'kelli16@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1619 Mills Dr.', 'NULL', '1 (11) 500 555-0194', '2011-05-20', '0-1 Miles'], ['20173', '247', 'AW00020173', 'NULL', 'Dennis', 'NULL', 'Zhao', '0', '1981-05-01', 'M', 'NULL', 'M', 'dennis12@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2676 Santa Fe Street', 'NULL', '1 (11) 500 555-0145', '2011-06-20', '1-2 Miles'], ['20174', '140', 'AW00020174', 'NULL', 'Douglas', 'E', 'Gonzalez', '0', '1978-10-17', 'M', 'NULL', 'M', 'douglas22@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Potsdamer Straße 993', 'NULL', '1 (11) 500 555-0111', '2013-10-16', '0-1 Miles'], ['20175', '183', 'AW00020175', 'NULL', 'Alisha', 'D', 'Lu', '0', '1979-10-01', 'S', 'NULL', 'F', 'alisha11@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '8184, rue Malar', 'NULL', '1 (11) 500 555-0119', '2013-07-09', '2-5 Miles'], ['20176', '127', 'AW00020176', 'NULL', 'Antonio', 'NULL', 'Alexander', '0', '1986-06-05', 'S', 'NULL', 'M', 'antonio19@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Parise Straße 155', 'NULL', '1 (11) 500 555-0166', '2013-10-01', '1-2 Miles'], ['20177', '216', 'AW00020177', 'NULL', 'Kelvin', 'W', 'Li', '0', '1986-05-05', 'S', 'NULL', 'M', 'kelvin23@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '1406, rue Maillard', 'NULL', '1 (11) 500 555-0194', '2013-06-11', '1-2 Miles'], ['20178', '183', 'AW00020178', 'NULL', 'Deborah', 'A', 'Anand', '0', '1985-08-23', 'S', 'NULL', 'F', 'deborah22@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '4, rue Descartes', 'NULL', '1 (11) 500 555-0135', '2013-03-21', '0-1 Miles'], ['20179', '271', 'AW00020179', 'NULL', 'Denise', 'NULL', 'Patel', '0', '1984-04-01', 'S', 'NULL', 'F', 'denise5@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '3518 Black Pine Lane', 'NULL', '1 (11) 500 555-0194', '2013-06-01', '1-2 Miles'], ['20180', '335', 'AW00020180', 'NULL', 'Amanda', 'NULL', 'Sanders', '0', '1967-12-31', 'M', 'NULL', 'F', 'amanda20@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1456 Bouncing Road', 'NULL', '231-555-0134', '2013-01-01', '2-5 Miles'], ['20181', '343', 'AW00020181', 'NULL', 'Catherine', 'J', 'Brooks', '0', '1967-09-17', 'M', 'NULL', 'F', 'catherine2@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6866 Concord Blvd.', 'NULL', '310-555-0159', '2013-01-10', '2-5 Miles'], ['20182', '70', 'AW00020182', 'NULL', 'Isabelle', 'NULL', 'Price', '0', '1967-12-23', 'M', 'NULL', 'F', 'isabelle0@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5412 Iris Ct', 'NULL', '835-555-0119', '2011-12-04', '0-1 Miles'], ['20183', '543', 'AW00020183', 'NULL', 'Sophia', 'NULL', 'Allen', '0', '1979-05-04', 'M', 'NULL', 'F', 'sophia21@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7502 Baltic Sea Ct.', 'NULL', '435-555-0162', '2013-01-29', '2-5 Miles'], ['20184', '536', 'AW00020184', 'NULL', 'Jessica', 'S', 'Richardson', '0', '1966-10-30', 'M', 'NULL', 'F', 'jessica12@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8938 Violet Ct.', 'NULL', '236-555-0139', '2013-04-26', '0-1 Miles'], ['20185', '316', 'AW00020185', 'NULL', 'Xavier', 'NULL', 'Cooper', '0', '1967-03-05', 'S', 'NULL', 'M', 'xavier75@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '1627 Alhambra Ave.', 'NULL', '683-555-0150', '2013-09-16', '5-10 Miles'], ['20186', '64', 'AW00020186', 'NULL', 'Connor', 'NULL', 'Li', '0', '1967-04-05', 'M', 'NULL', 'M', 'connor21@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3737 Bellord Ct', 'NULL', '491-555-0190', '2012-01-01', '2-5 Miles'], ['20187', '372', 'AW00020187', 'NULL', 'Robert', 'C', 'King', '0', '1967-03-08', 'M', 'NULL', 'M', 'robert61@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5102 Sycamore Drive', 'NULL', '371-555-0134', '2013-06-16', '2-5 Miles'], ['20188', '51', 'AW00020188', 'NULL', 'Kimberly', 'A', 'Watson', '0', '1967-01-02', 'M', 'NULL', 'F', 'kimberly3@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1359 Montgomery Avenue', 'NULL', '335-555-0154', '2012-01-16', '0-1 Miles'], ['20189', '66', 'AW00020189', 'NULL', 'Grace', 'A', 'Hall', '0', '1978-02-19', 'S', 'NULL', 'F', 'grace23@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9547 Stephine Way', 'NULL', '514-555-0169', '2013-09-15', '0-1 Miles'], ['20190', '631', 'AW00020190', 'NULL', 'Angela', 'K', 'Reed', '0', '1973-03-25', 'S', 'NULL', 'F', 'angela46@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7925 Meadow Lane', 'NULL', '793-555-0111', '2013-06-20', '2-5 Miles'], ['20191', '299', 'AW00020191', 'NULL', 'Chad', 'A', 'Rai', '0', '1972-09-07', 'S', 'NULL', 'M', 'chad18@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '6123 Lancelot Dr.', 'NULL', '248-555-0127', '2013-06-28', '2-5 Miles'], ['20192', '299', 'AW00020192', 'NULL', 'Amber', 'NULL', 'Campbell', '0', '1973-02-15', 'S', 'NULL', 'F', 'amber6@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '2314 Chelsea Way', 'NULL', '322-555-0110', '2013-06-14', '0-1 Miles'], ['20193', '339', 'AW00020193', 'NULL', 'Alyssa', 'C', 'Gray', '0', '1978-06-11', 'S', 'NULL', 'F', 'alyssa40@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '8343 Briowes Valley Rd', 'NULL', '352-555-0132', '2013-06-10', '0-1 Miles'], ['20194', '359', 'AW00020194', 'NULL', 'Connor', 'K', 'Campbell', '0', '1966-05-08', 'M', 'NULL', 'M', 'connor36@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5099 Park Lane Circle', 'NULL', '409-555-0134', '2013-06-23', '2-5 Miles'], ['20195', '614', 'AW00020195', 'NULL', 'Blake', 'NULL', 'Wilson', '0', '1966-04-09', 'M', 'NULL', 'M', 'blake6@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9241 St George Dr.', 'NULL', '499-555-0143', '2013-06-02', '0-1 Miles'], ['20196', '546', 'AW00020196', 'NULL', 'Cameron', 'NULL', 'Perry', '0', '1966-06-21', 'M', 'NULL', 'M', 'cameron2@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '670 Echo Canyon Lane', 'NULL', '922-555-0163', '2013-06-27', '2-5 Miles'], ['20197', '542', 'AW00020197', 'NULL', 'Olivia', 'NULL', 'Johnson', '0', '1965-12-19', 'M', 'NULL', 'F', 'olivia1@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4351 Charlotte Ave.', 'NULL', '106-555-0160', '2013-06-23', '2-5 Miles'], ['20198', '347', 'AW00020198', 'NULL', 'Sierra', 'NULL', 'Evans', '0', '1965-03-14', 'S', 'NULL', 'F', 'sierra0@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '5183 Camino Estrada', 'NULL', '554-555-0166', '2013-06-13', '2-5 Miles'], ['20199', '345', 'AW00020199', 'NULL', 'Hailey', 'L', 'Cook', '0', '1965-03-26', 'M', 'NULL', 'F', 'hailey4@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '2061 Matchstick Drive', 'NULL', '894-555-0112', '2013-02-20', '0-1 Miles'], ['20200', '638', 'AW00020200', 'NULL', 'Noah', 'NULL', 'Gonzales', '0', '1964-08-19', 'M', 'NULL', 'M', 'noah14@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '9580 Kalima Place', 'NULL', '142-555-0173', '2013-01-28', '0-1 Miles'], ['20201', '335', 'AW00020201', 'NULL', 'Chloe', 'NULL', 'Harris', '0', '1965-02-14', 'M', 'NULL', 'F', 'chloe24@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '3', '9301 Eureka Lane', 'NULL', '965-555-0114', '2014-01-28', '10+ Miles'], ['20202', '50', 'AW00020202', 'NULL', 'Alexandra', 'B', 'Jones', '0', '1965-05-31', 'M', 'NULL', 'F', 'alexandra66@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '3', '4386 Ryan Rd.', 'NULL', '642-555-0111', '2013-12-08', '10+ Miles'], ['20203', '536', 'AW00020203', 'NULL', 'Roy', 'D', 'Blanco', '0', '1976-03-18', 'M', 'NULL', 'M', 'roy35@adventure-works.com', '80000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3416 Cunha Ct', 'NULL', '953-555-0123', '2013-09-22', '0-1 Miles'], ['20204', '299', 'AW00020204', 'NULL', 'Renee', 'NULL', 'Carlson', '0', '1970-07-24', 'M', 'NULL', 'F', 'renee16@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '845 Olive Ave', 'NULL', '626-555-0119', '2013-01-30', '0-1 Miles'], ['20205', '536', 'AW00020205', 'NULL', 'Bryce', 'NULL', 'Cox', '0', '1963-08-08', 'S', 'NULL', 'M', 'bryce9@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '3625 Pinehurst Court', 'NULL', '818-555-0166', '2013-06-12', '0-1 Miles'], ['20206', '52', 'AW00020206', 'NULL', 'Olivia', 'V', 'Murphy', '0', '1963-12-08', 'M', 'NULL', 'F', 'olivia31@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '628 Marina Lakes Drive', 'NULL', '575-555-0153', '2012-01-05', '0-1 Miles'], ['20207', '331', 'AW00020207', 'NULL', 'Angel', 'T', 'Bailey', '0', '1969-04-21', 'M', 'NULL', 'M', 'angel15@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9440 Newell Ave.', 'NULL', '182-555-0118', '2013-06-12', '2-5 Miles'], ['20208', '51', 'AW00020208', 'NULL', 'Austin', 'NULL', 'Hayes', '0', '1963-11-22', 'M', 'NULL', 'M', 'austin19@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '8746 Gonzalez Ct', 'NULL', '954-555-0119', '2011-12-31', '2-5 Miles'], ['20209', '52', 'AW00020209', 'NULL', 'Andrea', 'A', 'Turner', '0', '1963-12-07', 'M', 'NULL', 'F', 'andrea30@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6588 Palms Drive', 'NULL', '654-555-0111', '2012-01-18', '0-1 Miles'], ['20210', '546', 'AW00020210', 'NULL', 'Stephanie', 'P', 'Powell', '0', '1964-04-03', 'M', 'NULL', 'F', 'stephanie36@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2407 Erie Dr.', 'NULL', '509-555-0169', '2013-02-17', '0-1 Miles'], ['20211', '22', 'AW00020211', 'Mr.', 'Scott', 'M.', 'Rodgers', '0', '1973-11-12', 'M', 'NULL', 'M', 'scott10@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9860 Brookview Drive', 'NULL', '989-555-0100', '2011-10-16', '2-5 Miles'], ['20212', '18', 'AW00020212', 'NULL', 'Krista', 'P', 'Alonso', '0', '1975-09-19', 'M', 'NULL', 'F', 'krista9@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '5951 Snowberry Court', 'NULL', '1 (11) 500 555-0124', '2013-05-20', '0-1 Miles'], ['20213', '2', 'AW00020213', 'NULL', 'Gina', 'L', 'Dominguez', '0', '1975-08-09', 'S', 'NULL', 'F', 'gina13@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '6751 Yosemite Ct.', 'NULL', '1 (11) 500 555-0174', '2011-10-02', '0-1 Miles'], ['20214', '25', 'AW00020214', 'NULL', 'Trisha', 'V', 'Liu', '0', '1974-03-08', 'S', 'NULL', 'F', 'trisha22@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7104 Roland Ct.', 'NULL', '1 (11) 500 555-0131', '2011-10-13', '0-1 Miles'], ['20215', '4', 'AW00020215', 'NULL', 'Ioannis', 'NULL', 'Xylaras', '0', '1974-05-31', 'S', 'NULL', 'F', 'ioannis0@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3797 Concord Royale', 'NULL', '1 (11) 500 555-0146', '2011-10-21', '0-1 Miles'], ['20216', '29', 'AW00020216', 'NULL', 'Shawn', 'S', 'Chander', '0', '1973-12-18', 'M', 'NULL', 'M', 'shawn17@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1395 Bonanza', 'NULL', '1 (11) 500 555-0159', '2011-10-23', '2-5 Miles'], ['20217', '20', 'AW00020217', 'NULL', 'Valerie', 'NULL', 'Wang', '0', '1983-09-07', 'M', 'NULL', 'F', 'valerie2@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '1867 Sahara Drive', 'NULL', '1 (11) 500 555-0148', '2011-10-10', '10+ Miles'], ['20218', '22', 'AW00020218', 'NULL', 'Drew', 'A', 'Xie', '0', '1978-08-09', 'M', 'NULL', 'M', 'drew3@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '194 Hoover Court', 'NULL', '1 (11) 500 555-0115', '2013-04-24', '10+ Miles'], ['20219', '21', 'AW00020219', 'NULL', 'Colleen', 'L', 'Harrison', '0', '1975-04-20', 'M', 'NULL', 'F', 'colleen19@adventure-works.com', '110000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '0', '5938 Greenwood Circle', 'NULL', '1 (11) 500 555-0117', '2011-10-18', '0-1 Miles'], ['20220', '21', 'AW00020220', 'NULL', 'Wendy', 'NULL', 'Carlson', '0', '1975-01-14', 'S', 'NULL', 'F', 'wendy17@adventure-works.com', '110000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '9507 Mountaire Drive', 'NULL', '1 (11) 500 555-0124', '2011-10-27', '0-1 Miles'], ['20221', '36', 'AW00020221', 'NULL', 'Kaylee', 'C', 'Sanders', '0', '1980-05-11', 'M', 'NULL', 'F', 'kaylee2@adventure-works.com', '120000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '0', '7287 Cashew Ln', 'NULL', '1 (11) 500 555-0125', '2011-10-18', '0-1 Miles'], ['20222', '2', 'AW00020222', 'NULL', 'Melissa', 'M', 'Morgan', '0', '1978-12-12', 'M', 'NULL', 'F', 'melissa35@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '8167 Grant St', 'NULL', '1 (11) 500 555-0144', '2013-06-07', '10+ Miles'], ['20223', '26', 'AW00020223', 'NULL', 'Terrance', 'E', 'Malhotra', '0', '1978-10-04', 'M', 'NULL', 'M', 'terrance3@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '6366 Baker Dr.', 'NULL', '1 (11) 500 555-0136', '2013-11-05', '10+ Miles'], ['20224', '6', 'AW00020224', 'NULL', 'Lawrence', 'J', 'Gill', '0', '1972-03-01', 'M', 'NULL', 'M', 'lawrence12@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '4836 Marina', 'NULL', '1 (11) 500 555-0155', '2013-10-03', '0-1 Miles'], ['20225', '19', 'AW00020225', 'NULL', 'Sharon', 'NULL', 'Rai', '0', '1972-04-30', 'S', 'NULL', 'F', 'sharon23@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '2236 Buena Vista Ave', 'NULL', '1 (11) 500 555-0158', '2011-10-18', '0-1 Miles'], ['20226', '29', 'AW00020226', 'NULL', 'Valerie', 'C', 'She', '0', '1971-10-06', 'M', 'NULL', 'F', 'valerie25@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '4625 Westcliffe Place', 'NULL', '1 (11) 500 555-0191', '2011-10-11', '0-1 Miles'], ['20227', '15', 'AW00020227', 'NULL', 'Louis', 'K', 'Zhang', '0', '1972-05-07', 'M', 'NULL', 'M', 'louis38@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '5099 Park Lane Circle', 'NULL', '1 (11) 500 555-0143', '2011-10-21', '2-5 Miles'], ['20228', '37', 'AW00020228', 'NULL', 'Raymond', 'S', 'Arthur', '0', '1971-12-21', 'M', 'NULL', 'M', 'raymond8@adventure-works.com', '100000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '5643 Palms Dr.', 'NULL', '1 (11) 500 555-0164', '2011-10-28', '2-5 Miles'], ['20229', '33', 'AW00020229', 'NULL', 'Austin', 'F', 'Walker', '0', '1971-02-24', 'M', 'NULL', 'M', 'austin38@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6400 Sunshine Drive', 'NULL', '1 (11) 500 555-0113', '2013-08-19', '2-5 Miles'], ['20230', '19', 'AW00020230', 'NULL', 'Gary', 'D', 'Munoz', '0', '1976-04-08', 'M', 'NULL', 'M', 'gary18@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3064 Whyte Park Ave.', 'NULL', '1 (11) 500 555-0140', '2013-06-13', '5-10 Miles'], ['20231', '32', 'AW00020231', 'NULL', 'Kelvin', 'NULL', 'Zhou', '0', '1970-08-09', 'S', 'NULL', 'M', 'kelvin28@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7121 Oakleaf Ct.', 'NULL', '1 (11) 500 555-0156', '2013-05-23', '5-10 Miles'], ['20232', '31', 'AW00020232', 'NULL', 'Franklin', 'L', 'Chande', '0', '1969-11-08', 'M', 'NULL', 'M', 'franklin32@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '867 Calico Way', 'NULL', '1 (11) 500 555-0166', '2013-06-13', '5-10 Miles'], ['20233', '16', 'AW00020233', 'NULL', 'Jenny', 'NULL', 'Raje', '0', '1969-10-05', 'S', 'NULL', 'F', 'jenny36@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '1245 West Hookston Road', 'NULL', '1 (11) 500 555-0147', '2013-05-03', '5-10 Miles'], ['20234', '12', 'AW00020234', 'NULL', 'Gerald', 'NULL', 'Mehta', '0', '1970-04-19', 'S', 'NULL', 'M', 'gerald1@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '9279 Masonic Dr.', 'NULL', '1 (11) 500 555-0152', '2013-02-23', '10+ Miles'], ['20235', '2', 'AW00020235', 'NULL', 'Kenneth', 'NULL', 'Deng', '0', '1969-11-20', 'S', 'NULL', 'M', 'kenneth2@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '2639 Tea Lane', 'NULL', '1 (11) 500 555-0153', '2013-12-13', '5-10 Miles'], ['20236', '33', 'AW00020236', 'NULL', 'Cesar', 'R', 'Chandra', '0', '1968-09-10', 'S', 'NULL', 'M', 'cesar2@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '4217 Fairlane Place', 'NULL', '1 (11) 500 555-0119', '2011-10-27', '0-1 Miles'], ['20237', '25', 'AW00020237', 'NULL', 'Hunter', 'E', 'Yang', '0', '1968-08-18', 'M', 'NULL', 'M', 'hunter22@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '436 Logan Court', 'NULL', '1 (11) 500 555-0116', '2013-02-01', '0-1 Miles'], ['20238', '20', 'AW00020238', 'NULL', 'Anna', 'NULL', 'Watson', '0', '1973-06-12', 'S', 'NULL', 'F', 'anna22@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '3123 Bonita Ave', 'NULL', '1 (11) 500 555-0112', '2011-10-21', '1-2 Miles'], ['20239', '2', 'AW00020239', 'NULL', 'Jill', 'A', 'Ortega', '0', '1984-06-21', 'M', 'NULL', 'F', 'jill30@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '2824 Meadowvale Court', 'NULL', '1 (11) 500 555-0199', '2011-10-23', '2-5 Miles'], ['20240', '30', 'AW00020240', 'NULL', 'Beth', 'NULL', 'Rubio', '0', '1966-09-29', 'M', 'NULL', 'F', 'beth23@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '958 Hilltop Dr.', 'NULL', '1 (11) 500 555-0110', '2013-10-16', '5-10 Miles'], ['20241', '9', 'AW00020241', 'NULL', 'Cesar', 'J', 'Mehta', '0', '1967-01-31', 'M', 'NULL', 'M', 'cesar13@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9182 Newcastle Road', 'NULL', '1 (11) 500 555-0197', '2011-10-13', '0-1 Miles'], ['20242', '18', 'AW00020242', 'NULL', 'Christopher', 'M', 'Thomas', '0', '1937-01-03', 'M', 'NULL', 'M', 'christopher11@adventure-works.com', '120000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '9650 Leisure Lane', 'NULL', '1 (11) 500 555-0137', '2011-10-09', '0-1 Miles'], ['20243', '33', 'AW00020243', 'NULL', 'Tamara', 'A', 'Ye', '0', '1971-12-19', 'S', 'NULL', 'F', 'tamara40@adventure-works.com', '100000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '8524 C Mt. Hood Circle', 'NULL', '1 (11) 500 555-0190', '2013-05-22', '5-10 Miles'], ['20244', '22', 'AW00020244', 'NULL', 'Dawn', 'C', 'Raji', '0', '1971-11-14', 'S', 'NULL', 'F', 'dawn45@adventure-works.com', '100000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '7710 Medina Drive', 'NULL', '1 (11) 500 555-0126', '2011-10-18', '1-2 Miles'], ['20245', '34', 'AW00020245', 'NULL', 'Darren', 'L', 'Malhotra', '0', '1972-02-06', 'S', 'NULL', 'M', 'darren7@adventure-works.com', '100000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '7875 Northridge Road', 'NULL', '1 (11) 500 555-0124', '2011-10-01', '2-5 Miles'], ['20246', '25', 'AW00020246', 'NULL', 'Mindy', 'NULL', 'Xu', '0', '1977-02-15', 'M', 'NULL', 'F', 'mindy9@adventure-works.com', '100000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4144 Show Rd.', 'NULL', '1 (11) 500 555-0155', '2011-09-30', '2-5 Miles'], ['20247', '31', 'AW00020247', 'NULL', 'Kristina', 'L', 'Lopez', '0', '1972-01-23', 'S', 'NULL', 'F', 'kristina17@adventure-works.com', '100000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '8477 Riverwood Circle', 'NULL', '1 (11) 500 555-0164', '2011-10-05', '2-5 Miles'], ['20248', '35', 'AW00020248', 'NULL', 'Gina', 'NULL', 'Suarez', '0', '1965-08-31', 'M', 'NULL', 'F', 'gina19@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8662 Bailey Rd.', 'NULL', '1 (11) 500 555-0142', '2013-12-26', '5-10 Miles'], ['20249', '17', 'AW00020249', 'NULL', 'Tasha', 'M', 'Kumar', '0', '1965-12-31', 'S', 'NULL', 'F', 'tasha8@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9369 Mt. Tooth Pl.', 'NULL', '1 (11) 500 555-0180', '2011-10-16', '5-10 Miles'], ['20250', '23', 'AW00020250', 'NULL', 'Charles', 'M', 'Garcia', '0', '1965-12-24', 'M', 'NULL', 'M', 'charles20@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '369 Peabody Road', 'NULL', '1 (11) 500 555-0167', '2013-04-18', '5-10 Miles'], ['20251', '26', 'AW00020251', 'NULL', 'Luis', 'K', 'Li', '0', '1965-08-01', 'M', 'NULL', 'M', 'luis26@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5315 Wildewood Dr', 'NULL', '1 (11) 500 555-0129', '2013-04-22', '5-10 Miles'], ['20252', '6', 'AW00020252', 'NULL', 'Darrell', 'NULL', 'Raje', '0', '1971-06-20', 'M', 'NULL', 'M', 'darrell3@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9891 Serene Ct.', 'NULL', '1 (11) 500 555-0112', '2013-09-01', '5-10 Miles'], ['20253', '28', 'AW00020253', 'NULL', 'Veronica', 'G', 'Kapoor', '0', '1976-04-09', 'S', 'NULL', 'F', 'veronica1@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '2282 Nulty Dr', 'NULL', '1 (11) 500 555-0156', '2011-09-30', '5-10 Miles'], ['20254', '12', 'AW00020254', 'NULL', 'Dana', 'NULL', 'Gutierrez', '0', '1970-11-13', 'S', 'NULL', 'F', 'dana3@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '9287 Pecan Pl', 'NULL', '1 (11) 500 555-0130', '2013-09-16', '1-2 Miles'], ['20255', '18', 'AW00020255', 'NULL', 'Stephanie', 'NULL', 'Russell', '0', '1976-08-01', 'M', 'NULL', 'F', 'stephanie47@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '3261 Vista Bonita', 'NULL', '1 (11) 500 555-0116', '2013-02-10', '1-2 Miles'], ['20256', '36', 'AW00020256', 'NULL', 'Javier', 'R', 'Serrano', '0', '1975-05-01', 'S', 'NULL', 'M', 'javier11@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '8779 Knollview Court', 'NULL', '1 (11) 500 555-0128', '2011-11-10', '5-10 Miles'], ['20257', '40', 'AW00020257', 'NULL', 'Roy', 'C', 'Carlson', '0', '1975-07-22', 'S', 'NULL', 'M', 'roy38@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5377 Sahara Dr.', 'NULL', '1 (11) 500 555-0162', '2014-01-24', '5-10 Miles'], ['20258', '20', 'AW00020258', 'NULL', 'Katelyn', 'NULL', 'Ward', '0', '1979-10-18', 'S', 'NULL', 'F', 'katelyn11@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5854 Baird Court', '# 212', '1 (11) 500 555-0169', '2011-11-22', '0-1 Miles'], ['20259', '39', 'AW00020259', 'NULL', 'Jenny', 'NULL', 'Andersen', '0', '1974-09-24', 'S', 'NULL', 'F', 'jenny35@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '9808 Holiday Hills', 'NULL', '1 (11) 500 555-0160', '2011-11-01', '5-10 Miles'], ['20260', '21', 'AW00020260', 'NULL', 'Ethan', 'C', 'Martinez', '0', '1967-11-15', 'S', 'NULL', 'M', 'ethan31@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6144 Silver Oak Pl.', 'NULL', '1 (11) 500 555-0139', '2011-11-10', '5-10 Miles'], ['20261', '23', 'AW00020261', 'NULL', 'Mariah', 'NULL', 'Rivera', '0', '1967-09-23', 'M', 'NULL', 'F', 'mariah41@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8257 Almondwood Drive', 'NULL', '1 (11) 500 555-0197', '2011-11-13', '5-10 Miles'], ['20262', '37', 'AW00020262', 'NULL', 'Brett', 'A', 'Prasad', '0', '1967-11-29', 'M', 'NULL', 'M', 'brett9@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8229 Crawford Street', 'NULL', '1 (11) 500 555-0146', '2013-07-01', '5-10 Miles'], ['20263', '16', 'AW00020263', 'NULL', 'Steve', 'C', 'Zhou', '0', '1968-06-14', 'S', 'NULL', 'M', 'steve12@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4032 Woodruff Ln.', 'NULL', '1 (11) 500 555-0147', '2013-11-26', '5-10 Miles'], ['20264', '28', 'AW00020264', 'NULL', 'Jay', 'NULL', 'Carlson', '0', '1972-10-23', 'S', 'NULL', 'M', 'jay48@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6145 Frisbie Court', 'NULL', '1 (11) 500 555-0125', '2011-11-23', '5-10 Miles'], ['20265', '25', 'AW00020265', 'NULL', 'Clarence', 'NULL', 'Guo', '0', '1966-11-04', 'M', 'NULL', 'M', 'clarence10@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5474 Jason Ct.', 'NULL', '1 (11) 500 555-0189', '2013-03-13', '5-10 Miles'], ['20266', '31', 'AW00020266', 'NULL', 'Summer', 'L', 'Gonzalez', '0', '1972-07-23', 'M', 'NULL', 'F', 'summer16@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5155 Centennial Way', 'NULL', '1 (11) 500 555-0112', '2013-04-20', '0-1 Miles'], ['20267', '7', 'AW00020267', 'NULL', 'Monica', 'D', 'Garcia', '0', '1971-08-05', 'M', 'NULL', 'F', 'monica15@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '7882 Las Lomas Way', 'NULL', '1 (11) 500 555-0117', '2013-08-05', '5-10 Miles'], ['20268', '36', 'AW00020268', 'NULL', 'Jorge', 'NULL', 'He', '0', '1971-07-07', 'M', 'NULL', 'M', 'jorge21@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '8273 Glacier Drive', 'NULL', '1 (11) 500 555-0140', '2013-10-23', '5-10 Miles'], ['20269', '32', 'AW00020269', 'NULL', 'Hunter', 'A', 'Foster', '0', '1960-10-23', 'M', 'NULL', 'M', 'hunter13@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1729 Panorama Drive', 'NULL', '1 (11) 500 555-0112', '2013-10-28', '0-1 Miles'], ['20270', '329', 'AW00020270', 'NULL', 'Kevin', 'L', 'Phillips', '0', '1981-11-01', 'M', 'NULL', 'M', 'kevin43@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2756 Eastgate Ave.', 'NULL', '128-555-0160', '2013-04-22', '5-10 Miles'], ['20271', '299', 'AW00020271', 'NULL', 'Barry', 'B', 'Fernandez', '0', '1981-08-18', 'S', 'NULL', 'M', 'barry16@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4844 Spring Water St', 'NULL', '801-555-0110', '2013-07-17', '0-1 Miles'], ['20272', '609', 'AW00020272', 'NULL', 'Seth', 'W', 'James', '0', '1980-10-20', 'S', 'NULL', 'M', 'seth72@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2132 Virginia Lane', 'NULL', '949-555-0190', '2013-09-24', '0-1 Miles'], ['20273', '69', 'AW00020273', 'NULL', 'Katherine', 'J', 'Martin', '0', '1982-04-27', 'S', 'NULL', 'F', 'katherine85@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7895 Stanley Dollar Dr.', 'NULL', '320-555-0187', '2013-09-28', '5-10 Miles'], ['20274', '607', 'AW00020274', 'NULL', 'Brent', 'NULL', 'Wang', '0', '1981-10-19', 'M', 'NULL', 'M', 'brent1@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '548 Stony Hill Circle', 'NULL', '130-555-0173', '2013-08-02', '5-10 Miles'], ['20275', '542', 'AW00020275', 'NULL', 'Angela', 'J', 'Kelly', '0', '1985-07-05', 'M', 'NULL', 'F', 'angela28@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '463 Creekside Drive', 'NULL', '176-555-0150', '2014-01-13', '0-1 Miles'], ['20276', '637', 'AW00020276', 'NULL', 'Haley', 'R', 'Sanchez', '0', '1986-03-26', 'S', 'NULL', 'F', 'haley1@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '517 South St.', 'NULL', '688-555-0130', '2014-01-05', '5-10 Miles'], ['20277', '36', 'AW00020277', 'NULL', 'Mary', 'R', 'Hall', '0', '1943-01-25', 'M', 'NULL', 'F', 'mary35@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '8367 Frisbie Ct.', 'NULL', '1 (11) 500 555-0192', '2013-05-03', '0-1 Miles'], ['20278', '311', 'AW00020278', 'NULL', 'Alisha', 'N', 'Oliver', '0', '1983-03-04', 'M', 'NULL', 'F', 'alisha36@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9609 W 74th St.', 'NULL', '325-555-0186', '2013-03-03', '5-10 Miles'], ['20279', '326', 'AW00020279', 'NULL', 'Trevor', 'A', 'Henderson', '0', '1982-07-11', 'S', 'NULL', 'M', 'trevor4@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '251 Ravenwood Dr.', 'NULL', '769-555-0124', '2013-03-16', '5-10 Miles'], ['20280', '53', 'AW00020280', 'NULL', 'Joshua', 'L', 'Harris', '0', '1985-03-06', 'S', 'NULL', 'M', 'joshua15@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2040 Encino Drive', 'NULL', '820-555-0140', '2013-03-16', '5-10 Miles'], ['20281', '607', 'AW00020281', 'NULL', 'Karl', 'V', 'Xie', '0', '1984-10-25', 'S', 'NULL', 'M', 'karl3@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4039 Elkwood Dr.', 'NULL', '508-555-0163', '2013-06-18', '0-1 Miles'], ['20282', '11', 'AW00020282', 'NULL', 'Trisha', 'NULL', 'Xu', '0', '1944-06-30', 'S', 'NULL', 'F', 'trisha7@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8627 Shenandoah Drive', 'NULL', '1 (11) 500 555-0133', '2013-07-05', '5-10 Miles'], ['20283', '14', 'AW00020283', 'NULL', 'Katie', 'A', 'Shen', '0', '1951-12-05', 'M', 'NULL', 'F', 'katie5@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4910 Melinda Court', 'NULL', '1 (11) 500 555-0163', '2011-11-06', '5-10 Miles'], ['20284', '14', 'AW00020284', 'NULL', 'Deanna', 'NULL', 'Ashe', '0', '1948-12-09', 'S', 'NULL', 'F', 'deanna10@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '5290 Pennsylvania Blvd', 'NULL', '1 (11) 500 555-0116', '2011-11-11', '5-10 Miles'], ['20285', '623', 'AW00020285', 'NULL', 'Aaron', 'NULL', 'Alexander', '0', '1982-04-20', 'M', 'NULL', 'M', 'aaron18@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5021 Rio Grande Drive', 'NULL', '548-555-0129', '2013-12-13', '5-10 Miles'], ['20286', '298', 'AW00020286', 'NULL', 'Stacey', 'W', 'Wu', '0', '1982-05-05', 'S', 'NULL', 'F', 'stacey7@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '7647 Valencia Place', 'NULL', '729-555-0112', '2013-04-24', '1-2 Miles'], ['20287', '307', 'AW00020287', 'NULL', 'Destiny', 'V', 'Simmons', '0', '1982-05-20', 'S', 'NULL', 'F', 'destiny63@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8540 Donegal Road', 'NULL', '343-555-0120', '2013-09-11', '5-10 Miles'], ['20288', '329', 'AW00020288', 'NULL', 'Jeremiah', 'NULL', 'Edwards', '0', '1981-07-22', 'S', 'NULL', 'M', 'jeremiah23@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6510 Hacienda Drive', 'NULL', '109-555-0143', '2013-11-09', '1-2 Miles'], ['20289', '339', 'AW00020289', 'NULL', 'Jada', 'NULL', 'Richardson', '0', '1981-12-09', 'S', 'NULL', 'F', 'jada4@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1781 Jumping St.', 'NULL', '276-555-0157', '2013-08-22', '1-2 Miles'], ['20290', '369', 'AW00020290', 'NULL', 'Austin', 'L', 'Simmons', '0', '1982-06-22', 'S', 'NULL', 'M', 'austin11@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9717 Hiliday Hills Drive', 'NULL', '270-555-0123', '2013-04-09', '1-2 Miles'], ['20291', '358', 'AW00020291', 'NULL', 'Alexis', 'NULL', 'Walker', '0', '1981-05-02', 'S', 'NULL', 'F', 'alexis20@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4464 Seal Way', 'NULL', '371-555-0170', '2013-06-23', '1-2 Miles'], ['20292', '314', 'AW00020292', 'NULL', 'Katherine', 'NULL', 'Ross', '0', '1985-07-16', 'S', 'NULL', 'F', 'katherine29@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3421 Gehringer Drive', 'NULL', '946-555-0151', '2013-10-30', '1-2 Miles'], ['20293', '339', 'AW00020293', 'NULL', 'Rachel', 'A', 'Jackson', '0', '1979-11-02', 'S', 'NULL', 'F', 'rachel14@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7509 Parkside Dr.', 'NULL', '876-555-0164', '2013-09-15', '5-10 Miles'], ['20294', '385', 'AW00020294', 'NULL', 'Julia', 'B', 'Davis', '0', '1985-08-10', 'S', 'NULL', 'F', 'julia27@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4469 Rain Drop Circle', 'NULL', '745-555-0118', '2013-09-13', '1-2 Miles'], ['20295', '642', 'AW00020295', 'NULL', 'Christopher', 'C', 'Brown', '0', '1979-05-03', 'M', 'NULL', 'M', 'christopher4@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4895 Pine Creek Way', 'NULL', '894-555-0164', '2013-06-13', '1-2 Miles'], ['20296', '302', 'AW00020296', 'NULL', 'Morgan', 'L', 'Diaz', '0', '1978-08-27', 'S', 'NULL', 'F', 'morgan91@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '2546 Fawn Glen Circle', 'NULL', '416-555-0116', '2013-05-30', '1-2 Miles'], ['20297', '299', 'AW00020297', 'NULL', 'Valerie', 'NULL', 'Wu', '0', '1978-09-10', 'S', 'NULL', 'F', 'valerie8@adventure-works.com', '130000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '4250 Park Tree Ct', 'NULL', '164-555-0125', '2013-03-12', '0-1 Miles'], ['20298', '301', 'AW00020298', 'NULL', 'Edgar', 'NULL', 'Arun', '0', '1978-04-02', 'S', 'NULL', 'M', 'edgar7@adventure-works.com', '150000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '0', '1077 Willow Court', 'NULL', '102-555-0196', '2014-01-26', '2-5 Miles'], ['20299', '54', 'AW00020299', 'NULL', 'Megan', 'J', 'Cook', '0', '1974-05-06', 'M', 'NULL', 'F', 'megan32@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '8370 Acardia Pl.', 'NULL', '831-555-0177', '2013-04-13', '1-2 Miles'], ['20300', '68', 'AW00020300', 'NULL', 'Xavier', 'M', 'Garcia', '0', '1973-12-21', 'S', 'NULL', 'M', 'xavier14@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5313 Haynes Court', 'NULL', '374-555-0113', '2013-09-25', '1-2 Miles'], ['20301', '609', 'AW00020301', 'NULL', 'Gloria', 'L', 'Bradley', '0', '1979-10-19', 'M', 'NULL', 'F', 'gloria16@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '1940 C Mt. Hood Circle', 'NULL', '396-555-0131', '2013-05-23', '0-1 Miles'], ['20302', '302', 'AW00020302', 'NULL', 'Tasha', 'NULL', 'Andersen', '0', '1979-11-16', 'S', 'NULL', 'F', 'tasha14@adventure-works.com', '130000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '4440 Algiers Drive', 'NULL', '599-555-0175', '2013-03-24', '0-1 Miles'], ['20303', '310', 'AW00020303', 'NULL', 'Bryce', 'J', 'Morgan', '0', '1973-10-23', 'M', 'NULL', 'M', 'bryce12@adventure-works.com', '160000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '1509 Orangewood Ave.', 'NULL', '828-555-0122', '2013-03-24', '5-10 Miles'], ['20304', '644', 'AW00020304', 'NULL', 'Jesse', 'NULL', 'Edwards', '0', '1985-02-19', 'S', 'NULL', 'M', 'jesse25@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '917 Sunset Meadows Ln.', 'NULL', '804-555-0178', '2013-06-19', '1-2 Miles'], ['20305', '298', 'AW00020305', 'NULL', 'Caleb', 'NULL', 'Ross', '0', '1985-06-24', 'S', 'NULL', 'M', 'caleb0@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9759 Dover Way', 'NULL', '630-555-0191', '2013-10-06', '5-10 Miles'], ['20306', '311', 'AW00020306', 'NULL', 'Mary', 'NULL', 'Baker', '0', '1985-05-11', 'S', 'NULL', 'F', 'mary30@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '7191 Margo Drive', 'NULL', '232-555-0111', '2013-05-01', '5-10 Miles'], ['20307', '312', 'AW00020307', 'NULL', 'Natalie', 'T', 'Blue', '0', '1984-09-19', 'S', 'NULL', 'F', 'natalie7@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2345 Yorba Linda', 'NULL', '238-555-0116', '2013-06-09', '5-10 Miles'], ['20308', '335', 'AW00020308', 'NULL', 'Pieter', 'L', 'Uittenbogaard', '0', '1985-04-24', 'M', 'NULL', 'F', 'pieter1@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9722 Sudden Loop', 'NULL', '517-555-0145', '2013-03-18', '5-10 Miles'], ['20309', '7', 'AW00020309', 'NULL', 'Cristina', 'J', 'Sharma', '0', '1955-11-08', 'M', 'NULL', 'F', 'cristina9@adventure-works.com', '10000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '4', '7709 Atchinson Stage Ct.', 'NULL', '1 (11) 500 555-0166', '2014-01-04', '5-10 Miles'], ['20310', '337', 'AW00020310', 'NULL', 'Timothy', 'R', 'Ramirez', '0', '1984-10-01', 'S', 'NULL', 'M', 'timothy8@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7864 East 88th St.', 'NULL', '592-555-0129', '2013-06-19', '5-10 Miles'], ['20311', '338', 'AW00020311', 'NULL', 'Cole', 'NULL', 'Bell', '0', '1984-08-10', 'M', 'NULL', 'M', 'cole14@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9406 Leed Court W.', 'NULL', '549-555-0127', '2013-11-17', '1-2 Miles'], ['20312', '54', 'AW00020312', 'NULL', 'Ryan', 'A', 'Lewis', '0', '1983-11-19', 'M', 'NULL', 'M', 'ryan57@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6391 Arcadia Place', 'NULL', '591-555-0115', '2013-05-06', '1-2 Miles'], ['20313', '536', 'AW00020313', 'NULL', 'Oscar', 'G', 'Bennett', '0', '1984-05-10', 'S', 'NULL', 'M', 'oscar10@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9961 Tice', 'NULL', '402-555-0135', '2013-12-02', '1-2 Miles'], ['20314', '17', 'AW00020314', 'NULL', 'Russell', 'J', 'Deng', '0', '1953-05-12', 'M', 'NULL', 'M', 'russell5@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5301 Loeffler Lane', 'NULL', '1 (11) 500 555-0198', '2013-11-22', '1-2 Miles'], ['20315', '644', 'AW00020315', 'NULL', 'Devin', 'NULL', 'Ramirez', '0', '1984-02-22', 'S', 'NULL', 'M', 'devin74@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2020 Augustine Dr.', 'NULL', '453-555-0170', '2013-06-15', '5-10 Miles'], ['20316', '29', 'AW00020316', 'NULL', 'Suzanne', 'R', 'Zhang', '0', '1952-03-12', 'S', 'NULL', 'F', 'suzanne1@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '152 Scenic Ave.', 'NULL', '1 (11) 500 555-0158', '2013-02-26', '5-10 Miles'], ['20317', '4', 'AW00020317', 'NULL', 'Alex', 'K', 'Green', '0', '1951-11-19', 'M', 'NULL', 'M', 'alex45@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4296 Shadow Hill Road', 'NULL', '1 (11) 500 555-0176', '2013-03-28', '1-2 Miles'], ['20318', '54', 'AW00020318', 'NULL', 'Amanda', 'L', 'Turner', '0', '1982-10-30', 'M', 'NULL', 'F', 'amanda48@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6518 Wilke Drive', 'NULL', '765-555-0188', '2012-02-03', '1-2 Miles'], ['20319', '612', 'AW00020319', 'NULL', 'Dylan', 'NULL', 'Alexander', '0', '1977-05-05', 'M', 'NULL', 'M', 'dylan18@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6395 Deermeadow Way', 'NULL', '272-555-0110', '2013-06-14', '1-2 Miles'], ['20320', '298', 'AW00020320', 'NULL', 'Mindy', 'F', 'Nath', '0', '1977-04-03', 'M', 'NULL', 'F', 'mindy23@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '833 Boxwood', 'NULL', '829-555-0154', '2013-06-07', '1-2 Miles'], ['20321', '301', 'AW00020321', 'NULL', 'Colleen', 'C', 'Chen', '0', '1977-04-01', 'M', 'NULL', 'F', 'colleen2@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6465 Brushcreek Dr', 'NULL', '178-555-0189', '2013-06-10', '1-2 Miles'], ['20322', '627', 'AW00020322', 'NULL', 'Rachel', 'NULL', 'Wood', '0', '1968-10-15', 'S', 'NULL', 'F', 'rachel49@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '4877 Zona Rosa', 'NULL', '462-555-0195', '2013-12-25', '10+ Miles'], ['20323', '634', 'AW00020323', 'NULL', 'Justin', 'A', 'Coleman', '0', '1969-03-31', 'S', 'NULL', 'M', 'justin2@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '1358 Palmer Rd', 'NULL', '172-555-0163', '2013-03-21', '0-1 Miles'], ['20324', '298', 'AW00020324', 'NULL', 'Ashley', 'E', 'Rodriguez', '0', '1974-09-15', 'M', 'NULL', 'F', 'ashley21@adventure-works.com', '100000.00', '0', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1480 Shoenic', 'NULL', '804-555-0168', '2013-03-29', '2-5 Miles'], ['20325', '345', 'AW00020325', 'NULL', 'Charles', 'NULL', 'Williams', '0', '1968-07-19', 'S', 'NULL', 'M', 'charles5@adventure-works.com', '130000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '6991 Mauna Kea Court', 'NULL', '177-555-0190', '2013-10-31', '1-2 Miles'], ['20326', '358', 'AW00020326', 'NULL', 'Paige', 'NULL', 'Blue', '0', '1969-02-07', 'M', 'NULL', 'F', 'paige3@adventure-works.com', '130000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '5882 Wheel Ave.', 'NULL', '491-555-0198', '2013-04-28', '1-2 Miles'], ['20327', '358', 'AW00020327', 'NULL', 'Sophia', 'NULL', 'Perez', '0', '1974-04-08', 'M', 'NULL', 'F', 'sophia11@adventure-works.com', '130000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '2229 Oak Rd.', 'NULL', '604-555-0191', '2013-05-18', '1-2 Miles'], ['20328', '359', 'AW00020328', 'NULL', 'Sierra', 'NULL', 'Carter', '0', '1980-05-13', 'M', 'NULL', 'F', 'sierra10@adventure-works.com', '150000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '2622 Highridge Court', 'NULL', '899-555-0129', '2013-08-18', '0-1 Miles'], ['20329', '383', 'AW00020329', 'NULL', 'Jose', 'C', 'Yang', '0', '1974-12-08', 'M', 'NULL', 'M', 'jose21@adventure-works.com', '160000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '5491 Martindale Drive', 'NULL', '186-555-0112', '2013-10-23', '0-1 Miles'], ['20330', '65', 'AW00020330', 'NULL', 'Nathan', 'A', 'Thomas', '0', '1973-06-01', 'M', 'NULL', 'M', 'nathan69@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6439 Arlington Way', 'NULL', '122-555-0199', '2013-12-31', '5-10 Miles'], ['20331', '609', 'AW00020331', 'NULL', 'Jeremy', 'NULL', 'Cox', '0', '1967-12-04', 'M', 'NULL', 'M', 'jeremy40@adventure-works.com', '90000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '4052 Mt. Wilson Way', 'NULL', '713-555-0188', '2013-05-29', '5-10 Miles'], ['20332', '609', 'AW00020332', 'NULL', 'Danny', 'J', 'Navarro', '0', '1967-10-30', 'M', 'NULL', 'M', 'danny11@adventure-works.com', '90000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '4151 Olivera', 'NULL', '835-555-0197', '2013-09-11', '5-10 Miles'], ['20333', '614', 'AW00020333', 'NULL', 'Abigail', 'NULL', 'Gonzales', '0', '1968-04-16', 'S', 'NULL', 'F', 'abigail69@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '6471 Harvey Way', 'NULL', '176-555-0117', '2013-11-15', '1-2 Miles'], ['20334', '298', 'AW00020334', 'NULL', 'Jeremiah', 'S', 'Mitchell', '0', '1973-05-10', 'M', 'NULL', 'M', 'jeremiah20@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '7481 Crown Ct.', 'NULL', '511-555-0134', '2013-02-13', '5-10 Miles'], ['20335', '310', 'AW00020335', 'NULL', 'Adam', 'M', 'Gonzales', '0', '1967-11-02', 'S', 'NULL', 'M', 'adam14@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '6121 Pebble Glen Drive', 'NULL', '128-555-0129', '2013-09-23', '1-2 Miles'], ['20336', '311', 'AW00020336', 'NULL', 'Ian', 'NULL', 'Young', '0', '1973-12-06', 'M', 'NULL', 'M', 'ian24@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '7917 Precipice Drive', 'NULL', '419-555-0170', '2013-12-15', '1-2 Miles'], ['20337', '331', 'AW00020337', 'NULL', 'Xavier', 'NULL', 'Hall', '0', '1979-04-02', 'M', 'NULL', 'M', 'xavier21@adventure-works.com', '120000.00', '1', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '1293 F Street', 'NULL', '780-555-0196', '2013-03-04', '5-10 Miles'], ['20338', '334', 'AW00020338', 'NULL', 'Anna', 'NULL', 'James', '0', '1967-07-20', 'S', 'NULL', 'F', 'anna21@adventure-works.com', '130000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '8463 Vista Avenue', 'NULL', '873-555-0154', '2013-10-21', '0-1 Miles'], ['20339', '337', 'AW00020339', 'NULL', 'Kaitlyn', 'NULL', 'Hughes', '0', '1968-01-23', 'M', 'NULL', 'F', 'kaitlyn78@adventure-works.com', '130000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '9846 Powell Drive', 'NULL', '117-555-0199', '2013-03-27', '2-5 Miles'], ['20340', '343', 'AW00020340', 'NULL', 'Makayla', 'NULL', 'Kelly', '0', '1967-09-24', 'M', 'NULL', 'F', 'makayla2@adventure-works.com', '130000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '9007 S Royal Links Circle', 'NULL', '431-555-0121', '2013-03-31', '2-5 Miles'], ['20341', '52', 'AW00020341', 'NULL', 'Tyler', 'J', 'Smith', '0', '1966-08-21', 'M', 'NULL', 'M', 'tyler3@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '3366 Creekridge Lane', 'NULL', '364-555-0115', '2013-07-28', '5-10 Miles'], ['20342', '611', 'AW00020342', 'NULL', 'Aimee', 'J', 'Lu', '0', '1966-09-13', 'M', 'NULL', 'F', 'aimee8@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '8829 Northstar Drive', 'NULL', '322-555-0111', '2013-10-07', '1-2 Miles'], ['20343', '623', 'AW00020343', 'NULL', 'Sierra', 'K', 'Hill', '0', '1966-11-30', 'M', 'NULL', 'F', 'sierra12@adventure-works.com', '90000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '699 Rubiem Ct.', 'NULL', '190-555-0178', '2013-02-06', '1-2 Miles'], ['20344', '300', 'AW00020344', 'NULL', 'Ashlee', 'NULL', 'Anand', '0', '1967-04-14', 'M', 'NULL', 'F', 'ashlee6@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '5661 Elkwood Drive', 'NULL', '147-555-0118', '2013-03-08', '2-5 Miles'], ['20345', '300', 'AW00020345', 'NULL', 'Regina', 'S', 'Martinez', '0', '1972-07-14', 'S', 'NULL', 'F', 'regina16@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '8738 Crawford Street', 'NULL', '583-555-0123', '2013-04-12', '5-10 Miles'], ['20346', '359', 'AW00020346', 'NULL', 'Angelica', 'NULL', 'Washington', '0', '1966-10-03', 'S', 'NULL', 'F', 'angelica13@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '4994 North Civic Dr', 'NULL', '160-555-0156', '2013-04-20', '0-1 Miles'], ['20347', '361', 'AW00020347', 'NULL', 'Savannah', 'K', 'Roberts', '0', '1978-03-12', 'M', 'NULL', 'F', 'savannah26@adventure-works.com', '160000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '7062 Starflower Drive', 'NULL', '926-555-0119', '2013-04-20', '2-5 Miles'], ['20348', '372', 'AW00020348', 'NULL', 'Chloe', 'NULL', 'Evans', '0', '1983-09-07', 'S', 'NULL', 'F', 'chloe0@adventure-works.com', '160000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '5900 May Rd', 'NULL', '574-555-0134', '2013-04-08', '0-1 Miles'], ['20349', '347', 'AW00020349', 'NULL', 'Nicole', 'M', 'Harris', '0', '1961-06-10', 'M', 'NULL', 'F', 'nicole14@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '8789 Valley Oak Plaza', 'NULL', '519-555-0140', '2013-07-04', '5-10 Miles'], ['20350', '59', 'AW00020350', 'NULL', 'Isabella', 'C', 'Campbell', '0', '1960-08-01', 'M', 'NULL', 'F', 'isabella37@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '1986 Attic Rd.', 'NULL', '678-555-0163', '2012-02-27', '1-2 Miles'], ['20351', '298', 'AW00020351', 'NULL', 'Maria', 'N', 'Gonzalez', '0', '1960-12-20', 'M', 'NULL', 'F', 'maria51@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '2839 SeaView Court', 'NULL', '161-555-0122', '2013-09-20', '5-10 Miles'], ['20352', '536', 'AW00020352', 'NULL', 'Melissa', 'NULL', 'Foster', '0', '1960-11-06', 'M', 'NULL', 'F', 'melissa11@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '8323 Rock Oak Road', 'NULL', '341-555-0182', '2013-04-16', '5-10 Miles'], ['20353', '331', 'AW00020353', 'NULL', 'Allison', 'NULL', 'Phillips', '0', '1960-04-14', 'S', 'NULL', 'F', 'allison28@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5698 Elmonte Drive', 'NULL', '313-555-0116', '2013-04-19', '1-2 Miles'], ['20354', '43', 'AW00020354', 'NULL', 'Austin', 'NULL', 'Williams', '0', '1960-05-01', 'M', 'NULL', 'M', 'austin41@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6700 Delta View Ln.', 'NULL', '730-555-0151', '2013-05-27', '1-2 Miles'], ['20355', '548', 'AW00020355', 'NULL', 'Melanie', 'S', 'Gray', '0', '1959-10-29', 'S', 'NULL', 'F', 'melanie31@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6452 Harris Circle', 'NULL', '717-555-0178', '2013-10-02', '1-2 Miles'], ['20356', '536', 'AW00020356', 'NULL', 'Louis', 'K', 'Lu', '0', '1941-01-04', 'M', 'NULL', 'M', 'louis5@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '5260 Marina Village Pkwy.', 'NULL', '203-555-0166', '2013-12-15', '1-2 Miles'], ['20357', '627', 'AW00020357', 'NULL', 'Julian', 'NULL', 'Price', '0', '1941-01-28', 'M', 'NULL', 'F', 'julian1@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2988 Buckingham Dr.', 'NULL', '704-555-0164', '2013-06-20', '5-10 Miles'], ['20358', '644', 'AW00020358', 'NULL', 'Brian', 'NULL', 'Murphy', '0', '1946-09-10', 'M', 'NULL', 'M', 'brian26@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2241 V St.', 'NULL', '119-555-0160', '2013-05-03', '1-2 Miles'], ['20359', '298', 'AW00020359', 'NULL', 'Rachel', 'NULL', 'Blue', '0', '1940-08-31', 'M', 'NULL', 'F', 'rachel34@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6239 Boyd Road', 'NULL', '665-555-0199', '2013-06-07', '5-10 Miles'], ['20360', '329', 'AW00020360', 'NULL', 'Brianna', 'M', 'Russell', '0', '1940-10-20', 'M', 'NULL', 'F', 'brianna65@adventure-works.com', '120000.00', '1', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '9558 Orchard View Ave.', 'NULL', '623-555-0192', '2013-08-22', '2-5 Miles'], ['20361', '612', 'AW00020361', 'NULL', 'Jonathon', 'NULL', 'Moreno', '0', '1942-04-02', 'M', 'NULL', 'M', 'jonathon3@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9866 Santa Lucia Dr', 'NULL', '589-555-0117', '2013-02-14', '5-10 Miles'], ['20362', '644', 'AW00020362', 'NULL', 'Seth', 'L', 'Gonzalez', '0', '1942-06-14', 'M', 'NULL', 'M', 'seth35@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '2184 Valley Blvd.', 'NULL', '387-555-0135', '2013-11-11', '1-2 Miles'], ['20363', '314', 'AW00020363', 'NULL', 'Alexander', 'L', 'Brown', '0', '1941-09-02', 'S', 'NULL', 'M', 'alexander6@adventure-works.com', '90000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8160 Clayburn Rd.', 'NULL', '760-555-0113', '2013-11-11', '5-10 Miles'], ['20364', '383', 'AW00020364', 'NULL', 'Anna', 'NULL', 'Jackson', '0', '1941-08-26', 'M', 'NULL', 'F', 'anna49@adventure-works.com', '130000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '7291 Summerfield Dr.', 'NULL', '165-555-0139', '2013-12-21', '2-5 Miles'], ['20365', '609', 'AW00020365', 'NULL', 'Isaac', 'L', 'Scott', '0', '1966-01-24', 'M', 'NULL', 'M', 'isaac37@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5832 Horseshoe Circle', 'NULL', '523-555-0152', '2014-01-26', '5-10 Miles'], ['20366', '326', 'AW00020366', 'NULL', 'Marcus', 'A', 'Powell', '0', '1971-08-31', 'M', 'NULL', 'M', 'marcus58@adventure-works.com', '120000.00', '1', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '1707 Piper Ridge Court', 'NULL', '999-555-0152', '2013-02-24', '2-5 Miles'], ['20367', '334', 'AW00020367', 'NULL', 'Jessica', 'NULL', 'Anderson', '0', '1976-08-16', 'M', 'NULL', 'F', 'jessica57@adventure-works.com', '120000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '2720 Blue Ridge', 'NULL', '619-555-0187', '2013-11-30', '2-5 Miles'], ['20368', '372', 'AW00020368', 'NULL', 'Thomas', 'J', 'Jackson', '0', '1960-03-04', 'S', 'NULL', 'M', 'thomas73@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5785 Lislin Ct.', 'NULL', '332-555-0140', '2013-05-06', '5-10 Miles'], ['20369', '539', 'AW00020369', 'NULL', 'Trevor', 'J', 'Barnes', '0', '1965-08-19', 'S', 'NULL', 'M', 'trevor2@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8969 Royal Links Ct.', 'NULL', '543-555-0173', '2013-05-08', '5-10 Miles'], ['20370', '618', 'AW00020370', 'NULL', 'Blake', 'S', 'Young', '0', '1960-01-29', 'M', 'NULL', 'M', 'blake26@adventure-works.com', '70000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7255 Virginia Hills Drive', 'NULL', '168-555-0119', '2013-05-08', '5-10 Miles'], ['20371', '358', 'AW00020371', 'NULL', 'Grace', 'J', 'Bryant', '0', '1959-08-17', 'M', 'NULL', 'F', 'grace64@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '467 Moccasin Ct.', 'NULL', '852-555-0120', '2013-06-15', '5-10 Miles'], ['20372', '542', 'AW00020372', 'NULL', 'Kaitlyn', 'NULL', 'Edwards', '0', '1965-10-18', 'M', 'NULL', 'F', 'kaitlyn1@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3902 Clay Rd.', 'NULL', '110-555-0118', '2013-06-12', '1-2 Miles'], ['20373', '52', 'AW00020373', 'NULL', 'Morgan', 'C', 'Williams', '0', '1965-01-13', 'M', 'NULL', 'F', 'morgan25@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6529 Greentree Drive', 'NULL', '575-555-0199', '2012-03-28', '1-2 Miles'], ['20374', '322', 'AW00020374', 'NULL', 'Fernando', 'S', 'Adams', '0', '1959-12-13', 'M', 'NULL', 'M', 'fernando31@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4787 R St.', 'NULL', '247-555-0133', '2013-05-31', '1-2 Miles'], ['20375', '71', 'AW00020375', 'NULL', 'Olivia', 'NULL', 'Perry', '0', '1958-09-14', 'S', 'NULL', 'F', 'olivia53@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3369 Houston Ct.', 'NULL', '727-555-0182', '2012-04-09', '5-10 Miles'], ['20376', '311', 'AW00020376', 'NULL', 'Destiny', 'NULL', 'Lewis', '0', '1959-05-15', 'S', 'NULL', 'F', 'destiny19@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4596 Flora Ave', 'NULL', '624-555-0118', '2013-04-26', '5-10 Miles'], ['20377', '543', 'AW00020377', 'NULL', 'Brian', 'E', 'Reed', '0', '1958-09-24', 'M', 'NULL', 'M', 'brian32@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6272 Paraiso Ct.', 'NULL', '541-555-0160', '2013-05-27', '5-10 Miles'], ['20378', '612', 'AW00020378', 'NULL', 'Nathan', 'M', 'Jai', '0', '1948-09-21', 'M', 'NULL', 'M', 'nathan29@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1805 Gallagher Circle', 'NULL', '654-555-0128', '2013-02-15', '1-2 Miles'], ['20379', '298', 'AW00020379', 'NULL', 'Brittney', 'C', 'Chen', '0', '1943-05-18', 'S', 'NULL', 'F', 'brittney2@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1707 Willowwood Ct.', 'NULL', '488-555-0126', '2013-08-05', '10+ Miles'], ['20380', '70', 'AW00020380', 'NULL', 'Catherine', 'M', 'Reed', '0', '1948-01-31', 'M', 'NULL', 'F', 'catherine18@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6643 Mt. Whitney', 'NULL', '174-555-0176', '2013-04-21', '10+ Miles'], ['20381', '627', 'AW00020381', 'NULL', 'Blake', 'NULL', 'Bennett', '0', '1943-12-05', 'M', 'NULL', 'M', 'blake49@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7310 Heather Road', 'NULL', '590-555-0124', '2013-10-30', '10+ Miles'], ['20382', '334', 'AW00020382', 'NULL', 'Jack', 'M', 'Hernandez', '0', '1944-03-23', 'M', 'NULL', 'M', 'jack53@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2107 Ameno Road', 'NULL', '186-555-0175', '2013-04-30', '10+ Miles'], ['20383', '637', 'AW00020383', 'NULL', 'Richard', 'M', 'Hernandez', '0', '1945-03-02', 'S', 'NULL', 'M', 'richard20@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4980 Olivera Rd', 'NULL', '169-555-0138', '2013-10-26', '10+ Miles'], ['20384', '329', 'AW00020384', 'NULL', 'Luis', 'NULL', 'Gonzalez', '0', '1944-08-11', 'M', 'NULL', 'M', 'luis41@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '3354 Roan Lane', 'NULL', '857-555-0157', '2013-05-25', '1-2 Miles'], ['20385', '631', 'AW00020385', 'NULL', 'Jason', 'NULL', 'Patterson', '0', '1945-04-16', 'M', 'NULL', 'M', 'jason8@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4716 Cougar Way', 'NULL', '111-555-0199', '2013-05-15', '10+ Miles'], ['20386', '335', 'AW00020386', 'NULL', 'Anna', 'O', 'Russell', '0', '1945-05-20', 'M', 'NULL', 'F', 'anna45@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5979 El Pueblo', 'NULL', '155-555-0157', '2013-05-08', '10+ Miles'], ['20387', '301', 'AW00020387', 'NULL', 'Jordan', 'R', 'Adams', '0', '1946-05-12', 'M', 'NULL', 'M', 'jordan70@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '2159 Barbie Dr.', 'NULL', '756-555-0151', '2013-07-06', '1-2 Miles'], ['20388', '609', 'AW00020388', 'NULL', 'Natasha', 'A', 'Gill', '0', '1946-05-04', 'M', 'NULL', 'F', 'natasha13@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '9975 Rose Dr.', 'NULL', '565-555-0125', '2013-09-04', '1-2 Miles'], ['20389', '607', 'AW00020389', 'NULL', 'Lee', 'NULL', 'Romero', '0', '1945-08-04', 'M', 'NULL', 'M', 'lee7@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5627 Crystal Avenue', 'NULL', '461-555-0172', '2013-11-04', '10+ Miles'], ['20390', '611', 'AW00020390', 'NULL', 'Ross', 'NULL', 'Ramos', '0', '1945-08-11', 'S', 'NULL', 'M', 'ross35@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8193 Pine Creek Way', 'NULL', '519-555-0126', '2013-08-25', '10+ Miles'], ['20391', '311', 'AW00020391', 'NULL', 'Meghan', 'A', 'Serrano', '0', '1945-11-17', 'M', 'NULL', 'F', 'meghan16@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7618 Eastgate', 'NULL', '860-555-0110', '2013-02-08', '1-2 Miles'], ['20392', '352', 'AW00020392', 'NULL', 'Destiny', 'H', 'Ramirez', '0', '1945-09-08', 'M', 'NULL', 'F', 'destiny42@adventure-works.com', '80000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6498 Pasa Del Rio', 'NULL', '961-555-0130', '2013-10-28', '5-10 Miles'], ['20393', '326', 'AW00020393', 'NULL', 'Kaitlyn', 'NULL', 'White', '0', '1945-09-10', 'S', 'NULL', 'F', 'kaitlyn35@adventure-works.com', '80000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6778 Edie Ct.', 'NULL', '493-555-0195', '2014-01-05', '5-10 Miles'], ['20394', '631', 'AW00020394', 'NULL', 'Emma', 'S', 'Butler', '0', '1946-10-13', 'M', 'NULL', 'F', 'emma60@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5346 Clayburn Road', 'NULL', '720-555-0117', '2013-07-03', '1-2 Miles'], ['20395', '302', 'AW00020395', 'NULL', 'Katherine', 'B', 'Rogers', '0', '1958-02-07', 'S', 'NULL', 'F', 'katherine5@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '2602 Hale Dr', 'NULL', '869-555-0170', '2013-07-14', '1-2 Miles'], ['20396', '312', 'AW00020396', 'NULL', 'Jason', 'M', 'Simmons', '0', '1946-11-21', 'S', 'NULL', 'M', 'jason12@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3394 Rock Drive', 'NULL', '958-555-0115', '2013-10-02', '10+ Miles'], ['20397', '326', 'AW00020397', 'NULL', 'Isaiah', 'A', 'Gray', '0', '1947-03-23', 'M', 'NULL', 'M', 'isaiah5@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9192 Dublin Court', 'NULL', '915-555-0139', '2013-10-16', '10+ Miles'], ['20398', '352', 'AW00020398', 'NULL', 'Jordan', 'NULL', 'Collins', '0', '1946-11-29', 'S', 'NULL', 'F', 'jordan31@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7 Zulu Court', 'NULL', '706-555-0165', '2013-06-09', '10+ Miles'], ['20399', '626', 'AW00020399', 'NULL', 'Benjamin', 'NULL', 'Rodriguez', '0', '1947-12-14', 'M', 'NULL', 'M', 'benjamin57@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9015 Denkinger Court', 'NULL', '489-555-0186', '2013-07-21', '1-2 Miles'], ['20400', '322', 'AW00020400', 'NULL', 'Sydney', 'NULL', 'Henderson', '0', '1948-03-20', 'M', 'NULL', 'F', 'sydney27@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2822 Valmar Dr', 'NULL', '699-555-0122', '2013-07-06', '1-2 Miles'], ['20401', '302', 'AW00020401', 'NULL', 'Hannah', 'G', 'Jenkins', '0', '1947-10-09', 'M', 'NULL', 'F', 'hannah30@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7091 Clemson Court', 'NULL', '802-555-0111', '2013-07-23', '1-2 Miles'], ['20402', '33', 'AW00020402', 'NULL', 'Vincent', 'NULL', 'Liang', '0', '1952-01-12', 'M', 'NULL', 'M', 'vincent16@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '953 Trafalgar Circle', 'NULL', '1 (11) 500 555-0139', '2013-06-16', '1-2 Miles'], ['20403', '26', 'AW00020403', 'NULL', 'Mitchell', 'C', 'Lal', '0', '1951-08-10', 'M', 'NULL', 'M', 'mitchell8@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1967 Glen Court', 'NULL', '1 (11) 500 555-0140', '2013-12-24', '1-2 Miles'], ['20404', '29', 'AW00020404', 'NULL', 'Jorge', 'NULL', 'Yang', '0', '1954-02-07', 'S', 'NULL', 'M', 'jorge6@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2198 Clayton Road', 'NULL', '1 (11) 500 555-0166', '2014-01-11', '5-10 Miles'], ['20405', '358', 'AW00020405', 'NULL', 'Isaiah', 'NULL', 'Campbell', '0', '1983-12-31', 'S', 'NULL', 'M', 'isaiah30@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4378 Dover Way', 'NULL', '677-555-0182', '2013-05-18', '0-1 Miles'], ['20406', '37', 'AW00020406', 'NULL', 'Felicia', 'D', 'Munoz', '0', '1953-08-04', 'M', 'NULL', 'F', 'felicia6@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3936 Cleveland Rd.', 'NULL', '1 (11) 500 555-0141', '2013-09-08', '1-2 Miles'], ['20407', '19', 'AW00020407', 'NULL', 'Kristopher', 'C', 'Vance', '0', '1965-05-20', 'M', 'NULL', 'M', 'kristopher4@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4310 Kenston Dr.', 'NULL', '1 (11) 500 555-0171', '2013-08-14', '5-10 Miles'], ['20408', '612', 'AW00020408', 'NULL', 'Isaac', 'NULL', 'Morgan', '0', '1983-01-14', 'S', 'NULL', 'M', 'isaac13@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3992 C Kenwal Rd.', 'NULL', '709-555-0145', '2013-09-01', '5-10 Miles'], ['20409', '641', 'AW00020409', 'NULL', 'Sophia', 'NULL', 'Young', '0', '1983-05-17', 'S', 'NULL', 'F', 'sophia22@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3788 Canyon Creek Drive', 'NULL', '146-555-0195', '2013-08-15', '5-10 Miles'], ['20410', '641', 'AW00020410', 'NULL', 'Richard', 'NULL', 'Jackson', '0', '1982-12-10', 'M', 'NULL', 'M', 'richard52@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9322 Sunshine', 'NULL', '790-555-0131', '2013-04-10', '5-10 Miles'], ['20411', '316', 'AW00020411', 'NULL', 'Cole', 'S', 'James', '0', '1982-12-03', 'M', 'NULL', 'M', 'cole0@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9995 Valley View Road', 'NULL', '117-555-0150', '2013-05-14', '5-10 Miles'], ['20412', '374', 'AW00020412', 'NULL', 'David', 'NULL', 'Jackson', '0', '1983-04-22', 'M', 'NULL', 'M', 'david70@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5115 Meadowbrook Court', 'NULL', '760-555-0137', '2013-05-05', '5-10 Miles'], ['20413', '299', 'AW00020413', 'NULL', 'Taylor', 'L', 'Powell', '0', '1981-11-03', 'M', 'NULL', 'F', 'taylor34@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7165 Brock Lane', 'NULL', '666-555-0172', '2013-03-23', '5-10 Miles'], ['20414', '345', 'AW00020414', 'NULL', 'Amanda', 'M', 'Bailey', '0', '1982-05-23', 'M', 'NULL', 'F', 'amanda6@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4915 Pear Dr.', 'NULL', '241-555-0141', '2013-10-11', '5-10 Miles'], ['20415', '17', 'AW00020415', 'NULL', 'Evelyn', 'NULL', 'Sai', '0', '1954-12-14', 'M', 'NULL', 'F', 'evelyn6@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2964 Holbrook Dr', 'NULL', '1 (11) 500 555-0141', '2013-08-13', '1-2 Miles'], ['20416', '20', 'AW00020416', 'NULL', 'Dale', 'M', 'Goel', '0', '1960-12-18', 'S', 'NULL', 'M', 'dale17@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5616 Steele Dr.', 'NULL', '1 (11) 500 555-0121', '2011-11-01', '5-10 Miles'], ['20417', '38', 'AW00020417', 'NULL', 'Bruce', 'P', 'Vazquez', '0', '1955-08-11', 'M', 'NULL', 'M', 'bruce35@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6592 Bent Tree Lane', 'NULL', '1 (11) 500 555-0178', '2013-04-17', '5-10 Miles'], ['20418', '6', 'AW00020418', 'NULL', 'Joe', 'C', 'Vazquez', '0', '1955-10-11', 'M', 'NULL', 'M', 'joe38@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3802 Glenmount Dr.', 'NULL', '1 (11) 500 555-0152', '2011-11-22', '1-2 Miles'], ['20419', '35', 'AW00020419', 'NULL', 'Billy', 'NULL', 'Romero', '0', '1962-04-04', 'M', 'NULL', 'M', 'billy11@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3560 Harvard Dr.', 'NULL', '1 (11) 500 555-0111', '2013-04-07', '5-10 Miles'], ['20420', '28', 'AW00020420', 'NULL', 'Evelyn', 'S', 'Mehta', '0', '1956-08-03', 'M', 'NULL', 'F', 'evelyn15@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3236 Wicker Ave.', 'NULL', '1 (11) 500 555-0117', '2011-10-31', '5-10 Miles'], ['20421', '298', 'AW00020421', 'NULL', 'Victoria', 'C', 'Alexander', '0', '1986-01-15', 'S', 'NULL', 'F', 'victoria65@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6064 Madrid', 'NULL', '656-555-0189', '2013-05-09', '5-10 Miles'], ['20422', '359', 'AW00020422', 'NULL', 'Maria', 'NULL', 'Brooks', '0', '1986-02-14', 'S', 'NULL', 'F', 'maria20@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8375 Ambush Dr..', 'NULL', '231-555-0159', '2013-07-08', '5-10 Miles'], ['20423', '19', 'AW00020423', 'NULL', 'Alicia', 'H', 'Goel', '0', '1963-10-07', 'S', 'NULL', 'F', 'alicia15@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7405 Jacqueline Drive', 'NULL', '1 (11) 500 555-0147', '2011-11-15', '5-10 Miles'], ['20424', '40', 'AW00020424', 'NULL', 'Marie', 'NULL', 'Romero', '0', '1957-07-12', 'M', 'NULL', 'F', 'marie32@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6400 St. John Lane', 'NULL', '1 (11) 500 555-0162', '2011-11-03', '5-10 Miles'], ['20425', '12', 'AW00020425', 'NULL', 'Sabrina', 'E', 'Torres', '0', '1963-11-14', 'M', 'NULL', 'F', 'sabrina7@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5145 Redhead Way', 'NULL', '1 (11) 500 555-0161', '2011-11-19', '5-10 Miles'], ['20426', '24', 'AW00020426', 'NULL', 'Johnathan', 'D', 'Perez', '0', '1958-04-03', 'M', 'NULL', 'M', 'johnathan20@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6211 Piedmont Dr', 'NULL', '1 (11) 500 555-0120', '2011-11-01', '5-10 Miles'], ['20427', '29', 'AW00020427', 'NULL', 'Mario', 'S', 'Raje', '0', '1958-10-05', 'S', 'NULL', 'M', 'mario12@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3372 Via Cordona', 'NULL', '1 (11) 500 555-0119', '2011-11-25', '5-10 Miles'], ['20428', '4', 'AW00020428', 'NULL', 'Brent', 'NULL', 'Ma', '0', '1959-01-01', 'M', 'NULL', 'M', 'brent15@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4647 Maywood Lane', 'NULL', '1 (11) 500 555-0128', '2014-01-17', '1-2 Miles'], ['20429', '2', 'AW00020429', 'NULL', 'Curtis', 'D', 'Gao', '0', '1958-10-23', 'M', 'NULL', 'M', 'curtis11@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3965 Stony Hill Circle', 'NULL', '1 (11) 500 555-0148', '2011-11-12', '5-10 Miles'], ['20430', '22', 'AW00020430', 'NULL', 'Maurice', 'NULL', 'Ashe', '0', '1959-08-04', 'M', 'NULL', 'M', 'maurice23@adventure-works.com', '70000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1648 Eastgate Lane', 'NULL', '1 (11) 500 555-0119', '2011-11-09', '5-10 Miles'], ['20431', '536', 'AW00020431', 'NULL', 'Corey', 'NULL', 'Raje', '0', '1981-06-07', 'S', 'NULL', 'M', 'corey12@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5696 McFaul Drive', 'NULL', '195-555-0161', '2013-09-26', '5-10 Miles'], ['20432', '626', 'AW00020432', 'NULL', 'Juan', 'W', 'Sanders', '0', '1980-08-19', 'S', 'NULL', 'M', 'juan13@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7094 Salvio St.', 'NULL', '893-555-0175', '2013-11-07', '5-10 Miles'], ['20433', '545', 'AW00020433', 'NULL', 'Chloe', 'R', 'Taylor', '0', '1980-12-24', 'M', 'NULL', 'F', 'chloe42@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6749 East 23rd Street', 'NULL', '806-555-0179', '2013-12-08', '5-10 Miles'], ['20434', '329', 'AW00020434', 'NULL', 'Nathan', 'A', 'Sharma', '0', '1981-04-11', 'S', 'NULL', 'M', 'nathan27@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '15 Aspen Drive', 'NULL', '416-555-0128', '2013-07-06', '1-2 Miles'], ['20435', '335', 'AW00020435', 'NULL', 'Natalie', 'E', 'Green', '0', '1981-05-25', 'M', 'NULL', 'F', 'natalie57@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3470 Augustine Dr.', 'NULL', '314-555-0118', '2013-07-16', '5-10 Miles'], ['20436', '352', 'AW00020436', 'NULL', 'Anna', 'NULL', 'Barnes', '0', '1980-10-23', 'S', 'NULL', 'F', 'anna27@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4444 Pepper Way', 'NULL', '151-555-0118', '2013-07-30', '1-2 Miles'], ['20437', '383', 'AW00020437', 'NULL', 'Gabriella', 'NULL', 'Howard', '0', '1981-04-10', 'S', 'NULL', 'F', 'gabriella9@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5197 Camino Ricardo', 'NULL', '747-555-0199', '2013-07-12', '1-2 Miles'], ['20438', '383', 'AW00020438', 'NULL', 'Robert', 'C', 'Scott', '0', '1981-06-20', 'S', 'NULL', 'M', 'robert56@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8313 Canyon Creek Drive', 'NULL', '683-555-0131', '2013-04-11', '5-10 Miles'], ['20439', '329', 'AW00020439', 'NULL', 'Chloe', 'M', 'Rogers', '0', '1984-03-31', 'M', 'NULL', 'F', 'chloe48@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3158 B Avenue I', 'NULL', '578-555-0118', '2013-02-24', '1-2 Miles'], ['20440', '355', 'AW00020440', 'NULL', 'Alexandra', 'NULL', 'Hughes', '0', '1984-05-22', 'S', 'NULL', 'F', 'alexandra34@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4404 Mildred Avenue', 'NULL', '321-555-0162', '2013-05-26', '1-2 Miles'], ['20441', '59', 'AW00020441', 'NULL', 'Abigail', 'NULL', 'Henderson', '0', '1984-10-16', 'M', 'NULL', 'F', 'abigail30@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '3302 Trujillo', '# 112', '237-555-0174', '2013-08-25', '1-2 Miles'], ['20442', '301', 'AW00020442', 'NULL', 'Jorge', 'T', 'Chen', '0', '1978-07-15', 'M', 'NULL', 'M', 'jorge3@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6730 Green Leaf Drive', 'NULL', '428-555-0160', '2013-05-15', '5-10 Miles'], ['20443', '326', 'AW00020443', 'NULL', 'Adrian', 'J', 'Cox', '0', '1981-10-06', 'S', 'NULL', 'M', 'adrian12@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '9525 Canyon Way', 'NULL', '111-555-0171', '2013-10-04', '1-2 Miles'], ['20444', '31', 'AW00020444', 'NULL', 'Cara', 'NULL', 'Zeng', '0', '1966-09-09', 'S', 'NULL', 'F', 'cara18@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5203 Foothill Way', 'NULL', '1 (11) 500 555-0154', '2011-11-27', '5-10 Miles'], ['20445', '5', 'AW00020445', 'NULL', 'Barbara', 'NULL', 'Deng', '0', '1966-10-15', 'M', 'NULL', 'F', 'barbara32@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6120 Ethan Ct.', 'NULL', '1 (11) 500 555-0191', '2011-11-18', '5-10 Miles'], ['20446', '25', 'AW00020446', 'NULL', 'Clayton', 'K', 'Rai', '0', '1960-08-06', 'M', 'NULL', 'M', 'clayton35@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6603 Jennifer Way', 'NULL', '1 (11) 500 555-0149', '2011-10-29', '5-10 Miles'], ['20447', '15', 'AW00020447', 'NULL', 'Jodi', 'NULL', 'Goel', '0', '1961-08-30', 'S', 'NULL', 'F', 'jodi20@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3576 Frigate Ct.', 'NULL', '1 (11) 500 555-0163', '2011-10-30', '1-2 Miles'], ['20448', '16', 'AW00020448', 'NULL', 'Jésus', 'E', 'Blanco', '0', '1967-02-18', 'M', 'NULL', 'M', 'jésus14@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3944 Concord Blvd.', 'NULL', '1 (11) 500 555-0145', '2011-11-19', '5-10 Miles'], ['20449', '302', 'AW00020449', 'NULL', 'Rachel', 'NULL', 'Walker', '0', '1981-10-05', 'S', 'NULL', 'F', 'rachel26@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '2036 Bellwood Court', 'NULL', '395-555-0116', '2013-07-10', '1-2 Miles'], ['20450', '5', 'AW00020450', 'NULL', 'Edwin', 'NULL', 'Tang', '0', '1962-08-10', 'S', 'NULL', 'M', 'edwin26@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2897 Stonehedge Dr', 'NULL', '1 (11) 500 555-0161', '2011-11-20', '5-10 Miles'], ['20451', '10', 'AW00020451', 'NULL', 'Kelli', 'A', 'Anand', '0', '1962-11-12', 'S', 'NULL', 'F', 'kelli45@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '773 Mt. Wilson Place', 'NULL', '1 (11) 500 555-0161', '2011-11-17', '5-10 Miles'], ['20452', '39', 'AW00020452', 'NULL', 'Kelli', 'J', 'Xie', '0', '1974-04-06', 'S', 'NULL', 'F', 'kelli26@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '9870 Santa Maria Ct.', 'NULL', '1 (11) 500 555-0149', '2011-11-23', '5-10 Miles'], ['20453', '16', 'AW00020453', 'NULL', 'Bryant', 'C', 'Arun', '0', '1969-09-13', 'M', 'NULL', 'M', 'bryant7@adventure-works.com', '100000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '623 Lakespring Place', 'NULL', '1 (11) 500 555-0160', '2013-02-01', '0-1 Miles'], ['20454', '26', 'AW00020454', 'NULL', 'Fernando', 'NULL', 'Martinez', '0', '1963-12-07', 'S', 'NULL', 'M', 'fernando15@adventure-works.com', '110000.00', '5', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '7426 Forest Way', 'NULL', '1 (11) 500 555-0134', '2013-06-30', '2-5 Miles'], ['20455', '37', 'AW00020455', 'NULL', 'Bruce', 'C', 'Blanco', '0', '1969-12-01', 'M', 'NULL', 'M', 'bruce36@adventure-works.com', '110000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '5430 Moretti Dr.', 'NULL', '1 (11) 500 555-0147', '2014-01-19', '2-5 Miles'], ['20456', '39', 'AW00020456', 'NULL', 'Alfredo', 'NULL', 'Ramos', '0', '1963-08-10', 'S', 'NULL', 'M', 'alfredo18@adventure-works.com', '130000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '9108 Clear', 'NULL', '1 (11) 500 555-0125', '2011-11-12', '0-1 Miles'], ['20457', '545', 'AW00020457', 'NULL', 'Alexandra', 'NULL', 'Morris', '0', '1985-04-07', 'M', 'NULL', 'F', 'alexandra3@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3545 RiverRock Dr.', 'NULL', '821-555-0116', '2013-05-28', '5-10 Miles'], ['20458', '302', 'AW00020458', 'NULL', 'Erick', 'S', 'Subram', '0', '1980-05-13', 'M', 'NULL', 'M', 'erick12@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3744 Dalis Drive', 'NULL', '567-555-0166', '2013-04-29', '5-10 Miles'], ['20459', '307', 'AW00020459', 'NULL', 'Maria', 'J', 'Barnes', '0', '1980-04-05', 'M', 'NULL', 'F', 'maria26@adventure-works.com', '60000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '9056 Mount Dr', 'NULL', '177-555-0199', '2013-07-29', '5-10 Miles'], ['20460', '12', 'AW00020460', 'NULL', 'Wesley', 'NULL', 'Zeng', '0', '1975-09-19', 'M', 'NULL', 'M', 'wesley22@adventure-works.com', '110000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '2321 Wilson Ln.', 'NULL', '1 (11) 500 555-0119', '2013-02-10', '2-5 Miles'], ['20461', '361', 'AW00020461', 'NULL', 'Mackenzie', 'NULL', 'Nelson', '0', '1971-12-19', 'S', 'NULL', 'F', 'mackenzie31@adventure-works.com', '150000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '21, avenue Reille', 'NULL', '306-555-0179', '2013-06-01', '0-1 Miles'], ['20462', '385', 'AW00020462', 'NULL', 'Haley', 'C', 'Mitchell', '0', '1972-02-21', 'S', 'NULL', 'F', 'haley50@adventure-works.com', '160000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '4', '7113 Reliez Valley Ct', 'NULL', '388-555-0157', '2013-06-09', '1-2 Miles'], ['20463', '314', 'AW00020463', 'NULL', 'Jasmine', 'J', 'Bryant', '0', '1963-02-23', 'M', 'NULL', 'F', 'jasmine57@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '8028 39th Avenue', 'NULL', '113-555-0177', '2013-07-19', '1-2 Miles'], ['20464', '536', 'AW00020464', 'NULL', 'Amy', 'A', 'Lu', '0', '1962-07-23', 'M', 'NULL', 'F', 'amy18@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '2613 West I St.', 'NULL', '316-555-0130', '2013-06-23', '0-1 Miles'], ['20465', '310', 'AW00020465', 'NULL', 'Isabel', 'L', 'Henderson', '0', '1968-06-05', 'M', 'NULL', 'F', 'isabel5@adventure-works.com', '80000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '8066 Peach Place', 'NULL', '513-555-0118', '2013-06-05', '0-1 Miles'], ['20466', '352', 'AW00020466', 'NULL', 'Benjamin', 'NULL', 'Jai', '0', '1968-02-01', 'M', 'NULL', 'M', 'benjamin34@adventure-works.com', '90000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '2894 Foothill Way', 'NULL', '674-555-0185', '2014-01-20', '5-10 Miles'], ['20467', '618', 'AW00020467', 'NULL', 'Gabrielle', 'NULL', 'Bennett', '0', '1961-11-30', 'M', 'NULL', 'F', 'gabrielle23@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '1233 Vista Bonita', 'NULL', '160-555-0188', '2013-10-21', '5-10 Miles'], ['20468', '66', 'AW00020468', 'NULL', 'Olivia', 'NULL', 'Richardson', '0', '1961-12-03', 'M', 'NULL', 'F', 'olivia35@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '6863 Shakespeare Dr', 'NULL', '114-555-0177', '2012-04-22', '1-2 Miles'], ['20469', '536', 'AW00020469', 'NULL', 'Manuel', 'G', 'Suri', '0', '1961-08-31', 'M', 'NULL', 'M', 'manuel0@adventure-works.com', '70000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '3111 Creekridge Lane', 'NULL', '392-555-0155', '2013-12-17', '5-10 Miles'], ['20470', '62', 'AW00020470', 'NULL', 'Melissa', 'W', 'Gonzales', '0', '1967-08-23', 'S', 'NULL', 'F', 'melissa12@adventure-works.com', '70000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2983 Birchbark Place', 'NULL', '811-555-0197', '2012-04-17', '5-10 Miles'], ['20471', '623', 'AW00020471', 'NULL', 'Carlos', 'NULL', 'Gonzalez', '0', '1937-07-04', 'M', 'NULL', 'M', 'carlos36@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2926 St. Paul Way', 'NULL', '436-555-0124', '2013-12-02', '1-2 Miles'], ['20472', '536', 'AW00020472', 'NULL', 'Edward', 'A', 'Coleman', '0', '1976-01-17', 'S', 'NULL', 'M', 'edward54@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '4111 Del Vista Court', 'NULL', '451-555-0175', '2013-06-27', '2-5 Miles'], ['20473', '536', 'AW00020473', 'NULL', 'Mason', 'M', 'Rivera', '0', '1970-10-01', 'M', 'NULL', 'M', 'mason15@adventure-works.com', '90000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '1848 Wharf Dr.', 'NULL', '949-555-0164', '2014-01-26', '0-1 Miles'], ['20474', '542', 'AW00020474', 'NULL', 'Edward', 'S', 'Turner', '0', '1976-04-01', 'M', 'NULL', 'M', 'edward16@adventure-works.com', '100000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '6498 Mining Rd.', 'NULL', '364-555-0152', '2013-07-29', '0-1 Miles'], ['20475', '307', 'AW00020475', 'NULL', 'Blake', 'M', 'Martinez', '0', '1971-03-26', 'M', 'NULL', 'M', 'blake17@adventure-works.com', '110000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '564 Greenwood Place', 'NULL', '973-555-0165', '2013-06-10', '2-5 Miles'], ['20476', '361', 'AW00020476', 'NULL', 'Destiny', 'NULL', 'Long', '0', '1971-03-06', 'S', 'NULL', 'F', 'destiny58@adventure-works.com', '130000.00', '1', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '1278 Holly Oak Drive', 'NULL', '524-555-0157', '2013-06-02', '0-1 Miles'], ['20477', '361', 'AW00020477', 'NULL', 'Brandon', 'E', 'Washington', '0', '1970-08-17', 'S', 'NULL', 'M', 'brandon10@adventure-works.com', '130000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '7393 Jacaranda Dr.', 'NULL', '248-555-0171', '2013-07-07', '0-1 Miles'], ['20478', '58', 'AW00020478', 'NULL', 'Jonathan', 'NULL', 'Moore', '0', '1975-10-31', 'M', 'NULL', 'M', 'jonathan58@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '0', '4015 Colton Ln.', 'NULL', '449-555-0139', '2013-05-12', '0-1 Miles'], ['20479', '66', 'AW00020479', 'NULL', 'Andrew', 'NULL', 'Jackson', '0', '1975-05-17', 'M', 'NULL', 'M', 'andrew21@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '9476 Hill Top Rd.', 'NULL', '156-555-0149', '2013-10-12', '2-5 Miles'], ['20480', '543', 'AW00020480', 'NULL', 'Carlos', 'L', 'Cox', '0', '1973-05-20', 'S', 'NULL', 'M', 'carlos12@adventure-works.com', '40000.00', '3', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1407 Leslie Ave.', 'NULL', '301-555-0179', '2013-07-17', '0-1 Miles'], ['20481', '345', 'AW00020481', 'NULL', 'Jordan', 'L', 'Edwards', '0', '1973-03-03', 'M', 'NULL', 'M', 'jordan55@adventure-works.com', '40000.00', '3', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6898 Roxie Lane', 'NULL', '301-555-0135', '2013-07-27', '2-5 Miles'], ['20482', '612', 'AW00020482', 'NULL', 'Gina', 'NULL', 'Diaz', '0', '1973-04-18', 'S', 'NULL', 'F', 'gina3@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9889 Matterhorn Court', 'NULL', '292-555-0118', '2013-06-25', '2-5 Miles'], ['20483', '64', 'AW00020483', 'NULL', 'Austin', 'NULL', 'Kumar', '0', '1967-09-07', 'M', 'NULL', 'M', 'austin25@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2846 Thomas Ave', 'NULL', '216-555-0183', '2012-05-07', '2-5 Miles'], ['20484', '352', 'AW00020484', 'NULL', 'Gabriella', 'NULL', 'Morgan', '0', '1947-08-22', 'S', 'NULL', 'F', 'gabriella20@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '531 MacArthur Ave', 'NULL', '361-555-0185', '2013-07-21', '1-2 Miles'], ['20485', '338', 'AW00020485', 'NULL', 'Richard', 'NULL', 'Reed', '0', '1959-01-08', 'M', 'NULL', 'M', 'richard101@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2461 Orangewood Court', 'NULL', '271-555-0118', '2013-07-08', '10+ Miles'], ['20486', '385', 'AW00020486', 'NULL', 'Jack', 'NULL', 'Butler', '0', '1948-03-09', 'M', 'NULL', 'M', 'jack14@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8396 Grand Ct', 'NULL', '193-555-0187', '2013-09-21', '10+ Miles'], ['20487', '609', 'AW00020487', 'NULL', 'Alexander', 'D', 'White', '0', '1947-09-01', 'M', 'NULL', 'M', 'alexander16@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9186 Sandalwood Dr.', 'NULL', '323-555-0138', '2013-05-01', '10+ Miles'], ['20488', '623', 'AW00020488', 'NULL', 'Cassidy', 'NULL', 'Foster', '0', '1947-09-12', 'M', 'NULL', 'F', 'cassidy17@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7943 All Ways Drive', '# 105', '348-555-0112', '2013-11-22', '10+ Miles'], ['20489', '626', 'AW00020489', 'NULL', 'Jacob', 'F', 'Davis', '0', '1953-10-04', 'S', 'NULL', 'M', 'jacob5@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1619 Stillman Court', 'NULL', '629-555-0119', '2013-04-23', '10+ Miles'], ['20490', '339', 'AW00020490', 'NULL', 'Kaylee', 'G', 'Roberts', '0', '1948-09-29', 'M', 'NULL', 'F', 'kaylee25@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '521 Hermosa', 'NULL', '991-555-0135', '2013-12-30', '10+ Miles'], ['20491', '616', 'AW00020491', 'NULL', 'Dakota', 'NULL', 'Perry', '0', '1948-07-10', 'M', 'NULL', 'M', 'dakota6@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6751 Del Rio Ln.', 'NULL', '126-555-0158', '2014-01-05', '10+ Miles'], ['20492', '54', 'AW00020492', 'NULL', 'Madison', 'C', 'Martin', '0', '1948-08-12', 'M', 'NULL', 'F', 'madison15@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4472 Galveston Ct.', 'NULL', '590-555-0124', '2013-01-31', '1-2 Miles'], ['20493', '545', 'AW00020493', 'NULL', 'Matthew', 'NULL', 'Jackson', '0', '1954-02-07', 'M', 'NULL', 'M', 'matthew17@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2601 Cambridge Drive', 'NULL', '971-555-0115', '2013-11-14', '1-2 Miles'], ['20494', '329', 'AW00020494', 'NULL', 'Jesse', 'E', 'Peterson', '0', '1959-12-08', 'M', 'NULL', 'M', 'jesse5@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5556 Riverland Dr.', 'NULL', '822-555-0198', '2013-03-04', '5-10 Miles'], ['20495', '302', 'AW00020495', 'NULL', 'Wesley', 'A', 'Wang', '0', '1949-03-10', 'M', 'NULL', 'M', 'wesley1@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '9151 Napa C.', 'NULL', '594-555-0140', '2013-06-18', '1-2 Miles'], ['20496', '316', 'AW00020496', 'NULL', 'Jada', 'J', 'Roberts', '0', '1949-03-03', 'M', 'NULL', 'F', 'jada17@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '2362 Cook Pkwy', 'NULL', '331-555-0144', '2013-07-22', '1-2 Miles'], ['20497', '302', 'AW00020497', 'NULL', 'Francisco', 'NULL', 'Javier Castrejón', '0', '1949-09-01', 'M', 'NULL', 'F', 'francisco0@adventure-works.com', '30000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '1238 Joan Ave.', 'NULL', '263-555-0185', '2013-02-28', '1-2 Miles'], ['20498', '57', 'AW00020498', 'NULL', 'Miguel', 'NULL', 'Phillips', '0', '1949-11-08', 'M', 'NULL', 'M', 'miguel41@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '8624 Valley Blvd.', 'NULL', '556-555-0131', '2013-07-30', '10+ Miles'], ['20499', '50', 'AW00020499', 'NULL', 'Christian', 'T', 'Robinson', '0', '1955-12-21', 'S', 'NULL', 'M', 'christian33@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4261 Roseann Drive', 'NULL', '595-555-0183', '2014-01-11', '10+ Miles'], ['20500', '60', 'AW00020500', 'NULL', 'Morgan', 'E', 'Butler', '0', '1949-10-24', 'M', 'NULL', 'F', 'morgan84@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '1092 Boxer Blvd', 'NULL', '754-555-0134', '2013-04-23', '10+ Miles'], ['20501', '638', 'AW00020501', 'NULL', 'Morgan', 'NULL', 'Nelson', '0', '1950-03-16', 'M', 'NULL', 'F', 'morgan7@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6682 B Way', 'NULL', '122-555-0152', '2013-07-28', '1-2 Miles'], ['20502', '315', 'AW00020502', 'NULL', 'John', 'NULL', 'Harris', '0', '1949-10-24', 'M', 'NULL', 'M', 'john51@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4435 Ban Bridge Pl.', 'NULL', '245-555-0195', '2013-04-20', '10+ Miles'], ['20503', '301', 'AW00020503', 'NULL', 'Tony', 'E', 'Jai', '0', '1950-08-31', 'M', 'NULL', 'M', 'tony14@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '5415 San Gabriel Dr.', 'NULL', '291-555-0140', '2013-04-17', '2-5 Miles'], ['20504', '334', 'AW00020504', 'NULL', 'Rakesh', 'J', 'Tangirala', '0', '1951-03-06', 'M', 'NULL', 'F', 'rakesh0@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '6270 North Star Dr.', 'NULL', '702-555-0118', '2013-09-05', '2-5 Miles'], ['20505', '385', 'AW00020505', 'NULL', 'Alexa', 'NULL', 'Cox', '0', '1950-11-07', 'M', 'NULL', 'F', 'alexa8@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '6537 N Ranchford Court', 'NULL', '327-555-0116', '2013-04-04', '10+ Miles'], ['20506', '634', 'AW00020506', 'NULL', 'Paige', 'NULL', 'Bradley', '0', '1950-10-13', 'M', 'NULL', 'F', 'paige1@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '3354 Texas Way', 'NULL', '443-555-0183', '2013-03-03', '10+ Miles'], ['20507', '642', 'AW00020507', 'NULL', 'Joshua', 'A', 'Anderson', '0', '1961-08-11', 'M', 'NULL', 'M', 'joshua11@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '3148 Rose Street', 'NULL', '307-555-0182', '2013-06-14', '2-5 Miles'], ['20508', '66', 'AW00020508', 'NULL', 'Logan', 'NULL', 'Robinson', '0', '1951-04-06', 'S', 'NULL', 'M', 'logan70@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '417 Mt. Alpine Pl.', 'NULL', '670-555-0121', '2013-12-31', '10+ Miles'], ['20509', '329', 'AW00020509', 'NULL', 'Alexandria', 'NULL', 'Murphy', '0', '1950-10-19', 'M', 'NULL', 'F', 'alexandria37@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2923 St Paul Circle', 'NULL', '116-555-0116', '2013-05-01', '10+ Miles'], ['20510', '543', 'AW00020510', 'NULL', 'Caitlin', 'NULL', 'Cox', '0', '1952-05-07', 'M', 'NULL', 'F', 'caitlin8@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '4696 Silver Oaks Place', 'NULL', '448-555-0153', '2014-01-11', '2-5 Miles'], ['20511', '347', 'AW00020511', 'NULL', 'Matthew', 'L', 'Taylor', '0', '1952-04-17', 'M', 'NULL', 'M', 'matthew14@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1185 Dallis Drive', 'NULL', '700-555-0147', '2013-11-18', '10+ Miles'], ['20512', '339', 'AW00020512', 'NULL', 'Sydney', 'NULL', 'Parker', '0', '1952-09-05', 'M', 'NULL', 'F', 'sydney50@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '2782 Pacific', 'NULL', '610-555-0111', '2013-03-26', '2-5 Miles'], ['20513', '607', 'AW00020513', 'NULL', 'Joseph', 'T', 'Smith', '0', '1952-08-02', 'S', 'NULL', 'M', 'joseph6@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '3397 Rancho View Drive', 'NULL', '611-555-0198', '2013-03-29', '10+ Miles'], ['20514', '644', 'AW00020514', 'NULL', 'Hannah', 'NULL', 'Griffin', '0', '1952-10-31', 'M', 'NULL', 'F', 'hannah42@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '9014 Brownstone Rd.', 'NULL', '500-555-0128', '2013-09-25', '2-5 Miles'], ['20515', '369', 'AW00020515', 'NULL', 'Jenna', 'W', 'Edwards', '0', '1952-09-23', 'S', 'NULL', 'F', 'jenna1@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '1159 Filling Ave.', 'NULL', '544-555-0111', '2013-06-20', '10+ Miles'], ['20516', '383', 'AW00020516', 'NULL', 'Gabriel', 'NULL', 'Russell', '0', '1953-01-29', 'M', 'NULL', 'M', 'gabriel17@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7869 Sea Point Way', 'NULL', '161-555-0156', '2013-10-12', '10+ Miles'], ['20517', '54', 'AW00020517', 'NULL', 'Amber', 'B', 'Edwards', '0', '1953-06-09', 'M', 'NULL', 'F', 'amber1@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6713 Appalachian Drive', 'NULL', '684-555-0160', '2013-06-20', '10+ Miles'], ['20518', '307', 'AW00020518', 'NULL', 'Desiree', 'NULL', 'Sanz', '0', '1958-10-20', 'M', 'NULL', 'F', 'desiree16@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '1881 Pinehurst Court', 'NULL', '423-555-0189', '2013-08-14', '10+ Miles'], ['20519', '49', 'AW00020519', 'NULL', 'Trevor', 'B', 'Diaz', '0', '1953-08-19', 'M', 'NULL', 'M', 'trevor21@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1509 American Beauty Dr.', 'NULL', '772-555-0127', '2013-11-29', '2-5 Miles'], ['20520', '611', 'AW00020520', 'NULL', 'Cassandra', 'S', 'Srini', '0', '1953-12-09', 'S', 'NULL', 'F', 'cassandra9@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '9838 Carob Way', 'NULL', '561-555-0127', '2013-03-29', '10+ Miles'], ['20521', '611', 'AW00020521', 'NULL', 'Gina', 'R', 'Carlson', '0', '1954-01-11', 'M', 'NULL', 'F', 'gina18@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '336 E Eagle Peak Rd.', 'NULL', '493-555-0158', '2013-12-07', '2-5 Miles'], ['20522', '322', 'AW00020522', 'NULL', 'Kevin', 'NULL', 'Parker', '0', '1954-06-07', 'M', 'NULL', 'M', 'kevin36@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '7725 Cambelback Pl.', 'NULL', '137-555-0117', '2013-08-16', '10+ Miles'], ['20523', '331', 'AW00020523', 'NULL', 'Emma', 'NULL', 'Howard', '0', '1953-11-08', 'M', 'NULL', 'F', 'emma38@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '8198 Mt. Whitney Dr.', 'NULL', '256-555-0139', '2013-11-27', '10+ Miles'], ['20524', '539', 'AW00020524', 'NULL', 'Angelica', 'J', 'Jenkins', '0', '1960-04-01', 'S', 'NULL', 'F', 'angelica6@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6489 Palms', 'NULL', '173-555-0120', '2013-05-28', '10+ Miles'], ['20525', '298', 'AW00020525', 'NULL', 'James', 'NULL', 'Kumar', '0', '1960-08-18', 'M', 'NULL', 'M', 'james44@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '9737 Boxwood Dr', 'NULL', '986-555-0139', '2013-07-10', '2-5 Miles'], ['20526', '335', 'AW00020526', 'NULL', 'Brittany', 'NULL', 'Alexander', '0', '1960-05-23', 'S', 'NULL', 'F', 'brittany17@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '3106 Maywood Ln', 'NULL', '804-555-0125', '2013-07-27', '10+ Miles'], ['20527', '345', 'AW00020527', 'NULL', 'Sydney', 'A', 'Harris', '0', '1954-09-15', 'M', 'NULL', 'F', 'sydney76@adventure-works.com', '70000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2601 D Bel Air Drive', 'NULL', '433-555-0113', '2013-07-22', '1-2 Miles'], ['20528', '53', 'AW00020528', 'NULL', 'Mason', 'T', 'Adams', '0', '1956-04-03', 'M', 'NULL', 'M', 'mason35@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9127 Grenola Dr.', 'NULL', '168-555-0134', '2013-03-06', '2-5 Miles'], ['20529', '609', 'AW00020529', 'NULL', 'Destiny', 'M', 'Jackson', '0', '1956-05-26', 'S', 'NULL', 'F', 'destiny11@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '5024 Countrywood Ct.', 'NULL', '171-555-0158', '2013-07-06', '2-5 Miles'], ['20530', '552', 'AW00020530', 'NULL', 'Mariah', 'M', 'Jenkins', '0', '1955-10-01', 'M', 'NULL', 'F', 'mariah11@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4475 Terra Calitina', 'NULL', '924-555-0164', '2013-04-30', '10+ Miles'], ['20531', '302', 'AW00020531', 'NULL', 'James', 'M', 'Young', '0', '1955-09-22', 'M', 'NULL', 'M', 'james67@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '4295 Bentley St.', 'NULL', '149-555-0145', '2013-11-23', '10+ Miles'], ['20532', '312', 'AW00020532', 'NULL', 'Joan', 'D', 'Watson', '0', '1961-04-19', 'M', 'NULL', 'F', 'joan10@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '8836 D Bel Air Drive', 'NULL', '912-555-0141', '2013-12-09', '10+ Miles'], ['20533', '315', 'AW00020533', 'NULL', 'Luis', 'NULL', 'Perry', '0', '1956-03-06', 'M', 'NULL', 'M', 'luis6@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '2268 Cobblestone Ct', 'NULL', '714-555-0144', '2013-08-04', '2-5 Miles'], ['20534', '325', 'AW00020534', 'NULL', 'Dalton', 'W', 'Lopez', '0', '1966-09-06', 'M', 'NULL', 'M', 'dalton27@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7412 N. Civic Drive', 'NULL', '323-555-0179', '2013-09-18', '2-5 Miles'], ['20535', '331', 'AW00020535', 'NULL', 'Riley', 'T', 'Torres', '0', '1972-02-05', 'M', 'NULL', 'F', 'riley23@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6142 Kentucky Drive', 'NULL', '485-555-0126', '2013-10-20', '10+ Miles'], ['20536', '361', 'AW00020536', 'NULL', 'Taylor', 'M', 'Gray', '0', '1955-08-10', 'S', 'NULL', 'F', 'taylor18@adventure-works.com', '80000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '3632 Bank Way', 'NULL', '185-555-0180', '2013-10-20', '5-10 Miles'], ['20537', '372', 'AW00020537', 'NULL', 'Thomas', 'NULL', 'Evans', '0', '1955-11-12', 'S', 'NULL', 'M', 'thomas37@adventure-works.com', '80000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '492 Pierce Court', 'NULL', '592-555-0142', '2013-01-29', '5-10 Miles'], ['20538', '642', 'AW00020538', 'NULL', 'Hailey', 'R', 'Bennett', '0', '1962-08-12', 'M', 'NULL', 'F', 'hailey22@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '3972 Almond Drive', 'NULL', '788-555-0196', '2013-10-11', '2-5 Miles'], ['20539', '648', 'AW00020539', 'NULL', 'Luis', 'NULL', 'Baker', '0', '1957-03-20', 'M', 'NULL', 'M', 'luis40@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '1178 Sandy Blvd.', 'NULL', '263-555-0110', '2013-09-23', '10+ Miles'], ['20540', '299', 'AW00020540', 'NULL', 'Jasmine', 'NULL', 'Flores', '0', '1956-12-18', 'M', 'NULL', 'F', 'jasmine51@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '4691 Frisbie Court', 'NULL', '139-555-0182', '2013-12-07', '2-5 Miles'], ['20541', '315', 'AW00020541', 'NULL', 'Allison', 'M', 'Hernandez', '0', '1957-03-01', 'M', 'NULL', 'F', 'allison41@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '19 Fieldcrest Dr.', 'NULL', '882-555-0115', '2013-07-07', '2-5 Miles'], ['20542', '336', 'AW00020542', 'NULL', 'Hailey', 'W', 'Green', '0', '1956-11-04', 'M', 'NULL', 'F', 'hailey54@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '7315 W. Holly Drive', 'NULL', '326-555-0172', '2013-08-15', '10+ Miles'], ['20543', '383', 'AW00020543', 'NULL', 'Seth', 'NULL', 'Miller', '0', '1962-02-12', 'M', 'NULL', 'M', 'seth6@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '6359 Mozden Lane', 'NULL', '112-555-0110', '2013-07-30', '2-5 Miles'], ['20544', '627', 'AW00020544', 'NULL', 'Dalton', 'NULL', 'Hall', '0', '1958-04-25', 'M', 'NULL', 'M', 'dalton23@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7239 Green Leaf Drive', 'NULL', '484-555-0195', '2013-07-06', '2-5 Miles'], ['20545', '623', 'AW00020545', 'NULL', 'Vanessa', 'NULL', 'Butler', '0', '1958-02-18', 'S', 'NULL', 'F', 'vanessa15@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '8922 Preston Ct', 'NULL', '863-555-0184', '2013-08-14', '2-5 Miles'], ['20546', '43', 'AW00020546', 'NULL', 'Ruth', 'NULL', 'Fernandez', '0', '1958-04-25', 'M', 'NULL', 'F', 'ruth20@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '7239 Green Leaf Drive', 'NULL', '701-555-0131', '2012-05-02', '2-5 Miles'], ['20547', '56', 'AW00020547', 'NULL', 'Ethan', 'NULL', 'Chen', '0', '1959-03-07', 'M', 'NULL', 'M', 'ethan22@adventure-works.com', '70000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '5960 Cross Road', '# 20', '911-555-0117', '2013-09-04', '2-5 Miles'], ['20548', '152', 'AW00020548', 'NULL', 'Phillip', 'S', 'Rodriguez', '0', '1963-05-02', 'M', 'NULL', 'M', 'phillip21@adventure-works.com', '120000.00', '2', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Wallstr 348', 'NULL', '1 (11) 500 555-0169', '2012-04-03', '5-10 Miles'], ['20549', '147', 'AW00020549', 'NULL', 'Jennifer', 'D', 'Morris', '0', '1962-11-06', 'M', 'NULL', 'F', 'jennifer54@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Auf dem Ufer 4', 'NULL', '1 (11) 500 555-0164', '2012-04-27', '5-10 Miles'], ['20550', '235', 'AW00020550', 'NULL', 'Mohamed', 'NULL', 'Pal', '0', '1979-12-13', 'M', 'NULL', 'F', 'mohamed1@adventure-works.com', '150000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '3633 Stratton Circle', 'NULL', '1 (11) 500 555-0174', '2013-05-10', '5-10 Miles'], ['20551', '245', 'AW00020551', 'NULL', 'Daisy', 'L', 'Blanco', '0', '1962-11-05', 'M', 'NULL', 'F', 'daisy10@adventure-works.com', '150000.00', '2', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '5018 Rio Blanco Dr.', 'NULL', '1 (11) 500 555-0113', '2014-01-25', '0-1 Miles'], ['20552', '259', 'AW00020552', 'NULL', 'Heather', 'E', 'Liang', '0', '1968-02-17', 'M', 'NULL', 'F', 'heather16@adventure-works.com', '150000.00', '2', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '6228 RaceCourt', 'NULL', '1 (11) 500 555-0167', '2011-06-01', '0-1 Miles'], ['20553', '216', 'AW00020553', 'NULL', 'Damien', 'NULL', 'Xie', '0', '1962-05-24', 'M', 'NULL', 'M', 'damien20@adventure-works.com', '100000.00', '2', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '1, allée des Princes', 'NULL', '1 (11) 500 555-0162', '2013-11-24', '5-10 Miles'], ['20554', '165', 'AW00020554', 'NULL', 'Donna', 'S', 'Tang', '0', '1961-09-11', 'M', 'NULL', 'F', 'donna4@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Lützowplatz 5938', 'NULL', '1 (11) 500 555-0161', '2013-04-27', '5-10 Miles'], ['20555', '118', 'AW00020555', 'NULL', 'Kelvin', 'V', 'Raje', '0', '1962-03-12', 'M', 'NULL', 'M', 'kelvin10@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '4', 'Parise Straße 1551', 'NULL', '1 (11) 500 555-0132', '2012-04-10', '5-10 Miles'], ['20556', '158', 'AW00020556', 'NULL', 'Glenn', 'D', 'Sun', '0', '1967-11-29', 'M', 'NULL', 'M', 'glenn14@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Helsenbergbogen 2', 'NULL', '1 (11) 500 555-0180', '2012-04-23', '5-10 Miles'], ['20557', '231', 'AW00020557', 'NULL', 'Lindsay', 'H', 'Lal', '0', '1962-02-12', 'M', 'NULL', 'F', 'lindsay8@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '6985 Countrywood Ct', 'NULL', '1 (11) 500 555-0176', '2013-10-06', '5-10 Miles'], ['20558', '271', 'AW00020558', 'NULL', 'Brianna', 'L', 'Stewart', '0', '1961-12-01', 'M', 'NULL', 'F', 'brianna24@adventure-works.com', '170000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '1996 Glenhaven Ave South', 'NULL', '1 (11) 500 555-0112', '2011-07-07', '5-10 Miles'], ['20559', '190', 'AW00020559', 'NULL', 'Isabella', 'H', 'Diaz', '0', '1961-04-18', 'M', 'NULL', 'F', 'isabella32@adventure-works.com', '110000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '4011, rue de Longchamp', 'NULL', '1 (11) 500 555-0183', '2013-03-15', '10+ Miles'], ['20560', '127', 'AW00020560', 'NULL', 'Mindy', 'NULL', 'Raji', '0', '1977-12-01', 'M', 'NULL', 'F', 'mindy26@adventure-works.com', '110000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Postfach 99 01 01', 'NULL', '1 (11) 500 555-0149', '2012-04-12', '5-10 Miles'], ['20561', '233', 'AW00020561', 'NULL', 'Willie', 'NULL', 'Liu', '0', '1960-11-19', 'S', 'NULL', 'M', 'willie4@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '2291 Kreuger Drive', 'NULL', '1 (11) 500 555-0116', '2011-08-04', '0-1 Miles'], ['20562', '237', 'AW00020562', 'Mr.', 'Jim', 'NULL', 'Rodman', '0', '1966-09-09', 'M', 'NULL', 'F', 'jim4@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '2377 Joyce Dr', 'NULL', '899-555-0100', '2011-08-14', '5-10 Miles'], ['20563', '173', 'AW00020563', 'NULL', 'Kendra', 'NULL', 'Blanco', '0', '1950-02-22', 'M', 'NULL', 'F', 'kendra15@adventure-works.com', '110000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', 'Postfach 77 06 06', 'NULL', '1 (11) 500 555-0185', '2013-06-13', '10+ Miles'], ['20564', '235', 'AW00020564', 'NULL', 'Jessie', 'NULL', 'Gao', '0', '1950-04-27', 'S', 'NULL', 'M', 'jessie19@adventure-works.com', '130000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '6564 Bellwood Dr', 'NULL', '1 (11) 500 555-0114', '2011-08-31', '0-1 Miles'], ['20565', '244', 'AW00020565', 'NULL', 'Tasha', 'NULL', 'Yuan', '0', '1949-11-08', 'M', 'NULL', 'F', 'tasha7@adventure-works.com', '130000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '8624 Valley Blvd.', 'NULL', '1 (11) 500 555-0178', '2013-07-09', '0-1 Miles'], ['20566', '232', 'AW00020566', 'NULL', 'George', 'L', 'Mehta', '0', '1950-08-11', 'M', 'NULL', 'M', 'george20@adventure-works.com', '110000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '4848 Lighthouse Way', 'NULL', '1 (11) 500 555-0171', '2013-07-07', '5-10 Miles'], ['20567', '259', 'AW00020567', 'NULL', 'Nicolas', 'P', 'Anand', '0', '1962-02-08', 'M', 'NULL', 'M', 'nicolas20@adventure-works.com', '130000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '6154 Geneva Ave.', 'NULL', '1 (11) 500 555-0115', '2011-11-23', '5-10 Miles'], ['20568', '196', 'AW00020568', 'NULL', 'Dustin', 'NULL', 'Raji', '0', '1951-12-16', 'M', 'NULL', 'M', 'dustin21@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '36, avenue de la Gare', 'NULL', '1 (11) 500 555-0129', '2013-05-28', '2-5 Miles'], ['20569', '237', 'AW00020569', 'NULL', 'Patricia', 'NULL', 'Patel', '0', '1957-11-15', 'M', 'NULL', 'F', 'patricia8@adventure-works.com', '130000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '1192 A St.', 'NULL', '1 (11) 500 555-0114', '2011-11-03', '5-10 Miles'], ['20570', '254', 'AW00020570', 'NULL', 'George', 'L', 'Martinez', '0', '1957-08-07', 'M', 'NULL', 'M', 'george24@adventure-works.com', '130000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '6155 Hawkridge Terr.', 'NULL', '1 (11) 500 555-0168', '2013-04-17', '0-1 Miles'], ['20571', '279', 'AW00020571', 'NULL', 'Allison', 'D', 'Gray', '0', '1952-04-10', 'S', 'NULL', 'F', 'allison4@adventure-works.com', '170000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '7735 Mt Hood Circle', 'NULL', '1 (11) 500 555-0145', '2013-10-06', '0-1 Miles'], ['20572', '171', 'AW00020572', 'NULL', 'Caroline', 'NULL', 'Diaz', '0', '1959-01-21', 'M', 'NULL', 'F', 'caroline23@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Erlenweg 74', 'NULL', '1 (11) 500 555-0111', '2013-08-19', '10+ Miles'], ['20573', '209', 'AW00020573', 'NULL', 'Megan', 'K', 'Ward', '0', '1975-05-17', 'M', 'NULL', 'F', 'megan40@adventure-works.com', '90000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '96, rue Maillard', 'NULL', '1 (11) 500 555-0117', '2013-11-19', '10+ Miles'], ['20574', '150', 'AW00020574', 'NULL', 'Brett', 'A', 'Patel', '0', '1960-05-13', 'M', 'NULL', 'M', 'brett2@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Curieweg 2', 'NULL', '1 (11) 500 555-0176', '2013-04-29', '0-1 Miles'], ['20575', '256', 'AW00020575', 'NULL', 'Stacey', 'NULL', 'Cai', '0', '1959-09-12', 'M', 'NULL', 'F', 'stacey22@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6183 Pinecrest Rd.', 'NULL', '1 (11) 500 555-0184', '2011-12-11', '10+ Miles'], ['20576', '256', 'AW00020576', 'NULL', 'Johnathan', 'NULL', 'Kapoor', '0', '1959-12-24', 'S', 'NULL', 'M', 'johnathan2@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '797 Seascape Circle', 'NULL', '1 (11) 500 555-0174', '2012-01-01', '0-1 Miles'], ['20577', '259', 'AW00020577', 'NULL', 'Sheila', 'NULL', 'Romero', '0', '1960-05-26', 'M', 'NULL', 'F', 'sheila9@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4864 A St.', 'NULL', '1 (11) 500 555-0181', '2011-12-30', '0-1 Miles'], ['20578', '192', 'AW00020578', 'NULL', 'Martin', 'N', 'Kapoor', '0', '1958-08-29', 'M', 'NULL', 'M', 'martin7@adventure-works.com', '100000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '40, rue des Bouchers', 'NULL', '1 (11) 500 555-0115', '2013-12-20', '2-5 Miles'], ['20579', '224', 'AW00020579', 'NULL', 'Alexandra', 'C', 'King', '0', '1964-08-29', 'M', 'NULL', 'F', 'alexandra60@adventure-works.com', '100000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '55, rue de Longchamp', 'NULL', '1 (11) 500 555-0118', '2013-12-03', '2-5 Miles'], ['20580', '201', 'AW00020580', 'NULL', 'Ernest', 'L', 'Huang', '0', '1963-03-12', 'S', 'NULL', 'M', 'ernest5@adventure-works.com', '80000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '28bis, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0126', '2013-03-13', '10+ Miles'], ['20581', '218', 'AW00020581', 'NULL', 'Ruth', 'E', 'Sanchez', '0', '1958-05-15', 'M', 'NULL', 'F', 'ruth24@adventure-works.com', '80000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '23, rue de Linois', 'NULL', '1 (11) 500 555-0195', '2013-11-01', '2-5 Miles'], ['20582', '209', 'AW00020582', 'NULL', 'Desiree', 'J', 'Bradley', '0', '1958-05-06', 'S', 'NULL', 'F', 'desiree12@adventure-works.com', '80000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '7055, rue de Longchamp', 'NULL', '1 (11) 500 555-0140', '2013-07-27', '10+ Miles'], ['20583', '132', 'AW00020583', 'NULL', 'Kristen', 'L', 'Wang', '0', '1973-09-12', 'M', 'NULL', 'F', 'kristen1@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Am Kreuz 123', 'NULL', '1 (11) 500 555-0120', '2013-06-08', '10+ Miles'], ['20584', '176', 'AW00020584', 'NULL', 'Molly', 'NULL', 'Schmidt', '0', '1956-10-23', 'S', 'NULL', 'F', 'molly10@adventure-works.com', '110000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Auf der Krone 4224', 'NULL', '1 (11) 500 555-0144', '2012-04-14', '10+ Miles'], ['20585', '261', 'AW00020585', 'NULL', 'Emily', 'NULL', 'Lee', '0', '1962-05-15', 'M', 'NULL', 'F', 'emily22@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '9600 Sweeney Road', 'NULL', '1 (11) 500 555-0118', '2013-08-27', '10+ Miles'], ['20586', '206', 'AW00020586', 'NULL', 'Clayton', 'NULL', 'Zhao', '0', '1961-10-13', 'M', 'NULL', 'M', 'clayton9@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '996, rue Maillard', 'NULL', '1 (11) 500 555-0161', '2013-05-29', '10+ Miles'], ['20587', '219', 'AW00020587', 'NULL', 'Shannon', 'L', 'Johnston', '0', '1956-04-25', 'M', 'NULL', 'M', 'shannon27@adventure-works.com', '100000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '4', '21, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0191', '2013-11-02', '5-10 Miles'], ['20588', '262', 'AW00020588', 'NULL', 'Nancy', 'M', 'Raman', '0', '1955-09-22', 'M', 'NULL', 'F', 'nancy15@adventure-works.com', '150000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '4', '4295 Bentley St.', 'NULL', '1 (11) 500 555-0116', '2013-02-19', '0-1 Miles'], ['20589', '189', 'AW00020589', 'NULL', 'Mackenzie', 'M', 'Rogers', '0', '1955-05-27', 'M', 'NULL', 'F', 'mackenzie18@adventure-works.com', '80000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '57, rue Lafayette', 'NULL', '1 (11) 500 555-0111', '2013-11-10', '5-10 Miles'], ['20590', '131', 'AW00020590', 'NULL', 'Todd', 'NULL', 'Zhang', '0', '1954-09-16', 'M', 'NULL', 'M', 'todd2@adventure-works.com', '100000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '4', 'Marienplatz 25', 'NULL', '1 (11) 500 555-0119', '2012-04-30', '10+ Miles'], ['20591', '150', 'AW00020591', 'NULL', 'Kara', 'NULL', 'Tang', '0', '1954-09-13', 'M', 'NULL', 'F', 'kara4@adventure-works.com', '120000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', 'Heiderweg 4982', 'NULL', '1 (11) 500 555-0172', '2013-02-26', '10+ Miles'], ['20592', '257', 'AW00020592', 'NULL', 'Jorge', 'J', 'Liu', '0', '1955-03-21', 'M', 'NULL', 'M', 'jorge5@adventure-works.com', '160000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '399 Orange Street', 'NULL', '1 (11) 500 555-0195', '2012-01-24', '10+ Miles'], ['20593', '211', 'AW00020593', 'NULL', 'Joel', 'M', 'Jordan', '0', '1954-04-22', 'M', 'NULL', 'M', 'joel0@adventure-works.com', '80000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '21, avenue de la Gare', 'NULL', '1 (11) 500 555-0154', '2013-08-28', '10+ Miles'], ['20594', '205', 'AW00020594', 'NULL', 'Arthur', 'NULL', 'Torres', '0', '1953-09-20', 'M', 'NULL', 'M', 'arthur36@adventure-works.com', '80000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '22, rue Henri Gagnon', 'NULL', '1 (11) 500 555-0153', '2013-03-30', '10+ Miles'], ['20595', '222', 'AW00020595', 'NULL', 'Karla', 'R', 'Andersen', '0', '1953-10-30', 'S', 'NULL', 'F', 'karla14@adventure-works.com', '80000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '65, boulevard Tremblay', 'NULL', '1 (11) 500 555-0181', '2013-07-10', '10+ Miles'], ['20596', '266', 'AW00020596', 'NULL', 'Janet', 'B', 'Ramos', '0', '1954-02-14', 'M', 'NULL', 'F', 'janet23@adventure-works.com', '130000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '2815 Poor Ridge Court', 'NULL', '1 (11) 500 555-0159', '2013-03-29', '0-1 Miles'], ['20597', '182', 'AW00020597', 'NULL', 'Carly', 'NULL', 'Beck', '0', '1953-04-24', 'M', 'NULL', 'F', 'carly18@adventure-works.com', '90000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2454, rue Lamarck', 'NULL', '1 (11) 500 555-0188', '2013-06-10', '5-10 Miles'], ['20598', '155', 'AW00020598', 'NULL', 'Jackson', 'A', 'Powell', '0', '1952-11-17', 'M', 'NULL', 'M', 'jackson11@adventure-works.com', '100000.00', '3', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '0', 'Heiderplatz 918', 'NULL', '1 (11) 500 555-0150', '2012-05-06', '10+ Miles'], ['20599', '241', 'AW00020599', 'NULL', 'Kyle', 'NULL', 'Wang', '0', '1952-12-09', 'M', 'NULL', 'M', 'kyle20@adventure-works.com', '120000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '5404 Panoramic Ave', 'NULL', '1 (11) 500 555-0131', '2013-08-13', '10+ Miles'], ['20600', '9', 'AW00020600', 'NULL', 'Dennis', 'J', 'Hu', '0', '1986-01-24', 'S', 'NULL', 'M', 'dennis22@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '2383 Mt. Davidson Court', 'NULL', '1 (11) 500 555-0120', '2011-11-01', '5-10 Miles'], ['20601', '7', 'AW00020601', 'NULL', 'Carrie', 'R', 'Munoz', '0', '1981-10-06', 'M', 'NULL', 'F', 'carrie7@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '5558 Kaitlin Pl.', 'NULL', '1 (11) 500 555-0120', '2014-01-28', '10+ Miles'], ['20602', '15', 'AW00020602', 'NULL', 'Casey', 'NULL', 'Moreno', '0', '1982-02-24', 'S', 'NULL', 'M', 'casey30@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '557 Diver Way', 'NULL', '1 (11) 500 555-0142', '2013-04-10', '10+ Miles'], ['20603', '31', 'AW00020603', 'NULL', 'Henry', 'L', 'Sullivan', '0', '1981-07-02', 'S', 'NULL', 'M', 'henry14@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '4429 Pine Creek Way', 'NULL', '1 (11) 500 555-0186', '2013-04-22', '10+ Miles'], ['20604', '31', 'AW00020604', 'NULL', 'Harold', 'J', 'Martinez', '0', '1979-10-11', 'S', 'NULL', 'M', 'harold15@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '4302 Oakleaf Ct.', 'NULL', '1 (11) 500 555-0159', '2013-08-31', '2-5 Miles'], ['20605', '32', 'AW00020605', 'NULL', 'Kevin', 'F', 'Yang', '0', '1986-01-30', 'S', 'NULL', 'M', 'kevin30@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '6155 Vista Oak Dr', 'NULL', '1 (11) 500 555-0152', '2013-04-25', '10+ Miles'], ['20606', '40', 'AW00020606', 'NULL', 'Jocelyn', 'NULL', 'Coleman', '0', '1980-01-23', 'M', 'NULL', 'F', 'jocelyn6@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '756 Palm Dr', 'NULL', '1 (11) 500 555-0137', '2011-11-09', '10+ Miles'], ['20607', '18', 'AW00020607', 'NULL', 'Donna', 'A', 'Raje', '0', '1980-04-17', 'S', 'NULL', 'F', 'donna12@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '2341 Lindley Ct', 'NULL', '1 (11) 500 555-0115', '2013-12-15', '10+ Miles'], ['20608', '39', 'AW00020608', 'NULL', 'Cara', 'NULL', 'Hu', '0', '1979-05-18', 'S', 'NULL', 'F', 'cara16@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '2', '7114 SeaView Court', 'NULL', '1 (11) 500 555-0155', '2011-11-06', '10+ Miles'], ['20609', '13', 'AW00020609', 'NULL', 'Fernando', 'M', 'Bryant', '0', '1978-10-03', 'M', 'NULL', 'M', 'fernando59@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '2', '1790 Holton Court', 'NULL', '1 (11) 500 555-0160', '2011-11-25', '10+ Miles'], ['20610', '8', 'AW00020610', 'NULL', 'Jessie', 'NULL', 'Zhou', '0', '1984-03-06', 'M', 'NULL', 'M', 'jessie13@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', '537 Panoramic Avenue', 'NULL', '1 (11) 500 555-0155', '2011-11-10', '10+ Miles'], ['20611', '16', 'AW00020611', 'NULL', 'Carla', 'A', 'Sullivan', '0', '1979-04-18', 'M', 'NULL', 'F', 'carla15@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '3', '4976 Norris Court', 'NULL', '1 (11) 500 555-0162', '2011-10-29', '10+ Miles'], ['20612', '37', 'AW00020612', 'NULL', 'Colin', 'J', 'Yang', '0', '1978-10-29', 'M', 'NULL', 'M', 'colin5@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', '3230 Virginia Hills', 'NULL', '1 (11) 500 555-0158', '2011-11-20', '10+ Miles'], ['20613', '27', 'AW00020613', 'NULL', 'Lindsay', 'L', 'Raje', '0', '1979-04-13', 'M', 'NULL', 'F', 'lindsay14@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', '9856 Gonzalez Ct.', 'NULL', '1 (11) 500 555-0162', '2011-11-15', '10+ Miles'], ['20614', '10', 'AW00020614', 'NULL', 'Gregory', 'NULL', 'Shan', '0', '1979-01-02', 'S', 'NULL', 'M', 'gregory13@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', '2801 San Ramon Road', 'NULL', '1 (11) 500 555-0188', '2011-11-12', '10+ Miles'], ['20615', '8', 'AW00020615', 'NULL', 'Laura', 'NULL', 'Wu', '0', '1979-04-20', 'S', 'NULL', 'F', 'laura13@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', '4746 Clear Court', '# 61', '1 (11) 500 555-0188', '2011-11-19', '10+ Miles'], ['20616', '9', 'AW00020616', 'NULL', 'Kristi', 'NULL', 'Serrano', '0', '1978-08-12', 'S', 'NULL', 'F', 'kristi12@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '8027 Blue Cr', 'NULL', '1 (11) 500 555-0148', '2011-11-30', '10+ Miles'], ['20617', '33', 'AW00020617', 'NULL', 'Chloe', 'L', 'Johnson', '0', '1983-05-25', 'S', 'NULL', 'F', 'chloe35@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '8966 Keywood Ct', 'NULL', '1 (11) 500 555-0112', '2011-12-20', '10+ Miles'], ['20618', '22', 'AW00020618', 'NULL', 'Marie', 'V', 'Rubio', '0', '1977-01-11', 'S', 'NULL', 'F', 'marie45@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '3563 Mulberry', 'NULL', '1 (11) 500 555-0123', '2013-03-05', '10+ Miles'], ['20619', '37', 'AW00020619', 'NULL', 'Maurice', 'C', 'Raji', '0', '1976-11-07', 'S', 'NULL', 'M', 'maurice22@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '8831 Cloverleaf Circle', 'NULL', '1 (11) 500 555-0115', '2013-11-05', '10+ Miles'], ['20620', '19', 'AW00020620', 'NULL', 'Victoria', 'J', 'Cook', '0', '1976-08-03', 'S', 'NULL', 'F', 'victoria29@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '6526 Edie Ct.', 'NULL', '1 (11) 500 555-0167', '2011-12-19', '10+ Miles'], ['20621', '14', 'AW00020621', 'NULL', 'Meredith', 'M', 'Alonso', '0', '1977-08-05', 'M', 'NULL', 'F', 'meredith31@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '4', '9770 Brandywine Way', 'NULL', '1 (11) 500 555-0189', '2011-12-06', '10+ Miles'], ['20622', '20', 'AW00020622', 'NULL', 'Jerome', 'L', 'Suarez', '0', '1977-12-31', 'M', 'NULL', 'M', 'jerome18@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '5585 Antone Court', 'NULL', '1 (11) 500 555-0193', '2011-12-25', '10+ Miles'], ['20623', '16', 'AW00020623', 'NULL', 'Ruth', 'NULL', 'Garcia', '0', '1977-11-29', 'M', 'NULL', 'F', 'ruth19@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '4210 Band Court', 'NULL', '1 (11) 500 555-0197', '2011-12-12', '0-1 Miles'], ['20624', '23', 'AW00020624', 'NULL', 'Deborah', 'NULL', 'Shan', '0', '1976-10-12', 'S', 'NULL', 'F', 'deborah15@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '1162 Park Glenn', 'NULL', '1 (11) 500 555-0159', '2011-12-17', '10+ Miles'], ['20625', '15', 'AW00020625', 'NULL', 'Rafael', 'J', 'Yuan', '0', '1982-05-09', 'M', 'NULL', 'M', 'rafael30@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '7393 N Ranchford Court', 'NULL', '1 (11) 500 555-0156', '2011-12-22', '10+ Miles'], ['20626', '18', 'AW00020626', 'NULL', 'Jarrod', 'NULL', 'Sara', '0', '1982-02-10', 'M', 'NULL', 'M', 'jarrod10@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '7820 S. Rising Ave', 'NULL', '1 (11) 500 555-0141', '2011-12-08', '10+ Miles'], ['20627', '38', 'AW00020627', 'NULL', 'Theresa', 'NULL', 'Navarro', '0', '1975-09-30', 'M', 'NULL', 'F', 'theresa7@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '1626 Green Valley Road', 'NULL', '1 (11) 500 555-0116', '2011-12-15', '10+ Miles'], ['20628', '12', 'AW00020628', 'NULL', 'Rodney', 'J', 'Gutierrez', '0', '1981-11-21', 'S', 'NULL', 'M', 'rodney7@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '6841 Monti Dr.', 'NULL', '1 (11) 500 555-0187', '2011-12-13', '10+ Miles'], ['20629', '11', 'AW00020629', 'NULL', 'Bonnie', 'NULL', 'Raje', '0', '1975-08-30', 'M', 'NULL', 'F', 'bonnie20@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '8162 Olympic Dr.', 'NULL', '1 (11) 500 555-0112', '2011-12-04', '10+ Miles'], ['20630', '3', 'AW00020630', 'NULL', 'Diane', 'M', 'Alonso', '0', '1975-09-12', 'M', 'NULL', 'F', 'diane13@adventure-works.com', '130000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '9526 Baird Court', 'NULL', '1 (11) 500 555-0194', '2013-11-01', '0-1 Miles'], ['20631', '26', 'AW00020631', 'NULL', 'Gerald', 'E', 'Dominguez', '0', '1976-04-14', 'S', 'NULL', 'M', 'gerald21@adventure-works.com', '130000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '4998 Tahoe Place', 'NULL', '1 (11) 500 555-0171', '2013-06-29', '0-1 Miles'], ['20632', '69', 'AW00020632', 'NULL', 'Marcus', 'R', 'Stewart', '0', '1975-08-02', 'S', 'NULL', 'M', 'marcus96@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '4900 La Salle St.', 'NULL', '233-555-0162', '2013-09-25', '2-5 Miles'], ['20633', '623', 'AW00020633', 'NULL', 'Luke', 'A', 'Collins', '0', '1969-08-07', 'M', 'NULL', 'M', 'luke34@adventure-works.com', '90000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '5618 Mill Rd.', 'NULL', '167-555-0111', '2013-10-04', '2-5 Miles'], ['20634', '637', 'AW00020634', 'NULL', 'Stephanie', 'V', 'Bryant', '0', '1970-02-04', 'M', 'NULL', 'F', 'stephanie45@adventure-works.com', '100000.00', '5', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '5651 San Benito Drive', 'NULL', '741-555-0155', '2013-04-07', '2-5 Miles'], ['20635', '644', 'AW00020635', 'NULL', 'Nathan', 'J', 'Young', '0', '1969-11-06', 'M', 'NULL', 'M', 'nathan47@adventure-works.com', '110000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '4935 Balhan Drive', 'NULL', '365-555-0181', '2013-07-15', '1-2 Miles'], ['20636', '345', 'AW00020636', 'NULL', 'Olivia', 'G', 'Patterson', '0', '1975-05-01', 'M', 'NULL', 'F', 'olivia56@adventure-works.com', '130000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '6146 Holland Drive', 'NULL', '745-555-0174', '2013-03-06', '1-2 Miles'], ['20637', '314', 'AW00020637', 'NULL', 'John', 'NULL', 'Brown', '0', '1961-12-08', 'M', 'NULL', 'M', 'john42@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '1283 Cowell Rd.', 'NULL', '186-555-0112', '2013-05-12', '5-10 Miles'], ['20638', '315', 'AW00020638', 'NULL', 'Thomas', 'C', 'Collins', '0', '1962-02-08', 'S', 'NULL', 'M', 'thomas39@adventure-works.com', '80000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6299 Bourton Ct.', 'NULL', '540-555-0118', '2013-08-12', '2-5 Miles'], ['20639', '553', 'AW00020639', 'NULL', 'Emily', 'A', 'Ross', '0', '1961-12-17', 'M', 'NULL', 'F', 'emily29@adventure-works.com', '80000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '0', '6261 Amador Ct.', 'NULL', '125-555-0125', '2013-08-19', '0-1 Miles'], ['20640', '316', 'AW00020640', 'NULL', 'Noah', 'S', 'Turner', '0', '1961-11-29', 'M', 'NULL', 'M', 'noah32@adventure-works.com', '90000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '0', '4858 Charlotte Ave', 'NULL', '142-555-0112', '2013-08-17', '5-10 Miles'], ['20641', '337', 'AW00020641', 'NULL', 'Isabella', 'P', 'Robinson', '0', '1967-02-19', 'S', 'NULL', 'F', 'isabella74@adventure-works.com', '90000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '3532 St. Andrews Drive', 'NULL', '130-555-0131', '2013-09-17', '5-10 Miles'], ['20642', '536', 'AW00020642', 'NULL', 'Patricia', 'NULL', 'Prasad', '0', '1967-11-01', 'S', 'NULL', 'F', 'patricia13@adventure-works.com', '90000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '2947 Vine Lane', 'NULL', '101-555-0161', '2013-10-16', '5-10 Miles'], ['20643', '329', 'AW00020643', 'NULL', 'Abigail', 'NULL', 'Patterson', '0', '1939-07-15', 'M', 'NULL', 'F', 'abigail65@adventure-works.com', '90000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '324 Woodbury Place', 'NULL', '132-555-0110', '2013-08-28', '10+ Miles'], ['20644', '343', 'AW00020644', 'NULL', 'Patrick', 'NULL', 'Brooks', '0', '1939-08-17', 'S', 'NULL', 'M', 'patrick7@adventure-works.com', '130000.00', '1', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '4480 Armstrong Rd.', 'NULL', '972-555-0145', '2013-10-29', '0-1 Miles'], ['20645', '642', 'AW00020645', 'NULL', 'Xavier', 'NULL', 'Stewart', '0', '1983-03-04', 'M', 'NULL', 'M', 'xavier84@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5900 Cleveland Rd.', 'NULL', '590-555-0190', '2013-08-09', '0-1 Miles'], ['20646', '553', 'AW00020646', 'NULL', 'Ryan', 'E', 'Chen', '0', '1977-11-21', 'M', 'NULL', 'M', 'ryan29@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5457 Chrislend Court', 'NULL', '493-555-0113', '2013-08-24', '0-1 Miles'], ['20647', '311', 'AW00020647', 'NULL', 'Jared', 'NULL', 'Bailey', '0', '1977-07-14', 'M', 'NULL', 'M', 'jared17@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4330 Reliz Valley Road', 'NULL', '150-555-0162', '2013-08-13', '2-5 Miles'], ['20648', '331', 'AW00020648', 'NULL', 'Jordan', 'E', 'Mitchell', '0', '1978-06-01', 'M', 'NULL', 'M', 'jordan65@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8646 Olivera', 'NULL', '393-555-0162', '2013-11-28', '0-1 Miles'], ['20649', '361', 'AW00020649', 'NULL', 'Natalie', 'NULL', 'Ramirez', '0', '1977-12-11', 'S', 'NULL', 'F', 'natalie19@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3200 Wren Ave.', '#107', '191-555-0178', '2013-12-17', '2-5 Miles'], ['20650', '310', 'AW00020650', 'NULL', 'Bryan', 'J', 'Gray', '0', '1981-01-20', 'M', 'NULL', 'M', 'bryan8@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3852 Northridge Dr.', 'NULL', '178-555-0147', '2013-08-05', '0-1 Miles'], ['20651', '71', 'AW00020651', 'NULL', 'Timothy', 'J', 'Cooper', '0', '1976-02-20', 'M', 'NULL', 'M', 'timothy10@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3331 Buchanan St.', 'NULL', '912-555-0115', '2012-06-04', '0-1 Miles'], ['20652', '637', 'AW00020652', 'NULL', 'Amanda', 'NULL', 'Scott', '0', '1975-07-06', 'M', 'NULL', 'F', 'amanda56@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3465 Fitzpatrick Drive', 'NULL', '605-555-0150', '2013-08-18', '2-5 Miles'], ['20653', '358', 'AW00020653', 'NULL', 'Jessica', 'NULL', 'White', '0', '1975-09-01', 'M', 'NULL', 'F', 'jessica60@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3095 Wildewood Dr.', 'NULL', '522-555-0124', '2013-08-02', '0-1 Miles'], ['20654', '347', 'AW00020654', 'NULL', 'Taylor', 'NULL', 'Murphy', '0', '1981-05-03', 'M', 'NULL', 'F', 'taylor8@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3805 Halfmoon Court', 'NULL', '556-555-0130', '2013-08-16', '2-5 Miles'], ['20655', '545', 'AW00020655', 'NULL', 'Edward', 'L', 'Butler', '0', '1975-08-05', 'M', 'NULL', 'M', 'edward63@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4242 Coggins Dr.', 'NULL', '195-555-0131', '2013-09-01', '0-1 Miles'], ['20656', '66', 'AW00020656', 'NULL', 'Marcus', 'L', 'Perry', '0', '1975-10-19', 'M', 'NULL', 'M', 'marcus57@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8501 Second Ave.', 'NULL', '237-555-0115', '2012-06-09', '2-5 Miles'], ['20657', '345', 'AW00020657', 'NULL', 'Blake', 'A', 'Russell', '0', '1974-12-23', 'S', 'NULL', 'M', 'blake67@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '866 San Tanderz Dr.', 'NULL', '516-555-0137', '2013-08-19', '2-5 Miles'], ['20658', '311', 'AW00020658', 'NULL', 'Kaylee', 'E', 'Campbell', '0', '1976-08-11', 'M', 'NULL', 'F', 'kaylee28@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5 View Dr.', 'NULL', '113-555-0189', '2013-12-05', '0-1 Miles'], ['20659', '329', 'AW00020659', 'NULL', 'Xavier', 'J', 'Baker', '0', '1976-09-03', 'M', 'NULL', 'M', 'xavier30@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5271 St. George Court', 'NULL', '943-555-0190', '2013-12-25', '0-1 Miles'], ['20660', '633', 'AW00020660', 'NULL', 'Christina', 'NULL', 'Cox', '0', '1975-04-18', 'M', 'NULL', 'F', 'christina8@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9741 Limeridge Drive', 'NULL', '480-555-0190', '2013-07-31', '0-1 Miles'], ['20661', '301', 'AW00020661', 'NULL', 'Taylor', 'E', 'Diaz', '0', '1975-04-06', 'M', 'NULL', 'F', 'taylor46@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9277 Country View Lane', 'NULL', '856-555-0125', '2013-08-14', '0-1 Miles'], ['20662', '545', 'AW00020662', 'NULL', 'Taylor', 'J', 'Perry', '0', '1974-06-13', 'M', 'NULL', 'F', 'taylor33@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5670 Bel Air Dr.', 'NULL', '937-555-0134', '2012-12-28', '2-5 Miles'], ['20663', '316', 'AW00020663', 'NULL', 'Kaitlyn', 'A', 'Stewart', '0', '1979-09-03', 'S', 'NULL', 'F', 'kaitlyn47@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '3086 Indigo Ct', 'NULL', '647-555-0146', '2013-02-22', '0-1 Miles'], ['20664', '611', 'AW00020664', 'NULL', 'Isaiah', 'NULL', 'Watson', '0', '1973-11-20', 'M', 'NULL', 'M', 'isaiah0@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7223 Vinewood Dr.', 'NULL', '385-555-0110', '2013-03-18', '2-5 Miles'], ['20665', '59', 'AW00020665', 'NULL', 'James', 'C', 'Evans', '0', '1974-02-18', 'S', 'NULL', 'M', 'james50@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4123 Lakehurst Dr.', 'NULL', '726-555-0110', '2012-06-18', '2-5 Miles'], ['20666', '299', 'AW00020666', 'NULL', 'Lacey', 'NULL', 'Rai', '0', '1974-04-06', 'S', 'NULL', 'F', 'lacey7@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5692 Gill Drive', 'NULL', '172-555-0161', '2013-02-28', '2-5 Miles'], ['20667', '611', 'AW00020667', 'NULL', 'Jodi', 'C', 'Pal', '0', '1974-06-26', 'S', 'NULL', 'F', 'jodi12@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9635 Rock Oak Road', 'NULL', '901-555-0178', '2013-04-11', '2-5 Miles'], ['20668', '311', 'AW00020668', 'Mr.', 'Eric', 'NULL', 'Rothenberg', '0', '1974-04-06', 'S', 'NULL', 'F', 'eric9@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9277 Country View Lane', 'NULL', '326-555-0100', '2013-04-27', '0-1 Miles'], ['20669', '65', 'AW00020669', 'NULL', 'Rachel', 'C', 'Ross', '0', '1983-10-01', 'S', 'NULL', 'F', 'rachel51@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4519 Sequoia Drive', 'NULL', '792-555-0116', '2012-06-06', '2-5 Miles'], ['20670', '69', 'AW00020670', 'NULL', 'Julia', 'A', 'Cox', '0', '1975-09-09', 'M', 'NULL', 'F', 'julia55@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1362 Geary Road', 'NULL', '647-555-0111', '2012-06-20', '0-1 Miles'], ['20671', '299', 'AW00020671', 'NULL', 'Ronald', 'NULL', 'Sanchez', '0', '1981-02-09', 'M', 'NULL', 'M', 'ronald23@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '182 Perry Way', 'NULL', '187-555-0159', '2013-04-19', '2-5 Miles'], ['20672', '311', 'AW00020672', 'NULL', 'Fernando', 'NULL', 'Ross', '0', '1981-03-03', 'S', 'NULL', 'M', 'fernando48@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4002 Fawn Glen Circle', 'NULL', '816-555-0117', '2013-05-06', '2-5 Miles'], ['20673', '347', 'AW00020673', 'NULL', 'Dylan', 'A', 'Washington', '0', '1981-10-19', 'M', 'NULL', 'M', 'dylan12@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2296 Rapallo Lane', 'NULL', '524-555-0198', '2013-06-22', '0-1 Miles'], ['20674', '609', 'AW00020674', 'NULL', 'Samuel', 'T', 'Butler', '0', '1978-02-22', 'S', 'NULL', 'M', 'samuel13@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '8986 Hummingbird Ct', 'NULL', '886-555-0112', '2013-08-02', '0-1 Miles'], ['20675', '542', 'AW00020675', 'NULL', 'Natalie', 'M', 'Martin', '0', '1978-10-29', 'S', 'NULL', 'F', 'natalie82@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1788 Camino Verde', 'NULL', '764-555-0123', '2013-08-02', '0-1 Miles'], ['20676', '300', 'AW00020676', 'NULL', 'Carlos', 'C', 'Parker', '0', '1972-03-20', 'M', 'NULL', 'M', 'carlos25@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '22 Fillet Ave.', 'NULL', '937-555-0143', '2013-04-13', '2-5 Miles'], ['20677', '326', 'AW00020677', 'NULL', 'Trinity', 'NULL', 'Bailey', '0', '1977-08-09', 'S', 'NULL', 'F', 'trinity14@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2 Raymond Dr', 'NULL', '195-555-0117', '2013-08-06', '2-5 Miles'], ['20678', '301', 'AW00020678', 'NULL', 'Martha', 'NULL', 'Lin', '0', '1982-09-20', 'S', 'NULL', 'F', 'martha7@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8422 Castle Rock', 'NULL', '112-555-0161', '2013-08-13', '2-5 Miles'], ['20679', '43', 'AW00020679', 'NULL', 'Dakota', 'D', 'Jenkins', '0', '1971-11-11', 'M', 'NULL', 'M', 'dakota5@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6711 Frayne Ct.', 'NULL', '997-555-0196', '2013-03-25', '2-5 Miles'], ['20680', '60', 'AW00020680', 'NULL', 'Ashley', 'NULL', 'Anderson', '0', '1977-07-15', 'S', 'NULL', 'F', 'ashley10@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1867 Buchanan Rd.', 'NULL', '883-555-0115', '2012-06-21', '2-5 Miles'], ['20681', '302', 'AW00020681', 'NULL', 'Walter', 'L', 'Moreno', '0', '1974-10-26', 'S', 'NULL', 'M', 'walter19@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '3413 Sequoia Woods Pl.', 'NULL', '508-555-0110', '2013-02-01', '2-5 Miles'], ['20682', '326', 'AW00020682', 'NULL', 'John', 'F', 'Davis', '0', '1975-04-15', 'M', 'NULL', 'M', 'john44@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6011 Driftwood Dr.', 'NULL', '595-555-0117', '2013-07-11', '0-1 Miles'], ['20683', '329', 'AW00020683', 'NULL', 'Amanda', 'A', 'Mitchell', '0', '1975-02-18', 'M', 'NULL', 'F', 'amanda54@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9636 Gatter Court', 'NULL', '142-555-0190', '2013-07-01', '0-1 Miles'], ['20684', '331', 'AW00020684', 'NULL', 'Olivia', 'A', 'Lee', '0', '1974-07-28', 'M', 'NULL', 'F', 'olivia21@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4778 Geary Road', 'NULL', '725-555-0167', '2013-07-25', '0-1 Miles'], ['20685', '298', 'AW00020685', 'NULL', 'Mariah', 'NULL', 'Powell', '0', '1970-07-01', 'M', 'NULL', 'F', 'mariah13@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6011 Lindenwood Drive', 'NULL', '395-555-0118', '2013-08-27', '0-1 Miles'], ['20686', '338', 'AW00020686', 'NULL', 'Lucas', 'NULL', 'Nelson', '0', '1970-10-05', 'S', 'NULL', 'M', 'lucas1@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '8634 Valley Blvd.', 'NULL', '152-555-0143', '2013-08-04', '2-5 Miles'], ['20687', '542', 'AW00020687', 'NULL', 'Rebecca', 'NULL', 'Campbell', '0', '1970-08-04', 'S', 'NULL', 'F', 'rebecca9@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9750 W. Watson Court', 'NULL', '318-555-0114', '2013-10-25', '2-5 Miles'], ['20688', '616', 'AW00020688', 'NULL', 'Steven', 'A', 'Ramirez', '0', '1971-03-11', 'M', 'NULL', 'M', 'steven17@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5046 Queens Road', 'NULL', '677-555-0129', '2014-01-17', '2-5 Miles'], ['20689', '633', 'AW00020689', 'NULL', 'Connor', 'J', 'Green', '0', '1976-07-04', 'M', 'NULL', 'M', 'connor41@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '840 Charlotte Ave.', 'NULL', '169-555-0130', '2013-06-01', '2-5 Miles'], ['20690', '361', 'AW00020690', 'NULL', 'Nathaniel', 'NULL', 'Torres', '0', '1971-05-04', 'M', 'NULL', 'M', 'nathaniel5@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4062 Highland Circle', 'NULL', '850-555-0132', '2013-12-14', '2-5 Miles'], ['20691', '52', 'AW00020691', 'NULL', 'Eduardo', 'NULL', 'Smith', '0', '1970-08-14', 'M', 'NULL', 'M', 'eduardo0@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3424 Rambling Lane', 'NULL', '577-555-0129', '2013-03-23', '0-1 Miles'], ['20692', '348', 'AW00020692', 'NULL', 'John', 'H', 'Lewis', '0', '1976-12-02', 'M', 'NULL', 'M', 'john55@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8321 Marina Lakes Dr.', 'NULL', '399-555-0132', '2013-10-04', '0-1 Miles'], ['20693', '648', 'AW00020693', 'NULL', 'Zachary', 'L', 'Perry', '0', '1971-03-10', 'S', 'NULL', 'M', 'zachary6@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '5545 Clown Court', 'NULL', '375-555-0149', '2013-08-27', '0-1 Miles'], ['20694', '54', 'AW00020694', 'NULL', 'Daniel', 'NULL', 'Anderson', '0', '1969-10-10', 'M', 'NULL', 'M', 'daniel7@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3330 Hawes Street', 'NULL', '984-555-0147', '2013-03-01', '2-5 Miles'], ['20695', '326', 'AW00020695', 'NULL', 'Joshua', 'NULL', 'Brown', '0', '1969-08-07', 'M', 'NULL', 'M', 'joshua6@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '181 Gainsborough Drive', 'NULL', '238-555-0117', '2013-12-25', '2-5 Miles'], ['20696', '539', 'AW00020696', 'NULL', 'Ethan', 'D', 'Gonzales', '0', '1969-12-19', 'M', 'NULL', 'M', 'ethan13@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9592 Adelia Court', 'NULL', '640-555-0132', '2013-02-04', '0-1 Miles'], ['20697', '300', 'AW00020697', 'NULL', 'Stefanie', 'R', 'Schmidt', '0', '1970-06-25', 'M', 'NULL', 'F', 'stefanie7@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '1147 Delta Way', 'NULL', '311-555-0181', '2013-12-11', '10+ Miles'], ['20698', '307', 'AW00020698', 'NULL', 'Darren', 'NULL', 'Chandra', '0', '1975-03-16', 'M', 'NULL', 'M', 'darren4@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6130 Alderwood Lane', 'NULL', '567-555-0149', '2013-05-27', '5-10 Miles'], ['20699', '343', 'AW00020699', 'NULL', 'Hunter', 'NULL', 'Wang', '0', '1969-08-12', 'S', 'NULL', 'M', 'hunter19@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3478 Glenwood Dr', 'NULL', '142-555-0199', '2013-08-04', '0-1 Miles'], ['20700', '298', 'AW00020700', 'NULL', 'Marcus', 'G', 'Scott', '0', '1970-01-30', 'M', 'NULL', 'M', 'marcus32@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4292 Oak Street', 'NULL', '156-555-0159', '2013-08-04', '2-5 Miles'], ['20701', '312', 'AW00020701', 'NULL', 'Liz', 'NULL', 'Anderson', '0', '1981-01-16', 'S', 'NULL', 'F', 'liz0@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5884 Blue Ridge', 'NULL', '130-555-0119', '2013-08-27', '0-1 Miles'], ['20702', '348', 'AW00020702', 'NULL', 'Oscar', 'V', 'Ross', '0', '1969-03-07', 'S', 'NULL', 'M', 'oscar12@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7104 Roland Ct.', 'NULL', '176-555-0134', '2013-07-20', '0-1 Miles'], ['20703', '547', 'AW00020703', 'NULL', 'Seth', 'L', 'White', '0', '1968-11-22', 'S', 'NULL', 'M', 'seth13@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '6573 Helene Court', 'NULL', '662-555-0125', '2013-08-08', '2-5 Miles'], ['20704', '536', 'AW00020704', 'NULL', 'Shane', 'R', 'Rodriguez', '0', '1968-08-20', 'M', 'NULL', 'M', 'shane22@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '9670 Walnut Pl.', 'NULL', '404-555-0143', '2013-10-01', '2-5 Miles'], ['20705', '325', 'AW00020705', 'NULL', 'Kevin', 'A', 'Roberts', '0', '1974-03-02', 'M', 'NULL', 'M', 'kevin41@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4893 Kiska Court', 'NULL', '708-555-0117', '2013-04-01', '0-1 Miles'], ['20706', '347', 'AW00020706', 'NULL', 'Haley', 'J', 'Gonzalez', '0', '1973-09-15', 'S', 'NULL', 'F', 'haley48@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '449 Running Springs Road', 'NULL', '664-555-0169', '2013-08-28', '2-5 Miles'], ['20707', '369', 'AW00020707', 'NULL', 'Danielle', 'P', 'Stewart', '0', '1973-07-07', 'S', 'NULL', 'F', 'danielle26@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1163 Bella Vista', '# 103', '801-555-0130', '2013-08-19', '2-5 Miles'], ['20708', '52', 'AW00020708', 'NULL', 'Devin', 'NULL', 'Thompson', '0', '1980-03-05', 'S', 'NULL', 'M', 'devin14@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '618 Oak Street', 'NULL', '681-555-0150', '2012-07-30', '2-5 Miles'], ['20709', '339', 'AW00020709', 'NULL', 'Samuel', 'M', 'Evans', '0', '1968-12-09', 'M', 'NULL', 'M', 'samuel31@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3522 B Wildbrook Ct.', 'NULL', '120-555-0194', '2013-08-05', '0-1 Miles'], ['20710', '237', 'AW00020710', 'NULL', 'Andres', 'NULL', 'Raje', '0', '1980-05-07', 'M', 'NULL', 'M', 'andres11@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6296 Elmonte Drive', 'NULL', '1 (11) 500 555-0183', '2012-01-27', '1-2 Miles'], ['20711', '246', 'AW00020711', 'NULL', 'Ebony', 'I', 'Sanz', '0', '1979-07-05', 'M', 'NULL', 'F', 'ebony41@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4817 Crow St.', 'NULL', '1 (11) 500 555-0192', '2012-02-24', '1-2 Miles'], ['20712', '253', 'AW00020712', 'NULL', 'Colin', 'NULL', 'Huang', '0', '1980-01-18', 'M', 'NULL', 'M', 'colin6@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4833 Kirkwood Drive', 'NULL', '1 (11) 500 555-0165', '2012-02-17', '1-2 Miles'], ['20713', '270', 'AW00020713', 'NULL', 'Kathleen', 'NULL', 'Gill', '0', '1983-09-13', 'S', 'NULL', 'F', 'kathleen15@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '3951 Panoramic Avenue', 'NULL', '1 (11) 500 555-0180', '2012-02-18', '1-2 Miles'], ['20714', '243', 'AW00020714', 'NULL', 'Christine', 'NULL', 'Beck', '0', '1983-07-13', 'S', 'NULL', 'F', 'christine15@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '5841 Longview Rd.', 'NULL', '1 (11) 500 555-0185', '2013-03-12', '0-1 Miles'], ['20715', '154', 'AW00020715', 'NULL', 'Henry', 'C', 'Kapoor', '0', '1977-12-20', 'S', 'NULL', 'M', 'henry3@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Hauptstr 6035', 'NULL', '1 (11) 500 555-0121', '2013-08-08', '0-1 Miles'], ['20716', '157', 'AW00020716', 'NULL', 'Kristina', 'V', 'Arun', '0', '1979-03-13', 'M', 'NULL', 'F', 'kristina7@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Waldstr 29', 'NULL', '1 (11) 500 555-0186', '2012-05-04', '0-1 Miles'], ['20717', '263', 'AW00020717', 'NULL', 'Chelsea', 'R', 'Ray', '0', '1984-03-02', 'S', 'NULL', 'F', 'chelsea12@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '7332 Saddlewood', 'NULL', '1 (11) 500 555-0179', '2012-02-23', '1-2 Miles'], ['20718', '234', 'AW00020718', 'NULL', 'Ricky', 'NULL', 'Ruiz', '0', '1978-06-23', 'S', 'NULL', 'M', 'ricky2@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '7304 Mt. Palomar Pl.', 'NULL', '1 (11) 500 555-0158', '2012-02-24', '2-5 Miles'], ['20719', '135', 'AW00020719', 'NULL', 'Lawrence', 'NULL', 'Alvarez', '0', '1978-02-17', 'S', 'NULL', 'M', 'lawrence2@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Am Karlshof 2462', 'NULL', '1 (11) 500 555-0145', '2012-05-20', '1-2 Miles'], ['20720', '147', 'AW00020720', 'NULL', 'Regina', 'R', 'Subram', '0', '1978-01-01', 'S', 'NULL', 'F', 'regina12@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Husemann Straße 4444', 'NULL', '1 (11) 500 555-0166', '2012-05-09', '2-5 Miles'], ['20721', '236', 'AW00020721', 'NULL', 'Hailey', 'G', 'Perry', '0', '1977-01-05', 'S', 'NULL', 'F', 'hailey29@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '514 Rambling Lane', 'NULL', '1 (11) 500 555-0170', '2013-08-09', '1-2 Miles'], ['20722', '127', 'AW00020722', 'NULL', 'Kellie', 'L', 'Serrano', '0', '1977-10-22', 'S', 'NULL', 'F', 'kellie15@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Postfach 8 11 55', 'NULL', '1 (11) 500 555-0113', '2012-06-29', '1-2 Miles'], ['20723', '171', 'AW00020723', 'NULL', 'Cedric', 'T', 'Zhu', '0', '1977-06-24', 'S', 'NULL', 'M', 'cedric13@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Bundesallee 7567', 'NULL', '1 (11) 500 555-0191', '2013-07-20', '1-2 Miles'], ['20724', '248', 'AW00020724', 'NULL', 'Ebony', 'NULL', 'Vance', '0', '1976-07-07', 'S', 'NULL', 'F', 'ebony3@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '2590 Concord', 'NULL', '1 (11) 500 555-0140', '2013-07-24', '1-2 Miles'], ['20725', '253', 'AW00020725', 'NULL', 'Linda', 'K', 'Romero', '0', '1976-10-01', 'S', 'NULL', 'F', 'linda24@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '7357 Scottsdale Road', 'NULL', '1 (11) 500 555-0145', '2013-12-15', '1-2 Miles'], ['20726', '126', 'AW00020726', 'NULL', 'Beth', 'NULL', 'Romero', '0', '1982-08-14', 'S', 'NULL', 'F', 'beth11@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Auf den Kuhlen Straße 7', 'NULL', '1 (11) 500 555-0191', '2012-06-14', '2-5 Miles'], ['20727', '161', 'AW00020727', 'NULL', 'Arturo', 'NULL', 'Ye', '0', '1975-07-13', 'S', 'NULL', 'M', 'arturo10@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Kulmer Straße 3', 'NULL', '1 (11) 500 555-0138', '2013-11-18', '0-1 Miles'], ['20728', '224', 'AW00020728', 'NULL', 'Cedric', 'J', 'Chande', '0', '1976-06-12', 'S', 'NULL', 'M', 'cedric33@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '70, rue de l´Esplanade', 'NULL', '1 (11) 500 555-0147', '2013-06-05', '1-2 Miles'], ['20729', '154', 'AW00020729', 'NULL', 'Aimee', 'M', 'Zhou', '0', '1977-04-18', 'M', 'NULL', 'F', 'aimee7@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Postfach 99 01 01', 'NULL', '1 (11) 500 555-0128', '2013-06-20', '0-1 Miles'], ['20730', '267', 'AW00020730', 'NULL', 'Aaron', 'NULL', 'Shan', '0', '1976-12-12', 'S', 'NULL', 'M', 'aaron31@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1896 Anyway Street', 'NULL', '1 (11) 500 555-0142', '2013-06-03', '1-2 Miles'], ['20731', '133', 'AW00020731', 'NULL', 'Andre', 'S', 'Kovár', '0', '1975-12-12', 'S', 'NULL', 'M', 'andre4@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', 'Buergermeister-ulrich-str 44990', 'NULL', '1 (11) 500 555-0166', '2013-03-30', '1-2 Miles'], ['20732', '626', 'AW00020732', 'NULL', 'Joshua', 'W', 'Walker', '0', '1986-03-21', 'S', 'NULL', 'M', 'joshua25@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5030 Blue Ridge Dr.', 'NULL', '241-555-0136', '2013-03-05', '0-1 Miles'], ['20733', '611', 'AW00020733', 'NULL', 'Sheena', 'A', 'Luo', '0', '1980-06-05', 'S', 'NULL', 'F', 'sheena5@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1462 West Cliff Place', 'NULL', '597-555-0172', '2013-05-25', '0-1 Miles'], ['20734', '51', 'AW00020734', 'NULL', 'Luis', 'G', 'Phillips', '0', '1980-01-14', 'M', 'NULL', 'M', 'luis38@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2156 Temple Court', 'NULL', '520-555-0148', '2013-05-28', '0-1 Miles'], ['20735', '638', 'AW00020735', 'NULL', 'Caitlin', 'NULL', 'Cooper', '0', '1985-10-19', 'M', 'NULL', 'F', 'caitlin15@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3511 B Eagle Peak Rd.', 'NULL', '190-555-0196', '2013-08-15', '1-2 Miles'], ['20736', '57', 'AW00020736', 'NULL', 'Alexandra', 'NULL', 'Howard', '0', '1980-12-10', 'S', 'NULL', 'F', 'alexandra15@adventure-works.com', '40000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4399 Shuey Ave', 'NULL', '512-555-0160', '2012-07-09', '1-2 Miles'], ['20737', '359', 'AW00020737', 'NULL', 'Victoria', 'A', 'Griffin', '0', '1934-12-31', 'M', 'NULL', 'F', 'victoria67@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '764 Nahua', 'NULL', '360-555-0122', '2014-01-21', '1-2 Miles'], ['20738', '633', 'AW00020738', 'NULL', 'Alex', 'O', 'Kelly', '0', '1977-07-18', 'M', 'NULL', 'M', 'alex5@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6327 Mount Olivet Ct.', 'NULL', '654-555-0176', '2013-09-27', '0-1 Miles'], ['20739', '631', 'AW00020739', 'NULL', 'Kaitlyn', 'A', 'Carter', '0', '1959-03-24', 'S', 'NULL', 'F', 'kaitlyn8@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '9002 Kathleen Drive', 'NULL', '724-555-0134', '2013-03-10', '1-2 Miles'], ['20740', '43', 'AW00020740', 'NULL', 'Kathryn', 'NULL', 'Sharma', '0', '1958-12-07', 'M', 'NULL', 'F', 'kathryn8@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '1161 Pine Hollow Road', 'NULL', '471-555-0160', '2013-07-02', '0-1 Miles'], ['20741', '335', 'AW00020741', 'NULL', 'Jocelyn', 'NULL', 'Foster', '0', '1959-03-26', 'S', 'NULL', 'F', 'jocelyn15@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '7943 C. Mounthood', 'NULL', '798-555-0178', '2013-04-24', '1-2 Miles'], ['20742', '542', 'AW00020742', 'NULL', 'Isabella', 'M', 'Stewart', '0', '1964-02-14', 'M', 'NULL', 'F', 'isabella81@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '1132 Plymouth Dr.', 'NULL', '126-555-0181', '2013-10-05', '0-1 Miles'], ['20743', '536', 'AW00020743', 'NULL', 'Arianna', 'W', 'Howard', '0', '1959-01-11', 'M', 'NULL', 'F', 'arianna33@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '5295 Magnolia Drive', 'NULL', '589-555-0155', '2013-10-30', '0-1 Miles'], ['20744', '298', 'AW00020744', 'NULL', 'Amanda', 'N', 'Barnes', '0', '1958-08-29', 'M', 'NULL', 'F', 'amanda24@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '4020 Alum Rock Drive', 'NULL', '259-555-0114', '2013-12-06', '0-1 Miles'], ['20745', '49', 'AW00020745', 'NULL', 'Mariah', 'C', 'Price', '0', '1965-05-31', 'M', 'NULL', 'F', 'mariah4@adventure-works.com', '20000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '2298 Pinto Rd', 'NULL', '141-555-0152', '2013-05-13', '1-2 Miles'], ['20746', '52', 'AW00020746', 'NULL', 'Christina', 'M', 'Torres', '0', '1976-02-20', 'M', 'NULL', 'F', 'christina11@adventure-works.com', '20000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '8808 Geneva Ave', '#9', '490-555-0111', '2013-03-28', '1-2 Miles'], ['20747', '612', 'AW00020747', 'NULL', 'Melody', 'NULL', 'Vazquez', '0', '1965-11-21', 'M', 'NULL', 'F', 'melody15@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '1915 Stanley Dollar Dr.', 'NULL', '545-555-0147', '2013-12-04', '0-1 Miles'], ['20748', '633', 'AW00020748', 'NULL', 'Stephanie', 'R', 'Watson', '0', '1960-04-03', 'S', 'NULL', 'F', 'stephanie24@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4192 Mines Road', 'NULL', '647-555-0182', '2013-04-16', '1-2 Miles'], ['20749', '638', 'AW00020749', 'NULL', 'Joan', 'L', 'Morgan', '0', '1959-10-13', 'M', 'NULL', 'F', 'joan11@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1800 Honey Court', 'NULL', '867-555-0167', '2013-11-29', '2-5 Miles'], ['20750', '329', 'AW00020750', 'NULL', 'Katherine', 'A', 'King', '0', '1960-03-25', 'M', 'NULL', 'F', 'katherine67@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9632 K St.', 'NULL', '754-555-0199', '2013-08-23', '0-1 Miles'], ['20751', '298', 'AW00020751', 'NULL', 'Jermaine', 'H', 'Arthur', '0', '1961-04-18', 'M', 'NULL', 'M', 'jermaine5@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '2', '890 Ridgeview Dr', 'NULL', '519-555-0115', '2013-12-13', '1-2 Miles'], ['20752', '631', 'AW00020752', 'NULL', 'Christian', 'NULL', 'Simmons', '0', '1961-03-14', 'M', 'NULL', 'M', 'christian2@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '2', '1930 Many Lane', 'NULL', '472-555-0138', '2013-10-11', '0-1 Miles'], ['20753', '631', 'AW00020753', 'NULL', 'Taylor', 'D', 'Kelly', '0', '1966-11-18', 'M', 'NULL', 'F', 'taylor23@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2425 Notre Dame Ave', 'NULL', '377-555-0181', '2013-12-21', '1-2 Miles'], ['20754', '331', 'AW00020754', 'NULL', 'Ian', 'T', 'Davis', '0', '1960-11-08', 'M', 'NULL', 'M', 'ian6@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7490 Sharon Dr', 'NULL', '846-555-0149', '2013-08-30', '1-2 Miles'], ['20755', '311', 'AW00020755', 'NULL', 'Alex', 'NULL', 'Lopez', '0', '1960-12-01', 'M', 'NULL', 'M', 'alex41@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2236 California St.', 'NULL', '422-555-0151', '2013-08-17', '0-1 Miles'], ['20756', '55', 'AW00020756', 'NULL', 'Marcus', 'NULL', 'Griffin', '0', '1967-01-21', 'M', 'NULL', 'M', 'marcus70@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1240 Dayton Court', 'NULL', '586-555-0175', '2013-09-03', '0-1 Miles'], ['20757', '553', 'AW00020757', 'NULL', 'Alexia', 'NULL', 'Powell', '0', '1961-12-15', 'M', 'NULL', 'F', 'alexia8@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2120 Mark Twain Dr', 'NULL', '402-555-0181', '2014-01-01', '0-1 Miles'], ['20758', '637', 'AW00020758', 'NULL', 'Jesse', 'NULL', 'Sanders', '0', '1972-08-29', 'M', 'NULL', 'M', 'jesse3@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4393 Chianti Pl.', 'NULL', '500-555-0174', '2013-04-19', '1-2 Miles'], ['20759', '300', 'AW00020759', 'NULL', 'Teresa', 'NULL', 'Serrano', '0', '1961-11-17', 'M', 'NULL', 'F', 'teresa17@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2888 Woodbury Place', 'NULL', '687-555-0112', '2013-06-20', '0-1 Miles'], ['20760', '62', 'AW00020760', 'NULL', 'Thomas', 'NULL', 'Alexander', '0', '1973-03-15', 'M', 'NULL', 'M', 'thomas21@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6934 Dos Encinas', 'NULL', '126-555-0133', '2013-11-04', '1-2 Miles'], ['20761', '316', 'AW00020761', 'NULL', 'Jonathan', 'A', 'Washington', '0', '1967-11-09', 'M', 'NULL', 'M', 'jonathan13@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8496 La Salle Ct.', 'NULL', '949-555-0111', '2013-05-17', '1-2 Miles'], ['20762', '360', 'AW00020762', 'NULL', 'Jennifer', 'C', 'King', '0', '1968-10-08', 'M', 'NULL', 'F', 'jennifer22@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2583 Cypress Ave.', 'NULL', '912-555-0154', '2013-12-15', '1-2 Miles'], ['20763', '542', 'AW00020763', 'NULL', 'Lucas', 'S', 'Carter', '0', '1963-02-10', 'M', 'NULL', 'M', 'lucas2@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1585 Larkspur', 'NULL', '917-555-0167', '2013-06-19', '1-2 Miles'], ['20764', '62', 'AW00020764', 'NULL', 'Christian', 'NULL', 'Taylor', '0', '1962-07-16', 'M', 'NULL', 'M', 'christian43@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7770 Springwood Court', 'NULL', '696-555-0182', '2013-05-17', '0-1 Miles'], ['20765', '335', 'AW00020765', 'NULL', 'Wyatt', 'NULL', 'Lopez', '0', '1962-11-16', 'M', 'NULL', 'M', 'wyatt31@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1590 Mildred Ln.', '#35', '368-555-0118', '2013-08-12', '1-2 Miles'], ['20766', '339', 'AW00020766', 'NULL', 'Charles', 'G', 'Morgan', '0', '1969-04-06', 'M', 'NULL', 'M', 'charles61@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8691 Balhan Court', 'NULL', '607-555-0187', '2013-03-29', '0-1 Miles'], ['20767', '648', 'AW00020767', 'NULL', 'Rachel', 'M', 'Thomas', '0', '1964-03-22', 'S', 'NULL', 'F', 'rachel13@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1141 Redwood Road', 'NULL', '525-555-0169', '2013-09-25', '1-2 Miles'], ['20768', '298', 'AW00020768', 'NULL', 'Marshall', 'H', 'Nara', '0', '1963-08-24', 'S', 'NULL', 'M', 'marshall37@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7011 Oak Dr.', 'NULL', '471-555-0129', '2013-09-19', '1-2 Miles'], ['20769', '626', 'AW00020769', 'NULL', 'Michelle', 'S', 'Sanders', '0', '1963-10-01', 'M', 'NULL', 'F', 'michelle5@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6860 Megan Dr', 'NULL', '671-555-0192', '2013-05-13', '0-1 Miles'], ['20770', '648', 'AW00020770', 'NULL', 'Carlos', 'NULL', 'Mitchell', '0', '1963-11-11', 'M', 'NULL', 'M', 'carlos40@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7405 Dolores Way', 'NULL', '116-555-0126', '2013-11-10', '1-2 Miles'], ['20771', '50', 'AW00020771', 'NULL', 'Madeline', 'NULL', 'Edwards', '0', '1964-06-13', 'M', 'NULL', 'F', 'madeline1@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9062 Melrose Place', 'NULL', '578-555-0134', '2013-11-08', '1-2 Miles'], ['20772', '385', 'AW00020772', 'NULL', 'Samantha', 'NULL', 'Garcia', '0', '1969-04-04', 'S', 'NULL', 'F', 'samantha18@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3155 Meadowbrook Court', 'NULL', '172-555-0168', '2014-01-17', '1-2 Miles'], ['20773', '51', 'AW00020773', 'NULL', 'Natalie', 'NULL', 'Rodriguez', '0', '1963-09-05', 'S', 'NULL', 'F', 'natalie87@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '9051 Rising Dawn Way', 'NULL', '557-555-0153', '2013-12-07', '0-1 Miles'], ['20774', '368', 'AW00020774', 'NULL', 'Anthony', 'A', 'Miller', '0', '1969-07-03', 'S', 'NULL', 'M', 'anthony15@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8537 Partridge Dr.', 'NULL', '730-555-0118', '2013-10-05', '1-2 Miles'], ['20775', '611', 'AW00020775', 'NULL', 'Bruce', 'L', 'Alonso', '0', '1964-12-21', 'M', 'NULL', 'M', 'bruce30@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4867 Rosebuck Way', 'NULL', '993-555-0149', '2014-01-12', '0-1 Miles'], ['20776', '644', 'AW00020776', 'NULL', 'Haley', 'NULL', 'Long', '0', '1965-04-09', 'M', 'NULL', 'F', 'haley28@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '23 Stonewood Ct.', 'NULL', '821-555-0117', '2013-05-18', '0-1 Miles'], ['20777', '536', 'AW00020777', 'NULL', 'Carly', 'NULL', 'Sharma', '0', '1965-04-06', 'M', 'NULL', 'F', 'carly9@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3503 Springwood Way', 'NULL', '197-555-0167', '2014-01-09', '1-2 Miles'], ['20778', '638', 'AW00020778', 'NULL', 'Seth', 'R', 'Ramirez', '0', '1965-04-02', 'M', 'NULL', 'M', 'seth80@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2702 North Ridge Dr.', 'NULL', '919-555-0187', '2013-12-27', '1-2 Miles'], ['20779', '326', 'AW00020779', 'NULL', 'Maria', 'NULL', 'Russell', '0', '1970-08-04', 'M', 'NULL', 'F', 'maria41@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1331 H St.', 'NULL', '389-555-0178', '2013-02-16', '0-1 Miles'], ['20780', '543', 'AW00020780', 'NULL', 'Michael', 'A', 'White', '0', '1964-07-22', 'M', 'NULL', 'M', 'michael44@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7270 Pepperidge Way', 'NULL', '504-555-0143', '2013-07-19', '1-2 Miles'], ['20781', '51', 'AW00020781', 'NULL', 'Kayla', 'M', 'Lee', '0', '1965-04-09', 'M', 'NULL', 'F', 'kayla21@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2335 Linden Land', 'NULL', '357-555-0132', '2013-09-19', '1-2 Miles'], ['20782', '536', 'AW00020782', 'NULL', 'Alan', 'NULL', 'Ye', '0', '1975-10-31', 'M', 'NULL', 'M', 'alan13@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '370 Pine Creek Way', 'NULL', '321-555-0126', '2013-09-10', '0-1 Miles'], ['20783', '70', 'AW00020783', 'NULL', 'Amanda', 'NULL', 'Collins', '0', '1970-03-13', 'M', 'NULL', 'F', 'amanda46@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9663 East 38th St', 'NULL', '806-555-0151', '2013-11-23', '1-2 Miles'], ['20784', '301', 'AW00020784', 'NULL', 'Eduardo', 'NULL', 'Walker', '0', '1964-08-20', 'M', 'NULL', 'M', 'eduardo22@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6379 Yellowood Place', 'NULL', '603-555-0129', '2014-01-23', '1-2 Miles'], ['20785', '352', 'AW00020785', 'NULL', 'Isabella', 'L', 'Taylor', '0', '1977-08-20', 'S', 'NULL', 'F', 'isabella64@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7377 Rain Drop Circle', 'NULL', '666-555-0185', '2013-09-05', '1-2 Miles'], ['20786', '325', 'AW00020786', 'NULL', 'Marcus', 'NULL', 'Perez', '0', '1978-05-20', 'M', 'NULL', 'M', 'marcus40@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3092 Gabriela', 'NULL', '947-555-0166', '2013-10-17', '0-1 Miles'], ['20787', '611', 'AW00020787', 'NULL', 'Bridget', 'NULL', 'Pal', '0', '1979-01-31', 'M', 'NULL', 'F', 'bridget14@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6179 Norris Court', '# 1104', '720-555-0184', '2013-09-18', '1-2 Miles'], ['20788', '302', 'AW00020788', 'NULL', 'Sara', 'NULL', 'Gonzalez', '0', '1979-01-13', 'S', 'NULL', 'F', 'sara34@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4413 Harvard Drive', 'NULL', '839-555-0173', '2014-01-13', '1-2 Miles'], ['20789', '325', 'AW00020789', 'NULL', 'Miguel', 'NULL', 'Williams', '0', '1979-01-12', 'M', 'NULL', 'M', 'miguel1@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '5402 Panorama Drive', 'NULL', '205-555-0175', '2013-04-12', '0-1 Miles'], ['20790', '347', 'AW00020790', 'NULL', 'Kayla', 'M', 'Harrison', '0', '1978-12-04', 'M', 'NULL', 'F', 'kayla14@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5966 El Molino Dr.', 'NULL', '116-555-0154', '2013-07-20', '1-2 Miles'], ['20791', '360', 'AW00020791', 'NULL', 'Ryan', 'B', 'Patterson', '0', '1978-08-05', 'M', 'NULL', 'M', 'ryan13@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1301 Burwood Way', 'NULL', '730-555-0139', '2013-06-01', '1-2 Miles'], ['20792', '51', 'AW00020792', 'NULL', 'Hailey', 'R', 'Rivera', '0', '1976-12-31', 'M', 'NULL', 'F', 'hailey8@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3718 Greenway Drive', 'NULL', '254-555-0126', '2013-09-29', '1-2 Miles'], ['20793', '211', 'AW00020793', 'NULL', 'Gary', 'L', 'Martin', '0', '1976-04-02', 'S', 'NULL', 'M', 'gary10@adventure-works.com', '10000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '88, avenue de Villiers', 'NULL', '1 (11) 500 555-0128', '2013-08-24', '0-1 Miles'], ['20794', '199', 'AW00020794', 'NULL', 'Brenda', 'F', 'Rana', '0', '1967-08-08', 'M', 'NULL', 'F', 'brenda15@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '281, rue Mazagran', 'NULL', '1 (11) 500 555-0152', '2013-11-01', '0-1 Miles'], ['20795', '213', 'AW00020795', 'NULL', 'Emmanuel', 'C', 'Subram', '0', '1967-11-15', 'S', 'NULL', 'M', 'emmanuel12@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '331, rue Pierre-Demoulin', 'NULL', '1 (11) 500 555-0136', '2013-07-09', '0-1 Miles'], ['20796', '194', 'AW00020796', 'NULL', 'Claudia', 'R', 'Guo', '0', '1967-02-13', 'S', 'NULL', 'F', 'claudia15@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '334, rue Maillard', 'NULL', '1 (11) 500 555-0183', '2013-06-14', '0-1 Miles'], ['20797', '185', 'AW00020797', 'NULL', 'Dawn', 'G', 'Hu', '0', '1964-02-19', 'M', 'NULL', 'F', 'dawn22@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '6698, avenue de Villiers', 'NULL', '1 (11) 500 555-0131', '2013-06-09', '0-1 Miles'], ['20798', '156', 'AW00020798', 'NULL', 'Mathew', 'L', 'Munoz', '0', '1964-03-03', 'M', 'NULL', 'M', 'mathew3@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Husemann Straße 9514', 'NULL', '1 (11) 500 555-0147', '2013-07-09', '0-1 Miles'], ['20799', '119', 'AW00020799', 'NULL', 'Peter', 'D', 'Raje', '0', '1964-02-21', 'M', 'NULL', 'M', 'peter19@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Alderweg 4849', 'NULL', '1 (11) 500 555-0175', '2014-01-03', '0-1 Miles'], ['20800', '234', 'AW00020800', 'NULL', 'Connor', 'NULL', 'Jenkins', '0', '1963-05-16', 'M', 'NULL', 'M', 'connor3@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '2542 Pinecrest Court', 'NULL', '1 (11) 500 555-0184', '2013-11-14', '0-1 Miles'], ['20801', '233', 'AW00020801', 'NULL', 'Ronald', 'H', 'Chandra', '0', '1963-05-24', 'S', 'NULL', 'M', 'ronald4@adventure-works.com', '10000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '6852 Elderwood Drive', 'NULL', '1 (11) 500 555-0122', '2013-06-20', '0-1 Miles'], ['20802', '220', 'AW00020802', 'NULL', 'Jon', 'NULL', 'Li', '0', '1962-08-24', 'S', 'NULL', 'M', 'jon22@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '191, rue de Cambrai', 'NULL', '1 (11) 500 555-0125', '2013-06-10', '0-1 Miles'], ['20803', '221', 'AW00020803', 'NULL', 'Nicole', 'A', 'Rodriguez', '0', '1961-08-15', 'S', 'NULL', 'F', 'nicole20@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '5717, rue de Berri', 'NULL', '1 (11) 500 555-0172', '2013-09-13', '0-1 Miles'], ['20804', '279', 'AW00020804', 'NULL', 'Katelyn', 'L', 'Torres', '0', '1961-05-10', 'M', 'NULL', 'F', 'katelyn12@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '2186 Rock Creek Pl', 'NULL', '1 (11) 500 555-0171', '2013-07-23', '0-1 Miles'], ['20805', '120', 'AW00020805', 'NULL', 'Brandon', 'NULL', 'Williams', '0', '1961-03-11', 'M', 'NULL', 'M', 'brandon40@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Zimmerstr 242', 'NULL', '1 (11) 500 555-0127', '2013-09-20', '0-1 Miles'], ['20806', '265', 'AW00020806', 'NULL', 'James', 'E', 'Lopez', '0', '1971-08-22', 'M', 'NULL', 'M', 'james69@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '3387 El Campo Ct.', 'NULL', '1 (11) 500 555-0154', '2013-07-07', '0-1 Miles'], ['20807', '279', 'AW00020807', 'NULL', 'Jordan', 'M', 'Foster', '0', '1960-12-30', 'M', 'NULL', 'M', 'jordan13@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '3853 Wildcat Circle', 'Unit 13c12', '1 (11) 500 555-0167', '2012-02-27', '0-1 Miles'], ['20808', '133', 'AW00020808', 'NULL', 'Julie', 'NULL', 'Jai', '0', '1971-11-11', 'M', 'NULL', 'F', 'julie16@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Moritzstr 45', 'NULL', '1 (11) 500 555-0138', '2012-06-07', '0-1 Miles'], ['20809', '271', 'AW00020809', 'NULL', 'Benjamin', 'NULL', 'Anderson', '0', '1959-11-10', 'M', 'NULL', 'M', 'benjamin44@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '9300 Ptarmigan Drive', 'NULL', '1 (11) 500 555-0180', '2013-08-27', '2-5 Miles'], ['20810', '211', 'AW00020810', 'NULL', 'Brittney', 'NULL', 'He', '0', '1947-06-22', 'M', 'NULL', 'F', 'brittney17@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '30, rue de la Cavalerie', 'NULL', '1 (11) 500 555-0143', '2013-08-30', '0-1 Miles'], ['20811', '272', 'AW00020811', 'NULL', 'Calvin', 'NULL', 'Shan', '0', '1948-01-15', 'S', 'NULL', 'M', 'calvin10@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1064 Almond Drive', 'NULL', '1 (11) 500 555-0198', '2012-03-03', '0-1 Miles'], ['20812', '12', 'AW00020812', 'NULL', 'Preston', 'C', 'Prasad', '0', '1985-08-16', 'S', 'NULL', 'M', 'preston8@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '4222 San Jose Dr.', 'NULL', '1 (11) 500 555-0119', '2011-12-08', '0-1 Miles'], ['20813', '17', 'AW00020813', 'Mr.', 'Michael', 'L.', 'Rothkugel', '0', '1984-10-09', 'M', 'NULL', 'M', 'michael22@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '3552 Mildred Ln.', 'NULL', '358-555-0100', '2014-01-13', '2-5 Miles'], ['20814', '8', 'AW00020814', 'NULL', 'Margaret', 'D', 'Lu', '0', '1984-09-28', 'S', 'NULL', 'F', 'margaret17@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '4554 Bates Court', 'NULL', '1 (11) 500 555-0163', '2011-12-17', '1-2 Miles'], ['20815', '13', 'AW00020815', 'NULL', 'Tracy', 'NULL', 'Andersen', '0', '1984-08-04', 'S', 'NULL', 'F', 'tracy12@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5157 Maywood Lane', 'NULL', '1 (11) 500 555-0148', '2011-12-19', '2-5 Miles'], ['20816', '13', 'AW00020816', 'NULL', 'Connor', 'J', 'Ross', '0', '1986-01-09', 'M', 'NULL', 'M', 'connor0@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6093 Olivera Road', 'NULL', '1 (11) 500 555-0171', '2011-12-18', '0-1 Miles'], ['20817', '33', 'AW00020817', 'NULL', 'Geoffrey', 'NULL', 'Rodriguez', '0', '1983-10-05', 'S', 'NULL', 'M', 'geoffrey17@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '2036 Bellwood Court', 'NULL', '1 (11) 500 555-0191', '2011-12-06', '0-1 Miles'], ['20818', '20', 'AW00020818', 'NULL', 'Rachel', 'NULL', 'Powell', '0', '1983-01-10', 'S', 'NULL', 'F', 'rachel56@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '1488 Cambelback Place', 'NULL', '1 (11) 500 555-0118', '2011-12-27', '0-1 Miles'], ['20819', '13', 'AW00020819', 'NULL', 'Raymond', 'W', 'Madan', '0', '1984-08-20', 'S', 'NULL', 'M', 'raymond9@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8790 Geary Court', 'NULL', '1 (11) 500 555-0190', '2011-12-02', '0-1 Miles'], ['20820', '28', 'AW00020820', 'NULL', 'Kathleen', 'A', 'Rubio', '0', '1984-12-11', 'M', 'NULL', 'F', 'kathleen20@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4803 Panoramic Ave.', 'NULL', '1 (11) 500 555-0144', '2011-11-30', '0-1 Miles'], ['20821', '30', 'AW00020821', 'NULL', 'Hany', 'NULL', 'Morcos', '0', '1984-02-22', 'M', 'NULL', 'M', 'hany0@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7028 Stonedale', 'NULL', '1 (11) 500 555-0184', '2011-12-09', '0-1 Miles'], ['20822', '20', 'AW00020822', 'NULL', 'Shannon', 'NULL', 'Ruiz', '0', '1983-01-31', 'S', 'NULL', 'M', 'shannon24@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '1318 Pinehurst Court', 'NULL', '1 (11) 500 555-0144', '2011-12-20', '0-1 Miles'], ['20823', '22', 'AW00020823', 'NULL', 'Troy', 'L', 'Martinez', '0', '1982-10-26', 'M', 'NULL', 'M', 'troy19@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '6759 Greenbrier Street', 'NULL', '1 (11) 500 555-0130', '2011-12-28', '0-1 Miles'], ['20824', '240', 'AW00020824', 'NULL', 'Derek', 'M', 'Xu', '0', '1948-11-06', 'S', 'NULL', 'M', 'derek5@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1111 Bayview Cr', 'NULL', '1 (11) 500 555-0190', '2012-03-12', '0-1 Miles'], ['20825', '279', 'AW00020825', 'NULL', 'Pamela', 'NULL', 'Kapoor', '0', '1949-06-02', 'M', 'NULL', 'F', 'pamela4@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '240 Crowm Court', 'NULL', '1 (11) 500 555-0119', '2012-03-29', '0-1 Miles'], ['20826', '203', 'AW00020826', 'NULL', 'Jillian', 'NULL', 'Raman', '0', '1972-05-08', 'S', 'NULL', 'F', 'jillian13@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '76, rue Montcalm', 'NULL', '1 (11) 500 555-0159', '2013-07-31', '0-1 Miles'], ['20827', '217', 'AW00020827', 'NULL', 'Jillian', 'E', 'Perez', '0', '1967-03-06', 'S', 'NULL', 'F', 'jillian21@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '1, rue de la Cavalerie', 'NULL', '1 (11) 500 555-0111', '2013-07-28', '1-2 Miles'], ['20828', '156', 'AW00020828', 'NULL', 'Jaclyn', 'NULL', 'Shan', '0', '1966-08-17', 'M', 'NULL', 'F', 'jaclyn34@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Marketplatz 5193', 'NULL', '1 (11) 500 555-0117', '2012-06-05', '0-1 Miles'], ['20829', '130', 'AW00020829', 'NULL', 'Andy', 'NULL', 'Diaz', '0', '1967-05-15', 'M', 'NULL', 'M', 'andy7@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Marketplatz 5193', 'NULL', '1 (11) 500 555-0111', '2012-06-22', '0-1 Miles'], ['20830', '115', 'AW00020830', 'NULL', 'Whitney', 'C', 'Martinez', '0', '1966-07-19', 'M', 'NULL', 'F', 'whitney16@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Krönerweg 9619', 'NULL', '1 (11) 500 555-0174', '2012-05-30', '0-1 Miles'], ['20831', '170', 'AW00020831', 'NULL', 'Drew', 'NULL', 'Xu', '0', '1972-06-02', 'M', 'NULL', 'M', 'drew5@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Alderweg 7', 'Verkaufsabteilung', '1 (11) 500 555-0137', '2012-06-13', '0-1 Miles'], ['20832', '273', 'AW00020832', 'NULL', 'Kelvin', 'NULL', 'Tang', '0', '1972-05-05', 'S', 'NULL', 'M', 'kelvin1@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5308 Logan Court', 'NULL', '1 (11) 500 555-0174', '2012-03-03', '0-1 Miles'], ['20833', '166', 'AW00020833', 'NULL', 'Douglas', 'A', 'Sai', '0', '1965-11-08', 'S', 'NULL', 'M', 'douglas9@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Kalkweg 4425', 'NULL', '1 (11) 500 555-0192', '2012-06-12', '0-1 Miles'], ['20834', '276', 'AW00020834', 'NULL', 'Brenda', 'C', 'Kapoor', '0', '1966-01-24', 'S', 'NULL', 'F', 'brenda5@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3122 San Marino Ct.', 'NULL', '1 (11) 500 555-0193', '2012-03-13', '0-1 Miles'], ['20835', '153', 'AW00020835', 'NULL', 'Ruben', 'A', 'Gutierrez', '0', '1964-12-11', 'M', 'NULL', 'M', 'ruben34@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Essener Straße 81', 'NULL', '1 (11) 500 555-0119', '2012-07-17', '2-5 Miles'], ['20836', '127', 'AW00020836', 'NULL', 'Stanley', 'A', 'Chandra', '0', '1976-03-18', 'M', 'NULL', 'M', 'stanley2@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Am Kreuz 4065', 'NULL', '1 (11) 500 555-0128', '2012-07-20', '2-5 Miles'], ['20837', '230', 'AW00020837', 'NULL', 'Jimmy', 'NULL', 'Rubio', '0', '1965-02-28', 'M', 'NULL', 'M', 'jimmy25@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '1183 Tono Lane', 'NULL', '1 (11) 500 555-0154', '2012-03-24', '0-1 Miles'], ['20838', '269', 'AW00020838', 'NULL', 'Chloe', 'NULL', 'Jones', '0', '1964-10-14', 'S', 'NULL', 'F', 'chloe37@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9993 Rosebuck Way', 'NULL', '1 (11) 500 555-0138', '2012-04-14', '0-1 Miles'], ['20839', '269', 'AW00020839', 'NULL', 'Courtney', 'NULL', 'Lopez', '0', '1964-10-11', 'S', 'NULL', 'F', 'courtney17@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2759 San Gabriel Dr.', 'NULL', '1 (11) 500 555-0150', '2012-03-31', '0-1 Miles'], ['20840', '222', 'AW00020840', 'NULL', 'Alison', 'H', 'Xie', '0', '1963-08-06', 'S', 'NULL', 'F', 'alison2@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0111', '2013-08-24', '2-5 Miles'], ['20841', '118', 'AW00020841', 'Sr.', 'Jésus', 'V', 'Alonso', '0', '1975-05-01', 'S', 'NULL', 'M', 'jésus7@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Alderweg 2849', 'NULL', '1 (11) 500 555-0157', '2012-07-14', '0-1 Miles'], ['20842', '147', 'AW00020842', 'NULL', 'Tyrone', 'S', 'Moreno', '0', '1966-04-03', 'S', 'NULL', 'M', 'tyrone6@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Alte Landstr 5', 'NULL', '1 (11) 500 555-0195', '2012-07-22', '0-1 Miles'], ['20843', '131', 'AW00020843', 'NULL', 'Jose', 'NULL', 'Shan', '0', '1965-09-02', 'M', 'NULL', 'M', 'jose25@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Roßstr 9938', 'NULL', '1 (11) 500 555-0126', '2012-08-08', '0-1 Miles'], ['20844', '186', 'AW00020844', 'NULL', 'Nicolas', 'E', 'Pal', '0', '1981-03-16', 'M', 'NULL', 'M', 'nicolas10@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '30, route de Marseille', 'NULL', '1 (11) 500 555-0192', '2013-08-16', '0-1 Miles'], ['20845', '115', 'AW00020845', 'NULL', 'Barry', 'NULL', 'Malhotra', '0', '1970-05-17', 'M', 'NULL', 'M', 'barry5@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Räuscherweg 3456', 'NULL', '1 (11) 500 555-0177', '2012-08-02', '0-1 Miles'], ['20846', '224', 'AW00020846', 'NULL', 'Lee', 'NULL', 'Alonso', '0', '1964-09-23', 'M', 'NULL', 'M', 'lee6@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '93, rue de Fontfroide', 'NULL', '1 (11) 500 555-0129', '2013-08-27', '0-1 Miles'], ['20847', '175', 'AW00020847', 'NULL', 'Kyle', 'T', 'Young', '0', '1964-08-04', 'M', 'NULL', 'M', 'kyle44@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Knaackstr 646', 'NULL', '1 (11) 500 555-0119', '2012-08-27', '0-1 Miles'], ['20848', '265', 'AW00020848', 'NULL', 'Vincent', 'NULL', 'Liu', '0', '1963-12-15', 'M', 'NULL', 'M', 'vincent4@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8184 N. Spoonwood Court', 'NULL', '1 (11) 500 555-0113', '2012-04-18', '0-1 Miles'], ['20849', '269', 'AW00020849', 'NULL', 'Faith', 'NULL', 'Washington', '0', '1981-01-20', 'S', 'NULL', 'F', 'faith12@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5626 Mt. View Drive', 'NULL', '1 (11) 500 555-0114', '2013-10-03', '2-5 Miles'], ['20850', '279', 'AW00020850', 'NULL', 'Lance', 'C', 'Navarro', '0', '1981-09-10', 'M', 'NULL', 'M', 'lance10@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '5686 N Sweetbriar Court', 'NULL', '1 (11) 500 555-0179', '2012-04-10', '1-2 Miles'], ['20851', '243', 'AW00020851', 'NULL', 'Frank', 'T', 'Sanz', '0', '1981-05-03', 'S', 'NULL', 'M', 'frank28@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '5117 Oak Creek Ct.', 'NULL', '1 (11) 500 555-0159', '2012-04-18', '2-5 Miles'], ['20852', '230', 'AW00020852', 'NULL', 'Yolanda', 'NULL', 'Raje', '0', '1981-07-02', 'M', 'NULL', 'F', 'yolanda13@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5095 Chablis Way', 'NULL', '1 (11) 500 555-0141', '2012-05-25', '0-1 Miles'], ['20853', '216', 'AW00020853', 'NULL', 'Jarrod', 'NULL', 'Rana', '0', '1981-10-04', 'M', 'NULL', 'M', 'jarrod11@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '36, rue Maillard', 'NULL', '1 (11) 500 555-0170', '2013-08-18', '0-1 Miles'], ['20854', '131', 'AW00020854', 'NULL', 'Kara', 'NULL', 'Raji', '0', '1974-08-02', 'S', 'NULL', 'F', 'kara19@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Nollendorfplatz 5228', 'NULL', '1 (11) 500 555-0127', '2012-09-15', '0-1 Miles'], ['20855', '208', 'AW00020855', 'NULL', 'Abigail', 'NULL', 'Ross', '0', '1981-03-02', 'M', 'NULL', 'F', 'abigail29@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '99, route de Marseille', 'NULL', '1 (11) 500 555-0196', '2013-08-04', '0-1 Miles'], ['20856', '243', 'AW00020856', 'NULL', 'Tiffany', 'A', 'Hu', '0', '1975-01-07', 'S', 'NULL', 'F', 'tiffany21@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1870 Blue Ridge Dr.', 'NULL', '1 (11) 500 555-0162', '2012-05-24', '2-5 Miles'], ['20857', '225', 'AW00020857', 'NULL', 'Jerry', 'L', 'Becker', '0', '1975-04-18', 'S', 'NULL', 'M', 'jerry21@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '242, rue de Cambrai', 'NULL', '1 (11) 500 555-0122', '2013-09-11', '2-5 Miles'], ['20858', '220', 'AW00020858', 'NULL', 'Damien', 'NULL', 'Stone', '0', '1974-10-29', 'M', 'NULL', 'M', 'damien17@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8734, rue Villedo', 'NULL', '1 (11) 500 555-0150', '2013-08-30', '0-1 Miles'], ['20859', '245', 'AW00020859', 'NULL', 'Roy', 'C', 'Romero', '0', '1980-09-03', 'S', 'NULL', 'M', 'roy29@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '1978 Medina Dr.', 'NULL', '1 (11) 500 555-0175', '2012-05-02', '1-2 Miles'], ['20860', '158', 'AW00020860', 'NULL', 'Preston', 'NULL', 'Lopez', '0', '1974-09-19', 'S', 'NULL', 'M', 'preston15@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Bundesallee 4424', 'NULL', '1 (11) 500 555-0175', '2012-09-06', '0-1 Miles'], ['20861', '170', 'AW00020861', 'NULL', 'Nicolas', 'M', 'Nara', '0', '1975-01-15', 'M', 'NULL', 'M', 'nicolas15@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Galeriestr 6267', 'NULL', '1 (11) 500 555-0174', '2012-09-24', '0-1 Miles'], ['20862', '255', 'AW00020862', 'NULL', 'Marshall', 'NULL', 'Sutton', '0', '1980-10-08', 'M', 'NULL', 'M', 'marshall25@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '359 Shepberry Court', 'NULL', '1 (11) 500 555-0182', '2012-05-16', '0-1 Miles'], ['20863', '263', 'AW00020863', 'NULL', 'Erica', 'M', 'Xu', '0', '1975-02-11', 'M', 'NULL', 'F', 'erica12@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '212 Pheasant Circle', 'NULL', '1 (11) 500 555-0146', '2012-05-27', '0-1 Miles'], ['20864', '243', 'AW00020864', 'NULL', 'Grace', 'J', 'Howard', '0', '1974-09-24', 'M', 'NULL', 'F', 'grace37@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8977 Woodhaven Lane', 'NULL', '1 (11) 500 555-0152', '2012-05-26', '0-1 Miles'], ['20865', '133', 'AW00020865', 'NULL', 'Luis', 'NULL', 'Ross', '0', '1928-03-19', 'M', 'NULL', 'M', 'luis2@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Alderstr 2984', 'NULL', '1 (11) 500 555-0137', '2013-08-01', '2-5 Miles'], ['20866', '241', 'AW00020866', 'NULL', 'David', 'D', 'Jones', '0', '1927-12-01', 'M', 'NULL', 'M', 'david76@adventure-works.com', '130000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '8196 Alexander Pl', 'NULL', '1 (11) 500 555-0160', '2012-06-07', '0-1 Miles'], ['20867', '189', 'AW00020867', 'NULL', 'Noah', 'K', 'Johnson', '0', '1957-10-20', 'M', 'NULL', 'M', 'noah57@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '27, impasse Ste-Madeleine', 'NULL', '1 (11) 500 555-0153', '2013-10-01', '0-1 Miles'], ['20868', '242', 'AW00020868', 'NULL', 'Misty', 'NULL', 'Shan', '0', '1957-03-09', 'M', 'NULL', 'F', 'misty12@adventure-works.com', '10000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '6208 Artnell Ct', 'NULL', '1 (11) 500 555-0153', '2013-04-04', '0-1 Miles'], ['20869', '261', 'AW00020869', 'NULL', 'David', 'R', 'Martinez', '0', '1979-12-23', 'S', 'NULL', 'M', 'david80@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '1147 Dimaggio Way', 'NULL', '1 (11) 500 555-0119', '2012-06-21', '0-1 Miles'], ['20870', '133', 'AW00020870', 'NULL', 'Jaime', 'NULL', 'Moreno', '0', '1973-08-07', 'S', 'NULL', 'F', 'jaime7@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Nollendorfplatz 58888', 'NULL', '1 (11) 500 555-0111', '2012-10-10', '0-1 Miles'], ['20871', '117', 'AW00020871', 'NULL', 'Adriana', 'J', 'Arthur', '0', '1979-09-13', 'S', 'NULL', 'F', 'adriana7@adventure-works.com', '10000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Werftstr 154', 'NULL', '1 (11) 500 555-0191', '2013-03-31', '0-1 Miles'], ['20872', '238', 'AW00020872', 'NULL', 'Theodore', 'C', 'Moreno', '0', '1984-08-16', 'S', 'NULL', 'M', 'theodore7@adventure-works.com', '10000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '8381 Lake Place', 'NULL', '1 (11) 500 555-0184', '2012-06-22', '0-1 Miles'], ['20873', '157', 'AW00020873', 'NULL', 'Joel', 'L', 'Subram', '0', '1974-05-22', 'M', 'NULL', 'M', 'joel12@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Werftstr 54', 'NULL', '1 (11) 500 555-0135', '2013-05-05', '2-5 Miles'], ['20874', '151', 'AW00020874', 'NULL', 'Edwin', 'NULL', 'Lal', '0', '1974-05-20', 'S', 'NULL', 'M', 'edwin31@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Rehstr 7546', 'NULL', '1 (11) 500 555-0116', '2012-10-16', '0-1 Miles'], ['20875', '273', 'AW00020875', 'NULL', 'Julia', 'R', 'Washington', '0', '1974-06-05', 'M', 'NULL', 'F', 'julia79@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '1927 Chablis Court', 'NULL', '1 (11) 500 555-0148', '2012-06-20', '2-5 Miles'], ['20876', '127', 'AW00020876', 'NULL', 'Jackson', 'NULL', 'Alexander', '0', '1973-10-25', 'S', 'NULL', 'M', 'jackson21@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Carlsplatz 90', 'NULL', '1 (11) 500 555-0120', '2012-10-10', '1-2 Miles'], ['20877', '224', 'AW00020877', 'NULL', 'Richard', 'J', 'Ross', '0', '1974-04-12', 'S', 'NULL', 'M', 'richard60@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '334, boulevard Beau Marchais', 'NULL', '1 (11) 500 555-0128', '2013-09-18', '1-2 Miles'], ['20878', '192', 'AW00020878', 'NULL', 'Erika', 'P', 'Ortega', '0', '1979-01-21', 'M', 'NULL', 'F', 'erika19@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1801, boulevard d´Albi', 'NULL', '1 (11) 500 555-0130', '2013-10-19', '0-1 Miles'], ['20879', '246', 'AW00020879', 'NULL', 'Pamela', 'NULL', 'Sanchez', '0', '1979-09-03', 'M', 'NULL', 'F', 'pamela23@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5279 Glenwood Dr.', 'NULL', '1 (11) 500 555-0157', '2012-06-09', '0-1 Miles'], ['20880', '243', 'AW00020880', 'NULL', 'Isabella', 'NULL', 'Washington', '0', '1978-04-17', 'S', 'NULL', 'F', 'isabella23@adventure-works.com', '10000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '1960 Fernando Court', 'NULL', '1 (11) 500 555-0146', '2012-07-14', '0-1 Miles'], ['20881', '234', 'AW00020881', 'NULL', 'Wendy', 'C', 'Navarro', '0', '1978-06-03', 'S', 'NULL', 'F', 'wendy9@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '689 Kalima Place', 'NULL', '1 (11) 500 555-0128', '2013-10-04', '2-5 Miles'], ['20882', '211', 'AW00020882', 'NULL', 'Sabrina', 'V', 'Suarez', '0', '1984-03-06', 'M', 'NULL', 'F', 'sabrina13@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '2140, rue Léo Delibes', 'NULL', '1 (11) 500 555-0196', '2013-11-12', '2-5 Miles'], ['20883', '192', 'AW00020883', 'NULL', 'Latoya', 'A', 'Rai', '0', '1978-11-12', 'M', 'NULL', 'F', 'latoya16@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '100, rue Jean Mermoz', 'NULL', '1 (11) 500 555-0164', '2013-11-16', '2-5 Miles'], ['20884', '220', 'AW00020884', 'NULL', 'Darren', 'NULL', 'Schmidt', '0', '1972-07-08', 'S', 'NULL', 'M', 'darren43@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '1211, rue des Ecoles', 'NULL', '1 (11) 500 555-0180', '2013-11-08', '1-2 Miles'], ['20885', '268', 'AW00020885', 'NULL', 'Terry', 'NULL', 'Xie', '0', '1973-03-14', 'S', 'NULL', 'M', 'terry6@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '9212 Tupelo Drive', 'NULL', '1 (11) 500 555-0176', '2012-07-01', '1-2 Miles'], ['20886', '238', 'AW00020886', 'NULL', 'Bruce', 'NULL', 'Raman', '0', '1972-09-07', 'M', 'NULL', 'M', 'bruce11@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4092 Tupelp Drive', 'NULL', '1 (11) 500 555-0122', '2012-07-04', '2-5 Miles'], ['20887', '206', 'AW00020887', 'NULL', 'Damien', 'L', 'Li', '0', '1972-01-01', 'S', 'NULL', 'M', 'damien2@adventure-works.com', '10000.00', '4', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '2, route de Marseille', 'NULL', '1 (11) 500 555-0159', '2013-11-10', '0-1 Miles'], ['20888', '224', 'AW00020888', 'NULL', 'Clayton', 'P', 'Raje', '0', '1971-07-21', 'S', 'NULL', 'M', 'clayton32@adventure-works.com', '10000.00', '4', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '4, place du Tertre', 'NULL', '1 (11) 500 555-0188', '2013-11-14', '0-1 Miles'], ['20889', '240', 'AW00020889', 'NULL', 'Manuel', 'M', 'Patel', '0', '1977-06-20', 'S', 'NULL', 'M', 'manuel2@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '456 Stanford Way', 'NULL', '1 (11) 500 555-0151', '2013-08-07', '2-5 Miles'], ['20890', '277', 'AW00020890', 'NULL', 'Clayton', 'NULL', 'Anand', '0', '1972-04-14', 'S', 'NULL', 'M', 'clayton40@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'P. O. Box 5413', 'NULL', '1 (11) 500 555-0144', '2012-07-26', '1-2 Miles'], ['20891', '215', 'AW00020891', 'NULL', 'Darrell', 'M', 'Anand', '0', '1978-11-10', 'M', 'NULL', 'M', 'darrell10@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '95, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0117', '2013-06-02', '0-1 Miles'], ['20892', '249', 'AW00020892', 'NULL', 'Henry', 'L', 'Sara', '0', '1973-01-08', 'M', 'NULL', 'M', 'henry11@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '1099 C Street', 'NULL', '1 (11) 500 555-0190', '2012-07-01', '0-1 Miles'], ['20893', '155', 'AW00020893', 'NULL', 'Robert', 'M', 'Hall', '0', '1933-02-02', 'M', 'NULL', 'M', 'robert89@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Im Himmelsweg 89', 'NULL', '1 (11) 500 555-0144', '2013-12-12', '0-1 Miles'], ['20894', '186', 'AW00020894', 'NULL', 'Alyssa', 'L', 'Thomas', '0', '1972-03-20', 'S', 'NULL', 'F', 'alyssa10@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '48, place de la Concorde', 'NULL', '1 (11) 500 555-0112', '2013-11-24', '0-1 Miles'], ['20895', '204', 'AW00020895', 'NULL', 'Ruben', 'A', 'Jimenez', '0', '1972-06-09', 'S', 'NULL', 'M', 'ruben29@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '1', '8101bis, boulevard Saint Germain', 'NULL', '1 (11) 500 555-0141', '2013-12-01', '0-1 Miles'], ['20896', '119', 'AW00020896', 'NULL', 'Arthur', 'E', 'Sai', '0', '1971-11-11', 'M', 'NULL', 'M', 'arthur8@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Marketplatz 52', 'NULL', '1 (11) 500 555-0132', '2012-10-09', '0-1 Miles'], ['20897', '211', 'AW00020897', 'NULL', 'Mayra', 'E', 'Sai', '0', '1971-08-24', 'M', 'NULL', 'F', 'mayra5@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '31, place de Fontenoy', 'NULL', '1 (11) 500 555-0161', '2013-10-20', '0-1 Miles'], ['20898', '126', 'AW00020898', 'NULL', 'Grant', 'NULL', 'Ferrier', '0', '1972-01-24', 'M', 'NULL', 'M', 'grant24@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', 'Waldstr 91', 'NULL', '1 (11) 500 555-0178', '2013-10-20', '0-1 Miles'], ['20899', '189', 'AW00020899', 'NULL', 'Angela', 'NULL', 'Cook', '0', '1971-05-06', 'S', 'NULL', 'F', 'angela47@adventure-works.com', '10000.00', '5', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '12, avenue des Laurentides', 'NULL', '1 (11) 500 555-0122', '2014-01-19', '0-1 Miles'], ['20900', '241', 'AW00020900', 'NULL', 'Natalie', 'M', 'Russell', '0', '1970-10-01', 'S', 'NULL', 'F', 'natalie42@adventure-works.com', '10000.00', '4', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '8932 Westwood Way', 'NULL', '1 (11) 500 555-0129', '2013-09-26', '0-1 Miles'], ['20901', '219', 'AW00020901', 'NULL', 'Chad', 'NULL', 'Xu', '0', '1971-04-01', 'S', 'NULL', 'M', 'chad6@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '59, rue des Berges', 'NULL', '1 (11) 500 555-0189', '2013-12-09', '0-1 Miles'], ['20902', '271', 'AW00020902', 'NULL', 'Shane', 'M', 'Subram', '0', '1976-12-02', 'M', 'NULL', 'M', 'shane16@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5682 Leslie Avenue', 'NULL', '1 (11) 500 555-0131', '2014-01-15', '0-1 Miles'], ['20903', '128', 'AW00020903', 'NULL', 'Robyn', 'Z', 'Diaz', '0', '1971-04-25', 'M', 'NULL', 'F', 'robyn2@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', 'Karl Liebknecht str 399', 'NULL', '1 (11) 500 555-0113', '2013-05-27', '0-1 Miles'], ['20904', '231', 'AW00020904', 'NULL', 'Ebony', 'C', 'Gomez', '0', '1971-03-18', 'M', 'NULL', 'F', 'ebony23@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9090 Cristobal', 'NULL', '1 (11) 500 555-0194', '2013-12-31', '0-1 Miles'], ['20905', '218', 'AW00020905', 'NULL', 'Jessie', 'NULL', 'Munoz', '0', '1969-12-03', 'S', 'NULL', 'F', 'jessie5@adventure-works.com', '10000.00', '5', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '2, avenue de Norvege', 'NULL', '1 (11) 500 555-0149', '2013-12-19', '0-1 Miles'], ['20906', '267', 'AW00020906', 'NULL', 'Briana', 'NULL', 'Ruiz', '0', '1969-11-06', 'S', 'NULL', 'F', 'briana2@adventure-works.com', '10000.00', '5', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '1463 El Verano', 'NULL', '1 (11) 500 555-0141', '2013-12-06', '0-1 Miles'], ['20907', '259', 'AW00020907', 'NULL', 'Terrence', 'NULL', 'Shan', '0', '1970-05-21', 'S', 'NULL', 'M', 'terrence10@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '1728 Village Oaks Dr.', 'NULL', '1 (11) 500 555-0180', '2013-08-13', '0-1 Miles'], ['20908', '171', 'AW00020908', 'NULL', 'Wyatt', 'C', 'Foster', '0', '1975-04-20', 'S', 'NULL', 'M', 'wyatt66@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Potsdamer Straße 23', 'NULL', '1 (11) 500 555-0166', '2013-06-02', '0-1 Miles'], ['20909', '248', 'AW00020909', 'NULL', 'Kelly', 'J', 'Weadock', '0', '1968-10-19', 'S', 'NULL', 'F', 'kelly3@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '3711 Third Ave East', 'NULL', '1 (11) 500 555-0174', '2013-04-10', '0-1 Miles'], ['20910', '198', 'AW00020910', 'NULL', 'Carolyn', 'M', 'Malhotra', '0', '1977-02-17', 'M', 'NULL', 'F', 'carolyn5@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '1, place Beaubernard', 'NULL', '1 (11) 500 555-0178', '2013-09-25', '0-1 Miles'], ['20911', '203', 'AW00020911', 'NULL', 'Katrina', 'NULL', 'Raje', '0', '1972-01-30', 'M', 'NULL', 'F', 'katrina12@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '56, route de Marseille', 'NULL', '1 (11) 500 555-0175', '2013-11-12', '0-1 Miles'], ['20912', '121', 'AW00020912', 'NULL', 'Christy', 'G', 'Hu', '0', '1972-05-01', 'M', 'NULL', 'F', 'christy18@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', 'Winter der Böck 81234', 'NULL', '1 (11) 500 555-0182', '2012-10-27', '0-1 Miles'], ['20913', '168', 'AW00020913', 'NULL', 'Wesley', 'NULL', 'Liu', '0', '1968-10-28', 'S', 'NULL', 'M', 'wesley4@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Postfach 8 44 99', 'NULL', '1 (11) 500 555-0194', '2012-11-01', '0-1 Miles'], ['20914', '126', 'AW00020914', 'NULL', 'Gilbert', 'C', 'Zeng', '0', '1978-10-19', 'M', 'NULL', 'M', 'gilbert20@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Postenweg 3738', 'NULL', '1 (11) 500 555-0160', '2012-11-03', '0-1 Miles'], ['20915', '180', 'AW00020915', 'NULL', 'Latasha', 'NULL', 'Carlson', '0', '1970-10-16', 'S', 'NULL', 'F', 'latasha18@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '111, rue Marbeuf', 'NULL', '1 (11) 500 555-0153', '2013-12-20', '0-1 Miles'], ['20916', '157', 'AW00020916', 'NULL', 'Kathleen', 'NULL', 'Carlson', '0', '1970-11-09', 'S', 'NULL', 'F', 'kathleen19@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Roßstr 9928', 'NULL', '1 (11) 500 555-0157', '2013-06-17', '0-1 Miles'], ['20917', '245', 'AW00020917', 'NULL', 'Tonya', 'NULL', 'Tang', '0', '1976-02-20', 'M', 'NULL', 'F', 'tonya4@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8219 Orangewood Rd.', 'NULL', '1 (11) 500 555-0148', '2012-08-24', '0-1 Miles'], ['20918', '191', 'AW00020918', 'NULL', 'Neil', 'NULL', 'Ramos', '0', '1975-10-31', 'M', 'NULL', 'M', 'neil16@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '40, rue Royale', 'NULL', '1 (11) 500 555-0131', '2013-09-23', '0-1 Miles'], ['20919', '187', 'AW00020919', 'NULL', 'Gretchen', 'NULL', 'Rivas', '0', '1980-09-16', 'S', 'NULL', 'F', 'gretchen0@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '103, rue de Fontfroide', 'NULL', '1 (11) 500 555-0152', '2014-01-08', '0-1 Miles'], ['20920', '187', 'AW00020920', 'NULL', 'Jaclyn', 'I', 'Rai', '0', '1975-06-21', 'S', 'NULL', 'F', 'jaclyn41@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '599, rue Jean Mermoz', 'NULL', '1 (11) 500 555-0194', '2014-01-13', '0-1 Miles'], ['20921', '239', 'AW00020921', 'NULL', 'Melinda', 'NULL', 'Carlson', '0', '1975-12-22', 'M', 'NULL', 'F', 'melinda13@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8152 Claudia Dr.', 'NULL', '1 (11) 500 555-0165', '2012-08-25', '0-1 Miles'], ['20922', '255', 'AW00020922', 'NULL', 'Clayton', 'L', 'Wagner', '0', '1970-01-17', 'M', 'NULL', 'M', 'clayton1@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8634 Sinaloa', 'NULL', '1 (11) 500 555-0187', '2012-08-02', '0-1 Miles'], ['20923', '147', 'AW00020923', 'NULL', 'Isabella', 'L', 'Powell', '0', '1969-05-08', 'M', 'NULL', 'F', 'isabella19@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Auf dem Ufer 2', 'NULL', '1 (11) 500 555-0159', '2012-11-23', '0-1 Miles'], ['20924', '162', 'AW00020924', 'NULL', 'Alberto', 'M', 'Sanz', '0', '1983-06-05', 'S', 'NULL', 'M', 'alberto19@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Heiderweg 4284', 'NULL', '1 (11) 500 555-0192', '2013-06-28', '2-5 Miles'], ['20925', '189', 'AW00020925', 'NULL', 'Kristin', 'D', 'Xu', '0', '1984-10-02', 'S', 'NULL', 'F', 'kristin7@adventure-works.com', '20000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '2, rue de l´Avenir', 'NULL', '1 (11) 500 555-0112', '2013-09-06', '0-1 Miles'], ['20926', '209', 'AW00020926', 'NULL', 'Jeffery', 'C', 'Guo', '0', '1985-01-14', 'S', 'NULL', 'M', 'jeffery17@adventure-works.com', '20000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '3', '86, rue Mazagran', 'NULL', '1 (11) 500 555-0196', '2013-12-17', '0-1 Miles'], ['20927', '128', 'AW00020927', 'NULL', 'Tammy', 'R', 'Martinez', '0', '1984-12-13', 'S', 'NULL', 'F', 'tammy18@adventure-works.com', '20000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Berliner Platz 94', 'NULL', '1 (11) 500 555-0153', '2013-11-10', '0-1 Miles'], ['20928', '149', 'AW00020928', 'NULL', 'Raymond', 'L', 'Kapoor', '0', '1985-04-15', 'S', 'NULL', 'M', 'raymond3@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Nollendorfplatz 5228', 'NULL', '1 (11) 500 555-0153', '2013-10-28', '0-1 Miles'], ['20929', '278', 'AW00020929', 'NULL', 'Darryl', 'C', 'Zeng', '0', '1984-12-09', 'S', 'NULL', 'M', 'darryl21@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4986 Treat Blvd.', 'NULL', '1 (11) 500 555-0189', '2013-03-07', '0-1 Miles'], ['20930', '162', 'AW00020930', 'NULL', 'Drew', 'R', 'Chande', '0', '1968-12-11', 'M', 'NULL', 'M', 'drew16@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Haberstr 42', 'NULL', '1 (11) 500 555-0179', '2012-11-20', '0-1 Miles'], ['20931', '236', 'AW00020931', 'NULL', 'Brian', 'F', 'Sanchez', '0', '1969-04-13', 'M', 'NULL', 'M', 'brian29@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8290 N. 39th Street', 'NULL', '1 (11) 500 555-0132', '2012-08-18', '0-1 Miles'], ['20932', '186', 'AW00020932', 'NULL', 'Cole', 'J', 'Kelly', '0', '1967-11-23', 'S', 'NULL', 'M', 'cole3@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2, rue Georges-Clémenceau', 'NULL', '1 (11) 500 555-0190', '2013-11-12', '2-5 Miles'], ['20933', '262', 'AW00020933', 'NULL', 'Laura', 'O', 'Li', '0', '1984-02-23', 'S', 'NULL', 'F', 'laura10@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '3', '9965 V. Street', 'NULL', '1 (11) 500 555-0145', '2012-08-20', '0-1 Miles'], ['20934', '187', 'AW00020934', 'NULL', 'Haley', 'NULL', 'Young', '0', '1983-02-01', 'S', 'NULL', 'F', 'haley59@adventure-works.com', '30000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '64, route de Marseille', 'NULL', '1 (11) 500 555-0155', '2013-12-14', '0-1 Miles'], ['20935', '196', 'AW00020935', 'NULL', 'Desiree', 'L', 'Jimenez', '0', '1983-04-13', 'S', 'NULL', 'F', 'desiree1@adventure-works.com', '30000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '3', '44, rue Saint Denis', 'NULL', '1 (11) 500 555-0168', '2013-11-11', '0-1 Miles'], ['20936', '182', 'AW00020936', 'NULL', 'Christy', 'C', 'Cai', '0', '1982-12-20', 'S', 'NULL', 'F', 'christy19@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '15, avenue Reille', 'NULL', '1 (11) 500 555-0196', '2013-12-26', '0-1 Miles'], ['20937', '120', 'AW00020937', 'NULL', 'Natalie', 'E', 'Williams', '0', '1983-01-02', 'S', 'NULL', 'F', 'natalie70@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Bundesallee 442', 'NULL', '1 (11) 500 555-0118', '2013-09-04', '2-5 Miles'], ['20938', '260', 'AW00020938', 'NULL', 'Carolyn', 'A', 'Rowe', '0', '1983-02-20', 'S', 'NULL', 'F', 'carolyn42@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '8074 Corte Valencia', 'NULL', '1 (11) 500 555-0145', '2014-01-08', '2-5 Miles'], ['20939', '117', 'AW00020939', 'NULL', 'Joshua', 'NULL', 'Johnson', '0', '1982-03-04', 'S', 'NULL', 'M', 'joshua3@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Marienplatz 36531', 'NULL', '1 (11) 500 555-0191', '2013-11-17', '1-2 Miles'], ['20940', '215', 'AW00020940', 'NULL', 'Jillian', 'NULL', 'Rodriguez', '0', '1982-02-25', 'S', 'NULL', 'F', 'jillian20@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1005, rue des Bouchers', 'NULL', '1 (11) 500 555-0191', '2013-02-12', '1-2 Miles'], ['20941', '208', 'AW00020941', 'NULL', 'Arturo', 'K', 'Guo', '0', '1981-01-05', 'M', 'NULL', 'M', 'arturo19@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '81, avenue des Laurentides', 'NULL', '1 (11) 500 555-0156', '2013-02-21', '0-1 Miles'], ['20942', '222', 'AW00020942', 'NULL', 'Tasha', 'M', 'Sharma', '0', '1986-03-22', 'S', 'NULL', 'F', 'tasha10@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '80, rue de la Centenaire', 'NULL', '1 (11) 500 555-0113', '2013-03-25', '5-10 Miles'], ['20943', '261', 'AW00020943', 'NULL', 'Brett', 'L', 'Rana', '0', '1980-09-28', 'S', 'NULL', 'M', 'brett10@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '64 Sandy Cove Lane', 'NULL', '1 (11) 500 555-0146', '2013-09-27', '2-5 Miles'], ['20944', '207', 'AW00020944', 'NULL', 'Rebecca', 'NULL', 'Hernandez', '0', '1981-11-22', 'S', 'NULL', 'F', 'rebecca19@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '21, rue Saint Denis', 'NULL', '1 (11) 500 555-0186', '2013-02-06', '5-10 Miles'], ['20945', '159', 'AW00020945', 'NULL', 'Roger', 'M', 'Tang', '0', '1981-11-23', 'S', 'NULL', 'M', 'roger31@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Pflugstr 2565', 'NULL', '1 (11) 500 555-0112', '2012-11-27', '0-1 Miles'], ['20946', '151', 'AW00020946', 'NULL', 'Abby', 'E', 'Chandra', '0', '1981-09-24', 'S', 'NULL', 'F', 'abby1@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Lindenalle 42', 'NULL', '1 (11) 500 555-0142', '2013-09-14', '2-5 Miles'], ['20947', '245', 'AW00020947', 'NULL', 'Marie', 'NULL', 'Alvarez', '0', '1981-12-06', 'S', 'NULL', 'F', 'marie28@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1504 Conifer Court', 'NULL', '1 (11) 500 555-0115', '2014-01-25', '2-5 Miles'], ['20948', '209', 'AW00020948', 'NULL', 'Xavier', 'NULL', 'White', '0', '1981-01-05', 'S', 'NULL', 'M', 'xavier10@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '4+B347533, place de la République', 'NULL', '1 (11) 500 555-0113', '2013-03-24', '0-1 Miles'], ['20949', '236', 'AW00020949', 'NULL', 'Sandra', 'J', 'Liang', '0', '1980-03-09', 'S', 'NULL', 'F', 'sandra24@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '9512 Sun View Court', 'NULL', '1 (11) 500 555-0132', '2013-03-30', '0-1 Miles'], ['20950', '232', 'AW00020950', 'NULL', 'Albert', 'W', 'Suarez', '0', '1985-11-09', 'S', 'NULL', 'M', 'albert19@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '4398 Clayburn Road', 'NULL', '1 (11) 500 555-0117', '2013-05-06', '0-1 Miles'], ['20951', '252', 'AW00020951', 'NULL', 'Darrell', 'T', 'Jai', '0', '1980-03-21', 'S', 'NULL', 'M', 'darrell19@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '7645 Ranch Road', 'NULL', '1 (11) 500 555-0157', '2013-08-11', '1-2 Miles'], ['20952', '264', 'AW00020952', 'NULL', 'Micah', 'A', 'Ye', '0', '1979-11-02', 'S', 'NULL', 'M', 'micah20@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '4832 Park Glen Ct.', 'NULL', '1 (11) 500 555-0126', '2013-12-14', '0-1 Miles'], ['20953', '205', 'AW00020953', 'NULL', 'Neil', 'NULL', 'Rubio', '0', '1979-12-03', 'S', 'NULL', 'M', 'neil20@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '2, avenue de Norvege', 'NULL', '1 (11) 500 555-0177', '2013-11-18', '1-2 Miles'], ['20954', '184', 'AW00020954', 'NULL', 'Nathan', 'NULL', 'Foster', '0', '1985-10-07', 'S', 'NULL', 'M', 'nathan12@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '92, rue Faubourg St Antoine', 'NULL', '1 (11) 500 555-0119', '2013-09-15', '0-1 Miles'], ['20955', '208', 'AW00020955', 'NULL', 'Dawn', 'NULL', 'Pal', '0', '1986-03-08', 'S', 'NULL', 'F', 'dawn36@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '51, rue de la Cavalerie', 'NULL', '1 (11) 500 555-0152', '2013-12-03', '2-5 Miles'], ['20956', '211', 'AW00020956', 'NULL', 'Kristy', 'A', 'Alonso', '0', '1981-02-24', 'S', 'NULL', 'F', 'kristy8@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '4, boulevard Tremblay', 'NULL', '1 (11) 500 555-0117', '2013-11-06', '0-1 Miles'], ['20957', '206', 'AW00020957', 'NULL', 'Darren', 'E', 'Kapoor', '0', '1980-07-15', 'S', 'NULL', 'M', 'darren3@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '3193, rue Lamarck', 'NULL', '1 (11) 500 555-0147', '2013-06-21', '0-1 Miles'], ['20958', '178', 'AW00020958', 'NULL', 'Gerald', 'NULL', 'Alonso', '0', '1981-03-25', 'S', 'NULL', 'M', 'gerald16@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Buergermeister-ulrich-str 2411', 'NULL', '1 (11) 500 555-0160', '2013-01-29', '0-1 Miles'], ['20959', '223', 'AW00020959', 'NULL', 'Ruben', 'NULL', 'Arun', '0', '1968-04-13', 'M', 'NULL', 'M', 'ruben7@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5, rue de Courtaboeuf', 'NULL', '1 (11) 500 555-0143', '2013-11-02', '0-1 Miles'], ['20960', '193', 'AW00020960', 'NULL', 'Darrell', 'J', 'Beck', '0', '1967-09-02', 'S', 'NULL', 'M', 'darrell8@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '35, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0162', '2013-05-18', '0-1 Miles'], ['20961', '188', 'AW00020961', 'NULL', 'Keith', 'A', 'Goldberg', '0', '1966-09-06', 'M', 'NULL', 'M', 'keith23@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '7005, rue des Bouchers', 'NULL', '1 (11) 500 555-0178', '2013-12-23', '0-1 Miles'], ['20962', '198', 'AW00020962', 'NULL', 'Sharon', 'NULL', 'Xie', '0', '1966-11-17', 'M', 'NULL', 'F', 'sharon9@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '101, rue Léo Delibes', 'NULL', '1 (11) 500 555-0145', '2013-04-12', '0-1 Miles'], ['20963', '241', 'AW00020963', 'NULL', 'Teresa', 'C', 'Dominguez', '0', '1967-03-13', 'M', 'NULL', 'F', 'teresa13@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3159 C Wharton Way', 'NULL', '1 (11) 500 555-0173', '2013-03-06', '0-1 Miles'], ['20964', '208', 'AW00020964', 'NULL', 'Emily', 'M', 'Butler', '0', '1946-12-13', 'S', 'NULL', 'F', 'emily39@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '919, rue de Berri', 'NULL', '1 (11) 500 555-0110', '2013-08-30', '0-1 Miles'], ['20965', '270', 'AW00020965', 'NULL', 'Cynthia', 'A', 'Subram', '0', '1946-05-04', 'M', 'NULL', 'F', 'cynthia18@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4683 Tuolumne Way', 'NULL', '1 (11) 500 555-0132', '2013-07-07', '0-1 Miles'], ['20966', '180', 'AW00020966', 'NULL', 'Virginia', 'NULL', 'Madan', '0', '1973-04-08', 'M', 'NULL', 'F', 'virginia9@adventure-works.com', '30000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2630 Morgan Terr. Rd', 'NULL', '1 (11) 500 555-0183', '2013-12-09', '0-1 Miles'], ['20967', '142', 'AW00020967', 'NULL', 'Casey', 'T', 'Rowe', '0', '1962-10-22', 'M', 'NULL', 'M', 'casey25@adventure-works.com', '10000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Wolfgangstraße 7878', 'NULL', '1 (11) 500 555-0186', '2013-06-02', '0-1 Miles'], ['20968', '279', 'AW00020968', 'NULL', 'Arturo', 'NULL', 'Yuan', '0', '1963-01-03', 'M', 'NULL', 'M', 'arturo31@adventure-works.com', '10000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '2152 Roan Lane', 'NULL', '1 (11) 500 555-0163', '2013-07-11', '0-1 Miles'], ['20969', '221', 'AW00020969', 'NULL', 'Ashley', 'C', 'Foster', '0', '1962-06-22', 'M', 'NULL', 'F', 'ashley43@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '958, avenue du Québec', 'NULL', '1 (11) 500 555-0179', '2013-05-14', '1-2 Miles'], ['20970', '175', 'AW00020970', 'NULL', 'Isaiah', 'NULL', 'Richardson', '0', '1965-05-10', 'S', 'NULL', 'M', 'isaiah8@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Viktoria-Luise-Platz 464', 'NULL', '1 (11) 500 555-0124', '2012-11-04', '0-1 Miles'], ['20971', '211', 'AW00020971', 'NULL', 'Preston', 'NULL', 'Suri', '0', '1942-09-07', 'S', 'NULL', 'M', 'preston0@adventure-works.com', '10000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', '356, avenue des Laurentides', 'NULL', '1 (11) 500 555-0117', '2013-11-02', '0-1 Miles'], ['20972', '232', 'AW00020972', 'NULL', 'Francisco', 'A', 'Vance', '0', '1942-12-12', 'M', 'NULL', 'M', 'francisco5@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9457 Roxbury Dr.', 'NULL', '1 (11) 500 555-0169', '2013-10-16', '0-1 Miles'], ['20973', '255', 'AW00020973', 'NULL', 'April', 'C', 'Andersen', '0', '1949-04-20', 'M', 'NULL', 'F', 'april11@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8600 Jomar', 'NULL', '1 (11) 500 555-0167', '2013-09-06', '0-1 Miles'], ['20974', '201', 'AW00020974', 'NULL', 'George', 'C', 'Subram', '0', '1945-04-19', 'M', 'NULL', 'M', 'george19@adventure-works.com', '10000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6, route de Marseille', 'NULL', '1 (11) 500 555-0162', '2013-07-02', '0-1 Miles'], ['20975', '234', 'AW00020975', 'NULL', 'Jerry', 'NULL', 'Andersen', '0', '1945-09-06', 'M', 'NULL', 'M', 'jerry14@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8264 Montanya Court', 'NULL', '1 (11) 500 555-0156', '2012-08-21', '0-1 Miles'], ['20976', '222', 'AW00020976', 'NULL', 'Jaclyn', 'NULL', 'Kumar', '0', '1952-08-31', 'M', 'NULL', 'F', 'jaclyn31@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '22, rue de la Centenaire', 'NULL', '1 (11) 500 555-0126', '2013-08-01', '0-1 Miles'], ['20977', '189', 'AW00020977', 'NULL', 'Mario', 'J', 'Andersen', '0', '1958-03-22', 'M', 'NULL', 'M', 'mario11@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '401, rue de la Centenaire', 'NULL', '1 (11) 500 555-0177', '2013-01-18', '0-1 Miles'], ['20978', '115', 'AW00020978', 'NULL', 'Bruce', 'D', 'Srini', '0', '1947-06-24', 'M', 'NULL', 'M', 'bruce7@adventure-works.com', '20000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Parise Straße 15051', 'NULL', '1 (11) 500 555-0183', '2013-08-01', '0-1 Miles'], ['20979', '149', 'AW00020979', 'NULL', 'Diane', 'NULL', 'Jimenez', '0', '1947-04-25', 'M', 'NULL', 'F', 'diane10@adventure-works.com', '20000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Höhenstr 9449', 'NULL', '1 (11) 500 555-0154', '2012-11-24', '0-1 Miles'], ['20980', '161', 'AW00020980', 'NULL', 'Matthew', 'NULL', 'Miller', '0', '1947-02-07', 'S', 'NULL', 'M', 'matthew12@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Lindenalle 64', 'NULL', '1 (11) 500 555-0192', '2012-11-10', '0-1 Miles'], ['20981', '140', 'AW00020981', 'NULL', 'Craig', 'NULL', 'Romero', '0', '1947-12-24', 'M', 'NULL', 'M', 'craig10@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Holzstr 3373', 'NULL', '1 (11) 500 555-0120', '2013-02-06', '0-1 Miles'], ['20982', '277', 'AW00020982', 'NULL', 'Arthur', 'K', 'Jiménez', '0', '1947-08-09', 'S', 'NULL', 'M', 'arthur29@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1054 Vloching Circle', 'NULL', '1 (11) 500 555-0149', '2012-09-04', '0-1 Miles'], ['20983', '22', 'AW00020983', 'NULL', 'Meredith', 'B', 'Vance', '0', '1986-06-22', 'S', 'NULL', 'F', 'meredith2@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '2037 Bellwood Dr', 'NULL', '1 (11) 500 555-0140', '2011-12-15', '0-1 Miles'], ['20984', '36', 'AW00020984', 'NULL', 'Sabrina', 'A', 'Rubio', '0', '1985-11-09', 'M', 'NULL', 'F', 'sabrina15@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6068 Campbell Ave', 'NULL', '1 (11) 500 555-0171', '2011-12-07', '0-1 Miles'], ['20985', '18', 'AW00020985', 'NULL', 'Autumn', 'J', 'Liu', '0', '1985-07-16', 'M', 'NULL', 'F', 'autumn4@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3162 Aspect Dr', 'NULL', '1 (11) 500 555-0135', '2011-12-21', '0-1 Miles'], ['20986', '20', 'AW00020986', 'NULL', 'Brandi', 'L', 'Blanco', '0', '1982-10-25', 'M', 'NULL', 'F', 'brandi15@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '9669 Alhambra Court', 'NULL', '1 (11) 500 555-0171', '2013-10-05', '2-5 Miles'], ['20987', '8', 'AW00020987', 'NULL', 'Marshall', 'M', 'Zeng', '0', '1983-06-12', 'S', 'NULL', 'M', 'marshall20@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '7280 E. Leland Rd.', 'NULL', '1 (11) 500 555-0134', '2011-11-30', '1-2 Miles'], ['20988', '36', 'AW00020988', 'NULL', 'Anna', 'L', 'Martin', '0', '1982-09-21', 'M', 'NULL', 'F', 'anna52@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '5195 Graham Street', 'NULL', '1 (11) 500 555-0168', '2011-12-03', '0-1 Miles'], ['20989', '18', 'AW00020989', 'NULL', 'Cassandra', 'D', 'Sara', '0', '1981-08-25', 'M', 'NULL', 'F', 'cassandra11@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '8869 Bellwood Court', 'NULL', '1 (11) 500 555-0199', '2011-12-15', '2-5 Miles'], ['20990', '13', 'AW00020990', 'NULL', 'Mayra', 'P', 'Raman', '0', '1982-04-09', 'M', 'NULL', 'F', 'mayra12@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '4423 Bayview Circle', 'NULL', '1 (11) 500 555-0134', '2011-12-21', '2-5 Miles'], ['20991', '40', 'AW00020991', 'NULL', 'Frederick', 'NULL', 'Sai', '0', '1982-06-05', 'M', 'NULL', 'M', 'frederick5@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '8032 Gumwood', 'Unit 7c', '1 (11) 500 555-0139', '2011-12-05', '2-5 Miles'], ['20992', '23', 'AW00020992', 'NULL', 'Julio', 'NULL', 'Serrano', '0', '1985-01-12', 'M', 'NULL', 'M', 'julio17@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1343 Prospect St', 'NULL', '1 (11) 500 555-0143', '2011-11-30', '0-1 Miles'], ['20993', '30', 'AW00020993', 'NULL', 'Mitchell', 'B', 'Xie', '0', '1984-10-11', 'S', 'NULL', 'M', 'mitchell3@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '8727 Logan Court', 'NULL', '1 (11) 500 555-0172', '2011-11-30', '0-1 Miles'], ['20994', '21', 'AW00020994', 'NULL', 'Autumn', 'NULL', 'Ma', '0', '1985-04-21', 'M', 'NULL', 'F', 'autumn15@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '9855 Norse Ct.', 'NULL', '1 (11) 500 555-0166', '2011-11-30', '0-1 Miles'], ['20995', '21', 'AW00020995', 'NULL', 'Danny', 'NULL', 'Suarez', '0', '1984-08-16', 'S', 'NULL', 'M', 'danny20@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7251 Millfield Place', 'NULL', '1 (11) 500 555-0119', '2011-11-29', '0-1 Miles'], ['20996', '25', 'AW00020996', 'NULL', 'Keith', 'T', 'Shan', '0', '1984-09-19', 'S', 'NULL', 'M', 'keith13@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2345 Yorba Linda', 'NULL', '1 (11) 500 555-0173', '2011-12-05', '0-1 Miles'], ['20997', '5', 'AW00020997', 'NULL', 'Joanna', 'F', 'Ashe', '0', '1985-01-06', 'M', 'NULL', 'F', 'joanna3@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1561 Black Point Pl', 'NULL', '1 (11) 500 555-0119', '2012-01-18', '0-1 Miles'], ['20998', '21', 'AW00020998', 'NULL', 'Eugene', 'L', 'She', '0', '1983-07-03', 'M', 'NULL', 'M', 'eugene26@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '1736 Windsor Drive', 'NULL', '1 (11) 500 555-0165', '2012-01-26', '0-1 Miles'], ['20999', '22', 'AW00020999', 'NULL', 'Carolyn', 'NULL', 'Garcia', '0', '1983-10-25', 'M', 'NULL', 'F', 'carolyn14@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5587 Esperanza', 'NULL', '1 (11) 500 555-0136', '2012-01-03', '0-1 Miles'], ['21000', '3', 'AW00021000', 'NULL', 'Geoffrey', 'P', 'Perez', '0', '1983-09-23', 'M', 'NULL', 'M', 'geoffrey19@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '692 Nahua', 'NULL', '1 (11) 500 555-0169', '2012-01-25', '0-1 Miles'], ['21001', '24', 'AW00021001', 'NULL', 'Clinton', 'NULL', 'Gutierrez', '0', '1983-10-04', 'S', 'NULL', 'M', 'clinton8@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '6165 Silverwood Drive', 'NULL', '1 (11) 500 555-0124', '2012-01-14', '0-1 Miles'], ['21002', '11', 'AW00021002', 'NULL', 'Carolyn', 'NULL', 'Rodriguez', '0', '1983-04-26', 'S', 'NULL', 'F', 'carolyn19@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '8051 Roskelley Dr.', 'NULL', '1 (11) 500 555-0156', '2012-01-03', '0-1 Miles'], ['21003', '222', 'AW00021003', 'NULL', 'Jimmy', 'NULL', 'Hernandez', '0', '1967-05-13', 'M', 'NULL', 'M', 'jimmy6@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '2, place de Brazaville', 'NULL', '1 (11) 500 555-0117', '2013-02-10', '1-2 Miles'], ['21004', '224', 'AW00021004', 'NULL', 'Kaitlyn', 'NULL', 'Campbell', '0', '1972-11-02', 'M', 'NULL', 'F', 'kaitlyn5@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '24, rue Descartes', 'NULL', '1 (11) 500 555-0159', '2013-01-06', '0-1 Miles'], ['21005', '219', 'AW00021005', 'NULL', 'Barbara', 'H', 'Zhu', '0', '1965-08-26', 'M', 'NULL', 'F', 'barbara23@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '18061, rue Lamarck', 'NULL', '1 (11) 500 555-0177', '2013-08-13', '2-5 Miles'], ['21006', '131', 'AW00021006', 'NULL', 'Sydney', 'K', 'Young', '0', '1966-01-18', 'S', 'NULL', 'F', 'sydney89@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Erlenweg 99', 'NULL', '1 (11) 500 555-0119', '2012-11-19', '0-1 Miles'], ['21007', '160', 'AW00021007', 'NULL', 'Nuan', 'NULL', 'Ma', '0', '1971-04-18', 'M', 'NULL', 'M', 'nuan2@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Werftstr 54', 'NULL', '1 (11) 500 555-0161', '2013-10-03', '1-2 Miles'], ['21008', '176', 'AW00021008', 'NULL', 'Melody', 'K', 'Carlson', '0', '1966-01-18', 'S', 'NULL', 'F', 'melody18@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Curieweg 4226', 'NULL', '1 (11) 500 555-0140', '2012-11-06', '0-1 Miles'], ['21009', '176', 'AW00021009', 'NULL', 'Clinton', 'S', 'Sandberg', '0', '1966-04-06', 'S', 'NULL', 'M', 'clinton16@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Alderweg 4662', 'NULL', '1 (11) 500 555-0118', '2013-12-05', '1-2 Miles'], ['21010', '177', 'AW00021010', 'NULL', 'Ruben', 'NULL', 'Navarro', '0', '1971-12-07', 'M', 'NULL', 'M', 'ruben33@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Heiderplatz 268', 'NULL', '1 (11) 500 555-0164', '2013-06-17', '1-2 Miles'], ['21011', '253', 'AW00021011', 'NULL', 'Aimee', 'NULL', 'Wang', '0', '1966-05-25', 'S', 'NULL', 'F', 'aimee1@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '3854 Perry Way', 'NULL', '1 (11) 500 555-0184', '2012-09-10', '0-1 Miles'], ['21012', '234', 'AW00021012', 'NULL', 'Marie', 'W', 'Vance', '0', '1965-01-18', 'M', 'NULL', 'F', 'marie8@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '3965 Morengo Ct', 'NULL', '1 (11) 500 555-0169', '2012-09-25', '2-5 Miles'], ['21013', '186', 'AW00021013', 'NULL', 'Connor', 'NULL', 'Nelson', '0', '1963-10-30', 'M', 'NULL', 'M', 'connor38@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '951, rue de Cambrai', 'NULL', '1 (11) 500 555-0183', '2013-01-27', '2-5 Miles'], ['21014', '211', 'AW00021014', 'NULL', 'Diana', 'NULL', 'Carlson', '0', '1963-10-21', 'M', 'NULL', 'F', 'diana17@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '80, avenue du Président-Kennedy', 'NULL', '1 (11) 500 555-0157', '2013-01-16', '0-1 Miles'], ['21015', '149', 'AW00021015', 'NULL', 'Diane', 'P', 'Hernandez', '0', '1969-02-28', 'M', 'NULL', 'F', 'diane8@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Viktoria-Luise-Platz 232', 'NULL', '1 (11) 500 555-0164', '2012-11-19', '0-1 Miles'], ['21016', '164', 'AW00021016', 'NULL', 'Michele', 'J', 'Kapoor', '0', '1971-08-05', 'M', 'NULL', 'F', 'michele56@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Werftstr 54', 'NULL', '1 (11) 500 555-0115', '2012-12-01', '0-1 Miles'], ['21017', '197', 'AW00021017', 'NULL', 'Leslie', 'E', 'Romero', '0', '1965-10-06', 'M', 'NULL', 'F', 'leslie10@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '890, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0164', '2013-01-12', '0-1 Miles'], ['21018', '232', 'AW00021018', 'NULL', 'Sheila', 'C', 'Serrano', '0', '1971-07-20', 'M', 'NULL', 'F', 'sheila15@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '501 Arcadia Place', 'NULL', '1 (11) 500 555-0157', '2012-09-24', '0-1 Miles'], ['21019', '206', 'AW00021019', 'NULL', 'Monica', 'C', 'Prasad', '0', '1965-11-11', 'S', 'NULL', 'F', 'monica10@adventure-works.com', '40000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '33, rue Georges-Clémenceau', 'NULL', '1 (11) 500 555-0165', '2013-10-31', '0-1 Miles'], ['21020', '264', 'AW00021020', 'NULL', 'Omar', 'NULL', 'Ye', '0', '1970-02-18', 'M', 'NULL', 'M', 'omar9@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '192 Bundros Court', 'NULL', '1 (11) 500 555-0191', '2012-09-04', '0-1 Miles'], ['21021', '201', 'AW00021021', 'NULL', 'Gary', 'G', 'Serrano', '0', '1965-01-07', 'M', 'NULL', 'M', 'gary27@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7554, rue des Pyrenees', 'NULL', '1 (11) 500 555-0178', '2013-02-05', '0-1 Miles'], ['21022', '219', 'AW00021022', 'NULL', 'Bianca', 'J', 'Huang', '0', '1963-12-12', 'M', 'NULL', 'F', 'bianca5@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6058 Foothill Way', 'NULL', '1 (11) 500 555-0139', '2013-02-19', '0-1 Miles'], ['21023', '274', 'AW00021023', 'NULL', 'Cara', 'NULL', 'Wang', '0', '1981-01-16', 'M', 'NULL', 'F', 'cara1@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '6182 Almond Avenue', 'NULL', '1 (11) 500 555-0190', '2013-05-16', '5-10 Miles'], ['21024', '203', 'AW00021024', 'NULL', 'Lori', 'C', 'Jimenez', '0', '1975-07-04', 'S', 'NULL', 'F', 'lori8@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '252, rue de la Centenaire', 'NULL', '1 (11) 500 555-0155', '2013-02-17', '2-5 Miles'], ['21025', '271', 'AW00021025', 'NULL', 'Cedric', 'E', 'Wu', '0', '1976-01-15', 'S', 'NULL', 'M', 'cedric7@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '2496 Greendell Pl.', 'NULL', '1 (11) 500 555-0113', '2013-10-26', '0-1 Miles'], ['21026', '247', 'AW00021026', 'NULL', 'Clifford', 'E', 'Fernandez', '0', '1975-09-18', 'S', 'NULL', 'M', 'clifford14@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5278 Tanager Court', 'NULL', '1 (11) 500 555-0157', '2013-05-04', '2-5 Miles'], ['21027', '236', 'AW00021027', 'NULL', 'Luke', 'E', 'Nelson', '0', '1975-09-21', 'S', 'NULL', 'M', 'luke41@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '5760 Glenhaven Ave S.', 'NULL', '1 (11) 500 555-0165', '2012-09-08', '1-2 Miles'], ['21028', '235', 'AW00021028', 'NULL', 'Joe', 'NULL', 'Suri', '0', '1981-10-19', 'S', 'NULL', 'M', 'joe4@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5615 Detroit Ave.', 'NULL', '1 (11) 500 555-0180', '2013-09-18', '2-5 Miles'], ['21029', '175', 'AW00021029', 'NULL', 'Kristi', 'C', 'Martin', '0', '1975-02-12', 'S', 'NULL', 'F', 'kristi40@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Karl Liebknecht str 466', 'NULL', '1 (11) 500 555-0112', '2012-12-22', '0-1 Miles'], ['21030', '195', 'AW00021030', 'NULL', 'Lindsay', 'A', 'Xu', '0', '1981-10-19', 'S', 'NULL', 'F', 'lindsay5@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '66, allée des Princes', 'NULL', '1 (11) 500 555-0120', '2013-02-10', '0-1 Miles'], ['21031', '188', 'AW00021031', 'NULL', 'Cassie', 'NULL', 'She', '0', '1981-03-02', 'S', 'NULL', 'F', 'cassie0@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '7, rue de Linois', 'NULL', '1 (11) 500 555-0134', '2013-02-14', '0-1 Miles'], ['21032', '132', 'AW00021032', 'NULL', 'Brendan', 'V', 'Shan', '0', '1975-04-15', 'S', 'NULL', 'M', 'brendan8@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Hauptstr 2929', 'NULL', '1 (11) 500 555-0138', '2013-11-12', '2-5 Miles'], ['21033', '182', 'AW00021033', 'NULL', 'Preston', 'K', 'Subram', '0', '1975-05-10', 'S', 'NULL', 'M', 'preston12@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '345, rue des Grands Champs', 'NULL', '1 (11) 500 555-0189', '2013-02-11', '0-1 Miles'], ['21034', '241', 'AW00021034', 'NULL', 'Jacqueline', 'NULL', 'Kelly', '0', '1975-03-23', 'S', 'NULL', 'F', 'jacqueline26@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '1745 Chickpea Ct', 'NULL', '1 (11) 500 555-0141', '2012-09-03', '1-2 Miles'], ['21035', '115', 'AW00021035', 'NULL', 'Roy', 'NULL', 'Sanchez', '0', '1975-01-13', 'M', 'NULL', 'M', 'roy20@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Hüttenstr 9005', 'NULL', '1 (11) 500 555-0164', '2012-12-11', '1-2 Miles'], ['21036', '265', 'AW00021036', 'NULL', 'Ruben', 'C', 'Hernandez', '0', '1980-06-18', 'M', 'NULL', 'M', 'ruben27@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3876 Barquentine Court', 'NULL', '1 (11) 500 555-0177', '2012-09-16', '0-1 Miles'], ['21037', '160', 'AW00021037', 'NULL', 'Bruce', 'T', 'Arun', '0', '1980-10-14', 'M', 'NULL', 'M', 'bruce5@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Zimmerstr 56', 'NULL', '1 (11) 500 555-0189', '2012-12-12', '0-1 Miles'], ['21038', '197', 'AW00021038', 'NULL', 'Pedro', 'NULL', 'Lopez', '0', '1975-02-23', 'M', 'NULL', 'M', 'pedro16@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '22, quai de l´ Iton', 'NULL', '1 (11) 500 555-0119', '2013-12-03', '0-1 Miles'], ['21039', '235', 'AW00021039', 'NULL', 'Jill', 'NULL', 'Ramos', '0', '1974-09-02', 'S', 'NULL', 'F', 'jill25@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '4650 Peachwillow', 'NULL', '1 (11) 500 555-0154', '2012-09-03', '0-1 Miles'], ['21040', '270', 'AW00021040', 'NULL', 'Chad', 'R', 'Luo', '0', '1974-09-19', 'S', 'NULL', 'M', 'chad7@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '5806 Old Oak Dr.', 'NULL', '1 (11) 500 555-0141', '2012-08-28', '0-1 Miles'], ['21041', '200', 'AW00021041', 'NULL', 'Eddie', 'NULL', 'Serrano', '0', '1958-05-04', 'M', 'NULL', 'M', 'eddie16@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '81, cours Mirabeau', 'NULL', '1 (11) 500 555-0186', '2013-02-04', '2-5 Miles'], ['21042', '135', 'AW00021042', 'NULL', 'Jon', 'R', 'Liang', '0', '1958-02-07', 'M', 'NULL', 'M', 'jon37@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Charlottenstr 46262', 'NULL', '1 (11) 500 555-0125', '2013-10-29', '1-2 Miles'], ['21043', '140', 'AW00021043', 'NULL', 'Johnathan', 'NULL', 'McDonald', '0', '1956-12-07', 'M', 'NULL', 'M', 'johnathan16@adventure-works.com', '10000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Galeriestr 1968', 'NULL', '1 (11) 500 555-0130', '2013-08-30', '0-1 Miles'], ['21044', '268', 'AW00021044', 'NULL', 'Franklin', 'NULL', 'Zheng', '0', '1957-01-06', 'M', 'NULL', 'M', 'franklin17@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5664 Wilke Drive', 'NULL', '1 (11) 500 555-0147', '2012-10-21', '1-2 Miles'], ['21045', '189', 'AW00021045', 'NULL', 'Evelyn', 'NULL', 'Prasad', '0', '1964-10-31', 'S', 'NULL', 'F', 'evelyn10@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '201, avenue de la Gare', 'NULL', '1 (11) 500 555-0116', '2013-12-03', '0-1 Miles'], ['21046', '256', 'AW00021046', 'NULL', 'Terrance', 'C', 'Suri', '0', '1964-09-09', 'M', 'NULL', 'M', 'terrance0@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '5524 Virgil St', 'NULL', '1 (11) 500 555-0118', '2013-08-16', '0-1 Miles'], ['21047', '173', 'AW00021047', 'NULL', 'Sheena', 'NULL', 'Andersen', '0', '1979-01-23', 'S', 'NULL', 'F', 'sheena11@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Galeriestr 6267', 'NULL', '1 (11) 500 555-0118', '2013-11-03', '0-1 Miles'], ['21048', '183', 'AW00021048', 'NULL', 'Karen', 'M', 'Liang', '0', '1973-12-15', 'M', 'NULL', 'F', 'karen26@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '208, chaussée de Tournai', 'NULL', '1 (11) 500 555-0138', '2013-02-17', '2-5 Miles'], ['21049', '265', 'AW00021049', 'NULL', 'James', 'L', 'Sharma', '0', '1973-12-06', 'S', 'NULL', 'M', 'james46@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '7601 Green Valley Rd', 'NULL', '1 (11) 500 555-0153', '2013-07-16', '2-5 Miles'], ['21050', '204', 'AW00021050', 'NULL', 'Alan', 'NULL', 'Cai', '0', '1973-08-03', 'M', 'NULL', 'M', 'alan25@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '280, rue Lamarck', 'NULL', '1 (11) 500 555-0154', '2013-02-14', '0-1 Miles'], ['21051', '121', 'AW00021051', 'NULL', 'Sabrina', 'R', 'Alonso', '0', '1984-11-21', 'M', 'NULL', 'F', 'sabrina5@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Platz des Landtags 22', 'NULL', '1 (11) 500 555-0157', '2013-11-13', '2-5 Miles'], ['21052', '121', 'AW00021052', 'NULL', 'Sheena', 'NULL', 'Xu', '0', '1973-09-08', 'S', 'NULL', 'F', 'sheena4@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Hansaallee 123', 'NULL', '1 (11) 500 555-0144', '2013-12-03', '1-2 Miles'], ['21053', '262', 'AW00021053', 'NULL', 'Jamie', 'NULL', 'Vazquez', '0', '1974-02-08', 'M', 'NULL', 'M', 'jamie36@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1063 Pinehurst Court', 'NULL', '1 (11) 500 555-0156', '2012-10-22', '2-5 Miles'], ['21054', '190', 'AW00021054', 'NULL', 'Keith', 'NULL', 'Jai', '0', '1974-05-20', 'M', 'NULL', 'M', 'keith14@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3, cours Mirabeau', 'NULL', '1 (11) 500 555-0127', '2013-12-13', '0-1 Miles'], ['21055', '120', 'AW00021055', 'NULL', 'Kristi', 'NULL', 'Carlson', '0', '1974-01-03', 'M', 'NULL', 'F', 'kristi14@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Berliner Platz 92', 'NULL', '1 (11) 500 555-0114', '2013-08-13', '0-1 Miles'], ['21056', '239', 'AW00021056', 'NULL', 'Walter', 'NULL', 'Munoz', '0', '1974-05-07', 'M', 'NULL', 'M', 'walter20@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3919 Fern Leaf Lane', 'NULL', '1 (11) 500 555-0114', '2012-10-10', '0-1 Miles'], ['21057', '155', 'AW00021057', 'NULL', 'Elizabeth', 'M', 'Butler', '0', '1930-09-06', 'M', 'NULL', 'F', 'elizabeth43@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Waldstr 193', 'NULL', '1 (11) 500 555-0158', '2013-11-04', '0-1 Miles'], ['21058', '213', 'AW00021058', 'NULL', 'Meredith', 'NULL', 'Suri', '0', '1972-08-18', 'S', 'NULL', 'F', 'meredith0@adventure-works.com', '10000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '035, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0194', '2013-06-23', '0-1 Miles'], ['21059', '190', 'AW00021059', 'NULL', 'Misty', 'NULL', 'Chande', '0', '1972-08-03', 'M', 'NULL', 'F', 'misty16@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '55, avenue du Port', 'NULL', '1 (11) 500 555-0195', '2013-02-04', '2-5 Miles'], ['21060', '261', 'AW00021060', 'NULL', 'Jaclyn', 'K', 'Tang', '0', '1973-02-17', 'S', 'NULL', 'F', 'jaclyn27@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '6459 Maryland Drive', 'NULL', '1 (11) 500 555-0160', '2012-10-08', '1-2 Miles'], ['21061', '198', 'AW00021061', 'NULL', 'Desiree', 'H', 'Suarez', '0', '1978-06-14', 'M', 'NULL', 'F', 'desiree15@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9, route de Marseille', 'NULL', '1 (11) 500 555-0117', '2013-02-10', '2-5 Miles'], ['21062', '224', 'AW00021062', 'NULL', 'Miranda', 'NULL', 'Barnes', '0', '1984-02-03', 'S', 'NULL', 'F', 'miranda3@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '1', '2802, boulevard Beau Marchais', 'NULL', '1 (11) 500 555-0133', '2013-03-13', '0-1 Miles'], ['21063', '188', 'AW00021063', 'NULL', 'Louis', 'NULL', 'Li', '0', '1977-04-19', 'M', 'NULL', 'M', 'louis41@adventure-works.com', '10000.00', '5', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '88, impasse Notre-Dame', 'NULL', '1 (11) 500 555-0129', '2013-04-21', '0-1 Miles'], ['21064', '210', 'AW00021064', 'NULL', 'Colleen', 'C', 'Sun', '0', '1972-05-19', 'S', 'NULL', 'F', 'colleen13@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '8188, place du Tertre', 'NULL', '1 (11) 500 555-0116', '2013-03-20', '1-2 Miles'], ['21065', '175', 'AW00021065', 'NULL', 'Robert', 'R', 'Thompson', '0', '1984-03-02', 'M', 'NULL', 'M', 'robert74@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Dunckerstr 6244', 'NULL', '1 (11) 500 555-0156', '2013-08-19', '0-1 Miles'], ['21066', '274', 'AW00021066', 'NULL', 'Ebony', 'NULL', 'Arun', '0', '1977-04-06', 'M', 'NULL', 'F', 'ebony6@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1514 West M Street', 'NULL', '1 (11) 500 555-0141', '2014-01-17', '0-1 Miles'], ['21067', '242', 'AW00021067', 'NULL', 'Frank', 'NULL', 'Jimenez', '0', '1976-03-01', 'S', 'NULL', 'M', 'frank36@adventure-works.com', '10000.00', '5', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '3213 Yellowood Lane', 'NULL', '1 (11) 500 555-0174', '2012-10-27', '0-1 Miles'], ['21068', '234', 'AW00021068', 'NULL', 'Lawrence', 'B', 'Jimenez', '0', '1970-07-28', 'S', 'NULL', 'M', 'lawrence3@adventure-works.com', '10000.00', '4', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '5097 Bourton Ct.', 'NULL', '1 (11) 500 555-0119', '2013-04-05', '0-1 Miles'], ['21069', '262', 'AW00021069', 'NULL', 'Colin', 'H', 'Lu', '0', '1971-06-14', 'M', 'NULL', 'M', 'colin12@adventure-works.com', '10000.00', '4', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '1191 Boxwood Dr.', 'NULL', '1 (11) 500 555-0172', '2013-11-15', '0-1 Miles'], ['21070', '211', 'AW00021070', 'NULL', 'Latoya', 'NULL', 'Yuan', '0', '1970-07-03', 'M', 'NULL', 'F', 'latoya6@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1157, rue Marbeuf', 'NULL', '1 (11) 500 555-0192', '2013-02-15', '0-1 Miles'], ['21071', '260', 'AW00021071', 'NULL', 'Lindsey', 'A', 'Pal', '0', '1976-01-08', 'S', 'NULL', 'F', 'lindsey13@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5274 Holbrook Dr', 'NULL', '1 (11) 500 555-0145', '2012-10-05', '0-1 Miles'], ['21072', '188', 'AW00021072', 'NULL', 'Dominic', 'NULL', 'Sanchez', '0', '1976-02-19', 'S', 'NULL', 'M', 'dominic21@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '1111, rue Ste-Honoré', 'NULL', '1 (11) 500 555-0176', '2013-03-14', '0-1 Miles'], ['21073', '120', 'AW00021073', 'NULL', 'Catherine', 'NULL', 'Kelly', '0', '1971-05-04', 'S', 'NULL', 'F', 'catherine3@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Postfach 20 90 99', 'NULL', '1 (11) 500 555-0185', '2013-08-01', '0-1 Miles'], ['21074', '263', 'AW00021074', 'NULL', 'Diane', 'W', 'Carlson', '0', '1976-03-06', 'M', 'NULL', 'F', 'diane23@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8354 Ponderosa Drive', 'NULL', '1 (11) 500 555-0157', '2013-06-24', '0-1 Miles'], ['21075', '175', 'AW00021075', 'NULL', 'Manuel', 'NULL', 'Rana', '0', '1970-12-07', 'M', 'NULL', 'M', 'manuel10@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', 'Berliner Platz 64', 'NULL', '1 (11) 500 555-0139', '2013-04-16', '0-1 Miles'], ['21076', '115', 'AW00021076', 'NULL', 'Terrence', 'NULL', 'Nath', '0', '1970-05-31', 'S', 'NULL', 'M', 'terrence19@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Rotthäuser Weg 11', 'NULL', '1 (11) 500 555-0186', '2013-11-23', '0-1 Miles'], ['21077', '221', 'AW00021077', 'NULL', 'Rachel', 'NULL', 'James', '0', '1969-10-05', 'S', 'NULL', 'F', 'rachel44@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '4011, rue de Longchamp', 'NULL', '1 (11) 500 555-0118', '2013-07-04', '0-1 Miles'], ['21078', '184', 'AW00021078', 'NULL', 'Grace', 'A', 'Gray', '0', '1980-08-05', 'S', 'NULL', 'F', 'grace41@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '1402, rue Lauriston', 'NULL', '1 (11) 500 555-0123', '2013-10-27', '0-1 Miles'], ['21079', '275', 'AW00021079', 'NULL', 'Lee', 'S', 'Carlson', '0', '1969-11-09', 'S', 'NULL', 'M', 'lee17@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '2062 Dos Encinas', 'NULL', '1 (11) 500 555-0146', '2013-07-23', '0-1 Miles'], ['21080', '209', 'AW00021080', 'NULL', 'Ebony', 'NULL', 'Lopez', '0', '1970-01-16', 'M', 'NULL', 'F', 'ebony17@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1, rue de la Centenaire', 'NULL', '1 (11) 500 555-0183', '2014-01-10', '0-1 Miles'], ['21081', '196', 'AW00021081', 'NULL', 'Xavier', 'M', 'Smith', '0', '1969-09-07', 'S', 'NULL', 'M', 'xavier0@adventure-works.com', '30000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1, rue Pierre-Demoulin', 'NULL', '1 (11) 500 555-0120', '2013-11-30', '0-1 Miles'], ['21082', '131', 'AW00021082', 'NULL', 'Jason', 'NULL', 'Edwards', '0', '1975-08-15', 'S', 'NULL', 'M', 'jason31@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Rykestr 8295', 'NULL', '1 (11) 500 555-0115', '2013-07-22', '0-1 Miles'], ['21083', '260', 'AW00021083', 'NULL', 'Trisha', 'W', 'Chen', '0', '1974-12-16', 'S', 'NULL', 'F', 'trisha20@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '9093 Gilardy Dr.', 'NULL', '1 (11) 500 555-0156', '2014-01-21', '0-1 Miles'], ['21084', '217', 'AW00021084', 'NULL', 'Clarence', 'W', 'Deng', '0', '1944-05-21', 'M', 'NULL', 'M', 'clarence17@adventure-works.com', '10000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '70, place du Tertre', 'NULL', '1 (11) 500 555-0183', '2013-04-16', '0-1 Miles'], ['21085', '174', 'AW00021085', 'NULL', 'Leslie', 'V', 'Vazquez', '0', '1939-05-16', 'M', 'NULL', 'F', 'leslie15@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Klara Straße 2464', 'NULL', '1 (11) 500 555-0184', '2014-01-09', '2-5 Miles'], ['21086', '121', 'AW00021086', 'NULL', 'Katelyn', 'NULL', 'Bell', '0', '1938-10-26', 'M', 'NULL', 'F', 'katelyn13@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Parkstr 852', 'NULL', '1 (11) 500 555-0180', '2013-08-14', '2-5 Miles'], ['21087', '121', 'AW00021087', 'NULL', 'Rebecca', 'E', 'Scott', '0', '1972-02-19', 'S', 'NULL', 'F', 'rebecca15@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', 'Kapellstr 49', 'Verkaufsabteilung', '1 (11) 500 555-0113', '2013-09-06', '0-1 Miles'], ['21088', '198', 'AW00021088', 'NULL', 'Alvin', 'G', 'Anand', '0', '1976-11-24', 'S', 'NULL', 'M', 'alvin43@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '568, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0162', '2013-04-05', '0-1 Miles'], ['21089', '218', 'AW00021089', 'NULL', 'Yiroyuki', 'NULL', 'Sato', '0', '1976-06-10', 'S', 'NULL', 'F', 'yiroyuki0@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '155, avenue Foch', 'NULL', '1 (11) 500 555-0199', '2013-04-12', '0-1 Miles'], ['21090', '190', 'AW00021090', 'NULL', 'Thomas', 'E', 'Garcia', '0', '1970-12-24', 'S', 'NULL', 'M', 'thomas78@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6, route de Marseille', 'NULL', '1 (11) 500 555-0164', '2013-03-30', '0-1 Miles'], ['21091', '147', 'AW00021091', 'NULL', 'Ashley', 'NULL', 'Jenkins', '0', '1976-04-15', 'S', 'NULL', 'F', 'ashley33@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Königsteiner Straße 500', 'NULL', '1 (11) 500 555-0119', '2013-07-20', '0-1 Miles'], ['21092', '238', 'AW00021092', 'NULL', 'Gina', 'A', 'Gutierrez', '0', '1969-08-05', 'M', 'NULL', 'F', 'gina11@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6073 San Francisco', 'NULL', '1 (11) 500 555-0173', '2012-10-24', '0-1 Miles'], ['21093', '248', 'AW00021093', 'NULL', 'Jacquelyn', 'NULL', 'Castro', '0', '1975-09-29', 'M', 'NULL', 'F', 'jacquelyn19@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2075 Browse Ct', 'NULL', '1 (11) 500 555-0135', '2012-11-20', '0-1 Miles'], ['21094', '207', 'AW00021094', 'NULL', 'Alison', 'NULL', 'Sharma', '0', '1980-05-13', 'S', 'NULL', 'F', 'alison9@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '8280, place du Tertre', 'NULL', '1 (11) 500 555-0125', '2013-11-05', '0-1 Miles'], ['21095', '195', 'AW00021095', 'NULL', 'Lance', 'L', 'Munoz', '0', '1974-12-02', 'S', 'NULL', 'M', 'lance7@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6, rue de l´Esplanade', 'NULL', '1 (11) 500 555-0115', '2013-04-26', '0-1 Miles'], ['21096', '115', 'AW00021096', 'NULL', 'Jon', 'NULL', 'Lin', '0', '1969-03-02', 'S', 'NULL', 'M', 'jon27@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Hellweg 4934', 'Verkaufsabteilung', '1 (11) 500 555-0117', '2013-10-26', '0-1 Miles'], ['21097', '124', 'AW00021097', 'NULL', 'Gary', 'NULL', 'Ruiz', '0', '1982-12-19', 'M', 'NULL', 'M', 'gary12@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Winter der Böck 5850', 'NULL', '1 (11) 500 555-0126', '2013-08-19', '2-5 Miles'], ['21098', '191', 'AW00021098', 'NULL', 'Steve', 'NULL', 'Ma', '0', '1984-08-10', 'M', 'NULL', 'M', 'steve18@adventure-works.com', '20000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '9406, rue Maillard', 'NULL', '1 (11) 500 555-0114', '2013-08-02', '0-1 Miles'], ['21099', '212', 'AW00021099', 'NULL', 'Sandra', 'D', 'Liu', '0', '1984-10-21', 'S', 'NULL', 'F', 'sandra10@adventure-works.com', '20000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '2, rue Pierre-Demoulin', 'NULL', '1 (11) 500 555-0150', '2013-05-13', '0-1 Miles'], ['21100', '170', 'AW00021100', 'NULL', 'Sandra', 'C', 'Zhang', '0', '1984-12-20', 'S', 'NULL', 'F', 'sandra6@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Kapellstr 4767', 'NULL', '1 (11) 500 555-0140', '2013-12-11', '0-1 Miles'], ['21101', '268', 'AW00021101', 'NULL', 'Meagan', 'R', 'Perez', '0', '1984-09-04', 'S', 'NULL', 'F', 'meagan19@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6832 Cotton Ct.', 'NULL', '1 (11) 500 555-0111', '2013-09-21', '0-1 Miles'], ['21102', '177', 'AW00021102', 'NULL', 'Willie', 'M', 'Zheng', '0', '1968-08-29', 'M', 'NULL', 'M', 'willie18@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Kappellweg 664', 'NULL', '1 (11) 500 555-0168', '2013-09-03', '0-1 Miles'], ['21103', '236', 'AW00021103', 'NULL', 'Francis', 'NULL', 'Hernandez', '0', '1969-01-20', 'M', 'NULL', 'M', 'francis1@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3708 Montana', 'NULL', '1 (11) 500 555-0187', '2012-10-30', '0-1 Miles'], ['21104', '269', 'AW00021104', 'NULL', 'Robin', 'NULL', 'Gutierrez', '0', '1968-12-30', 'M', 'NULL', 'F', 'robin7@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4629 Candellero Dr', 'NULL', '1 (11) 500 555-0133', '2012-11-07', '0-1 Miles'], ['21105', '279', 'AW00021105', 'NULL', 'Cory', 'A', 'Sara', '0', '1974-05-02', 'M', 'NULL', 'M', 'cory8@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7476 Halfmoon Court', 'NULL', '1 (11) 500 555-0197', '2012-11-09', '0-1 Miles'], ['21106', '244', 'AW00021106', 'NULL', 'Katie', 'NULL', 'Sharma', '0', '1967-07-09', 'M', 'NULL', 'F', 'katie12@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '237 Ashley Way', 'NULL', '1 (11) 500 555-0139', '2012-10-31', '0-1 Miles'], ['21107', '165', 'AW00021107', 'NULL', 'Kaitlin', 'NULL', 'Rodriguez', '0', '1973-09-22', 'M', 'NULL', 'F', 'kaitlin18@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Dunckerstr 7835', 'NULL', '1 (11) 500 555-0132', '2013-09-10', '0-1 Miles'], ['21108', '134', 'AW00021108', 'NULL', 'Kristine', 'A', 'Martin', '0', '1968-05-22', 'M', 'NULL', 'F', 'kristine1@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Buergermeister-ulrich-str 7500', 'NULL', '1 (11) 500 555-0191', '2013-09-11', '0-1 Miles'], ['21109', '176', 'AW00021109', 'NULL', 'Katie', 'NULL', 'Pal', '0', '1983-08-27', 'S', 'NULL', 'F', 'katie15@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Marketplatz 64', 'NULL', '1 (11) 500 555-0159', '2013-11-11', '0-1 Miles'], ['21110', '249', 'AW00021110', 'NULL', 'Brent', 'S', 'Zeng', '0', '1984-02-04', 'M', 'NULL', 'M', 'brent20@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5183 Hames Drive', 'NULL', '1 (11) 500 555-0195', '2013-02-14', '0-1 Miles'], ['21111', '250', 'AW00021111', 'NULL', 'Ricardo', 'NULL', 'Deng', '0', '1984-06-14', 'S', 'NULL', 'M', 'ricardo1@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6445 Heartwood Drive', 'NULL', '1 (11) 500 555-0163', '2013-02-08', '0-1 Miles'], ['21112', '192', 'AW00021112', 'NULL', 'Johnathan', 'NULL', 'Prasad', '0', '1982-09-14', 'M', 'NULL', 'M', 'johnathan11@adventure-works.com', '30000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '3', '34703, rue des Bouchers', 'NULL', '1 (11) 500 555-0114', '2013-05-31', '0-1 Miles'], ['21113', '200', 'AW00021113', 'NULL', 'Laura', 'L', 'Cai', '0', '1983-01-07', 'S', 'NULL', 'F', 'laura27@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8, rue des Vendangeurs', 'NULL', '1 (11) 500 555-0163', '2014-01-02', '2-5 Miles'], ['21114', '117', 'AW00021114', 'NULL', 'Savannah', 'NULL', 'Murphy', '0', '1983-05-04', 'M', 'NULL', 'F', 'savannah14@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Karl Liebknecht str 399', 'NULL', '1 (11) 500 555-0112', '2013-03-28', '0-1 Miles'], ['21115', '119', 'AW00021115', 'NULL', 'Bobby', 'D', 'Raman', '0', '1982-12-29', 'S', 'NULL', 'M', 'bobby8@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Galeriestr 2892', 'NULL', '1 (11) 500 555-0111', '2013-04-21', '2-5 Miles'], ['21116', '231', 'AW00021116', 'NULL', 'Carson', 'NULL', 'Russell', '0', '1982-06-12', 'M', 'NULL', 'M', 'carson19@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '7440 Dorset Way', 'NULL', '1 (11) 500 555-0118', '2013-10-28', '2-5 Miles'], ['21117', '182', 'AW00021117', 'NULL', 'Bryant', 'K', 'Sara', '0', '1980-11-20', 'S', 'NULL', 'M', 'bryant9@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '65bis, boulevard Saint Germain', 'NULL', '1 (11) 500 555-0153', '2013-08-21', '0-1 Miles'], ['21118', '241', 'AW00021118', 'NULL', 'Lisa', 'L', 'Hu', '0', '1980-09-19', 'S', 'NULL', 'F', 'lisa23@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '7489 Relief Valley Ct', 'NULL', '1 (11) 500 555-0164', '2013-07-16', '5-10 Miles'], ['21119', '207', 'AW00021119', 'NULL', 'Edward', 'NULL', 'Campbell', '0', '1981-07-21', 'S', 'NULL', 'M', 'edward18@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '31, cours Mirabeau', 'NULL', '1 (11) 500 555-0174', '2013-09-27', '5-10 Miles'], ['21120', '133', 'AW00021120', 'NULL', 'Roger', 'P', 'Chen', '0', '1982-01-08', 'M', 'NULL', 'M', 'roger7@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Karl Liebknecht str 299', 'NULL', '1 (11) 500 555-0112', '2013-02-02', '0-1 Miles'], ['21121', '184', 'AW00021121', 'NULL', 'Garrett', 'C', 'Reed', '0', '1980-07-02', 'S', 'NULL', 'M', 'garrett25@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '76, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0122', '2013-04-16', '5-10 Miles'], ['21122', '190', 'AW00021122', 'NULL', 'Julie', 'NULL', 'Xie', '0', '1985-04-07', 'M', 'NULL', 'F', 'julie7@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '5, avenue du Québec', 'NULL', '1 (11) 500 555-0156', '2013-04-11', '0-1 Miles'], ['21123', '214', 'AW00021123', 'NULL', 'Carl', 'NULL', 'Luo', '0', '1980-02-09', 'S', 'NULL', 'M', 'carl5@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '4877, rue des Ecoles', 'NULL', '1 (11) 500 555-0178', '2013-10-13', '1-2 Miles'], ['21124', '266', 'AW00021124', 'NULL', 'Mallory', 'L', 'Alvarez', '0', '1979-12-19', 'S', 'NULL', 'F', 'mallory12@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '3134 Rambling Rose Dr.', 'NULL', '1 (11) 500 555-0124', '2013-12-13', '0-1 Miles'], ['21125', '216', 'AW00021125', 'NULL', 'Bruce', 'E', 'Rana', '0', '1981-05-30', 'S', 'NULL', 'M', 'bruce10@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '16, rue de l´Avenir', 'NULL', '1 (11) 500 555-0156', '2013-09-01', '2-5 Miles'], ['21126', '196', 'AW00021126', 'NULL', 'Kaitlin', 'NULL', 'Gonzalez', '0', '1981-05-06', 'S', 'NULL', 'F', 'kaitlin17@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '534, rue des Grands Champs', 'NULL', '1 (11) 500 555-0117', '2013-04-22', '2-5 Miles'], ['21127', '209', 'AW00021127', 'NULL', 'Crystal', 'NULL', 'Zheng', '0', '1981-01-21', 'S', 'NULL', 'F', 'crystal20@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '34334, rue Jean Mermoz', 'NULL', '1 (11) 500 555-0171', '2013-08-14', '2-5 Miles'], ['21128', '117', 'AW00021128', 'NULL', 'Kenneth', 'NULL', 'Andersen', '0', '1980-12-17', 'S', 'NULL', 'M', 'kenneth11@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Wertheimer Straße 854', 'NULL', '1 (11) 500 555-0185', '2013-06-28', '0-1 Miles'], ['21129', '149', 'AW00021129', 'NULL', 'Rafael', 'J', 'Wang', '0', '1980-09-13', 'S', 'NULL', 'M', 'rafael1@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Rykestr 9582', 'NULL', '1 (11) 500 555-0117', '2013-12-18', '2-5 Miles'], ['21130', '241', 'AW00021130', 'NULL', 'Mackenzie', 'D', 'Ward', '0', '1981-06-14', 'M', 'NULL', 'F', 'mackenzie10@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6963 Santa Monica Drive', '# 4', '1 (11) 500 555-0119', '2012-10-28', '1-2 Miles'], ['21131', '132', 'AW00021131', 'NULL', 'Gilbert', 'K', 'Nath', '0', '1978-10-05', 'S', 'NULL', 'M', 'gilbert38@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Karl Liebknecht str 299', 'NULL', '1 (11) 500 555-0144', '2013-06-26', '0-1 Miles'], ['21132', '198', 'AW00021132', 'NULL', 'Jeffery', 'E', 'Hu', '0', '1979-12-02', 'S', 'NULL', 'M', 'jeffery20@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '1, rue de Maubeuge', 'NULL', '1 (11) 500 555-0116', '2013-06-05', '0-1 Miles'], ['21133', '218', 'AW00021133', 'NULL', 'April', 'G', 'Kumar', '0', '1985-08-02', 'S', 'NULL', 'F', 'april6@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '242, rue Léo Delibes', 'NULL', '1 (11) 500 555-0124', '2013-10-23', '2-5 Miles'], ['21134', '255', 'AW00021134', 'NULL', 'Bob', 'W', 'Chapman', '0', '1985-08-30', 'S', 'NULL', 'M', 'bob5@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '2813 A St.', 'NULL', '1 (11) 500 555-0155', '2013-05-10', '0-1 Miles'], ['21135', '235', 'AW00021135', 'NULL', 'Raul', 'P', 'Raji', '0', '1986-04-25', 'M', 'NULL', 'M', 'raul19@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '6026 Lacanda Ct', 'NULL', '1 (11) 500 555-0136', '2013-04-20', '0-1 Miles'], ['21136', '270', 'AW00021136', 'NULL', 'Natasha', 'NULL', 'Carlson', '0', '1985-09-09', 'M', 'NULL', 'F', 'natasha18@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '9573 Royal Oak Rd.', 'NULL', '1 (11) 500 555-0128', '2013-06-09', '0-1 Miles'], ['21137', '270', 'AW00021137', 'NULL', 'Steve', 'NULL', 'Li', '0', '1986-05-15', 'S', 'NULL', 'M', 'steve7@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '6481 Hastings Drive', 'NULL', '1 (11) 500 555-0190', '2013-10-18', '1-2 Miles'], ['21138', '51', 'AW00021138', 'NULL', 'Kaylee', 'NULL', 'Phillips', '0', '1978-08-22', 'M', 'NULL', 'F', 'kaylee27@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '531 Northridge Drive', 'NULL', '745-555-0127', '2012-07-30', '0-1 Miles'], ['21139', '542', 'AW00021139', 'NULL', 'Alex', 'C', 'Adams', '0', '1973-06-20', 'M', 'NULL', 'M', 'alex43@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '237 Bellwood Dr.', 'NULL', '346-555-0124', '2013-08-25', '2-5 Miles'], ['21140', '301', 'AW00021140', 'NULL', 'Byron', 'A', 'Diaz', '0', '1972-10-12', 'M', 'NULL', 'M', 'byron2@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '3739 Donald Dr', 'NULL', '221-555-0137', '2013-05-22', '5-10 Miles'], ['21141', '612', 'AW00021141', 'NULL', 'Omar', 'NULL', 'Li', '0', '1972-03-06', 'S', 'NULL', 'M', 'omar3@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '2846 Thomas Ave', 'NULL', '177-555-0195', '2013-09-28', '10+ Miles'], ['21142', '545', 'AW00021142', 'NULL', 'Mason', 'NULL', 'Brooks', '0', '1966-10-18', 'M', 'NULL', 'M', 'mason3@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '3331 Algiers Dr.', 'NULL', '583-555-0129', '2013-12-22', '5-10 Miles'], ['21143', '542', 'AW00021143', 'NULL', 'Allison', 'NULL', 'Campbell', '0', '1977-11-07', 'M', 'NULL', 'F', 'allison29@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '45 Landing Terrace', 'NULL', '735-555-0181', '2013-09-28', '2-5 Miles'], ['21144', '635', 'AW00021144', 'NULL', 'Lucas', 'NULL', 'Richardson', '0', '1972-02-05', 'M', 'NULL', 'M', 'lucas81@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9057 Palms Dr.', 'NULL', '875-555-0160', '2013-09-09', '0-1 Miles'], ['21145', '302', 'AW00021145', 'NULL', 'Mindy', 'NULL', 'Lal', '0', '1965-11-30', 'M', 'NULL', 'F', 'mindy13@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9639 M St.', 'NULL', '802-555-0155', '2013-10-31', '0-1 Miles'], ['21146', '641', 'AW00021146', 'NULL', 'Robert', 'L', 'Taylor', '0', '1977-01-05', 'M', 'NULL', 'M', 'robert67@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8823 Fine Drive', 'NULL', '633-555-0188', '2013-09-05', '0-1 Miles'], ['21147', '623', 'AW00021147', 'NULL', 'Angel', 'NULL', 'Rogers', '0', '1966-01-14', 'M', 'NULL', 'M', 'angel18@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8056 Village Oaks Dr.', 'NULL', '771-555-0114', '2013-09-24', '2-5 Miles'], ['21148', '54', 'AW00021148', 'NULL', 'Brianna', 'L', 'Gonzales', '0', '1972-08-30', 'S', 'NULL', 'F', 'brianna62@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5581 Stanford Street', 'NULL', '928-555-0116', '2012-07-04', '2-5 Miles'], ['21149', '539', 'AW00021149', 'NULL', 'Miguel', 'A', 'Diaz', '0', '1984-06-21', 'S', 'NULL', 'M', 'miguel68@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '2824 Meadowvale Court', 'NULL', '744-555-0121', '2013-09-13', '2-5 Miles'], ['21150', '638', 'AW00021150', 'NULL', 'Alyssa', 'NULL', 'Ramirez', '0', '1984-03-20', 'S', 'NULL', 'F', 'alyssa41@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '8384 Potomac Drive', 'NULL', '357-555-0194', '2013-09-06', '0-1 Miles'], ['21151', '298', 'AW00021151', 'NULL', 'Aaron', 'C', 'Campbell', '0', '1973-06-20', 'S', 'NULL', 'M', 'aaron39@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '3310 Harvey Way', 'NULL', '187-555-0177', '2013-09-10', '2-5 Miles'], ['21152', '325', 'AW00021152', 'NULL', 'Amanda', 'NULL', 'Hill', '0', '1973-01-05', 'S', 'NULL', 'F', 'amanda65@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '4305 Geriola Court', 'NULL', '273-555-0112', '2013-09-01', '0-1 Miles'], ['21153', '358', 'AW00021153', 'NULL', 'James', 'R', 'Thompson', '0', '1972-08-14', 'M', 'NULL', 'M', 'james88@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '9782 Price Lane', 'NULL', '114-555-0181', '2013-09-10', '0-1 Miles'], ['21154', '339', 'AW00021154', 'NULL', 'Michael', 'M', 'Clark', '0', '1933-08-09', 'M', 'NULL', 'M', 'michael51@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '7484 Roundtree Drive', 'NULL', '603-555-0116', '2013-12-05', '0-1 Miles'], ['21155', '336', 'AW00021155', 'NULL', 'Jeremiah', 'D', 'Flores', '0', '1965-09-01', 'M', 'NULL', 'M', 'jeremiah32@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7530 Vista Diablo', 'NULL', '177-555-0148', '2013-09-09', '2-5 Miles'], ['21156', '539', 'AW00021156', 'NULL', 'Maria', 'E', 'Lopez', '0', '1965-08-23', 'M', 'NULL', 'F', 'maria62@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3960 Fairfield Avenue', 'NULL', '431-555-0183', '2013-09-17', '0-1 Miles'], ['21157', '301', 'AW00021157', 'NULL', 'Robert', 'J', 'Perry', '0', '1964-10-17', 'M', 'NULL', 'M', 'robert21@adventure-works.com', '60000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3431 Aspen Drive', 'NULL', '957-555-0191', '2013-06-09', '0-1 Miles'], ['21158', '634', 'AW00021158', 'NULL', 'Trevor', 'J', 'Patterson', '0', '1965-01-15', 'S', 'NULL', 'M', 'trevor10@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4326 Niagara Court', 'NULL', '396-555-0143', '2013-03-04', '2-5 Miles'], ['21159', '539', 'AW00021159', 'NULL', 'Kaitlyn', 'NULL', 'Rodriguez', '0', '1970-06-05', 'M', 'NULL', 'F', 'kaitlyn43@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '3', '3152 Willow Pass Rd.', 'NULL', '111-555-0123', '2013-02-20', '10+ Miles'], ['21160', '307', 'AW00021160', 'NULL', 'April', 'NULL', 'Xie', '0', '1965-05-23', 'M', 'NULL', 'F', 'april3@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1343 Apple Drive', 'NULL', '413-555-0177', '2013-09-26', '0-1 Miles'], ['21161', '633', 'AW00021161', 'NULL', 'Megan', 'NULL', 'Johnson', '0', '1963-09-11', 'M', 'NULL', 'F', 'megan4@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2943 Eagle Peak Road', 'NULL', '937-555-0147', '2013-09-22', '2-5 Miles'], ['21162', '334', 'AW00021162', 'NULL', 'Brooke', 'NULL', 'Sanchez', '0', '1975-05-17', 'S', 'NULL', 'F', 'brooke22@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1728 Village Oaks Dr.', 'NULL', '555-555-0157', '2013-09-25', '2-5 Miles'], ['21163', '298', 'AW00021163', 'NULL', 'William', 'NULL', 'Williams', '0', '1974-11-29', 'M', 'NULL', 'M', 'william18@adventure-works.com', '70000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '636 Marina Village Pkwy.', 'NULL', '140-555-0163', '2014-01-28', '2-5 Miles'], ['21164', '307', 'AW00021164', 'NULL', 'Troy', 'NULL', 'Raman', '0', '1963-08-08', 'M', 'NULL', 'M', 'troy13@adventure-works.com', '70000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '1565 Esperanea Dr.', 'NULL', '712-555-0111', '2013-08-07', '2-5 Miles'], ['21165', '6', 'AW00021165', 'NULL', 'Sheila', 'J', 'Gomez', '0', '1975-01-31', 'S', 'NULL', 'F', 'sheila1@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '7826 W. Hookston Road', 'NULL', '1 (11) 500 555-0156', '2012-01-28', '0-1 Miles'], ['21166', '38', 'AW00021166', 'NULL', 'Tamara', 'E', 'Yuan', '0', '1974-09-12', 'S', 'NULL', 'F', 'tamara18@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '1688 Sudan Loop', 'NULL', '1 (11) 500 555-0114', '2011-12-31', '0-1 Miles'], ['21167', '13', 'AW00021167', 'NULL', 'Kara', 'NULL', 'Becker', '0', '1986-04-06', 'S', 'NULL', 'F', 'kara18@adventure-works.com', '90000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '0', '8474 Carmel Drive', 'NULL', '1 (11) 500 555-0193', '2012-01-21', '0-1 Miles'], ['21168', '4', 'AW00021168', 'NULL', 'Clifford', 'C', 'Chapman', '0', '1975-10-20', 'M', 'NULL', 'M', 'clifford2@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '4010 Willow Pass Road', 'NULL', '1 (11) 500 555-0169', '2012-01-17', '0-1 Miles'], ['21169', '20', 'AW00021169', 'NULL', 'Nancy', 'C', 'Arun', '0', '1976-02-20', 'M', 'NULL', 'F', 'nancy10@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '4056 Marina Vill Pkwy.', 'NULL', '1 (11) 500 555-0138', '2012-01-28', '2-5 Miles'], ['21170', '23', 'AW00021170', 'NULL', 'Edwin', 'O', 'Sun', '0', '1974-03-27', 'M', 'NULL', 'M', 'edwin14@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '1451 Victory Lane', 'NULL', '1 (11) 500 555-0127', '2013-10-10', '10+ Miles'], ['21171', '26', 'AW00021171', 'NULL', 'Christopher', 'E', 'Taylor', '0', '1979-02-02', 'S', 'NULL', 'M', 'christopher9@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '6355 Corte Del Sol', 'NULL', '1 (11) 500 555-0194', '2013-05-06', '10+ Miles'], ['21172', '21', 'AW00021172', 'NULL', 'Francisco', 'D', 'Sanchez', '0', '1979-05-04', 'M', 'NULL', 'M', 'francisco22@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '5872 Matterhorn Court', 'NULL', '1 (11) 500 555-0156', '2013-03-12', '10+ Miles'], ['21173', '19', 'AW00021173', 'NULL', 'Chad', 'C', 'Yuan', '0', '1973-05-12', 'M', 'NULL', 'M', 'chad8@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '7090 C. Mount Hood', 'NULL', '1 (11) 500 555-0115', '2011-12-31', '10+ Miles'], ['21174', '26', 'AW00021174', 'NULL', 'Andre', 'NULL', 'Smith', '0', '1983-09-06', 'M', 'NULL', 'M', 'andre8@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '470 Laurel', 'NULL', '1 (11) 500 555-0137', '2013-09-19', '10+ Miles'], ['21175', '11', 'AW00021175', 'NULL', 'Armando', 'S', 'Gomez', '0', '1973-01-20', 'S', 'NULL', 'M', 'armando1@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9683 Pine Valley Road', 'NULL', '1 (11) 500 555-0158', '2013-07-21', '0-1 Miles'], ['21176', '9', 'AW00021176', 'NULL', 'Raul', 'L', 'Chande', '0', '1984-02-03', 'M', 'NULL', 'M', 'raul12@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '938 San Ysidro Court', 'NULL', '1 (11) 500 555-0130', '2013-01-30', '0-1 Miles'], ['21177', '21', 'AW00021177', 'NULL', 'Kara', 'S', 'Nath', '0', '1978-02-10', 'M', 'NULL', 'F', 'kara16@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3043 Rock Creek Pl.', 'NULL', '1 (11) 500 555-0195', '2013-08-06', '0-1 Miles'], ['21178', '23', 'AW00021178', 'NULL', 'Jillian', 'NULL', 'Saunders', '0', '1971-12-06', 'M', 'NULL', 'F', 'jillian11@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '7443 Sherry Circle', 'NULL', '1 (11) 500 555-0119', '2013-08-12', '0-1 Miles'], ['21179', '20', 'AW00021179', 'NULL', 'Jaclyn', 'C', 'Zhou', '0', '1972-01-09', 'M', 'NULL', 'F', 'jaclyn9@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '879 St. Andrews Way', 'NULL', '1 (11) 500 555-0150', '2012-01-24', '0-1 Miles'], ['21180', '39', 'AW00021180', 'NULL', 'Katherine', 'NULL', 'Flores', '0', '1970-09-21', 'S', 'NULL', 'F', 'katherine38@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1752 Attic Lane', 'NULL', '1 (11) 500 555-0148', '2012-01-19', '0-1 Miles'], ['21181', '3', 'AW00021181', 'NULL', 'Summer', 'E', 'Sullivan', '0', '1971-03-19', 'S', 'NULL', 'F', 'summer11@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5603 S. Rising Ave', 'NULL', '1 (11) 500 555-0129', '2013-09-14', '2-5 Miles'], ['21182', '29', 'AW00021182', 'NULL', 'Lori', 'NULL', 'Navarro', '0', '1971-05-13', 'M', 'NULL', 'F', 'lori12@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4633 Jefferson Street', 'NULL', '1 (11) 500 555-0171', '2013-12-05', '5-10 Miles'], ['21183', '20', 'AW00021183', 'NULL', 'Hector', 'NULL', 'Moreno', '0', '1974-03-15', 'M', 'NULL', 'M', 'hector4@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '1412 San Marino Ct.', 'NULL', '1 (11) 500 555-0144', '2012-01-05', '10+ Miles'], ['21184', '29', 'AW00021184', 'NULL', 'Harold', 'M', 'Rodriguez', '0', '1974-02-14', 'S', 'NULL', 'M', 'harold16@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4159 Apple Drive', 'NULL', '1 (11) 500 555-0180', '2013-08-27', '5-10 Miles'], ['21185', '16', 'AW00021185', 'NULL', 'Gilbert', 'J', 'Jai', '0', '1973-10-23', 'M', 'NULL', 'M', 'gilbert32@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '1509 Orangewood Ave.', 'NULL', '1 (11) 500 555-0158', '2013-12-31', '1-2 Miles'], ['21186', '20', 'AW00021186', 'NULL', 'Randall', 'Z', 'Vazquez', '0', '1970-08-04', 'S', 'NULL', 'M', 'randall16@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '2168 Terra Calitina', 'NULL', '1 (11) 500 555-0144', '2013-04-26', '5-10 Miles'], ['21187', '16', 'AW00021187', 'NULL', 'Darrell', 'J', 'Luo', '0', '1975-10-13', 'M', 'NULL', 'M', 'darrell14@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '3215 Polson Court', 'NULL', '1 (11) 500 555-0127', '2013-07-01', '0-1 Miles'], ['21188', '32', 'AW00021188', 'NULL', 'Clifford', 'NULL', 'Sanchez', '0', '1970-01-16', 'M', 'NULL', 'M', 'clifford19@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '494 Crown Court', 'NULL', '1 (11) 500 555-0195', '2013-05-30', '5-10 Miles'], ['21189', '21', 'AW00021189', 'NULL', 'Desiree', 'D', 'Rubio', '0', '1969-05-22', 'M', 'NULL', 'F', 'desiree17@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '3727 Withersed Lane', 'NULL', '1 (11) 500 555-0113', '2012-01-26', '5-10 Miles'], ['21190', '22', 'AW00021190', 'Mr.', 'Pablo', 'NULL', 'Rovira Diez', '0', '1968-08-22', 'S', 'NULL', 'M', 'pablo0@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '15, rue Descartes', 'NULL', '786-555-0100', '2013-02-08', '5-10 Miles'], ['21191', '14', 'AW00021191', 'NULL', 'Willie', 'NULL', 'Lu', '0', '1967-07-23', 'M', 'NULL', 'M', 'willie9@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '8595 Mariposa Ct', 'NULL', '1 (11) 500 555-0130', '2012-01-03', '0-1 Miles'], ['21192', '11', 'AW00021192', 'NULL', 'Regina', 'NULL', 'Sai', '0', '1968-02-24', 'M', 'NULL', 'F', 'regina5@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '8274 Shady Lane', 'NULL', '1 (11) 500 555-0125', '2012-01-18', '5-10 Miles'], ['21193', '11', 'AW00021193', 'NULL', 'Philip', 'NULL', 'Hernandez', '0', '1973-01-11', 'M', 'NULL', 'M', 'philip3@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '324 Woodbury Place', 'NULL', '1 (11) 500 555-0111', '2011-12-29', '5-10 Miles'], ['21194', '17', 'AW00021194', 'NULL', 'Tara', 'NULL', 'Nara', '0', '1973-06-20', 'M', 'NULL', 'F', 'tara17@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5518 Baldwin Dr.', 'NULL', '1 (11) 500 555-0153', '2012-01-25', '0-1 Miles'], ['21195', '37', 'AW00021195', 'NULL', 'Rafael', 'N', 'Xu', '0', '1973-01-11', 'M', 'NULL', 'M', 'rafael28@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1754 Polk Street', 'NULL', '1 (11) 500 555-0131', '2012-01-13', '0-1 Miles'], ['21196', '18', 'AW00021196', 'NULL', 'Kathleen', 'NULL', 'Alonso', '0', '1972-05-09', 'M', 'NULL', 'F', 'kathleen10@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8425 W. Hookston Road', 'NULL', '1 (11) 500 555-0113', '2013-08-26', '5-10 Miles'], ['21197', '24', 'AW00021197', 'NULL', 'Sheena', 'D', 'Pal', '0', '1977-07-18', 'S', 'NULL', 'F', 'sheena10@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4399 Price Lane', 'NULL', '1 (11) 500 555-0169', '2012-01-11', '5-10 Miles'], ['21198', '33', 'AW00021198', 'NULL', 'Madison', 'J', 'Williams', '0', '1966-12-17', 'M', 'NULL', 'F', 'madison2@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '921 Ponderosa Way', 'NULL', '1 (11) 500 555-0199', '2013-10-01', '5-10 Miles'], ['21199', '7', 'AW00021199', 'NULL', 'Ruth', 'L', 'Raman', '0', '1966-12-06', 'S', 'NULL', 'F', 'ruth16@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7959 Driving Drive', 'NULL', '1 (11) 500 555-0187', '2012-01-05', '5-10 Miles'], ['21200', '23', 'AW00021200', 'NULL', 'Alison', 'NULL', 'Kumar', '0', '1966-10-31', 'S', 'NULL', 'F', 'alison7@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5847 W. Buchanan', 'NULL', '1 (11) 500 555-0170', '2012-01-01', '5-10 Miles'], ['21201', '4', 'AW00021201', 'NULL', 'Anna', 'NULL', 'Rogers', '0', '1934-08-13', 'S', 'NULL', 'F', 'anna5@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '1841 Cape Cod Way', 'NULL', '1 (11) 500 555-0197', '2012-01-11', '1-2 Miles'], ['21202', '34', 'AW00021202', 'NULL', 'Theresa', 'NULL', 'Torres', '0', '1971-09-22', 'S', 'NULL', 'F', 'theresa8@adventure-works.com', '100000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '2536 El Capitan Lane', 'NULL', '1 (11) 500 555-0191', '2012-01-27', '2-5 Miles'], ['21203', '23', 'AW00021203', 'NULL', 'Mary', 'NULL', 'Allen', '0', '1972-06-23', 'M', 'NULL', 'F', 'mary36@adventure-works.com', '100000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '8743 Clark Creek Rd.', 'NULL', '1 (11) 500 555-0185', '2012-01-25', '2-5 Miles'], ['21204', '36', 'AW00021204', 'NULL', 'Candice', 'I', 'Lu', '0', '1972-02-20', 'S', 'NULL', 'F', 'candice17@adventure-works.com', '100000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7876 Clinton Dr', 'NULL', '1 (11) 500 555-0174', '2013-09-22', '5-10 Miles'], ['21205', '15', 'AW00021205', 'NULL', 'Denise', 'L', 'Vance', '0', '1977-03-03', 'S', 'NULL', 'F', 'denise6@adventure-works.com', '110000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '5719 A St.', 'NULL', '1 (11) 500 555-0116', '2012-01-24', '1-2 Miles'], ['21206', '30', 'AW00021206', 'NULL', 'Roberto', 'R', 'Moreno', '0', '1971-09-03', 'S', 'NULL', 'M', 'roberto6@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1371 Vancouver Way', 'NULL', '1 (11) 500 555-0153', '2011-12-31', '5-10 Miles'], ['21207', '25', 'AW00021207', 'NULL', 'Vincent', 'D', 'Li', '0', '1971-07-13', 'M', 'NULL', 'M', 'vincent3@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1694 Pinole Valley Rd.', 'NULL', '1 (11) 500 555-0162', '2013-05-25', '5-10 Miles'], ['21208', '39', 'AW00021208', 'NULL', 'Olivia', 'NULL', 'Griffin', '0', '1937-12-03', 'S', 'NULL', 'F', 'olivia66@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '8669 Rotherham Dr.', 'NULL', '1 (11) 500 555-0181', '2013-04-28', '5-10 Miles'], ['21209', '23', 'AW00021209', 'NULL', 'Randall', 'F', 'Moreno', '0', '1970-12-17', 'S', 'NULL', 'M', 'randall7@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5518 San Rafael', 'NULL', '1 (11) 500 555-0148', '2013-09-07', '5-10 Miles'], ['21210', '15', 'AW00021210', 'NULL', 'Colin', 'L', 'Luo', '0', '1970-10-01', 'S', 'NULL', 'M', 'colin29@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '3281 Hillview Dr.', 'NULL', '1 (11) 500 555-0170', '2013-03-24', '1-2 Miles'], ['21211', '4', 'AW00021211', 'NULL', 'Louis', 'E', 'He', '0', '1969-11-09', 'S', 'NULL', 'M', 'louis13@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '486 Lorraine Ave', 'NULL', '1 (11) 500 555-0167', '2012-01-14', '5-10 Miles'], ['21212', '25', 'AW00021212', 'NULL', 'Nicolas', 'D', 'Lal', '0', '1970-05-23', 'S', 'NULL', 'M', 'nicolas6@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '8096 Mt. Washington Way', 'NULL', '1 (11) 500 555-0127', '2013-02-21', '5-10 Miles'], ['21213', '25', 'AW00021213', 'NULL', 'Peter', 'E', 'Black', '0', '1970-05-16', 'S', 'NULL', 'M', 'peter25@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7848 York Dr.', 'NULL', '1 (11) 500 555-0163', '2013-10-26', '5-10 Miles'], ['21214', '8', 'AW00021214', 'NULL', 'Corey', 'T', 'She', '0', '1969-09-29', 'S', 'NULL', 'M', 'corey0@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1911 Almond Avenue', 'NULL', '1 (11) 500 555-0164', '2012-01-19', '5-10 Miles'], ['21215', '19', 'AW00021215', 'NULL', 'Tiffany', 'K', 'Yang', '0', '1975-08-24', 'S', 'NULL', 'F', 'tiffany5@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3403 Rapallo Lane', 'NULL', '1 (11) 500 555-0158', '2012-01-07', '5-10 Miles'], ['21216', '32', 'AW00021216', 'NULL', 'Larry', 'E', 'Blanco', '0', '1969-11-21', 'S', 'NULL', 'M', 'larry18@adventure-works.com', '80000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '410 Wallace Dr.', 'NULL', '1 (11) 500 555-0194', '2012-01-08', '1-2 Miles'], ['21217', '28', 'AW00021217', 'NULL', 'Casey', 'NULL', 'Xie', '0', '1970-10-19', 'S', 'NULL', 'F', 'casey3@adventure-works.com', '90000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3762 Gumwood', 'NULL', '1 (11) 500 555-0129', '2012-02-18', '2-5 Miles'], ['21218', '21', 'AW00021218', 'NULL', 'Wyatt', 'D', 'Rodriguez', '0', '1968-12-10', 'S', 'NULL', 'M', 'wyatt21@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '2525 San Miguel Court', 'NULL', '1 (11) 500 555-0133', '2012-02-12', '5-10 Miles'], ['21219', '34', 'AW00021219', 'NULL', 'Candice', 'S', 'Zhu', '0', '1968-08-06', 'S', 'NULL', 'F', 'candice20@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5825 Banyan Way', 'NULL', '1 (11) 500 555-0144', '2012-02-21', '5-10 Miles'], ['21220', '17', 'AW00021220', 'NULL', 'Meghan', 'NULL', 'Moyer', '0', '1967-12-30', 'M', 'NULL', 'F', 'meghan9@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2709 Yellowood Pl.', 'NULL', '1 (11) 500 555-0115', '2013-03-30', '5-10 Miles'], ['21221', '3', 'AW00021221', 'NULL', 'Martin', 'L', 'Sai', '0', '1967-01-19', 'M', 'NULL', 'M', 'martin11@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8682 Huston Rd', 'NULL', '1 (11) 500 555-0190', '2013-07-29', '5-10 Miles'], ['21222', '22', 'AW00021222', 'NULL', 'Kelvin', 'K', 'Xu', '0', '1972-10-12', 'M', 'NULL', 'M', 'kelvin2@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2260 Clear Court', 'NULL', '1 (11) 500 555-0154', '2012-02-15', '0-1 Miles'], ['21223', '14', 'AW00021223', 'NULL', 'Evelyn', 'A', 'Suri', '0', '1967-03-24', 'S', 'NULL', 'F', 'evelyn0@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '755 Palm Dr.', 'NULL', '1 (11) 500 555-0147', '2013-03-25', '10+ Miles'], ['21224', '27', 'AW00021224', 'NULL', 'Jamie', 'S', 'Alan', '0', '1963-09-07', 'M', 'NULL', 'M', 'jamie28@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5492 Hacienda Drive', 'NULL', '1 (11) 500 555-0112', '2013-10-08', '1-2 Miles'], ['21225', '10', 'AW00021225', 'NULL', 'Michele', 'E', 'Jai', '0', '1964-04-14', 'S', 'NULL', 'F', 'michele11@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4250 Hungry Rd', 'NULL', '1 (11) 500 555-0184', '2012-02-06', '2-5 Miles'], ['21226', '11', 'AW00021226', 'NULL', 'Dale', 'L', 'Nara', '0', '1961-10-24', 'S', 'NULL', 'M', 'dale14@adventure-works.com', '80000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '7776 Forsman Place', 'NULL', '1 (11) 500 555-0167', '2012-02-18', '0-1 Miles'], ['21227', '21', 'AW00021227', 'NULL', 'Melanie', 'NULL', 'Morgan', '0', '1964-10-07', 'M', 'NULL', 'F', 'melanie39@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7700 The Alameda', 'NULL', '1 (11) 500 555-0169', '2013-09-24', '5-10 Miles'], ['21228', '32', 'AW00021228', 'NULL', 'Cassidy', 'NULL', 'Henderson', '0', '1964-06-24', 'M', 'NULL', 'F', 'cassidy5@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '253 El Pueblo Place', '# 1211', '1 (11) 500 555-0114', '2012-02-10', '5-10 Miles'], ['21229', '21', 'AW00021229', 'NULL', 'Latoya', 'S', 'Jai', '0', '1964-10-21', 'S', 'NULL', 'F', 'latoya10@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '2294 West 39th St.', 'NULL', '1 (11) 500 555-0133', '2012-02-27', '5-10 Miles'], ['21230', '21', 'AW00021230', 'NULL', 'Carla', 'V', 'Rodriguez', '0', '1959-01-08', 'M', 'NULL', 'F', 'carla22@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '7341 46th St.', 'NULL', '1 (11) 500 555-0167', '2012-02-06', '0-1 Miles'], ['21231', '24', 'AW00021231', 'NULL', 'Christine', 'A', 'Goel', '0', '1958-07-10', 'M', 'NULL', 'F', 'christine14@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '5942 Laurel', 'NULL', '1 (11) 500 555-0135', '2012-02-24', '0-1 Miles'], ['21232', '8', 'AW00021232', 'NULL', 'Levi', 'G', 'Garcia', '0', '1954-12-08', 'M', 'NULL', 'M', 'levi14@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8291 Serpentine', 'NULL', '1 (11) 500 555-0129', '2013-12-19', '5-10 Miles'], ['21233', '358', 'AW00021233', 'NULL', 'Christopher', 'E', 'Smith', '0', '1981-09-12', 'M', 'NULL', 'M', 'christopher24@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6030 Dubne Court', 'NULL', '140-555-0128', '2013-04-04', '0-1 Miles'], ['21234', '312', 'AW00021234', 'NULL', 'Brianna', 'A', 'Rivera', '0', '1981-07-11', 'S', 'NULL', 'F', 'brianna34@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1061 Buskrik Avenue', 'NULL', '149-555-0123', '2013-02-18', '5-10 Miles'], ['21235', '298', 'AW00021235', 'NULL', 'Stephanie', 'V', 'Hernandez', '0', '1981-05-05', 'S', 'NULL', 'F', 'stephanie63@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '5435 Greenwood Place', 'NULL', '530-555-0183', '2013-09-17', '0-1 Miles'], ['21236', '632', 'AW00021236', 'NULL', 'Adrian', 'J', 'Peterson', '0', '1980-10-13', 'S', 'NULL', 'M', 'adrian7@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2098 Chilpancingo Pkwy.', 'NULL', '362-555-0181', '2013-08-25', '5-10 Miles'], ['21237', '345', 'AW00021237', 'NULL', 'Luke', 'NULL', 'Washington', '0', '1985-08-09', 'M', 'NULL', 'M', 'luke2@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4628 Mountain View Place', 'NULL', '220-555-0193', '2013-08-12', '5-10 Miles'], ['21238', '49', 'AW00021238', 'NULL', 'Carl', 'NULL', 'Tang', '0', '1986-03-25', 'S', 'NULL', 'M', 'carl4@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '516 Oak Park Blvd.', 'NULL', '386-555-0142', '2013-04-03', '0-1 Miles'], ['21239', '30', 'AW00021239', 'NULL', 'Christy', 'I', 'Liang', '0', '1943-05-03', 'M', 'NULL', 'F', 'christy15@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '458 Arlington Way', 'NULL', '1 (11) 500 555-0121', '2013-06-30', '0-1 Miles'], ['21240', '374', 'AW00021240', 'NULL', 'Aaron', 'NULL', 'Jenkins', '0', '1985-03-01', 'S', 'NULL', 'M', 'aaron6@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '4634 Hilltop Rd', 'NULL', '553-555-0149', '2013-03-20', '5-10 Miles'], ['21241', '553', 'AW00021241', 'NULL', 'Carson', 'L', 'Griffin', '0', '1984-08-10', 'S', 'NULL', 'M', 'carson20@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '8935 Etcheverry Dr.', 'NULL', '956-555-0173', '2013-05-10', '5-10 Miles'], ['21242', '358', 'AW00021242', 'NULL', 'Morgan', 'M', 'Patterson', '0', '1983-12-14', 'S', 'NULL', 'F', 'morgan80@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1692 Detroit Ave', 'NULL', '236-555-0184', '2013-03-12', '5-10 Miles'], ['21243', '374', 'AW00021243', 'NULL', 'Juan', 'M', 'Bailey', '0', '1984-04-04', 'M', 'NULL', 'M', 'juan26@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8643 B Way', 'NULL', '614-555-0183', '2013-08-06', '0-1 Miles'], ['21244', '325', 'AW00021244', 'NULL', 'Allison', 'E', 'Torres', '0', '1983-08-16', 'M', 'NULL', 'F', 'allison12@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', 'Rt. 1546 Box A', 'NULL', '496-555-0110', '2013-06-04', '5-10 Miles'], ['21245', '338', 'AW00021245', 'NULL', 'Samantha', 'E', 'Rodriguez', '0', '1983-12-22', 'M', 'NULL', 'F', 'samantha21@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8882 San Remo Ct.', 'NULL', '178-555-0164', '2013-06-22', '0-1 Miles'], ['21246', '301', 'AW00021246', 'NULL', 'Samuel', 'NULL', 'Nelson', '0', '1984-02-19', 'S', 'NULL', 'M', 'samuel39@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8964 Woodchuck Pl.', 'NULL', '688-555-0117', '2013-09-17', '0-1 Miles'], ['21247', '638', 'AW00021247', 'NULL', 'Alex', 'E', 'Sanders', '0', '1984-06-09', 'M', 'NULL', 'M', 'alex6@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2338 Mozden Lane', 'NULL', '772-555-0161', '2013-10-04', '5-10 Miles'], ['21248', '23', 'AW00021248', 'NULL', 'Ramon', 'NULL', 'Li', '0', '1943-11-11', 'M', 'NULL', 'M', 'ramon2@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2701 Piedmont Dr', 'NULL', '1 (11) 500 555-0117', '2013-08-10', '5-10 Miles'], ['21249', '526', 'AW00021249', 'NULL', 'Alvin', 'NULL', 'Xu', '0', '1982-09-15', 'S', 'NULL', 'M', 'alvin27@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9089 San Jose Ave', 'NULL', '948-555-0160', '2013-11-26', '0-1 Miles'], ['21250', '543', 'AW00021250', 'NULL', 'Fernando', 'E', 'Coleman', '0', '1983-04-23', 'M', 'NULL', 'M', 'fernando49@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5284 Dumbarton Dr.', 'NULL', '222-555-0115', '2013-04-24', '5-10 Miles'], ['21251', '49', 'AW00021251', 'NULL', 'Erika', 'C', 'Dominguez', '0', '1985-04-09', 'S', 'NULL', 'F', 'erika10@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '1511 Roxbury Drive', 'NULL', '218-555-0143', '2013-07-08', '5-10 Miles'], ['21252', '53', 'AW00021252', 'NULL', 'Luis', 'G', 'Chen', '0', '1984-08-15', 'S', 'NULL', 'M', 'luis25@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3312 Tanager Court', 'NULL', '743-555-0148', '2013-02-10', '5-10 Miles'], ['21253', '616', 'AW00021253', 'NULL', 'Victoria', 'NULL', 'Williams', '0', '1985-06-02', 'S', 'NULL', 'F', 'victoria3@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5280 Pelican Loop', 'NULL', '601-555-0122', '2013-09-24', '0-1 Miles'], ['21254', '34', 'AW00021254', 'NULL', 'Tonya', 'M', 'Black', '0', '1945-06-08', 'M', 'NULL', 'F', 'tonya20@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3101 Greendell Rd', 'NULL', '1 (11) 500 555-0134', '2013-02-11', '5-10 Miles'], ['21255', '32', 'AW00021255', 'NULL', 'Martha', 'R', 'Lu', '0', '1945-03-01', 'M', 'NULL', 'F', 'martha11@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '5536 Yolanda Circle', 'NULL', '1 (11) 500 555-0118', '2013-03-08', '0-1 Miles'], ['21256', '6', 'AW00021256', 'NULL', 'Meghan', 'I', 'Torres', '0', '1952-10-08', 'M', 'NULL', 'F', 'meghan11@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5531 Roxbury Drive', 'NULL', '1 (11) 500 555-0176', '2012-02-16', '0-1 Miles'], ['21257', '26', 'AW00021257', 'NULL', 'Evelyn', 'S', 'Subram', '0', '1946-10-13', 'M', 'NULL', 'F', 'evelyn14@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5346 Clayburn Road', 'NULL', '1 (11) 500 555-0147', '2012-02-01', '0-1 Miles'], ['21258', '8', 'AW00021258', 'NULL', 'Alfredo', 'NULL', 'Serrano', '0', '1949-05-21', 'S', 'NULL', 'M', 'alfredo17@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1242 Ridgewood Ct.', 'NULL', '1 (11) 500 555-0119', '2012-02-04', '5-10 Miles'], ['21259', '19', 'AW00021259', 'NULL', 'Curtis', 'NULL', 'Cai', '0', '1949-01-21', 'S', 'NULL', 'M', 'curtis18@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '739 Rancho View Dr.', 'NULL', '1 (11) 500 555-0182', '2012-02-07', '5-10 Miles'], ['21260', '632', 'AW00021260', 'NULL', 'Ariana', 'A', 'Howard', '0', '1981-12-13', 'S', 'NULL', 'F', 'ariana10@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3159 Lime Ridge Drive', 'NULL', '338-555-0190', '2013-09-27', '5-10 Miles'], ['21261', '368', 'AW00021261', 'NULL', 'Jessica', 'NULL', 'Kelly', '0', '1981-12-01', 'S', 'NULL', 'F', 'jessica23@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5203 Foothill Way', 'NULL', '651-555-0168', '2013-04-19', '5-10 Miles'], ['21262', '372', 'AW00021262', 'NULL', 'Sara', 'R', 'Edwards', '0', '1981-11-29', 'S', 'NULL', 'F', 'sara26@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '8168 Landover Lane', 'NULL', '941-555-0150', '2013-12-06', '1-2 Miles'], ['21263', '49', 'AW00021263', 'NULL', 'Gail', 'L', 'Russell', '0', '1980-08-07', 'S', 'NULL', 'F', 'gail6@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6085 B Wildbrook Ct.', 'NULL', '334-555-0170', '2013-06-06', '5-10 Miles'], ['21264', '634', 'AW00021264', 'NULL', 'Caleb', 'NULL', 'Butler', '0', '1984-06-09', 'S', 'NULL', 'M', 'caleb11@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2537 I St.', 'NULL', '294-555-0181', '2013-09-11', '5-10 Miles'], ['21265', '302', 'AW00021265', 'NULL', 'Richard', 'D', 'Stone', '0', '1983-03-10', 'S', 'NULL', 'M', 'richard102@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '495 Saddlehill Lane', 'NULL', '102-555-0145', '2013-09-04', '5-10 Miles'], ['21266', '54', 'AW00021266', 'NULL', 'Taylor', 'NULL', 'Washington', '0', '1983-08-18', 'S', 'NULL', 'F', 'taylor38@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '2679 Eagle Peak', '#7', '170-555-0113', '2012-08-05', '1-2 Miles'], ['21267', '632', 'AW00021267', 'NULL', 'Charles', 'NULL', 'Parker', '0', '1979-03-02', 'M', 'NULL', 'M', 'charles43@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '617 Sweeney Road', 'NULL', '266-555-0118', '2013-09-07', '1-2 Miles'], ['21268', '302', 'AW00021268', 'NULL', 'Elizabeth', 'S', 'Lewis', '0', '1979-06-11', 'M', 'NULL', 'F', 'elizabeth25@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '3067 Maureen Circle', 'NULL', '561-555-0163', '2013-10-07', '1-2 Miles'], ['21269', '299', 'AW00021269', 'NULL', 'Blake', 'NULL', 'Clark', '0', '1979-05-14', 'S', 'NULL', 'M', 'blake19@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '5263 Etcheverry Dr', 'NULL', '854-555-0186', '2013-10-06', '1-2 Miles'], ['21270', '637', 'AW00021270', 'NULL', 'Daniel', 'NULL', 'Jackson', '0', '1973-05-08', 'S', 'NULL', 'M', 'daniel16@adventure-works.com', '110000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '6244 Bayviews Circle', 'NULL', '243-555-0142', '2013-07-06', '5-10 Miles'], ['21271', '348', 'AW00021271', 'NULL', 'Thomas', 'NULL', 'Wang', '0', '1973-02-23', 'M', 'NULL', 'M', 'thomas27@adventure-works.com', '120000.00', '0', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3944 Kingsford Dr', 'NULL', '696-555-0143', '2013-10-17', '0-1 Miles'], ['21272', '60', 'AW00021272', 'NULL', 'Nicole', 'L', 'Ward', '0', '1979-12-21', 'S', 'NULL', 'F', 'nicole39@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '7681 Hillcrest', 'NULL', '408-555-0113', '2012-08-09', '1-2 Miles'], ['21273', '631', 'AW00021273', 'NULL', 'Jennifer', 'NULL', 'Thomas', '0', '1973-09-23', 'M', 'NULL', 'F', 'jennifer39@adventure-works.com', '100000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '8996 Carson', 'NULL', '562-555-0183', '2013-07-21', '1-2 Miles'], ['21274', '347', 'AW00021274', 'NULL', 'Seth', 'NULL', 'Scott', '0', '1985-03-09', 'S', 'NULL', 'M', 'seth31@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2785 Fallbrook Road', '# 10', '163-555-0142', '2013-09-14', '5-10 Miles'], ['21275', '347', 'AW00021275', 'NULL', 'Abigail', 'NULL', 'Cox', '0', '1985-05-25', 'M', 'NULL', 'F', 'abigail15@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8158 Pheasant Court', 'NULL', '255-555-0148', '2013-10-16', '5-10 Miles'], ['21276', '53', 'AW00021276', 'NULL', 'Ian', 'NULL', 'Coleman', '0', '1984-01-09', 'M', 'NULL', 'M', 'ian46@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2989 Pepperidge Way', 'NULL', '849-555-0134', '2013-10-12', '5-10 Miles'], ['21277', '64', 'AW00021277', 'NULL', 'Lucas', 'O', 'Thompson', '0', '1983-11-12', 'S', 'NULL', 'M', 'lucas29@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '8267 Lavene Way', 'NULL', '932-555-0197', '2013-10-12', '5-10 Miles'], ['21278', '536', 'AW00021278', 'NULL', 'Julia', 'C', 'King', '0', '1983-10-18', 'S', 'NULL', 'F', 'julia16@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '833 Sepueveda Court', 'NULL', '675-555-0156', '2013-12-30', '5-10 Miles'], ['21279', '37', 'AW00021279', 'Ms.', 'Linda', 'R.', 'Rousey', '0', '1958-04-03', 'M', 'NULL', 'F', 'linda10@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5966 Sepulveda Ct.', 'NULL', '369-555-0100', '2013-08-01', '5-10 Miles'], ['21280', '612', 'AW00021280', 'NULL', 'Justin', 'J', 'Walker', '0', '1984-06-21', 'S', 'NULL', 'M', 'justin51@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6488 Taylor Box #229', 'NULL', '136-555-0192', '2013-12-10', '1-2 Miles'], ['21281', '307', 'AW00021281', 'NULL', 'Andrea', 'NULL', 'Hill', '0', '1983-08-27', 'S', 'NULL', 'F', 'andrea35@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2651 St. Francis Dr.', 'NULL', '979-555-0144', '2013-10-28', '1-2 Miles'], ['21282', '322', 'AW00021282', 'NULL', 'Julia', 'NULL', 'Smith', '0', '1983-09-07', 'M', 'NULL', 'F', 'julia22@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '157 Birch Bark Road', 'NULL', '420-555-0153', '2013-10-09', '5-10 Miles'], ['21283', '27', 'AW00021283', 'NULL', 'Orlando', 'M', 'Jiménez', '0', '1956-03-17', 'M', 'NULL', 'M', 'orlando6@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1742 Breck Court', 'NULL', '1 (11) 500 555-0195', '2013-04-14', '5-10 Miles'], ['21284', '65', 'AW00021284', 'NULL', 'Cody', 'A', 'Stewart', '0', '1981-05-05', 'M', 'NULL', 'M', 'cody22@adventure-works.com', '50000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9848 Angi Lane', 'NULL', '605-555-0110', '2012-08-06', '0-1 Miles'], ['21285', '539', 'AW00021285', 'NULL', 'Mackenzie', 'NULL', 'Rivera', '0', '1969-04-13', 'M', 'NULL', 'F', 'mackenzie15@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '5302 Argonne Drive', 'NULL', '514-555-0118', '2013-05-16', '10+ Miles'], ['21286', '300', 'AW00021286', 'Mr.', 'Luke', 'J.', 'Roy', '0', '1969-03-02', 'S', 'NULL', 'M', 'luke0@adventure-works.com', '100000.00', '0', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8625 Woodcrest Drive', 'NULL', '583-555-0100', '2013-11-15', '5-10 Miles'], ['21287', '307', 'AW00021287', 'NULL', 'Kendra', 'NULL', 'Jimenez', '0', '1969-05-15', 'M', 'NULL', 'F', 'kendra5@adventure-works.com', '110000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '9966 Vallet Crest Dr.', 'NULL', '128-555-0189', '2013-08-15', '5-10 Miles'], ['21288', '352', 'AW00021288', 'NULL', 'Hunter', 'NULL', 'Hall', '0', '1968-12-10', 'S', 'NULL', 'M', 'hunter58@adventure-works.com', '130000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '7724 Hale Court', 'NULL', '366-555-0178', '2013-04-27', '1-2 Miles'], ['21289', '612', 'AW00021289', 'NULL', 'Warren', 'A', 'Wang', '0', '1968-02-16', 'S', 'NULL', 'M', 'warren18@adventure-works.com', '90000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '4018 St Francis St.', 'NULL', '865-555-0123', '2013-11-12', '5-10 Miles'], ['21290', '542', 'AW00021290', 'NULL', 'Angel', 'NULL', 'Torres', '0', '1967-12-17', 'S', 'NULL', 'M', 'angel3@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '2469 Maureen Lane', 'NULL', '116-555-0158', '2013-11-17', '1-2 Miles'], ['21291', '626', 'AW00021291', 'NULL', 'Rachel', 'C', 'Morris', '0', '1973-12-14', 'M', 'NULL', 'F', 'rachel29@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '3635 N Ridgewood Drive', 'NULL', '569-555-0191', '2013-12-19', '5-10 Miles'], ['21292', '552', 'AW00021292', 'NULL', 'Austin', 'NULL', 'Martinez', '0', '1984-05-01', 'M', 'NULL', 'M', 'austin33@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '1858 Liscome Way', 'NULL', '343-555-0117', '2013-09-02', '1-2 Miles'], ['21293', '311', 'AW00021293', 'NULL', 'Ashley', 'NULL', 'Garcia', '0', '1968-01-03', 'S', 'NULL', 'F', 'ashley17@adventure-works.com', '120000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '2080 Wesley Court', 'NULL', '773-555-0126', '2013-12-17', '5-10 Miles'], ['21294', '355', 'AW00021294', 'NULL', 'David', 'A', 'Foster', '0', '1967-11-29', 'M', 'NULL', 'M', 'david49@adventure-works.com', '130000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '8229 Crawford Street', '# 2', '693-555-0119', '2013-04-12', '0-1 Miles'], ['21295', '54', 'AW00021295', 'NULL', 'Benjamin', 'J', 'Thomas', '0', '1972-12-17', 'M', 'NULL', 'M', 'benjamin45@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '6101 Mike Yorba Way', 'NULL', '445-555-0142', '2013-11-08', '5-10 Miles'], ['21296', '607', 'AW00021296', 'NULL', 'Luis', 'L', 'Hall', '0', '1978-05-20', 'M', 'NULL', 'M', 'luis53@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '3365 Wintergreen Court', 'NULL', '432-555-0152', '2014-01-16', '1-2 Miles'], ['21297', '542', 'AW00021297', 'NULL', 'Melanie', 'L', 'Murphy', '0', '1972-05-05', 'S', 'NULL', 'F', 'melanie41@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '5308 Logan Court', 'NULL', '127-555-0152', '2013-12-16', '5-10 Miles'], ['21298', '543', 'AW00021298', 'NULL', 'Noah', 'NULL', 'Collins', '0', '1966-09-22', 'M', 'NULL', 'M', 'noah29@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '7194 Rosina Court', 'NULL', '605-555-0133', '2013-03-26', '1-2 Miles'], ['21299', '627', 'AW00021299', 'NULL', 'Hannah', 'NULL', 'Gonzales', '0', '1967-01-14', 'M', 'NULL', 'F', 'hannah38@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '3287 Trees Dr.', 'NULL', '239-555-0156', '2013-03-03', '5-10 Miles'], ['21300', '322', 'AW00021300', 'NULL', 'Kaylee', 'NULL', 'Morgan', '0', '1978-01-30', 'M', 'NULL', 'F', 'kaylee19@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '9716 Aloe Vera Rd.', '# 1', '680-555-0155', '2013-01-14', '0-1 Miles'], ['21301', '539', 'AW00021301', 'NULL', 'Sierra', 'NULL', 'Gonzalez', '0', '1966-09-05', 'S', 'NULL', 'F', 'sierra8@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1850 Lancelot Drive', 'NULL', '919-555-0163', '2014-01-19', '1-2 Miles'], ['21302', '545', 'AW00021302', 'NULL', 'Logan', 'F', 'Foster', '0', '1960-08-07', 'M', 'NULL', 'M', 'logan17@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6451 Grand Drive', 'NULL', '284-555-0198', '2013-05-22', '5-10 Miles'], ['21303', '374', 'AW00021303', 'NULL', 'Sydney', 'L', 'Jenkins', '0', '1961-02-10', 'M', 'NULL', 'F', 'sydney29@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '7521 Mount Aire Parkway', 'NULL', '334-555-0156', '2013-07-28', '5-10 Miles'], ['21304', '618', 'AW00021304', 'NULL', 'Jada', 'NULL', 'Cooper', '0', '1960-08-31', 'M', 'NULL', 'F', 'jada9@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '6721 High Maple Court', 'NULL', '326-555-0194', '2013-05-22', '5-10 Miles'], ['21305', '65', 'AW00021305', 'NULL', 'Hunter', 'J', 'Garcia', '0', '1960-10-22', 'M', 'NULL', 'M', 'hunter48@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '6901 Hamilton Avenue', 'NULL', '284-555-0113', '2012-08-15', '1-2 Miles'], ['21306', '51', 'AW00021306', 'NULL', 'Jackson', 'J', 'Perry', '0', '1960-09-01', 'S', 'NULL', 'M', 'jackson10@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4873 St Francis St', 'NULL', '591-555-0131', '2013-12-05', '5-10 Miles'], ['21307', '316', 'AW00021307', 'NULL', 'Olivia', 'A', 'Jones', '0', '1960-10-12', 'M', 'NULL', 'F', 'olivia3@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '8796 Kentucky Dr.', 'NULL', '207-555-0146', '2013-03-30', '1-2 Miles'], ['21308', '66', 'AW00021308', 'NULL', 'Kayla', 'L', 'Garcia', '0', '1960-12-14', 'M', 'NULL', 'F', 'kayla17@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '1907 Galveston Ct.', 'NULL', '545-555-0149', '2013-12-09', '5-10 Miles'], ['21309', '361', 'AW00021309', 'NULL', 'Julia', 'NULL', 'Anderson', '0', '1960-07-24', 'M', 'NULL', 'F', 'julia32@adventure-works.com', '80000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '1093 Gatter Court', 'NULL', '986-555-0182', '2013-02-09', '1-2 Miles'], ['21310', '338', 'AW00021310', 'NULL', 'Mariah', 'L', 'Hayes', '0', '1966-09-30', 'M', 'NULL', 'F', 'mariah27@adventure-works.com', '90000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '9941 Roanwood Way', 'NULL', '647-555-0141', '2013-03-02', '10+ Miles'], ['21311', '62', 'AW00021311', 'NULL', 'Jennifer', 'E', 'Ramirez', '0', '1961-04-25', 'S', 'NULL', 'F', 'jennifer69@adventure-works.com', '90000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '7556 Garcia Ranch Road', 'NULL', '626-555-0164', '2012-08-09', '10+ Miles'], ['21312', '543', 'AW00021312', 'NULL', 'Connor', 'R', 'Scott', '0', '1946-03-06', 'M', 'NULL', 'M', 'connor42@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '273 Oak Street', 'NULL', '665-555-0124', '2013-07-30', '1-2 Miles'], ['21313', '307', 'AW00021313', 'NULL', 'Beth', 'P', 'Diaz', '0', '1946-08-30', 'M', 'NULL', 'F', 'beth5@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '4381 Amazonas', 'NULL', '984-555-0137', '2013-05-20', '1-2 Miles'], ['21314', '638', 'AW00021314', 'NULL', 'Devin', 'E', 'Patterson', '0', '1941-12-04', 'M', 'NULL', 'M', 'devin49@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '1112 Roehlidge Lane', 'NULL', '348-555-0137', '2013-12-26', '1-2 Miles'], ['21315', '301', 'AW00021315', 'NULL', 'Audrey', 'NULL', 'Sanz', '0', '1947-08-16', 'M', 'NULL', 'F', 'audrey22@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '9610 Hudson Ave', 'NULL', '216-555-0178', '2013-06-12', '1-2 Miles'], ['21316', '358', 'AW00021316', 'NULL', 'John', 'I', 'Thompson', '0', '1941-09-16', 'M', 'NULL', 'M', 'john53@adventure-works.com', '130000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '9135 Rockford Dr.', 'NULL', '358-555-0167', '2013-10-13', '2-5 Miles'], ['21317', '359', 'AW00021317', 'NULL', 'Lauren', 'C', 'Rivera', '0', '1942-06-12', 'M', 'NULL', 'F', 'lauren8@adventure-works.com', '130000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '6158 May Way', 'NULL', '441-555-0151', '2013-06-24', '0-1 Miles'], ['21318', '51', 'AW00021318', 'NULL', 'Devin', 'G', 'Richardson', '0', '1971-04-01', 'S', 'NULL', 'M', 'devin77@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '4998 Prestwick Ave.', 'NULL', '202-555-0149', '2013-09-28', '1-2 Miles'], ['21319', '609', 'AW00021319', 'NULL', 'Zachary', 'C', 'Lee', '0', '1966-03-07', 'M', 'NULL', 'M', 'zachary29@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1058 Miwok Way', 'NULL', '441-555-0151', '2013-11-28', '5-10 Miles'], ['21320', '609', 'AW00021320', 'NULL', 'Hannah', 'L', 'Coleman', '0', '1971-04-18', 'M', 'NULL', 'F', 'hannah29@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6104 Lakewood Court', 'NULL', '160-555-0174', '2013-09-16', '5-10 Miles'], ['21321', '612', 'AW00021321', 'NULL', 'Jon', 'NULL', 'Jai', '0', '1971-09-21', 'S', 'NULL', 'M', 'jon7@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '3473 Flagstone Way', 'NULL', '269-555-0152', '2013-03-15', '1-2 Miles'], ['21322', '543', 'AW00021322', 'NULL', 'Carlos', 'M', 'Ramirez', '0', '1971-03-21', 'M', 'NULL', 'M', 'carlos8@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '2697 Talbart Street', 'NULL', '583-555-0195', '2013-08-21', '1-2 Miles'], ['21323', '632', 'AW00021323', 'NULL', 'Robert', 'NULL', 'Jackson', '0', '1971-12-07', 'M', 'NULL', 'M', 'robert70@adventure-works.com', '100000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '706 Petarct', 'NULL', '986-555-0175', '2013-06-19', '5-10 Miles'], ['21324', '300', 'AW00021324', 'NULL', 'Chloe', 'NULL', 'Baker', '0', '1965-08-08', 'M', 'NULL', 'F', 'chloe14@adventure-works.com', '110000.00', '5', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '8225 Shakespeare Dr.', 'NULL', '819-555-0175', '2013-04-20', '2-5 Miles'], ['21325', '316', 'AW00021325', 'NULL', 'Angela', 'NULL', 'Hayes', '0', '1971-07-07', 'M', 'NULL', 'F', 'angela25@adventure-works.com', '120000.00', '1', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '8273 Glacier Drive', 'NULL', '848-555-0112', '2013-04-24', '2-5 Miles'], ['21326', '355', 'AW00021326', 'NULL', 'Andrea', 'NULL', 'Green', '0', '1971-02-10', 'M', 'NULL', 'F', 'andrea36@adventure-works.com', '160000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '1760 Lisa Lee Lane', 'NULL', '467-555-0178', '2013-06-17', '2-5 Miles'], ['21327', '374', 'AW00021327', 'NULL', 'Connor', 'NULL', 'Washington', '0', '1965-11-21', 'S', 'NULL', 'M', 'connor8@adventure-works.com', '170000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '5665 Las Lomas Way', 'NULL', '360-555-0110', '2013-06-20', '0-1 Miles'], ['21328', '348', 'AW00021328', 'NULL', 'Xavier', 'NULL', 'Nelson', '0', '1965-02-05', 'S', 'NULL', 'M', 'xavier32@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9970 San Miguel Rd', '# 170', '258-555-0128', '2013-07-08', '1-2 Miles'], ['21329', '355', 'AW00021329', 'NULL', 'Wyatt', 'NULL', 'Brown', '0', '1964-12-29', 'M', 'NULL', 'M', 'wyatt4@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7820 Bird Drive', 'NULL', '774-555-0118', '2013-10-11', '5-10 Miles'], ['21330', '355', 'AW00021330', 'NULL', 'Isabella', 'NULL', 'Clark', '0', '1965-09-30', 'S', 'NULL', 'F', 'isabella75@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5073 Clymer Ct.', 'NULL', '283-555-0130', '2013-10-17', '5-10 Miles'], ['21331', '54', 'AW00021331', 'NULL', 'Timothy', 'NULL', 'James', '0', '1959-09-07', 'S', 'NULL', 'M', 'timothy9@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4797 Sea Point Way', 'NULL', '811-555-0154', '2012-08-03', '5-10 Miles'], ['21332', '51', 'AW00021332', 'NULL', 'Bailey', 'NULL', 'Carter', '0', '1960-04-24', 'M', 'NULL', 'F', 'bailey30@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6081 Westminster Pl.', 'NULL', '513-555-0117', '2012-08-23', '1-2 Miles'], ['21333', '553', 'AW00021333', 'NULL', 'Mackenzie', 'NULL', 'Allen', '0', '1959-02-09', 'M', 'NULL', 'F', 'mackenzie44@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '204 Heathrow Court', 'NULL', '137-555-0131', '2013-07-10', '5-10 Miles'], ['21334', '338', 'AW00021334', 'NULL', 'Mason', 'NULL', 'Nelson', '0', '1959-04-02', 'S', 'NULL', 'M', 'mason30@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2071 Babbe Street', 'NULL', '950-555-0111', '2013-08-04', '5-10 Miles'], ['21335', '612', 'AW00021335', 'NULL', 'Ana', 'L', 'Coleman', '0', '1959-03-04', 'M', 'NULL', 'F', 'ana6@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1833 Benton Street', 'NULL', '127-555-0151', '2013-08-04', '5-10 Miles'], ['21336', '51', 'AW00021336', 'NULL', 'Angel', 'S', 'Perez', '0', '1959-03-15', 'M', 'NULL', 'M', 'angel25@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '322 Market Pl.', 'NULL', '181-555-0187', '2012-09-13', '5-10 Miles'], ['21337', '609', 'AW00021337', 'NULL', 'Jennifer', 'A', 'Smith', '0', '1963-11-18', 'S', 'NULL', 'F', 'jennifer28@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1347 L St.', 'NULL', '119-555-0167', '2013-08-20', '5-10 Miles'], ['21338', '299', 'AW00021338', 'NULL', 'Victoria', 'A', 'Price', '0', '1963-11-18', 'M', 'NULL', 'F', 'victoria48@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '9344 Stony Hill Circle', 'NULL', '808-555-0135', '2013-08-13', '5-10 Miles'], ['21339', '70', 'AW00021339', 'NULL', 'Haley', 'J', 'Barnes', '0', '1953-09-21', 'S', 'NULL', 'F', 'haley22@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '9736 Colorado Dr.', 'NULL', '350-555-0153', '2013-02-03', '1-2 Miles'], ['21340', '641', 'AW00021340', 'NULL', 'Adam', 'L', 'Wang', '0', '1942-10-31', 'M', 'NULL', 'M', 'adam21@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7575 Brown Dr', 'NULL', '553-555-0117', '2013-05-09', '10+ Miles'], ['21341', '311', 'AW00021341', 'NULL', 'Louis', 'C', 'Liu', '0', '1944-03-15', 'M', 'NULL', 'M', 'louis42@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8024 Azores Court', 'NULL', '493-555-0141', '2014-01-07', '1-2 Miles'], ['21342', '300', 'AW00021342', 'NULL', 'Tonya', 'S', 'Xie', '0', '1944-05-21', 'M', 'NULL', 'F', 'tonya3@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '5886 Book Rd', 'NULL', '966-555-0151', '2013-08-07', '1-2 Miles'], ['21343', '301', 'AW00021343', 'NULL', 'Colin', 'NULL', 'Zeng', '0', '1949-02-06', 'M', 'NULL', 'M', 'colin22@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6154 Cleveland Rd', 'NULL', '583-555-0197', '2013-08-30', '10+ Miles'], ['21344', '335', 'AW00021344', 'NULL', 'Trevor', 'E', 'Perry', '0', '1954-08-20', 'M', 'NULL', 'M', 'trevor7@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '95 Honey Trail Lane', 'NULL', '883-555-0116', '2013-09-15', '1-2 Miles'], ['21345', '49', 'AW00021345', 'NULL', 'Kristina', 'S', 'Martinez', '0', '1944-01-08', 'M', 'NULL', 'F', 'kristina18@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6053 Hill Meadow Place', 'NULL', '154-555-0166', '2013-08-08', '5-10 Miles'], ['21346', '368', 'AW00021346', 'NULL', 'Christian', 'R', 'Rodriguez', '0', '1945-03-01', 'M', 'NULL', 'M', 'christian39@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5536 Yolanda Circle', 'NULL', '886-555-0197', '2013-07-14', '1-2 Miles'], ['21347', '49', 'AW00021347', 'NULL', 'Alisha', 'NULL', 'Raji', '0', '1944-10-09', 'S', 'NULL', 'F', 'alisha46@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '912 Fremont St.', 'NULL', '771-555-0191', '2014-01-28', '10+ Miles'], ['21348', '52', 'AW00021348', 'NULL', 'Alexis', 'NULL', 'Patterson', '0', '1945-04-14', 'M', 'NULL', 'F', 'alexis33@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3162 Glazier Dr.', 'NULL', '396-555-0117', '2012-09-01', '1-2 Miles'], ['21349', '54', 'AW00021349', 'NULL', 'Bryan', 'NULL', 'Kelly', '0', '1945-03-21', 'M', 'NULL', 'M', 'bryan5@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '1270 Danesta Dr.', 'NULL', '856-555-0118', '2012-09-25', '1-2 Miles'], ['21350', '307', 'AW00021350', 'NULL', 'Mindy', 'NULL', 'Sharma', '0', '1945-10-30', 'M', 'NULL', 'F', 'mindy14@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9531 Tri-state Ave', 'NULL', '971-555-0165', '2013-02-23', '10+ Miles'], ['21351', '334', 'AW00021351', 'NULL', 'James', 'NULL', 'Coleman', '0', '1946-01-24', 'M', 'NULL', 'M', 'james21@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7798 Longbrood Way', 'NULL', '387-555-0129', '2013-10-27', '10+ Miles'], ['21352', '68', 'AW00021352', 'NULL', 'Morgan', 'H', 'Long', '0', '1946-09-10', 'M', 'NULL', 'F', 'morgan79@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5577 Laredo', 'NULL', '912-555-0160', '2012-09-11', '1-2 Miles'], ['21353', '610', 'AW00021353', 'NULL', 'Karen', 'NULL', 'Wu', '0', '1946-07-05', 'S', 'NULL', 'F', 'karen16@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7057 Striped Maple Court', 'NULL', '646-555-0113', '2013-07-14', '10+ Miles'], ['21354', '52', 'AW00021354', 'NULL', 'Morgan', 'E', 'Bailey', '0', '1947-04-15', 'S', 'NULL', 'F', 'morgan54@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4250 Huston Rd', 'NULL', '669-555-0153', '2012-09-08', '10+ Miles'], ['21355', '627', 'AW00021355', 'NULL', 'Mya', 'N', 'Diaz', '0', '1947-02-16', 'M', 'NULL', 'F', 'mya0@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5842 Standing Grove Dr.', 'NULL', '166-555-0170', '2013-10-01', '10+ Miles'], ['21356', '335', 'AW00021356', 'NULL', 'Gabriella', 'K', 'Evans', '0', '1947-06-06', 'S', 'NULL', 'F', 'gabriella21@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9669 T St.', 'NULL', '563-555-0138', '2013-10-24', '10+ Miles'], ['21357', '616', 'AW00021357', 'NULL', 'Jada', 'NULL', 'Nelson', '0', '1946-11-01', 'S', 'NULL', 'F', 'jada21@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '100, rue des Rosiers', 'NULL', '835-555-0113', '2013-09-29', '10+ Miles'], ['21358', '348', 'AW00021358', 'NULL', 'Cody', 'NULL', 'Reed', '0', '1946-10-30', 'M', 'NULL', 'M', 'cody20@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3061 Arcadia Pl.', 'NULL', '935-555-0176', '2013-03-25', '10+ Miles'], ['21359', '12', 'AW00021359', 'NULL', 'Johnny', 'NULL', 'Luo', '0', '1957-05-23', 'M', 'NULL', 'M', 'johnny6@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3374 Edward Ave.', 'NULL', '1 (11) 500 555-0186', '2012-02-14', '1-2 Miles'], ['21360', '6', 'AW00021360', 'NULL', 'Orlando', 'NULL', 'Gill', '0', '1953-05-12', 'M', 'NULL', 'M', 'orlando13@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5277 Stephine Way', 'NULL', '1 (11) 500 555-0179', '2013-09-09', '5-10 Miles'], ['21361', '37', 'AW00021361', 'NULL', 'Ricky', 'NULL', 'Romero', '0', '1952-09-12', 'M', 'NULL', 'M', 'ricky9@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7223 Cortes', 'NULL', '1 (11) 500 555-0188', '2012-02-15', '1-2 Miles'], ['21362', '39', 'AW00021362', 'NULL', 'Angel', 'NULL', 'Evans', '0', '1958-09-16', 'M', 'NULL', 'M', 'angel22@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '1524 Reva Dr.', 'NULL', '1 (11) 500 555-0169', '2014-01-19', '5-10 Miles'], ['21363', '29', 'AW00021363', 'NULL', 'Tammy', 'L', 'Arthur', '0', '1953-08-08', 'M', 'NULL', 'F', 'tammy7@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6872 Sandalwood Dr.', 'NULL', '1 (11) 500 555-0111', '2013-04-27', '1-2 Miles'], ['21364', '54', 'AW00021364', 'NULL', 'Charles', 'M', 'Gray', '0', '1982-10-07', 'S', 'NULL', 'M', 'charles54@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5948 Seeno St.', 'NULL', '681-555-0140', '2014-01-26', '5-10 Miles'], ['21365', '7', 'AW00021365', 'NULL', 'Gloria', 'A', 'Ramos', '0', '1953-12-04', 'M', 'NULL', 'F', 'gloria18@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3320 Kentucky Dr.', 'NULL', '1 (11) 500 555-0181', '2013-04-27', '5-10 Miles'], ['21366', '36', 'AW00021366', 'NULL', 'Kelvin', 'C', 'Andersen', '0', '1954-04-25', 'M', 'NULL', 'M', 'kelvin9@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5977 C Wharton Way', 'NULL', '1 (11) 500 555-0118', '2013-02-01', '5-10 Miles'], ['21367', '13', 'AW00021367', 'NULL', 'Cindy', 'NULL', 'Rana', '0', '1953-09-13', 'M', 'NULL', 'F', 'cindy11@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7879 Mt. Etna Drive', 'NULL', '1 (11) 500 555-0181', '2013-02-21', '5-10 Miles'], ['21368', '314', 'AW00021368', 'NULL', 'Mason', 'B', 'Collins', '0', '1983-03-26', 'M', 'NULL', 'M', 'mason23@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8903 Suzanne Dr.', 'NULL', '882-555-0117', '2013-06-29', '5-10 Miles'], ['21369', '359', 'AW00021369', 'NULL', 'Sarah', 'K', 'Rodriguez', '0', '1982-07-16', 'M', 'NULL', 'F', 'sarah22@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5209 Janin Pl.', 'NULL', '128-555-0196', '2013-09-29', '5-10 Miles'], ['21370', '36', 'AW00021370', 'NULL', 'Emmanuel', 'V', 'Martinez', '0', '1960-02-01', 'M', 'NULL', 'M', 'emmanuel16@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7629 Alier Dr.', 'NULL', '1 (11) 500 555-0161', '2013-07-16', '1-2 Miles'], ['21371', '9', 'AW00021371', 'NULL', 'Ann', 'NULL', 'Patel', '0', '1954-10-11', 'M', 'NULL', 'F', 'ann8@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6385 Holiday Hill Dr.', 'NULL', '1 (11) 500 555-0159', '2013-07-06', '5-10 Miles'], ['21372', '26', 'AW00021372', 'NULL', 'Wayne', 'A', 'Raje', '0', '1954-09-15', 'S', 'NULL', 'M', 'wayne16@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2759 Carrick Ct.', 'NULL', '1 (11) 500 555-0196', '2013-08-21', '5-10 Miles'], ['21373', '37', 'AW00021373', 'NULL', 'Clayton', 'L', 'Liu', '0', '1954-08-22', 'M', 'NULL', 'M', 'clayton4@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '4160 Saranap', 'NULL', '1 (11) 500 555-0115', '2013-03-12', '1-2 Miles'], ['21374', '18', 'AW00021374', 'NULL', 'Stacey', 'L', 'Zhou', '0', '1955-05-03', 'M', 'NULL', 'F', 'stacey9@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '8961 Abbey Court', 'NULL', '1 (11) 500 555-0133', '2013-03-11', '5-10 Miles'], ['21375', '18', 'AW00021375', 'NULL', 'Carl', 'NULL', 'Sharma', '0', '1954-11-21', 'S', 'NULL', 'M', 'carl9@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9072 Roland Drive', 'NULL', '1 (11) 500 555-0150', '2013-03-02', '5-10 Miles'], ['21376', '39', 'AW00021376', 'NULL', 'Paula', 'W', 'Ramos', '0', '1966-09-06', 'M', 'NULL', 'F', 'paula19@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7412 N. Civic Drive', 'NULL', '1 (11) 500 555-0127', '2013-08-25', '1-2 Miles'], ['21377', '4', 'AW00021377', 'NULL', 'Allison', 'NULL', 'Bailey', '0', '1955-08-17', 'S', 'NULL', 'F', 'allison15@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3177 Lincoln Drive', 'NULL', '1 (11) 500 555-0185', '2013-06-04', '5-10 Miles'], ['21378', '31', 'AW00021378', 'NULL', 'Rebekah', 'J', 'Diaz', '0', '1956-06-07', 'M', 'NULL', 'F', 'rebekah23@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1133 Beauer Lane', 'NULL', '1 (11) 500 555-0116', '2013-07-17', '5-10 Miles'], ['21379', '4', 'AW00021379', 'NULL', 'Colleen', 'S', 'Huang', '0', '1955-10-06', 'M', 'NULL', 'F', 'colleen6@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '156 Ulfinian Way', 'NULL', '1 (11) 500 555-0122', '2012-02-14', '1-2 Miles'], ['21380', '4', 'AW00021380', 'NULL', 'Candace', 'NULL', 'Sara', '0', '1955-12-02', 'M', 'NULL', 'F', 'candace10@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7402 Oakgrove Rd', 'NULL', '1 (11) 500 555-0127', '2012-02-11', '1-2 Miles'], ['21381', '15', 'AW00021381', 'NULL', 'Francis', 'D', 'Ruiz', '0', '1955-07-02', 'M', 'NULL', 'M', 'francis21@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2262 Main Street', 'NULL', '1 (11) 500 555-0190', '2013-11-13', '5-10 Miles'], ['21382', '25', 'AW00021382', 'NULL', 'Brad', 'K', 'Chander', '0', '1961-05-20', 'M', 'NULL', 'M', 'brad16@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '1108 Cactus Court', 'NULL', '1 (11) 500 555-0133', '2013-02-09', '5-10 Miles'], ['21383', '32', 'AW00021383', 'NULL', 'Ricardo', 'NULL', 'Anand', '0', '1962-08-07', 'M', 'NULL', 'M', 'ricardo21@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4912 Roundhouse Place', 'NULL', '1 (11) 500 555-0117', '2013-10-31', '1-2 Miles'], ['21384', '12', 'AW00021384', 'NULL', 'Ronnie', 'D', 'Lin', '0', '1957-05-23', 'M', 'NULL', 'M', 'ronnie7@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9016 Clear', 'NULL', '1 (11) 500 555-0115', '2012-02-17', '1-2 Miles'], ['21385', '312', 'AW00021385', 'NULL', 'Nicole', 'NULL', 'Peterson', '0', '1985-12-21', 'S', 'NULL', 'F', 'nicole40@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2128 Holland Drive.', 'NULL', '852-555-0190', '2013-12-18', '5-10 Miles'], ['21386', '322', 'AW00021386', 'NULL', 'Abigail', 'H', 'Wood', '0', '1986-03-10', 'S', 'NULL', 'F', 'abigail27@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4197 Ironwood Drive', '# 1', '587-555-0126', '2013-12-26', '5-10 Miles'], ['21387', '26', 'AW00021387', 'NULL', 'Nelson', 'C', 'Diaz', '0', '1957-06-01', 'S', 'NULL', 'M', 'nelson3@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6898 Shaw Rd.', 'NULL', '1 (11) 500 555-0187', '2012-02-03', '5-10 Miles'], ['21388', '546', 'AW00021388', 'NULL', 'Nicole', 'NULL', 'Lee', '0', '1984-12-24', 'S', 'NULL', 'F', 'nicole22@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '1994 Shakespeare Drive', 'NULL', '316-555-0115', '2013-10-15', '0-1 Miles'], ['21389', '40', 'AW00021389', 'NULL', 'Jamie', 'NULL', 'Sun', '0', '1958-06-13', 'M', 'NULL', 'F', 'jamie16@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2665 B Wildbrook Ct', 'NULL', '1 (11) 500 555-0117', '2012-02-05', '1-2 Miles'], ['21390', '7', 'AW00021390', 'NULL', 'Grant', 'NULL', 'Becker', '0', '1964-04-12', 'M', 'NULL', 'M', 'grant22@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4044 Sun View Dr.', 'NULL', '1 (11) 500 555-0120', '2013-12-08', '1-2 Miles'], ['21391', '21', 'AW00021391', 'NULL', 'Dawn', 'NULL', 'Xie', '0', '1960-01-01', 'M', 'NULL', 'F', 'dawn27@adventure-works.com', '40000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3132 Jacqueline Drive', 'NULL', '1 (11) 500 555-0119', '2013-02-05', '1-2 Miles'], ['21392', '26', 'AW00021392', 'NULL', 'Kelli', 'A', 'Lin', '0', '1959-08-22', 'M', 'NULL', 'F', 'kelli8@adventure-works.com', '40000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '4116 Rubiem Ct', 'NULL', '1 (11) 500 555-0171', '2013-11-17', '1-2 Miles'], ['21393', '33', 'AW00021393', 'NULL', 'Candace', 'J', 'Arun', '0', '1959-10-26', 'S', 'NULL', 'F', 'candace6@adventure-works.com', '70000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8274 Springvale Court', 'NULL', '1 (11) 500 555-0176', '2012-02-03', '1-2 Miles'], ['21394', '40', 'AW00021394', 'NULL', 'Gabriella', 'NULL', 'Parker', '0', '1960-05-23', 'S', 'NULL', 'F', 'gabriella30@adventure-works.com', '70000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9206 Hamiliton Ave.', 'NULL', '1 (11) 500 555-0153', '2012-01-31', '5-10 Miles'], ['21395', '609', 'AW00021395', 'NULL', 'Alexia', 'M', 'Hughes', '0', '1981-05-19', 'M', 'NULL', 'F', 'alexia9@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2934 Pine Creek Way', 'NULL', '952-555-0171', '2014-01-05', '5-10 Miles'], ['21396', '612', 'AW00021396', 'NULL', 'Megan', 'NULL', 'Martinez', '0', '1981-06-17', 'S', 'NULL', 'F', 'megan20@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9634 Monte Vista Road', 'NULL', '511-555-0189', '2013-10-02', '1-2 Miles'], ['21397', '631', 'AW00021397', 'NULL', 'Mason', 'D', 'Howard', '0', '1986-06-05', 'M', 'NULL', 'M', 'mason11@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1292 Marsh Elder', 'NULL', '547-555-0167', '2013-07-17', '5-10 Miles'], ['21398', '372', 'AW00021398', 'NULL', 'Ethan', 'NULL', 'Diaz', '0', '1986-03-21', 'M', 'NULL', 'M', 'ethan18@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3397 Farm Bureau Road', 'NULL', '136-555-0124', '2013-11-25', '5-10 Miles'], ['21399', '385', 'AW00021399', 'NULL', 'Ian', 'NULL', 'Hughes', '0', '1981-05-24', 'M', 'NULL', 'M', 'ian52@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3162 Chaucer Drive', 'NULL', '240-555-0189', '2013-10-29', '5-10 Miles'], ['21400', '50', 'AW00021400', 'NULL', 'Adam', 'A', 'Campbell', '0', '1984-11-21', 'S', 'NULL', 'M', 'adam37@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '827 Nulty Dr.', 'NULL', '418-555-0138', '2012-09-14', '1-2 Miles'], ['21401', '543', 'AW00021401', 'NULL', 'Eric', 'NULL', 'Powell', '0', '1984-04-09', 'S', 'NULL', 'M', 'eric17@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '451 Creed Ave', 'NULL', '277-555-0122', '2013-10-13', '5-10 Miles'], ['21402', '19', 'AW00021402', 'NULL', 'Kevin', 'W', 'King', '0', '1961-12-25', 'M', 'NULL', 'M', 'kevin57@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6978 Lisa Lee Lane', 'NULL', '1 (11) 500 555-0117', '2012-02-20', '1-2 Miles'], ['21403', '26', 'AW00021403', 'Ms.', 'Lisa', 'K.', 'Roy', '0', '1963-04-18', 'S', 'NULL', 'M', 'lisa0@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '6030 Winter Drive', 'NULL', '953-555-0100', '2012-02-09', '1-2 Miles'], ['21404', '25', 'AW00021404', 'NULL', 'Julio', 'H', 'Sanz', '0', '1962-12-17', 'S', 'NULL', 'M', 'julio21@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '8964 Sanford St', 'NULL', '1 (11) 500 555-0175', '2012-02-21', '1-2 Miles'], ['21405', '23', 'AW00021405', 'NULL', 'Bonnie', 'NULL', 'Shen', '0', '1975-03-22', 'M', 'NULL', 'F', 'bonnie7@adventure-works.com', '110000.00', '5', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '853 Serpentine', 'NULL', '1 (11) 500 555-0165', '2013-06-27', '2-5 Miles'], ['21406', '33', 'AW00021406', 'NULL', 'Troy', 'NULL', 'Chandra', '0', '1964-10-09', 'M', 'NULL', 'M', 'troy2@adventure-works.com', '110000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '6454 Denkinger Road', 'NULL', '1 (11) 500 555-0162', '2013-03-18', '0-1 Miles'], ['21407', '33', 'AW00021407', 'NULL', 'Wesley', 'NULL', 'Lin', '0', '1970-01-30', 'M', 'NULL', 'M', 'wesley8@adventure-works.com', '110000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '8553 Calhoun Court', 'NULL', '1 (11) 500 555-0116', '2013-01-28', '2-5 Miles'], ['21408', '32', 'AW00021408', 'NULL', 'Autumn', 'I', 'Chen', '0', '1964-12-03', 'M', 'NULL', 'F', 'autumn2@adventure-works.com', '110000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '9940 Northwood Dr.', 'NULL', '1 (11) 500 555-0121', '2012-02-09', '2-5 Miles'], ['21409', '36', 'AW00021409', 'NULL', 'Johnny', 'NULL', 'Deng', '0', '1964-12-22', 'M', 'NULL', 'M', 'johnny2@adventure-works.com', '110000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '9905 Scenic Drive', 'NULL', '1 (11) 500 555-0192', '2013-04-24', '2-5 Miles'], ['21410', '614', 'AW00021410', 'NULL', 'Eric', 'NULL', 'Zhang', '0', '1984-08-03', 'M', 'NULL', 'M', 'eric31@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '705 Temple Drive', 'NULL', '300-555-0119', '2013-11-14', '0-1 Miles'], ['21411', '335', 'AW00021411', 'NULL', 'Maria', 'NULL', 'Kelly', '0', '1979-01-09', 'S', 'NULL', 'F', 'maria21@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '3035 Blackfield Dr.', 'NULL', '617-555-0184', '2013-11-27', '0-1 Miles'], ['21412', '62', 'AW00021412', 'NULL', 'Jordan', 'NULL', 'Alexander', '0', '1980-03-25', 'M', 'NULL', 'M', 'jordan16@adventure-works.com', '50000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4667 Cook Pk', 'NULL', '170-555-0180', '2013-02-05', '5-10 Miles'], ['21413', '618', 'AW00021413', 'NULL', 'Dalton', 'M', 'Robinson', '0', '1979-07-08', 'M', 'NULL', 'M', 'dalton17@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2886 Chaparral Court', 'Space # 45', '514-555-0138', '2013-06-24', '5-10 Miles'], ['21414', '543', 'AW00021414', 'NULL', 'Aaron', 'NULL', 'Butler', '0', '1979-12-05', 'M', 'NULL', 'M', 'aaron13@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9761 Darnett Circle', 'NULL', '466-555-0180', '2013-12-26', '5-10 Miles'], ['21415', '634', 'AW00021415', 'NULL', 'Sydney', 'NULL', 'Sanchez', '0', '1980-01-19', 'S', 'NULL', 'F', 'sydney1@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2898 Forest Way', 'NULL', '817-555-0114', '2013-10-11', '5-10 Miles'], ['21416', '300', 'AW00021416', 'NULL', 'Ryan', 'A', 'Butler', '0', '1985-04-14', 'S', 'NULL', 'M', 'ryan17@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '4603 Brock Lane', 'NULL', '746-555-0154', '2013-10-21', '1-2 Miles'], ['21417', '301', 'AW00021417', 'NULL', 'Gabrielle', 'T', 'Torres', '0', '1980-01-01', 'S', 'NULL', 'F', 'gabrielle13@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '4108 Yukon Street', 'NULL', '622-555-0128', '2013-10-21', '1-2 Miles'], ['21418', '20', 'AW00021418', 'NULL', 'Alicia', 'A', 'Chapman', '0', '1964-07-22', 'M', 'NULL', 'F', 'alicia13@adventure-works.com', '120000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7270 Pepperidge Way', 'NULL', '1 (11) 500 555-0169', '2012-02-09', '2-5 Miles'], ['21419', '312', 'AW00021419', 'NULL', 'Gilbert', 'NULL', 'Ma', '0', '1971-12-09', 'M', 'NULL', 'M', 'gilbert13@adventure-works.com', '120000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '7151 Corte Bonita', 'NULL', '415-555-0138', '2013-05-22', '0-1 Miles'], ['21420', '338', 'AW00021420', 'NULL', 'Isabella', 'C', 'Carter', '0', '1968-09-13', 'S', 'NULL', 'F', 'isabella40@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6406 Golden Leaf Way', 'NULL', '690-555-0198', '2013-10-30', '1-2 Miles'], ['21421', '638', 'AW00021421', 'NULL', 'Ashley', 'NULL', 'Ross', '0', '1968-02-20', 'M', 'NULL', 'F', 'ashley30@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5629 Tara St.', 'NULL', '969-555-0118', '2013-07-22', '5-10 Miles'], ['21422', '348', 'AW00021422', 'NULL', 'Karen', 'NULL', 'Wood', '0', '1962-07-12', 'M', 'NULL', 'F', 'karen35@adventure-works.com', '80000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '782 Veale Avenue', 'NULL', '589-555-0146', '2013-11-02', '2-5 Miles'], ['21423', '71', 'AW00021423', 'NULL', 'Connor', 'NULL', 'Adams', '0', '1963-01-16', 'S', 'NULL', 'M', 'connor44@adventure-works.com', '90000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '8308 La Salle Ave.', 'NULL', '895-555-0169', '2012-09-20', '2-5 Miles'], ['21424', '316', 'AW00021424', 'NULL', 'Emily', 'L', 'Alexander', '0', '1973-02-28', 'M', 'NULL', 'F', 'emily44@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '9170 Plymouth Dr.', 'NULL', '383-555-0160', '2013-10-09', '1-2 Miles'], ['21425', '343', 'AW00021425', 'NULL', 'Carlos', 'NULL', 'Hall', '0', '1961-12-25', 'M', 'NULL', 'M', 'carlos50@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '8306 Sun Tree Lane', 'NULL', '511-555-0178', '2013-07-07', '5-10 Miles'], ['21426', '310', 'AW00021426', 'NULL', 'Jon', 'NULL', 'Raje', '0', '1962-04-05', 'M', 'NULL', 'M', 'jon10@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '7053 Santa Maria Ct.', 'NULL', '580-555-0193', '2013-10-17', '1-2 Miles'], ['21427', '632', 'AW00021427', 'NULL', 'Kelly', 'NULL', 'Foster', '0', '1962-01-31', 'M', 'NULL', 'F', 'kelly21@adventure-works.com', '70000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '920 Broadway', 'NULL', '847-555-0163', '2013-11-28', '5-10 Miles'], ['21428', '612', 'AW00021428', 'NULL', 'Jada', 'A', 'Brooks', '0', '1962-06-13', 'M', 'NULL', 'F', 'jada0@adventure-works.com', '70000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '505 Lyman Rd', 'NULL', '971-555-0172', '2013-11-22', '5-10 Miles'], ['21429', '547', 'AW00021429', 'NULL', 'Isabella', 'D', 'Sandberg', '0', '1978-06-04', 'M', 'NULL', 'F', 'isabella10@adventure-works.com', '70000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2000 Thornwood Dr.', 'NULL', '499-555-0176', '2013-12-18', '5-10 Miles'], ['21430', '301', 'AW00021430', 'NULL', 'Savannah', 'P', 'Morgan', '0', '1938-04-04', 'M', 'NULL', 'F', 'savannah20@adventure-works.com', '90000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '6766 Sea Ranch Ct.', 'NULL', '117-555-0165', '2013-09-14', '5-10 Miles'], ['21431', '49', 'AW00021431', 'NULL', 'Preston', 'NULL', 'Kapoor', '0', '1976-04-15', 'S', 'NULL', 'M', 'preston1@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '3788 Gordon Ct.', 'NULL', '298-555-0129', '2013-12-26', '2-5 Miles'], ['21432', '616', 'AW00021432', 'NULL', 'Melanie', 'A', 'Ward', '0', '1971-05-27', 'M', 'NULL', 'F', 'melanie38@adventure-works.com', '100000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '9704 Pineknoll', 'NULL', '283-555-0142', '2013-03-06', '2-5 Miles'], ['21433', '311', 'AW00021433', 'NULL', 'Gerald', 'NULL', 'Martinez', '0', '1976-08-01', 'M', 'NULL', 'M', 'gerald3@adventure-works.com', '110000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '3261 Vista Bonita', 'NULL', '411-555-0118', '2013-08-19', '2-5 Miles'], ['21434', '361', 'AW00021434', 'NULL', 'Isabella', 'F', 'Smith', '0', '1971-03-31', 'S', 'NULL', 'F', 'isabella57@adventure-works.com', '130000.00', '1', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '4173 Signal Court', 'NULL', '397-555-0119', '2013-12-26', '0-1 Miles'], ['21435', '369', 'AW00021435', 'NULL', 'Connor', 'G', 'Alexander', '0', '1976-04-09', 'S', 'NULL', 'M', 'connor13@adventure-works.com', '150000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '2282 Near Dr', 'NULL', '203-555-0156', '2013-12-18', '0-1 Miles'], ['21436', '611', 'AW00021436', 'NULL', 'Brandi', 'NULL', 'Serrano', '0', '1973-10-23', 'S', 'NULL', 'F', 'brandi16@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2844 Barcelona', 'NULL', '597-555-0129', '2013-12-26', '2-5 Miles'], ['21437', '307', 'AW00021437', 'NULL', 'Whitney', 'NULL', 'Sara', '0', '1968-03-05', 'S', 'NULL', 'F', 'whitney9@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7208 Peach Place', 'NULL', '226-555-0111', '2013-12-23', '2-5 Miles'], ['21438', '368', 'AW00021438', 'NULL', 'Edward', 'NULL', 'Price', '0', '1967-10-14', 'S', 'NULL', 'M', 'edward49@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '266 H Street', 'NULL', '589-555-0197', '2013-01-10', '2-5 Miles'], ['21439', '634', 'AW00021439', 'NULL', 'Thomas', 'M', 'Clark', '0', '1973-01-14', 'S', 'NULL', 'M', 'thomas59@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6432 Vista Way', 'NULL', '621-555-0111', '2013-01-06', '2-5 Miles'], ['21440', '336', 'AW00021440', 'NULL', 'Ian', 'NULL', 'Morgan', '0', '1967-08-14', 'S', 'NULL', 'M', 'ian80@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '2750 Alicante Court', 'NULL', '489-555-0198', '2012-12-29', '2-5 Miles'], ['21441', '60', 'AW00021441', 'NULL', 'Edward', 'NULL', 'Nelson', '0', '1953-08-10', 'M', 'NULL', 'M', 'edward11@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1631 Via Cordona', 'NULL', '262-555-0173', '2014-01-13', '10+ Miles'], ['21442', '331', 'AW00021442', 'NULL', 'Savannah', 'E', 'Cook', '0', '1953-05-18', 'S', 'NULL', 'F', 'savannah19@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7664 Castle Rock Rd.', 'NULL', '400-555-0133', '2013-02-11', '10+ Miles'], ['21443', '631', 'AW00021443', 'NULL', 'Zoe', 'D', 'Morgan', '0', '1947-11-07', 'M', 'NULL', 'F', 'zoe21@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3521 Fourth St.', '#607', '119-555-0117', '2013-02-26', '10+ Miles'], ['21444', '352', 'AW00021444', 'NULL', 'Blake', 'R', 'Lopez', '0', '1948-06-21', 'M', 'NULL', 'M', 'blake29@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2983 Carlisle Way', 'NULL', '812-555-0117', '2013-05-25', '1-2 Miles'], ['21445', '609', 'AW00021445', 'NULL', 'Madeline', 'NULL', 'Evans', '0', '1948-09-13', 'M', 'NULL', 'F', 'madeline0@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2015 Bella Avenue', 'NULL', '445-555-0120', '2013-02-28', '10+ Miles'], ['21446', '68', 'AW00021446', 'NULL', 'Jeremy', 'NULL', 'Barnes', '0', '1949-04-14', 'M', 'NULL', 'M', 'jeremy24@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '7957 Soto St.', 'NULL', '149-555-0199', '2013-05-09', '1-2 Miles'], ['21447', '60', 'AW00021447', 'NULL', 'Anthony', 'NULL', 'Harris', '0', '1948-08-25', 'M', 'NULL', 'M', 'anthony21@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2226 Wilson Lane', 'NULL', '651-555-0159', '2013-07-10', '10+ Miles'], ['21448', '311', 'AW00021448', 'NULL', 'Jenna', 'D', 'Nelson', '0', '1948-10-01', 'M', 'NULL', 'F', 'jenna9@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '32, chaussée de Tournai', 'NULL', '990-555-0110', '2013-01-20', '1-2 Miles'], ['21449', '311', 'AW00021449', 'NULL', 'Devon', 'NULL', 'Raheem', '0', '1948-07-21', 'M', 'NULL', 'M', 'devon15@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8740 Vista Way', 'NULL', '344-555-0123', '2013-05-19', '5-10 Miles'], ['21450', '68', 'AW00021450', 'NULL', 'Nathan', 'NULL', 'Bryant', '0', '1949-08-06', 'M', 'NULL', 'M', 'nathan14@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '7111 Stinson', 'Unit E', '161-555-0172', '2013-10-29', '1-2 Miles'], ['21451', '311', 'AW00021451', 'NULL', 'Jocelyn', 'NULL', 'Ross', '0', '1950-04-27', 'M', 'NULL', 'F', 'jocelyn4@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6564 Bellwood Dr', 'NULL', '844-555-0175', '2013-06-24', '10+ Miles'], ['21452', '539', 'AW00021452', 'NULL', 'Seth', 'R', 'Bailey', '0', '1949-11-18', 'M', 'NULL', 'M', 'seth87@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1553 Richard Ave.', 'NULL', '439-555-0162', '2013-06-29', '10+ Miles'], ['21453', '49', 'AW00021453', 'NULL', 'Wayne', 'NULL', 'Deng', '0', '1955-02-17', 'M', 'NULL', 'M', 'wayne2@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7495 Morgan Territory Rd.', 'NULL', '259-555-0135', '2013-03-08', '1-2 Miles'], ['21454', '311', 'AW00021454', 'NULL', 'Alvin', 'NULL', 'Goldstein', '0', '1949-08-06', 'M', 'NULL', 'M', 'alvin40@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7111 Stinson', 'Unit E', '831-555-0111', '2013-10-29', '1-2 Miles'], ['21455', '609', 'AW00021455', 'NULL', 'Samuel', 'E', 'Shan', '0', '1951-06-17', 'M', 'NULL', 'M', 'samuel28@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '1769 Listing Ct', 'NULL', '684-555-0133', '2013-05-12', '10+ Miles'], ['21456', '543', 'AW00021456', 'NULL', 'Dalton', 'NULL', 'Gonzales', '0', '1950-08-26', 'M', 'NULL', 'M', 'dalton63@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '302 Via Cordona Ln.', 'NULL', '789-555-0171', '2013-05-07', '10+ Miles'], ['21457', '300', 'AW00021457', 'NULL', 'Jamie', 'NULL', 'Serrano', '0', '1951-03-24', 'M', 'NULL', 'M', 'jamie38@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '3841 Frisbie Ct', 'NULL', '559-555-0197', '2013-09-27', '2-5 Miles'], ['21458', '335', 'AW00021458', 'NULL', 'Carson', 'NULL', 'Price', '0', '1956-05-08', 'M', 'NULL', 'M', 'carson0@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '1419 Second St.', 'NULL', '311-555-0136', '2013-06-15', '2-5 Miles'], ['21459', '374', 'AW00021459', 'NULL', 'Luis', 'M', 'Alexander', '0', '1951-03-24', 'M', 'NULL', 'M', 'luis18@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '6286 Ronda Ct', 'NULL', '159-555-0117', '2013-02-15', '2-5 Miles'], ['21460', '372', 'AW00021460', 'NULL', 'Jack', 'NULL', 'Carter', '0', '1951-02-04', 'M', 'NULL', 'M', 'jack46@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8963 Dumbarton Street', 'NULL', '265-555-0124', '2013-07-22', '2-5 Miles'], ['21461', '60', 'AW00021461', 'NULL', 'Elizabeth', 'A', 'Simmons', '0', '1950-11-30', 'M', 'NULL', 'F', 'elizabeth44@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4947 Noah Court', 'NULL', '163-555-0162', '2013-10-30', '10+ Miles'], ['21462', '345', 'AW00021462', 'NULL', 'Katelyn', 'NULL', 'Nelson', '0', '1951-03-02', 'S', 'NULL', 'F', 'katelyn32@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '1949 M St.', 'NULL', '248-555-0180', '2013-12-18', '2-5 Miles'], ['21463', '372', 'AW00021463', 'NULL', 'Logan', 'F', 'Roberts', '0', '1951-04-24', 'M', 'NULL', 'M', 'logan30@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3906 El Dorado Way', 'NULL', '460-555-0143', '2013-08-07', '2-5 Miles'], ['21464', '51', 'AW00021464', 'NULL', 'Miguel', 'NULL', 'Griffin', '0', '1950-10-07', 'M', 'NULL', 'M', 'miguel67@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7910 Mary Dr.', 'NULL', '489-555-0193', '2013-11-21', '10+ Miles'], ['21465', '360', 'AW00021465', 'NULL', 'Austin', 'NULL', 'Shan', '0', '1951-10-29', 'M', 'NULL', 'M', 'austin28@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '496 Ashwood Dr', 'NULL', '833-555-0111', '2013-01-10', '10+ Miles'], ['21466', '542', 'AW00021466', 'NULL', 'Austin', 'NULL', 'Jones', '0', '1951-09-05', 'M', 'NULL', 'M', 'austin42@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '511 El Rancho Drive', 'NULL', '742-555-0181', '2013-01-23', '2-5 Miles'], ['21467', '632', 'AW00021467', 'NULL', 'David', 'C', 'Harris', '0', '1952-01-31', 'M', 'NULL', 'M', 'david72@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3360 Hazelwood Lane', 'NULL', '715-555-0178', '2013-09-18', '10+ Miles'], ['21468', '336', 'AW00021468', 'NULL', 'Ethan', 'L', 'Yang', '0', '1952-02-24', 'M', 'NULL', 'M', 'ethan23@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '661 Cardinal Dr', 'NULL', '473-555-0111', '2013-09-13', '10+ Miles'], ['21469', '316', 'AW00021469', 'NULL', 'Caitlin', 'C', 'Bell', '0', '1953-03-26', 'S', 'NULL', 'F', 'caitlin11@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '3606 Bishop Drive', 'NULL', '802-555-0122', '2013-01-10', '2-5 Miles'], ['21470', '307', 'AW00021470', 'NULL', 'Stephanie', 'NULL', 'Jenkins', '0', '1952-09-12', 'S', 'NULL', 'F', 'stephanie34@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '7223 Cortez', 'NULL', '125-555-0161', '2013-01-18', '2-5 Miles'], ['21471', '51', 'AW00021471', 'NULL', 'Marcus', 'l', 'Carter', '0', '1952-10-28', 'M', 'NULL', 'M', 'marcus38@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '8645 Michigan Blvd', 'NULL', '334-555-0110', '2013-04-04', '10+ Miles'], ['21472', '325', 'AW00021472', 'NULL', 'Patrick', 'J', 'Ward', '0', '1953-05-18', 'M', 'NULL', 'M', 'patrick17@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7780 Limeridge Dr.', 'NULL', '626-555-0170', '2013-03-05', '2-5 Miles'], ['21473', '612', 'AW00021473', 'NULL', 'Stacy', 'S', 'Rubio', '0', '1954-04-10', 'M', 'NULL', 'F', 'stacy21@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1479 Megan Dr', 'NULL', '783-555-0177', '2013-09-16', '2-5 Miles'], ['21474', '623', 'AW00021474', 'NULL', 'Lucas', 'L', 'Gray', '0', '1954-04-21', 'M', 'NULL', 'M', 'lucas78@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '8891 Mount Olivet Ct.', 'NULL', '406-555-0184', '2013-02-24', '10+ Miles'], ['21475', '314', 'AW00021475', 'NULL', 'Cassidy', 'NULL', 'Alexander', '0', '1959-08-17', 'M', 'NULL', 'F', 'cassidy20@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '1528 MapleView Drive', 'NULL', '466-555-0125', '2013-10-28', '2-5 Miles'], ['21476', '315', 'AW00021476', 'NULL', 'Hunter', 'NULL', 'Jenkins', '0', '1954-04-08', 'M', 'NULL', 'M', 'hunter3@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '0', '5574 Martin St', 'NULL', '406-555-0179', '2013-10-23', '2-5 Miles'], ['21477', '339', 'AW00021477', 'NULL', 'Katelyn', 'B', 'Watson', '0', '1953-12-08', 'M', 'NULL', 'F', 'katelyn7@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '3634 Heather Pl', 'NULL', '819-555-0133', '2013-06-21', '10+ Miles'], ['21478', '343', 'AW00021478', 'NULL', 'Abigail', 'R', 'Reed', '0', '1954-01-11', 'M', 'NULL', 'F', 'abigail6@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '336 E Eagle Peak Rd.', 'NULL', '662-555-0145', '2013-10-13', '2-5 Miles'], ['21479', '359', 'AW00021479', 'NULL', 'Noah', 'B', 'Foster', '0', '1953-08-02', 'M', 'NULL', 'M', 'noah13@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '8593 Reisling Court', 'NULL', '409-555-0152', '2013-10-22', '2-5 Miles'], ['21480', '49', 'AW00021480', 'NULL', 'Alfredo', 'P', 'Martin', '0', '1954-09-06', 'M', 'NULL', 'M', 'alfredo1@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '9896 White Dr', 'NULL', '988-555-0136', '2013-12-26', '2-5 Miles'], ['21481', '614', 'AW00021481', 'NULL', 'Jose', 'R', 'Diaz', '0', '1954-11-06', 'M', 'NULL', 'M', 'jose16@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4810 Rahn Court', 'NULL', '733-555-0116', '2013-09-07', '10+ Miles'], ['21482', '542', 'AW00021482', 'NULL', 'Haley', 'M', 'Flores', '0', '1955-04-07', 'S', 'NULL', 'F', 'haley31@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '2473 San Rafael', 'NULL', '620-555-0164', '2013-09-29', '2-5 Miles'], ['21483', '637', 'AW00021483', 'NULL', 'Michelle', 'NULL', 'Bailey', '0', '1954-12-14', 'M', 'NULL', 'F', 'michelle16@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2964 Holbrook Dr', 'NULL', '597-555-0122', '2013-10-16', '2-5 Miles'], ['21484', '638', 'AW00021484', 'NULL', 'Abigail', 'E', 'Coleman', '0', '1971-04-19', 'M', 'NULL', 'F', 'abigail31@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3597 Pine St.', 'NULL', '971-555-0173', '2013-10-09', '2-5 Miles'], ['21485', '641', 'AW00021485', 'NULL', 'Brandon', 'C', 'Clark', '0', '1971-02-08', 'M', 'NULL', 'M', 'brandon49@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '7638 Diokmo Ct.', 'NULL', '154-555-0161', '2013-10-20', '2-5 Miles'], ['21486', '301', 'AW00021486', 'NULL', 'Suzanne', 'NULL', 'Gao', '0', '1955-03-03', 'S', 'NULL', 'F', 'suzanne16@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '3576 Court St.', 'NULL', '395-555-0171', '2013-09-29', '10+ Miles'], ['21487', '347', 'AW00021487', 'NULL', 'Jacqueline', 'R', 'Ramirez', '0', '1954-09-08', 'S', 'NULL', 'F', 'jacqueline31@adventure-works.com', '70000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2023 Flame Drive', 'NULL', '475-555-0142', '2013-01-16', '10+ Miles'], ['21488', '359', 'AW00021488', 'NULL', 'Madison', 'M', 'Henderson', '0', '1955-04-01', 'M', 'NULL', 'F', 'madison40@adventure-works.com', '70000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '1093 Via Romero', 'NULL', '117-555-0152', '2013-01-12', '1-2 Miles'], ['21489', '49', 'AW00021489', 'NULL', 'Neil', 'L', 'Gutierrez', '0', '1956-02-17', 'M', 'NULL', 'M', 'neil10@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7225 Newell Ave.', 'NULL', '561-555-0128', '2013-09-08', '2-5 Miles'], ['21490', '50', 'AW00021490', 'NULL', 'Cole', 'NULL', 'Ward', '0', '1956-05-05', 'M', 'NULL', 'M', 'cole5@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '594 Tosco Way', 'NULL', '158-555-0144', '2013-11-23', '10+ Miles'], ['21491', '623', 'AW00021491', 'NULL', 'Joseph', 'M', 'Lewis', '0', '1961-04-08', 'M', 'NULL', 'M', 'joseph28@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '7726 Driftwood Drive', 'NULL', '257-555-0199', '2013-10-13', '2-5 Miles'], ['21492', '314', 'AW00021492', 'NULL', 'Robert', 'NULL', 'Jai', '0', '1956-04-21', 'S', 'NULL', 'M', 'robert43@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '9192 High Maple Court', 'NULL', '359-555-0188', '2013-05-31', '10+ Miles'], ['21493', '359', 'AW00021493', 'NULL', 'Carson', 'NULL', 'Coleman', '0', '1956-06-18', 'S', 'NULL', 'M', 'carson4@adventure-works.com', '80000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '8681 Orange Street', 'NULL', '227-555-0158', '2013-12-13', '5-10 Miles'], ['21494', '54', 'AW00021494', 'NULL', 'Kayla', 'NULL', 'Gonzales', '0', '1962-09-05', 'S', 'NULL', 'F', 'kayla41@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5298 Green View Court', 'NULL', '534-555-0145', '2013-08-11', '10+ Miles'], ['21495', '631', 'AW00021495', 'NULL', 'James', 'NULL', 'Hughes', '0', '1957-01-29', 'M', 'NULL', 'M', 'james27@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8225 Hidden Oak Ct', 'NULL', '525-555-0165', '2013-12-28', '10+ Miles'], ['21496', '300', 'AW00021496', 'NULL', 'Nichole', 'NULL', 'Rai', '0', '1962-11-07', 'M', 'NULL', 'F', 'nichole17@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1314 Westover Dr.', 'NULL', '224-555-0191', '2013-02-23', '10+ Miles'], ['21497', '307', 'AW00021497', 'NULL', 'Patrick', 'S', 'Cox', '0', '1962-01-11', 'M', 'NULL', 'M', 'patrick15@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2344 Ridgeview Dr.', 'NULL', '762-555-0143', '2013-12-08', '10+ Miles'], ['21498', '312', 'AW00021498', 'NULL', 'Cameron', 'NULL', 'Wilson', '0', '1962-05-02', 'M', 'NULL', 'M', 'cameron47@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '638 Shangri-la Rd.', 'NULL', '510-555-0123', '2013-11-14', '10+ Miles'], ['21499', '358', 'AW00021499', 'NULL', 'Bailey', 'L', 'Ramirez', '0', '1957-04-22', 'M', 'NULL', 'F', 'bailey5@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6492 Crossbow Way', 'NULL', '237-555-0166', '2013-11-03', '1-2 Miles'], ['21500', '642', 'AW00021500', 'NULL', 'Devin', 'J', 'Long', '0', '1957-08-16', 'M', 'NULL', 'M', 'devin48@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6199 G St.', 'NULL', '945-555-0189', '2013-02-18', '10+ Miles'], ['21501', '59', 'AW00021501', 'NULL', 'Deb', 'NULL', 'Foster', '0', '1957-08-02', 'S', 'NULL', 'M', 'deb9@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '2866 Reisling Court', 'NULL', '741-555-0174', '2012-08-29', '10+ Miles'], ['21502', '326', 'AW00021502', 'NULL', 'Morgan', 'NULL', 'Clark', '0', '1963-11-22', 'S', 'NULL', 'F', 'morgan40@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '836 Donaleen Cr.', 'NULL', '148-555-0165', '2013-10-14', '10+ Miles'], ['21503', '626', 'AW00021503', 'NULL', 'Melanie', 'K', 'Long', '0', '1957-12-24', 'M', 'NULL', 'F', 'melanie25@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4682 Deermeadow Way', 'NULL', '849-555-0127', '2013-11-20', '10+ Miles'], ['21504', '611', 'AW00021504', 'NULL', 'Chloe', 'D', 'Torres', '0', '1957-10-18', 'M', 'NULL', 'F', 'chloe59@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6963 Grand View Avenue', 'NULL', '494-555-0164', '2013-10-16', '2-5 Miles'], ['21505', '192', 'AW00021505', 'NULL', 'Ronald', 'NULL', 'Gonzalez', '0', '1968-04-16', 'S', 'NULL', 'M', 'ronald21@adventure-works.com', '110000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '1035, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0135', '2013-11-30', '5-10 Miles'], ['21506', '173', 'AW00021506', 'NULL', 'Randall', 'NULL', 'Gutierrez', '0', '1968-10-19', 'M', 'NULL', 'M', 'randall12@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Auf den Kuhlen Straße 56', 'NULL', '1 (11) 500 555-0158', '2013-12-18', '5-10 Miles'], ['21507', '231', 'AW00021507', 'NULL', 'Hunter', 'L', 'Smith', '0', '1962-07-15', 'M', 'NULL', 'M', 'hunter59@adventure-works.com', '150000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '3586 Orchid Ct.', 'NULL', '1 (11) 500 555-0137', '2013-02-04', '5-10 Miles'], ['21508', '229', 'AW00021508', 'NULL', 'Suzanne', 'NULL', 'Li', '0', '1961-09-22', 'M', 'NULL', 'F', 'suzanne4@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '1893 Cranberry Way', 'NULL', '1 (11) 500 555-0117', '2012-11-29', '5-10 Miles'], ['21509', '247', 'AW00021509', 'NULL', 'Michele', 'C', 'Lopez', '0', '1961-05-20', 'M', 'NULL', 'F', 'michele30@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '891 Melinda Court', 'NULL', '1 (11) 500 555-0156', '2012-11-30', '5-10 Miles'], ['21510', '155', 'AW00021510', 'NULL', 'Carol', 'NULL', 'Perry', '0', '1960-06-18', 'M', 'NULL', 'F', 'carol20@adventure-works.com', '80000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', 'Wasserstr 63', 'NULL', '1 (11) 500 555-0163', '2013-04-02', '2-5 Miles'], ['21511', '265', 'AW00021511', 'NULL', 'Richard', 'D', 'Sanders', '0', '1965-02-02', 'M', 'NULL', 'M', 'richard83@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7948 Sony Hill Circle', 'NULL', '1 (11) 500 555-0120', '2013-07-16', '2-5 Miles'], ['21512', '231', 'AW00021512', 'NULL', 'Emma', 'I', 'Russell', '0', '1960-05-22', 'M', 'NULL', 'F', 'emma65@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '2609 Amarillo', 'NULL', '1 (11) 500 555-0178', '2013-09-24', '2-5 Miles'], ['21513', '197', 'AW00021513', 'NULL', 'Stacey', 'NULL', 'Xu', '0', '1949-10-24', 'M', 'NULL', 'F', 'stacey13@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '55, avenue du Président-Kennedy', 'NULL', '1 (11) 500 555-0121', '2013-08-20', '10+ Miles'], ['21514', '134', 'AW00021514', 'NULL', 'Krystal', 'A', 'Zhu', '0', '1949-09-08', 'M', 'NULL', 'F', 'krystal14@adventure-works.com', '110000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', 'Auf den Kuhlen Straße 25', 'NULL', '1 (11) 500 555-0115', '2013-05-31', '10+ Miles'], ['21515', '233', 'AW00021515', 'NULL', 'Barbara', 'NULL', 'Yuan', '0', '1949-08-13', 'M', 'NULL', 'F', 'barbara38@adventure-works.com', '130000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '3402 Wawona Lane', 'NULL', '1 (11) 500 555-0125', '2013-06-06', '5-10 Miles'], ['21516', '246', 'AW00021516', 'NULL', 'Larry', 'NULL', 'Serrano', '0', '1949-10-10', 'M', 'NULL', 'M', 'larry19@adventure-works.com', '130000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '4161 Willow Lake Rd.', 'NULL', '1 (11) 500 555-0130', '2012-12-18', '5-10 Miles'], ['21517', '257', 'AW00021517', 'NULL', 'Gerald', 'NULL', 'Subram', '0', '1950-04-16', 'M', 'NULL', 'M', 'gerald43@adventure-works.com', '170000.00', '3', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9067 Indigo Ct.', 'NULL', '1 (11) 500 555-0143', '2012-12-12', '0-1 Miles'], ['21518', '197', 'AW00021518', 'NULL', 'Ruben', 'M', 'Madan', '0', '1951-05-18', 'M', 'NULL', 'M', 'ruben8@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '59, boulevard Tremblay', 'NULL', '1 (11) 500 555-0167', '2013-07-20', '2-5 Miles'], ['21519', '162', 'AW00021519', 'NULL', 'Franklin', 'NULL', 'Becker', '0', '1950-10-06', 'S', 'NULL', 'M', 'franklin37@adventure-works.com', '100000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', 'Kampstr 2842', 'NULL', '1 (11) 500 555-0168', '2013-06-11', '10+ Miles'], ['21520', '238', 'AW00021520', 'NULL', 'Seth', 'NULL', 'Baker', '0', '1951-01-14', 'M', 'NULL', 'M', 'seth34@adventure-works.com', '110000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '9233 Pepper Way', 'NULL', '1 (11) 500 555-0193', '2013-10-31', '10+ Miles'], ['21521', '187', 'AW00021521', 'NULL', 'Joanna', 'NULL', 'Romero', '0', '1951-08-08', 'S', 'NULL', 'F', 'joanna8@adventure-works.com', '80000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '1144/118 rue Faubourg St Antoine', 'NULL', '1 (11) 500 555-0115', '2013-08-16', '2-5 Miles'], ['21522', '196', 'AW00021522', 'NULL', 'Morgan', 'C', 'Bryant', '0', '1952-01-08', 'S', 'NULL', 'F', 'morgan87@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '10, rue Philibert-Delorme', 'NULL', '1 (11) 500 555-0164', '2013-07-02', '10+ Miles'], ['21523', '175', 'AW00021523', 'NULL', 'Timothy', 'L', 'Green', '0', '1963-02-18', 'M', 'NULL', 'M', 'timothy40@adventure-works.com', '120000.00', '4', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', 'Altendorfer Straße 461', 'NULL', '1 (11) 500 555-0144', '2014-01-28', '5-10 Miles'], ['21524', '265', 'AW00021524', 'NULL', 'Faith', 'V', 'Wood', '0', '1958-08-11', 'S', 'NULL', 'F', 'faith2@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7591 Signal Court', 'NULL', '1 (11) 500 555-0189', '2014-01-28', '10+ Miles'], ['21525', '241', 'AW00021525', 'NULL', 'Victoria', 'L', 'Howard', '0', '1959-02-10', 'M', 'NULL', 'F', 'victoria38@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4858 Shannon Lane', 'NULL', '1 (11) 500 555-0161', '2013-02-16', '10+ Miles'], ['21526', '172', 'AW00021526', 'NULL', 'Jonathon', 'O', 'Munoz', '0', '1975-10-31', 'S', 'NULL', 'M', 'jonathon4@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Residenz Straße 423', 'NULL', '1 (11) 500 555-0115', '2013-08-22', '10+ Miles'], ['21527', '211', 'AW00021527', 'NULL', 'Sergio', 'NULL', 'Patel', '0', '1960-03-20', 'S', 'NULL', 'M', 'sergio3@adventure-works.com', '90000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '77, rue du Puits Dixme', 'NULL', '1 (11) 500 555-0161', '2013-12-26', '10+ Miles'], ['21528', '151', 'AW00021528', 'NULL', 'Jay', 'J', 'Moreno', '0', '1959-11-03', 'M', 'NULL', 'M', 'jay35@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Zollstr 2', 'NULL', '1 (11) 500 555-0141', '2013-11-27', '0-1 Miles'], ['21529', '183', 'AW00021529', 'NULL', 'Kristi', 'L', 'Martinez', '0', '1958-09-01', 'S', 'NULL', 'F', 'kristi35@adventure-works.com', '100000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '6, avenue de Norvege', 'NULL', '1 (11) 500 555-0180', '2013-11-24', '10+ Miles'], ['21530', '182', 'AW00021530', 'NULL', 'Toni', 'NULL', 'Raman', '0', '1964-01-31', 'M', 'NULL', 'F', 'toni12@adventure-works.com', '100000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '501, rue Henri Gagnon', 'NULL', '1 (11) 500 555-0169', '2013-08-08', '2-5 Miles'], ['21531', '223', 'AW00021531', 'NULL', 'Kari', 'C', 'Vance', '0', '1958-08-10', 'M', 'NULL', 'F', 'kari5@adventure-works.com', '100000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '33, place de la République', 'NULL', '1 (11) 500 555-0146', '2014-01-22', '10+ Miles'], ['21532', '175', 'AW00021532', 'NULL', 'Sierra', 'L', 'Turner', '0', '1958-09-22', 'M', 'NULL', 'F', 'sierra4@adventure-works.com', '120000.00', '2', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', 'Nonnendamm 4', 'NULL', '1 (11) 500 555-0159', '2013-12-23', '10+ Miles'], ['21533', '259', 'AW00021533', 'NULL', 'Gilbert', 'D', 'Tang', '0', '1969-12-18', 'M', 'NULL', 'M', 'gilbert25@adventure-works.com', '130000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2014 Delta Road', 'NULL', '1 (11) 500 555-0174', '2013-07-04', '0-1 Miles'], ['21534', '250', 'AW00021534', 'NULL', 'Warren', 'F', 'Rai', '0', '1963-04-23', 'S', 'NULL', 'M', 'warren7@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '8222 Northridge Road', 'NULL', '1 (11) 500 555-0127', '2012-11-28', '0-1 Miles'], ['21535', '206', 'AW00021535', 'NULL', 'Alfredo', 'NULL', 'Sandberg', '0', '1962-07-23', 'S', 'NULL', 'M', 'alfredo21@adventure-works.com', '80000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', "3, rue de l'Espace De Schengen", 'NULL', '1 (11) 500 555-0198', '2013-11-13', '10+ Miles'], ['21536', '128', 'AW00021536', 'NULL', 'Billy', 'L', 'Rubio', '0', '1956-08-18', 'M', 'NULL', 'M', 'billy21@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Buergermeister-ulrich-str 321', 'NULL', '1 (11) 500 555-0111', '2013-09-18', '10+ Miles'], ['21537', '147', 'AW00021537', 'NULL', 'Gloria', 'M', 'Navarro', '0', '1956-12-05', 'M', 'NULL', 'F', 'gloria10@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Hellweg 4924', 'NULL', '1 (11) 500 555-0146', '2013-12-09', '2-5 Miles'], ['21538', '220', 'AW00021538', 'NULL', 'Tara', 'W', 'Luo', '0', '1955-10-08', 'M', 'NULL', 'F', 'tara6@adventure-works.com', '80000.00', '5', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '2', '52, rue Henri Gagnon', 'NULL', '1 (11) 500 555-0181', '2013-12-20', '5-10 Miles'], ['21539', '209', 'AW00021539', 'NULL', 'Phillip', 'NULL', 'Raman', '0', '1966-09-19', 'M', 'NULL', 'M', 'phillip13@adventure-works.com', '100000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '4', '151, rue de la Centenaire', 'NULL', '1 (11) 500 555-0156', '2013-09-27', '10+ Miles'], ['21540', '255', 'AW00021540', 'NULL', 'Ross', 'NULL', 'Rubio', '0', '1955-08-17', 'S', 'NULL', 'M', 'ross39@adventure-works.com', '150000.00', '4', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '3177 Lincoln Drive', 'NULL', '1 (11) 500 555-0180', '2012-12-04', '0-1 Miles'], ['21541', '265', 'AW00021541', 'NULL', 'Daisy', 'NULL', 'Gutierrez', '0', '1966-09-19', 'M', 'NULL', 'F', 'daisy7@adventure-works.com', '160000.00', '2', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '3', '2076 Westover Dr', 'NULL', '1 (11) 500 555-0114', '2013-09-06', '10+ Miles'], ['21542', '220', 'AW00021542', 'NULL', 'Patricia', 'L', 'Vance', '0', '1954-11-21', 'M', 'NULL', 'F', 'patricia9@adventure-works.com', '70000.00', '5', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '7, place de Brazaville', 'NULL', '1 (11) 500 555-0158', '2013-12-08', '5-10 Miles'], ['21543', '211', 'AW00021543', 'NULL', 'Naomi', 'NULL', 'Romero', '0', '1960-01-30', 'M', 'NULL', 'F', 'naomi9@adventure-works.com', '80000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '8080, quai de l´ Iton', 'NULL', '1 (11) 500 555-0177', '2013-07-28', '10+ Miles'], ['21544', '240', 'AW00021544', 'NULL', 'Gary', 'E', 'Moreno', '0', '1971-04-19', 'M', 'NULL', 'M', 'gary17@adventure-works.com', '150000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '3597 Pine St.', 'NULL', '1 (11) 500 555-0117', '2013-11-07', '10+ Miles'], ['21545', '277', 'AW00021545', 'NULL', 'Michele', 'M', 'Schmidt', '0', '1955-04-12', 'M', 'NULL', 'F', 'michele25@adventure-works.com', '170000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '8827 Bidwell Street', 'NULL', '1 (11) 500 555-0136', '2012-12-17', '0-1 Miles'], ['21546', '155', 'AW00021546', 'NULL', 'Cory', 'B', 'Garcia', '0', '1953-11-22', 'M', 'NULL', 'M', 'cory13@adventure-works.com', '90000.00', '4', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '4', 'Nonnendamm 36', 'NULL', '1 (11) 500 555-0116', '2013-09-30', '10+ Miles'], ['21547', '238', 'AW00021547', 'NULL', 'Brad', 'E', 'Raje', '0', '1970-05-06', 'S', 'NULL', 'M', 'brad14@adventure-works.com', '120000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '2585 San Vincente Drive', 'NULL', '1 (11) 500 555-0187', '2013-08-30', '10+ Miles'], ['21548', '254', 'AW00021548', 'NULL', 'Christy', 'E', 'Chander', '0', '1959-08-30', 'M', 'NULL', 'F', 'christy33@adventure-works.com', '130000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '5994 El Capitan', 'NULL', '1 (11) 500 555-0115', '2013-09-19', '10+ Miles'], ['21549', '126', 'AW00021549', 'NULL', 'Jerome', 'J', 'Ruiz', '0', '1963-09-16', 'S', 'NULL', 'M', 'jerome2@adventure-works.com', '100000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', 'Parkstr 4851', 'NULL', '1 (11) 500 555-0117', '2013-03-04', '10+ Miles'], ['21550', '163', 'AW00021550', 'NULL', 'Kara', 'L', 'Deng', '0', '1958-08-22', 'M', 'NULL', 'F', 'kara2@adventure-works.com', '100000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', 'Am Karlshof 68', 'NULL', '1 (11) 500 555-0119', '2013-08-09', '5-10 Miles'], ['21551', '39', 'AW00021551', 'NULL', 'Elijah', 'D', 'Butler', '0', '1981-02-16', 'S', 'NULL', 'M', 'elijah18@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '8001 Roosevelt Avenue', 'NULL', '1 (11) 500 555-0114', '2013-08-02', '2-5 Miles'], ['21552', '20', 'AW00021552', 'NULL', 'Francis', 'NULL', 'Alvarez', '0', '1981-05-18', 'M', 'NULL', 'M', 'francis2@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '5287 Race Road', 'NULL', '1 (11) 500 555-0176', '2012-02-10', '10+ Miles'], ['21553', '27', 'AW00021553', 'NULL', 'Allen', 'NULL', 'Suri', '0', '1981-04-15', 'M', 'NULL', 'M', 'allen0@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '3840 Gold Crest Ct', 'NULL', '1 (11) 500 555-0133', '2012-02-28', '10+ Miles'], ['21554', '4', 'AW00021554', 'NULL', 'Molly', 'NULL', 'Rana', '0', '1979-01-21', 'S', 'NULL', 'F', 'molly11@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '8970 Kahrs Avenue', 'NULL', '1 (11) 500 555-0193', '2013-08-25', '10+ Miles'], ['21555', '35', 'AW00021555', 'NULL', 'Jarrod', 'C', 'Madan', '0', '1979-09-06', 'S', 'NULL', 'M', 'jarrod7@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '1355 Sequoia Drive', 'NULL', '1 (11) 500 555-0171', '2012-02-20', '10+ Miles'], ['21556', '15', 'AW00021556', 'NULL', 'Gloria', 'G', 'Serrano', '0', '1979-11-24', 'S', 'NULL', 'F', 'gloria17@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '9687 Maywood Ln.', 'NULL', '1 (11) 500 555-0133', '2012-02-04', '10+ Miles'], ['21557', '6', 'AW00021557', 'NULL', 'Kate', 'NULL', 'Lal', '0', '1979-10-14', 'S', 'NULL', 'F', 'kate7@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', '591 Merriewood Drive', 'NULL', '1 (11) 500 555-0160', '2012-02-27', '10+ Miles'], ['21558', '4', 'AW00021558', 'NULL', 'Nicole', 'A', 'Coleman', '0', '1984-12-20', 'S', 'NULL', 'F', 'nicole54@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '2', '1955 Wallace Dr.', 'NULL', '1 (11) 500 555-0165', '2012-02-22', '10+ Miles'], ['21559', '26', 'AW00021559', 'NULL', 'Pedro', 'NULL', 'Malhotra', '0', '1978-10-05', 'M', 'NULL', 'M', 'pedro5@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '2', '2725 Deerwood Court', 'NULL', '1 (11) 500 555-0175', '2012-02-17', '10+ Miles'], ['21560', '35', 'AW00021560', 'NULL', 'Kristopher', 'L', 'Lopez', '0', '1979-03-12', 'M', 'NULL', 'M', 'kristopher15@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '946 Hanson Lane', 'NULL', '1 (11) 500 555-0193', '2012-02-19', '10+ Miles'], ['21561', '8', 'AW00021561', 'NULL', 'Albert', 'L', 'Navarro', '0', '1977-11-17', 'S', 'NULL', 'M', 'albert12@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '7514 Woodcrest Dr.', 'NULL', '1 (11) 500 555-0190', '2012-01-30', '10+ Miles'], ['21562', '3', 'AW00021562', 'NULL', 'Drew', 'M', 'Jai', '0', '1983-10-16', 'S', 'NULL', 'M', 'drew12@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '9976 Manila Avenue', 'NULL', '1 (11) 500 555-0171', '2012-03-21', '10+ Miles'], ['21563', '24', 'AW00021563', 'NULL', 'Carla', 'L', 'Mehta', '0', '1977-06-23', 'S', 'NULL', 'F', 'carla16@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '9218 Gold Crest Ct.', 'NULL', '1 (11) 500 555-0132', '2013-03-01', '10+ Miles'], ['21564', '27', 'AW00021564', 'NULL', 'Erica', 'A', 'Liu', '0', '1977-01-28', 'S', 'NULL', 'F', 'erica3@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '3691 Macaroon Drive', 'NULL', '1 (11) 500 555-0112', '2013-05-10', '10+ Miles'], ['21565', '21', 'AW00021565', 'NULL', 'Sheena', 'J', 'Shan', '0', '1983-11-08', 'M', 'NULL', 'F', 'sheena8@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '4948 Muy Verde', '#52', '1 (11) 500 555-0143', '2013-02-17', '10+ Miles'], ['21566', '22', 'AW00021566', 'NULL', 'Jermaine', 'NULL', 'Garcia', '0', '1977-07-14', 'M', 'NULL', 'M', 'jermaine13@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '4330 Reliz Valley Road', 'NULL', '1 (11) 500 555-0121', '2013-02-24', '10+ Miles'], ['21567', '18', 'AW00021567', 'NULL', 'Candace', 'L', 'Sanchez', '0', '1982-07-09', 'M', 'NULL', 'F', 'candace18@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '3', '9956 La Salle St.', 'NULL', '1 (11) 500 555-0110', '2012-03-10', '10+ Miles'], ['21568', '23', 'AW00021568', 'NULL', 'Jacquelyn', 'J', 'Hernandez', '0', '1977-05-20', 'M', 'NULL', 'F', 'jacquelyn4@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '5621 Arcadia Pl.', 'NULL', '1 (11) 500 555-0149', '2012-03-03', '10+ Miles'], ['21569', '5', 'AW00021569', 'NULL', 'Brendan', 'A', 'Rai', '0', '1981-09-10', 'S', 'NULL', 'M', 'brendan15@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '6185 Hearturou Court', 'NULL', '1 (11) 500 555-0110', '2012-03-24', '10+ Miles'], ['21570', '11', 'AW00021570', 'NULL', 'Barry', 'A', 'Kovár', '0', '1975-12-30', 'M', 'NULL', 'M', 'barry4@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '2374 Turning Way', 'NULL', '1 (11) 500 555-0133', '2012-03-16', '10+ Miles'], ['21571', '8', 'AW00021571', 'NULL', 'Darryl', 'K', 'Yang', '0', '1975-10-23', 'M', 'NULL', 'M', 'darryl5@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '1490 Marina Pkwy.', 'NULL', '1 (11) 500 555-0125', '2012-03-12', '10+ Miles'], ['21572', '7', 'AW00021572', 'NULL', 'Randall', 'NULL', 'Ramos', '0', '1982-04-23', 'M', 'NULL', 'M', 'randall19@adventure-works.com', '130000.00', '0', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '5691 Lexington Road', 'NULL', '1 (11) 500 555-0179', '2012-03-07', '0-1 Miles'], ['21573', '14', 'AW00021573', 'NULL', 'Jimmy', 'E', 'Munoz', '0', '1975-01-31', 'S', 'NULL', 'M', 'jimmy10@adventure-works.com', '130000.00', '0', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '3111 First Ave.', 'NULL', '1 (11) 500 555-0114', '2013-08-09', '0-1 Miles'], ['21574', '638', 'AW00021574', 'NULL', 'Fernando', 'NULL', 'Lewis', '0', '1970-01-15', 'M', 'NULL', 'M', 'fernando19@adventure-works.com', '100000.00', '5', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '3893 San Francisco', 'NULL', '226-555-0167', '2013-02-12', '0-1 Miles'], ['21575', '322', 'AW00021575', 'NULL', 'Justin', 'NULL', 'Foster', '0', '1962-02-12', 'M', 'NULL', 'M', 'justin13@adventure-works.com', '80000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '9123 Springfield Drive', 'NULL', '497-555-0196', '2012-12-30', '2-5 Miles'], ['21576', '546', 'AW00021576', 'NULL', 'Benjamin', 'NULL', 'Gonzales', '0', '1962-04-11', 'M', 'NULL', 'M', 'benjamin18@adventure-works.com', '80000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '2639 Parkview Court', 'NULL', '834-555-0135', '2013-01-25', '2-5 Miles'], ['21577', '49', 'AW00021577', 'NULL', 'Tiffany', 'NULL', 'Ma', '0', '1939-09-08', 'M', 'NULL', 'F', 'tiffany16@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5444 Bellord Ct.', 'NULL', '865-555-0197', '2013-12-03', '5-10 Miles'], ['21578', '642', 'AW00021578', 'NULL', 'Jordan', 'P', 'Green', '0', '1950-10-15', 'M', 'NULL', 'M', 'jordan68@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9514 Plymouth Dr.', 'NULL', '590-555-0171', '2013-08-26', '5-10 Miles'], ['21579', '553', 'AW00021579', 'NULL', 'Wyatt', 'NULL', 'Jackson', '0', '1940-05-03', 'M', 'NULL', 'M', 'wyatt12@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2947 Vine Lane', 'NULL', '972-555-0149', '2013-06-03', '5-10 Miles'], ['21580', '52', 'AW00021580', 'NULL', 'Mariah', 'J', 'Ward', '0', '1969-06-26', 'S', 'NULL', 'F', 'mariah37@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6246 Hermosa', 'NULL', '403-555-0156', '2013-06-11', '2-5 Miles'], ['21581', '71', 'AW00021581', 'NULL', 'Rachel', 'C', 'Russell', '0', '1969-01-10', 'M', 'NULL', 'F', 'rachel68@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9178 Thornhill Place', 'NULL', '823-555-0111', '2013-02-06', '0-1 Miles'], ['21582', '49', 'AW00021582', 'NULL', 'Amber', 'W', 'Roberts', '0', '1983-03-10', 'M', 'NULL', 'F', 'amber3@adventure-works.com', '50000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9665 Geneva Ave.', 'NULL', '597-555-0197', '2012-10-07', '0-1 Miles'], ['21583', '653', 'AW00021583', 'NULL', 'Jaclyn', 'M', 'Lal', '0', '1977-10-03', 'M', 'NULL', 'F', 'jaclyn32@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5514 Chilpancingo', 'NULL', '804-555-0142', '2013-10-16', '0-1 Miles'], ['21584', '616', 'AW00021584', 'NULL', 'Gavin', 'W', 'Bryant', '0', '1977-08-02', 'M', 'NULL', 'M', 'gavin16@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3519 Woodruff Lane', 'NULL', '966-555-0153', '2013-10-07', '2-5 Miles'], ['21585', '543', 'AW00021585', 'NULL', 'Trinity', 'O', 'Gray', '0', '1977-12-16', 'M', 'NULL', 'F', 'trinity5@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4396 Santa Maria Ct', 'NULL', '534-555-0159', '2013-10-26', '2-5 Miles'], ['21586', '552', 'AW00021586', 'NULL', 'Stephanie', 'D', 'Foster', '0', '1978-01-03', 'M', 'NULL', 'F', 'stephanie43@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1206 Limewood Place', 'NULL', '886-555-0126', '2013-10-23', '2-5 Miles'], ['21587', '298', 'AW00021587', 'NULL', 'Jenna', 'T', 'Roberts', '0', '1983-05-25', 'M', 'NULL', 'F', 'jenna3@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4112 N. 8th Street', 'NULL', '886-555-0124', '2013-10-28', '2-5 Miles'], ['21588', '301', 'AW00021588', 'NULL', 'Theodore', 'W', 'Martin', '0', '1977-08-02', 'M', 'NULL', 'M', 'theodore0@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3519 Woodruff Lane', 'NULL', '413-555-0122', '2013-11-10', '2-5 Miles'], ['21589', '60', 'AW00021589', 'NULL', 'Vanessa', 'NULL', 'Coleman', '0', '1975-09-12', 'M', 'NULL', 'F', 'vanessa6@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3525 E. Watson Court', 'NULL', '663-555-0181', '2012-09-29', '2-5 Miles'], ['21590', '609', 'AW00021590', 'NULL', 'Taylor', 'M', 'Gonzales', '0', '1976-05-06', 'M', 'NULL', 'F', 'taylor41@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4734 Sycamore Court', 'NULL', '294-555-0113', '2013-11-10', '2-5 Miles'], ['21591', '310', 'AW00021591', 'NULL', 'Clayton', 'NULL', 'Goel', '0', '1976-03-25', 'M', 'NULL', 'M', 'clayton37@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9754 Hilltop Dr', 'NULL', '184-555-0142', '2013-12-22', '0-1 Miles'], ['21592', '623', 'AW00021592', 'NULL', 'Christina', 'NULL', 'Reed', '0', '1975-09-18', 'M', 'NULL', 'F', 'christina19@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9206 Listing Ct.', 'Unit F', '972-555-0157', '2013-10-27', '0-1 Miles'], ['21593', '301', 'AW00021593', 'NULL', 'Marcus', 'H', 'Roberts', '0', '1975-05-01', 'S', 'NULL', 'M', 'marcus41@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '4587 Sunset Meadows', 'NULL', '171-555-0165', '2013-11-06', '0-1 Miles'], ['21594', '322', 'AW00021594', 'NULL', 'Brianna', 'NULL', 'Moore', '0', '1985-08-16', 'M', 'NULL', 'F', 'brianna6@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2545 Crowe Place', 'NULL', '590-555-0112', '2013-11-06', '0-1 Miles'], ['21595', '54', 'AW00021595', 'NULL', 'Juan', 'H', 'Ward', '0', '1982-10-19', 'M', 'NULL', 'M', 'juan22@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4749 Blackwood Drive', 'NULL', '112-555-0119', '2012-10-01', '2-5 Miles'], ['21596', '553', 'AW00021596', 'NULL', 'Luke', 'H', 'Wright', '0', '1977-01-30', 'M', 'NULL', 'M', 'luke50@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2710 Saddlehill Lane', 'NULL', '145-555-0162', '2013-11-21', '0-1 Miles'], ['21597', '312', 'AW00021597', 'NULL', 'Jose', 'NULL', 'Jones', '0', '1982-01-30', 'M', 'NULL', 'M', 'jose59@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9642 East L Street', 'NULL', '993-555-0143', '2013-01-19', '0-1 Miles'], ['21598', '648', 'AW00021598', 'NULL', 'Chloe', 'E', 'Perez', '0', '1980-10-10', 'M', 'NULL', 'F', 'chloe9@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7275 Andrea Lane', 'NULL', '531-555-0161', '2013-11-14', '0-1 Miles'], ['21599', '548', 'AW00021599', 'NULL', 'Sara', 'A', 'Lopez', '0', '1980-12-08', 'M', 'NULL', 'F', 'sara48@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7846 Alexander Pl.', 'NULL', '293-555-0155', '2013-11-05', '2-5 Miles'], ['21600', '368', 'AW00021600', 'NULL', 'Alexa', 'R', 'Bell', '0', '1973-11-24', 'M', 'NULL', 'F', 'alexa12@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5955 Colfax Street', 'NULL', '172-555-0127', '2012-12-31', '2-5 Miles'], ['21601', '360', 'AW00021601', 'NULL', 'Jacqueline', 'L', 'Bell', '0', '1979-02-16', 'M', 'NULL', 'F', 'jacqueline38@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2578 South Creek Drive', 'NULL', '756-555-0168', '2013-02-20', '2-5 Miles'], ['21602', '612', 'AW00021602', 'NULL', 'Manuel', 'S', 'Malhotra', '0', '1974-06-24', 'M', 'NULL', 'M', 'manuel3@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5720 A St.', 'NULL', '964-555-0110', '2013-02-05', '2-5 Miles'], ['21603', '609', 'AW00021603', 'NULL', 'Seth', 'NULL', 'Barnes', '0', '1973-12-18', 'M', 'NULL', 'M', 'seth51@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6965 Lindsey Court', 'NULL', '838-555-0195', '2013-02-03', '0-1 Miles'], ['21604', '315', 'AW00021604', 'NULL', 'Melanie', 'A', 'Howard', '0', '1972-11-14', 'S', 'NULL', 'F', 'melanie37@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7136 Almond Drive', 'NULL', '771-555-0195', '2013-11-14', '2-5 Miles'], ['21605', '612', 'AW00021605', 'NULL', 'Brittney', 'A', 'Ye', '0', '1975-08-25', 'M', 'NULL', 'F', 'brittney8@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3796 Peachwillow', 'NULL', '148-555-0174', '2013-11-04', '0-1 Miles'], ['21606', '614', 'AW00021606', 'NULL', 'Connor', 'W', 'Roberts', '0', '1981-04-07', 'M', 'NULL', 'M', 'connor33@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6816 Piedra Dr.', 'NULL', '377-555-0127', '2013-11-06', '0-1 Miles'], ['21607', '614', 'AW00021607', 'NULL', 'Bryce', 'I', 'Torres', '0', '1975-10-10', 'M', 'NULL', 'M', 'bryce4@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6492 Palms Dr.', 'NULL', '697-555-0138', '2013-11-12', '2-5 Miles'], ['21608', '634', 'AW00021608', 'NULL', 'David', 'NULL', 'Griffin', '0', '1981-12-02', 'M', 'NULL', 'M', 'david54@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8869 C Olivera Rd', 'NULL', '954-555-0144', '2013-02-22', '2-5 Miles'], ['21609', '307', 'AW00021609', 'NULL', 'Tabitha', 'NULL', 'Blanco', '0', '1976-01-05', 'S', 'NULL', 'F', 'tabitha36@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6693 Ryan Rd', 'NULL', '377-555-0154', '2013-02-04', '2-5 Miles'], ['21610', '322', 'AW00021610', 'NULL', 'Caleb', 'NULL', 'Edwards', '0', '1981-02-16', 'M', 'NULL', 'M', 'caleb30@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4122 Ruth Drive', 'NULL', '139-555-0181', '2013-02-27', '2-5 Miles'], ['21611', '385', 'AW00021611', 'NULL', 'Ethan', 'J', 'Wilson', '0', '1975-09-15', 'M', 'NULL', 'M', 'ethan40@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '452 Rain Drop Circle', 'NULL', '920-555-0156', '2013-02-24', '0-1 Miles'], ['21612', '548', 'AW00021612', 'NULL', 'Spencer', 'J', 'Foster', '0', '1972-12-21', 'S', 'NULL', 'M', 'spencer18@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1750 Morengo Ct.', 'NULL', '775-555-0190', '2013-07-15', '0-1 Miles'], ['21613', '57', 'AW00021613', 'NULL', 'Caleb', 'G', 'Powell', '0', '1972-10-15', 'S', 'NULL', 'M', 'caleb5@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '5528 Ringing Court', 'NULL', '711-555-0115', '2012-10-17', '0-1 Miles'], ['21614', '49', 'AW00021614', 'NULL', 'William', 'A', 'Thomas', '0', '1973-02-13', 'M', 'NULL', 'M', 'william26@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1277 Live Oak Avenue', 'NULL', '181-555-0115', '2012-11-18', '0-1 Miles'], ['21615', '311', 'AW00021615', 'NULL', 'Grace', 'J', 'Torres', '0', '1972-11-15', 'S', 'NULL', 'F', 'grace39@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '7095 Thames Drive', 'NULL', '630-555-0162', '2013-11-04', '0-1 Miles'], ['21616', '612', 'AW00021616', 'NULL', 'Carson', 'J', 'Wood', '0', '1972-05-05', 'M', 'NULL', 'M', 'carson1@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9790 Berrellesa St.', 'NULL', '847-555-0167', '2013-04-17', '2-5 Miles'], ['21617', '539', 'AW00021617', 'NULL', 'Jennifer', 'NULL', 'Miller', '0', '1982-08-23', 'S', 'NULL', 'F', 'jennifer34@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '2028 Mendocino Drive', 'NULL', '414-555-0153', '2014-01-20', '0-1 Miles'], ['21618', '54', 'AW00021618', 'NULL', 'Elijah', 'NULL', 'Carter', '0', '1977-08-16', 'M', 'NULL', 'M', 'elijah38@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6262 Pine Tree Dr.', 'NULL', '861-555-0126', '2012-11-07', '2-5 Miles'], ['21619', '385', 'AW00021619', 'NULL', 'Angela', 'NULL', 'Patterson', '0', '1971-10-17', 'S', 'NULL', 'F', 'angela13@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3477 Mt. Washington Way', 'NULL', '435-555-0136', '2013-02-17', '2-5 Miles'], ['21620', '50', 'AW00021620', 'NULL', 'Mariah', 'NULL', 'Brooks', '0', '1986-01-30', 'M', 'NULL', 'F', 'mariah1@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8535 Meadowbrook Court', 'NULL', '127-555-0131', '2012-10-28', '0-1 Miles'], ['21621', '54', 'AW00021621', 'NULL', 'Jordan', 'NULL', 'Parker', '0', '1980-01-31', 'M', 'NULL', 'M', 'jordan53@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2454 Clayton Way', 'NULL', '783-555-0193', '2012-11-20', '2-5 Miles'], ['21622', '59', 'AW00021622', 'NULL', 'Ethan', 'R', 'Winston', '0', '1974-11-15', 'M', 'NULL', 'M', 'ethan21@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1047 Las Quebradas Lane', 'NULL', '369-555-0123', '2012-11-03', '2-5 Miles'], ['21623', '632', 'AW00021623', 'NULL', 'Connor', 'NULL', 'Diaz', '0', '1974-11-20', 'M', 'NULL', 'M', 'connor16@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '1387 Dias Circle', 'NULL', '964-555-0153', '2013-12-17', '2-5 Miles'], ['21624', '642', 'AW00021624', 'NULL', 'Faith', 'L', 'Price', '0', '1974-07-17', 'S', 'NULL', 'F', 'faith1@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '6309 Sundance Drive', 'NULL', '887-555-0184', '2013-05-10', '2-5 Miles'], ['21625', '553', 'AW00021625', 'NULL', 'Jennifer', 'T', 'Hall', '0', '1975-02-24', 'M', 'NULL', 'F', 'jennifer51@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '4896 Village Pl.', 'NULL', '956-555-0189', '2013-08-11', '2-5 Miles'], ['21626', '648', 'AW00021626', 'NULL', 'Brianna', 'E', 'Garcia', '0', '1980-10-21', 'M', 'NULL', 'F', 'brianna15@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '7712 Oak Wood Court', 'NULL', '640-555-0169', '2013-09-11', '0-1 Miles'], ['21627', '302', 'AW00021627', 'NULL', 'Bailey', 'M', 'Roberts', '0', '1980-03-12', 'M', 'NULL', 'F', 'bailey25@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '7142 Duck Horn Court', 'NULL', '856-555-0163', '2013-06-25', '2-5 Miles'], ['21628', '612', 'AW00021628', 'NULL', 'Kelli', 'T', 'Xu', '0', '1971-02-18', 'S', 'NULL', 'F', 'kelli28@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1177 Oily Road', 'NULL', '467-555-0163', '2013-09-05', '2-5 Miles'], ['21629', '52', 'AW00021629', 'NULL', 'Thomas', 'NULL', 'Thomas', '0', '1976-08-12', 'S', 'NULL', 'M', 'thomas72@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '7921 Detroit Ave.', 'NULL', '159-555-0178', '2012-11-23', '0-1 Miles'], ['21630', '627', 'AW00021630', 'NULL', 'Faith', 'NULL', 'Jenkins', '0', '1976-03-05', 'M', 'NULL', 'F', 'faith6@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8576 South Villa Way', 'NULL', '372-555-0114', '2013-02-13', '2-5 Miles'], ['21631', '49', 'AW00021631', 'NULL', 'Martin', 'E', 'Sanchez', '0', '1976-04-15', 'M', 'NULL', 'M', 'martin4@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '1267 Baltic Sea Ct.', 'NULL', '806-555-0119', '2013-07-14', '10+ Miles'], ['21632', '312', 'AW00021632', 'NULL', 'Jaclyn', 'NULL', 'Liang', '0', '1971-03-06', 'M', 'NULL', 'F', 'jaclyn18@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '3936 Diablo View Road', 'NULL', '883-555-0146', '2013-04-09', '10+ Miles'], ['21633', '633', 'AW00021633', 'NULL', 'Cameron', 'F', 'Zhang', '0', '1971-01-14', 'M', 'NULL', 'M', 'cameron19@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6436 Brookview Dr', 'NULL', '193-555-0131', '2013-03-23', '10+ Miles'], ['21634', '614', 'AW00021634', 'NULL', 'Arianna', 'NULL', 'Cook', '0', '1976-05-21', 'M', 'NULL', 'F', 'arianna43@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '2748 Pine St.', 'NULL', '153-555-0177', '2013-09-19', '10+ Miles'], ['21635', '352', 'AW00021635', 'NULL', 'Christian', 'G', 'Lewis', '0', '1976-03-16', 'M', 'NULL', 'M', 'christian40@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '9305 Kentucky Drive', 'NULL', '375-555-0172', '2013-06-21', '10+ Miles'], ['21636', '385', 'AW00021636', 'NULL', 'Katherine', 'NULL', 'Rivera', '0', '1971-04-18', 'M', 'NULL', 'F', 'katherine11@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '3069 Yolanda', 'NULL', '366-555-0111', '2013-07-25', '10+ Miles'], ['21637', '359', 'AW00021637', 'NULL', 'Richard', 'I', 'Lewis', '0', '1980-10-14', 'S', 'NULL', 'M', 'richard15@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5061 Athecton Circle', 'NULL', '922-555-0117', '2013-11-13', '2-5 Miles'], ['21638', '539', 'AW00021638', 'NULL', 'Olivia', 'J', 'Harris', '0', '1970-05-02', 'S', 'NULL', 'F', 'olivia13@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6955 W. Buchanan', 'NULL', '131-555-0189', '2013-11-07', '2-5 Miles'], ['21639', '612', 'AW00021639', 'NULL', 'Anthony', 'NULL', 'Wilson', '0', '1975-03-23', 'M', 'NULL', 'M', 'anthony16@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '3196 Rotherham Dr.', 'NULL', '148-555-0127', '2013-08-11', '10+ Miles'], ['21640', '314', 'AW00021640', 'NULL', 'Charles', 'NULL', 'Cooper', '0', '1969-10-05', 'M', 'NULL', 'M', 'charles57@adventure-works.com', '60000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '173 Soto St.', 'NULL', '525-555-0159', '2013-07-20', '2-5 Miles'], ['21641', '314', 'AW00021641', 'NULL', 'Kaylee', 'NULL', 'Perez', '0', '1981-02-16', 'M', 'NULL', 'F', 'kaylee34@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1686 Lavere Way', 'NULL', '721-555-0185', '2013-11-27', '2-5 Miles'], ['21642', '59', 'AW00021642', 'NULL', 'Alexandra', 'NULL', 'Rodriguez', '0', '1969-12-01', 'M', 'NULL', 'F', 'alexandra84@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '333 Merced Circle', 'NULL', '519-555-0137', '2012-11-05', '2-5 Miles'], ['21643', '311', 'AW00021643', 'NULL', 'Wyatt', 'NULL', 'Diaz', '0', '1970-02-12', 'M', 'NULL', 'M', 'wyatt50@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3829 Baltic Sea Ct.', 'NULL', '164-555-0126', '2013-11-25', '2-5 Miles'], ['21644', '383', 'AW00021644', 'NULL', 'Sydney', 'NULL', 'Howard', '0', '1969-11-19', 'M', 'NULL', 'F', 'sydney12@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8665 Brown Street', 'NULL', '273-555-0161', '2013-11-22', '2-5 Miles'], ['21645', '644', 'AW00021645', 'NULL', 'Spencer', 'NULL', 'Alexander', '0', '1970-02-04', 'M', 'NULL', 'M', 'spencer21@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2101 Frayne Ln.', 'NULL', '178-555-0164', '2013-11-12', '0-1 Miles'], ['21646', '335', 'AW00021646', 'NULL', 'Luis', 'D', 'Bryant', '0', '1968-12-02', 'M', 'NULL', 'M', 'luis17@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '7954 Vista Avenue', 'NULL', '412-555-0112', '2013-02-18', '0-1 Miles'], ['21647', '611', 'AW00021647', 'NULL', 'Blake', 'NULL', 'Brown', '0', '1968-08-03', 'S', 'NULL', 'M', 'blake3@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '5009 Orange Street', 'NULL', '687-555-0187', '2013-02-10', '2-5 Miles'], ['21648', '301', 'AW00021648', 'NULL', 'Ronnie', 'J', 'Sun', '0', '1969-04-11', 'S', 'NULL', 'M', 'ronnie11@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '1464 Lincoln Dr.', 'NULL', '112-555-0143', '2013-02-13', '2-5 Miles'], ['21649', '311', 'AW00021649', 'NULL', 'Keith', 'NULL', 'Nara', '0', '1969-03-07', 'M', 'NULL', 'M', 'keith20@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '48 Calico Way', 'NULL', '207-555-0166', '2013-02-18', '2-5 Miles'], ['21650', '312', 'AW00021650', 'NULL', 'Cedric', 'NULL', 'Zeng', '0', '1969-05-22', 'M', 'NULL', 'M', 'cedric22@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '7895 Arlington Way', 'NULL', '305-555-0128', '2013-02-15', '2-5 Miles'], ['21651', '633', 'AW00021651', 'NULL', 'Sean', 'L', 'Cooper', '0', '1969-05-12', 'M', 'NULL', 'M', 'sean16@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '8671 Appalachia Dr.', 'NULL', '145-555-0152', '2013-03-10', '2-5 Miles'], ['21652', '68', 'AW00021652', 'NULL', 'Julia', 'NULL', 'Bell', '0', '1974-09-29', 'M', 'NULL', 'F', 'julia51@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '7516 Laguna Street', 'NULL', '362-555-0196', '2012-10-29', '2-5 Miles'], ['21653', '361', 'AW00021653', 'NULL', 'Jose', 'NULL', 'Anderson', '0', '1968-07-03', 'S', 'NULL', 'M', 'jose71@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '2725 P St.', 'NULL', '702-555-0152', '2013-03-29', '2-5 Miles'], ['21654', '329', 'AW00021654', 'NULL', 'Aidan', 'NULL', 'Barnes', '0', '1969-05-26', 'S', 'NULL', 'M', 'aidan3@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '3623 Houston Ct.', 'NULL', '688-555-0128', '2013-03-16', '2-5 Miles'], ['21655', '56', 'AW00021655', 'NULL', 'Zachary', 'NULL', 'Bryant', '0', '1974-06-17', 'M', 'NULL', 'M', 'zachary16@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '2941 Jill Ave', 'NULL', '743-555-0146', '2012-12-27', '2-5 Miles'], ['21656', '69', 'AW00021656', 'NULL', 'Hannah', 'J', 'Hayes', '0', '1968-12-21', 'M', 'NULL', 'F', 'hannah44@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '296 Bel Air Dr.', 'NULL', '115-555-0130', '2013-08-16', '0-1 Miles'], ['21657', '609', 'AW00021657', 'NULL', 'Sara', 'J', 'Green', '0', '1968-09-03', 'S', 'NULL', 'F', 'sara41@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4750 Falls Ct.', 'NULL', '271-555-0149', '2013-04-22', '2-5 Miles'], ['21658', '68', 'AW00021658', 'NULL', 'Jocelyn', 'A', 'Powell', '0', '1969-03-17', 'M', 'NULL', 'F', 'jocelyn9@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5242 Miguel Drive', 'NULL', '864-555-0118', '2012-12-03', '2-5 Miles'], ['21659', '50', 'AW00021659', 'NULL', 'Gabrielle', 'B', 'Jenkins', '0', '1968-12-22', 'M', 'NULL', 'F', 'gabrielle29@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1661 Beauty St.', 'NULL', '625-555-0151', '2011-01-16', '2-5 Miles'], ['21660', '339', 'AW00021660', 'NULL', 'Allison', 'H', 'Watson', '0', '1969-01-24', 'M', 'NULL', 'F', 'allison7@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2739 Sandy Road', 'NULL', '633-555-0132', '2013-11-21', '2-5 Miles'], ['21661', '163', 'AW00021661', 'NULL', 'Terry', 'A', 'Champion', '0', '1984-02-15', 'S', 'NULL', 'M', 'terry17@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Charlottenstr 398', 'NULL', '1 (11) 500 555-0170', '2013-06-27', '1-2 Miles'], ['21662', '206', 'AW00021662', 'NULL', 'Orlando', 'L', 'Muñoz', '0', '1977-11-29', 'S', 'NULL', 'M', 'orlando7@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '26, rue Surcouf', 'NULL', '1 (11) 500 555-0115', '2013-04-22', '1-2 Miles'], ['21663', '177', 'AW00021663', 'NULL', 'Kenneth', 'NULL', 'Goel', '0', '1978-02-13', 'S', 'NULL', 'M', 'kenneth16@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Reiherweg 4164', 'NULL', '1 (11) 500 555-0187', '2013-08-19', '0-1 Miles'], ['21664', '189', 'AW00021664', 'NULL', 'Edwin', 'NULL', 'Yuan', '0', '1977-08-26', 'S', 'NULL', 'M', 'edwin29@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '7, impasse Ste-Madeleine', 'NULL', '1 (11) 500 555-0159', '2013-11-03', '1-2 Miles'], ['21665', '180', 'AW00021665', 'NULL', 'Karl', 'A', 'Jai', '0', '1979-01-05', 'S', 'NULL', 'M', 'karl12@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1111, rue de Longchamp', 'NULL', '1 (11) 500 555-0119', '2013-04-21', '1-2 Miles'], ['21666', '153', 'AW00021666', 'NULL', 'Leslie', 'NULL', 'Jimenez', '0', '1979-01-01', 'M', 'NULL', 'F', 'leslie6@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Hansaallee 8959', 'NULL', '1 (11) 500 555-0131', '2013-09-24', '0-1 Miles'], ['21667', '159', 'AW00021667', 'NULL', 'Crystal', 'A', 'Zhang', '0', '1978-09-25', 'M', 'NULL', 'F', 'crystal2@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Postfach 99 92 92', 'NULL', '1 (11) 500 555-0133', '2013-10-02', '1-2 Miles'], ['21668', '234', 'AW00021668', 'NULL', 'Christina', 'F', 'Rogers', '0', '1979-03-11', 'M', 'NULL', 'F', 'christina18@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4929 Relis Valley Road', 'NULL', '1 (11) 500 555-0128', '2012-12-23', '0-1 Miles'], ['21669', '236', 'AW00021669', 'NULL', 'Jessica', 'NULL', 'Rodriguez', '0', '1978-10-01', 'M', 'NULL', 'F', 'jessica68@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8222 Seabourne Ct.', 'NULL', '1 (11) 500 555-0140', '2012-11-28', '1-2 Miles'], ['21670', '187', 'AW00021670', 'NULL', 'Benjamin', 'A', 'Lal', '0', '1983-04-03', 'S', 'NULL', 'M', 'benjamin31@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '45, rue Faubourg St Antoine', 'NULL', '1 (11) 500 555-0148', '2013-09-11', '1-2 Miles'], ['21671', '189', 'AW00021671', 'NULL', 'Nicolas', 'J', 'Jai', '0', '1978-04-23', 'S', 'NULL', 'M', 'nicolas9@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '44, rue du Départ', 'NULL', '1 (11) 500 555-0160', '2013-04-20', '2-5 Miles'], ['21672', '166', 'AW00021672', 'NULL', 'Craig', 'D', 'Gomez', '0', '1977-11-03', 'S', 'NULL', 'M', 'craig3@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Kampstr 999', 'NULL', '1 (11) 500 555-0140', '2013-12-26', '2-5 Miles'], ['21673', '196', 'AW00021673', 'NULL', 'Jésus', 'M', 'Gill', '0', '1978-01-14', 'S', 'NULL', 'M', 'jésus12@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '76, rue de Berri', 'NULL', '1 (11) 500 555-0174', '2013-04-28', '1-2 Miles'], ['21674', '155', 'AW00021674', 'NULL', 'Jada', 'S', 'Morris', '0', '1976-09-17', 'M', 'NULL', 'F', 'jada10@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Holzstr 1333', 'NULL', '1 (11) 500 555-0122', '2013-10-28', '0-1 Miles'], ['21675', '202', 'AW00021675', 'NULL', 'Adriana', 'NULL', 'Rana', '0', '1976-08-09', 'S', 'NULL', 'F', 'adriana12@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '27, place Beaubernard', 'NULL', '1 (11) 500 555-0117', '2014-01-15', '0-1 Miles'], ['21676', '219', 'AW00021676', 'NULL', 'Valerie', 'A', 'Guo', '0', '1977-01-04', 'S', 'NULL', 'F', 'valerie19@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '4, rue de Maubeuge', 'NULL', '1 (11) 500 555-0183', '2013-12-28', '1-2 Miles'], ['21677', '220', 'AW00021677', 'NULL', 'Cedric', 'H', 'Chander', '0', '1977-05-24', 'S', 'NULL', 'M', 'cedric34@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '311, rue Villedo', 'NULL', '1 (11) 500 555-0112', '2013-10-29', '1-2 Miles'], ['21678', '260', 'AW00021678', 'NULL', 'Alvin', 'L', 'Tang', '0', '1977-01-08', 'S', 'NULL', 'M', 'alvin26@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '8328 Melinda Court', 'NULL', '1 (11) 500 555-0118', '2013-03-09', '0-1 Miles'], ['21679', '230', 'AW00021679', 'NULL', 'Drew', 'R', 'Yuan', '0', '1977-04-06', 'S', 'NULL', 'M', 'drew7@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '4684 Frigate Ct.', 'NULL', '1 (11) 500 555-0185', '2013-07-13', '2-5 Miles'], ['21680', '135', 'AW00021680', 'NULL', 'Ricky', 'L', 'Torres', '0', '1982-05-23', 'S', 'NULL', 'M', 'ricky12@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Postfach 66 16 16', 'NULL', '1 (11) 500 555-0145', '2013-03-06', '2-5 Miles'], ['21681', '157', 'AW00021681', 'NULL', 'Casey', 'D', 'Ortega', '0', '1976-12-28', 'S', 'NULL', 'M', 'casey46@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Rehstr 42435', 'NULL', '1 (11) 500 555-0146', '2013-10-17', '1-2 Miles'], ['21682', '234', 'AW00021682', 'NULL', 'Katrina', 'NULL', 'Goel', '0', '1977-03-05', 'S', 'NULL', 'F', 'katrina18@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9428 Redrock Dr.', 'NULL', '1 (11) 500 555-0146', '2013-10-05', '1-2 Miles'], ['21683', '279', 'AW00021683', 'NULL', 'Henry', 'NULL', 'Suri', '0', '1982-02-11', 'S', 'NULL', 'M', 'henry2@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6947 Jemco Court', 'NULL', '1 (11) 500 555-0113', '2013-07-01', '0-1 Miles'], ['21684', '189', 'AW00021684', 'NULL', 'Mariah', 'R', 'Bennett', '0', '1923-04-14', 'M', 'NULL', 'F', 'mariah5@adventure-works.com', '10000.00', '4', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '62, rue de l´Esplanade', 'NULL', '1 (11) 500 555-0116', '2013-08-11', '1-2 Miles'], ['21685', '632', 'AW00021685', 'NULL', 'Bailey', 'NULL', 'Green', '0', '1980-01-14', 'S', 'NULL', 'F', 'bailey34@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3682 Jeff Ct.', 'NULL', '978-555-0173', '2013-11-26', '1-2 Miles'], ['21686', '302', 'AW00021686', 'NULL', 'Albert', 'A', 'Ortega', '0', '1980-03-16', 'M', 'NULL', 'M', 'albert22@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6793 Bonifacio St.', 'NULL', '645-555-0128', '2013-07-19', '0-1 Miles'], ['21687', '316', 'AW00021687', 'NULL', 'Sarah', 'M', 'Brown', '0', '1979-07-11', 'S', 'NULL', 'F', 'sarah6@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '4684 Ptarmigan Drive', 'NULL', '741-555-0122', '2013-10-19', '0-1 Miles'], ['21688', '361', 'AW00021688', 'NULL', 'Jesse', 'NULL', 'Morris', '0', '1936-06-15', 'S', 'NULL', 'M', 'jesse19@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5108 Heights Avenue', 'NULL', '585-555-0160', '2013-03-12', '1-2 Miles'], ['21689', '609', 'AW00021689', 'NULL', 'Olivia', 'Z', 'Simmons', '0', '1936-08-03', 'M', 'NULL', 'F', 'olivia60@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2168 Terra Calitina', 'NULL', '561-555-0176', '2013-11-13', '1-2 Miles'], ['21690', '49', 'AW00021690', 'NULL', 'Samantha', 'NULL', 'Thomas', '0', '1972-01-24', 'S', 'NULL', 'F', 'samantha12@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '2982 Evelyn Court', 'NULL', '198-555-0136', '2013-04-18', '0-1 Miles'], ['21691', '59', 'AW00021691', 'NULL', 'Brandon', 'S', 'Martin', '0', '1972-03-01', 'S', 'NULL', 'M', 'brandon35@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '8921 Villageoaks Dr.', 'NULL', '251-555-0144', '2013-04-30', '0-1 Miles'], ['21692', '648', 'AW00021692', 'NULL', 'Savannah', 'L', 'Ward', '0', '1972-05-05', 'S', 'NULL', 'F', 'savannah11@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '6149 Everett Court', 'NULL', '709-555-0164', '2013-07-12', '0-1 Miles'], ['21693', '299', 'AW00021693', 'NULL', 'Alyssa', 'C', 'Ashe', '0', '1972-01-25', 'S', 'NULL', 'F', 'alyssa9@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '6732 Geary', 'NULL', '909-555-0168', '2013-05-31', '0-1 Miles'], ['21694', '299', 'AW00021694', 'NULL', 'Bobby', 'NULL', 'Sai', '0', '1971-12-19', 'S', 'NULL', 'M', 'bobby4@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '2028 Reva Dr.', 'NULL', '162-555-0174', '2013-09-14', '0-1 Miles'], ['21695', '299', 'AW00021695', 'NULL', 'Ethan', 'E', 'Rodriguez', '0', '1972-04-04', 'M', 'NULL', 'M', 'ethan38@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7899 E St.', 'NULL', '830-555-0181', '2013-11-27', '1-2 Miles'], ['21696', '614', 'AW00021696', 'NULL', 'Gabrielle', 'A', 'Watson', '0', '1964-05-10', 'M', 'NULL', 'F', 'gabrielle18@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '7682 Fern Leaf Lane', 'NULL', '746-555-0185', '2013-12-29', '0-1 Miles'], ['21697', '385', 'AW00021697', 'NULL', 'Dalton', 'C', 'Powell', '0', '1959-04-18', 'M', 'NULL', 'M', 'dalton54@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '1971 Cleveland Ave.', 'NULL', '559-555-0142', '2013-10-21', '1-2 Miles'], ['21698', '311', 'AW00021698', 'NULL', 'Tracy', 'NULL', 'She', '0', '1959-01-15', 'M', 'NULL', 'F', 'tracy2@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '8251 La Mar.', 'NULL', '742-555-0181', '2013-03-17', '1-2 Miles'], ['21699', '339', 'AW00021699', 'NULL', 'Logan', 'J', 'Sharma', '0', '1959-09-29', 'M', 'NULL', 'M', 'logan3@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8255 Highland Road', 'NULL', '895-555-0151', '2013-10-30', '1-2 Miles'], ['21700', '352', 'AW00021700', 'NULL', 'Juan', 'M', 'Ramirez', '0', '1965-09-30', 'M', 'NULL', 'M', 'juan17@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1201 St. Francis St.', 'NULL', '928-555-0125', '2013-10-30', '1-2 Miles'], ['21701', '542', 'AW00021701', 'NULL', 'Abigail', 'J', 'Sanders', '0', '1961-01-04', 'M', 'NULL', 'F', 'abigail24@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5809 Mount Aire Parkway', 'NULL', '190-555-0122', '2013-06-08', '1-2 Miles'], ['21702', '64', 'AW00021702', 'NULL', 'Paige', 'NULL', 'Gonzales', '0', '1960-08-05', 'M', 'NULL', 'F', 'paige16@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9513 Roslyn Drive', 'NULL', '190-555-0117', '2013-03-12', '0-1 Miles'], ['21703', '69', 'AW00021703', 'NULL', 'Paige', 'NULL', 'Blue', '0', '1961-03-10', 'M', 'NULL', 'F', 'paige38@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7237 Cardinal Ct', 'NULL', '566-555-0190', '2013-09-01', '1-2 Miles'], ['21704', '637', 'AW00021704', 'NULL', 'Charles', 'D', 'Martinez', '0', '1960-10-23', 'M', 'NULL', 'M', 'charles21@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9900 Clearbrook Drive', 'NULL', '122-555-0118', '2013-11-12', '1-2 Miles'], ['21705', '307', 'AW00021705', 'NULL', 'Warren', 'N', 'Sharma', '0', '1962-04-09', 'M', 'NULL', 'M', 'warren40@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8490 Longbrood Way', 'NULL', '121-555-0116', '2013-12-05', '0-1 Miles'], ['21706', '612', 'AW00021706', 'NULL', 'Haley', 'NULL', 'Murphy', '0', '1974-06-03', 'M', 'NULL', 'F', 'haley6@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '476 Dancing Road', 'NULL', '181-555-0119', '2013-08-23', '1-2 Miles'], ['21707', '618', 'AW00021707', 'NULL', 'Cassidy', 'G', 'Simmons', '0', '1973-08-14', 'M', 'NULL', 'F', 'cassidy16@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6194 Garden Ave', 'NULL', '553-555-0183', '2013-10-22', '1-2 Miles'], ['21708', '616', 'AW00021708', 'NULL', 'Andrea', 'L', 'Brooks', '0', '1969-01-31', 'M', 'NULL', 'F', 'andrea2@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5625 7810th Avenue', 'NULL', '784-555-0176', '2013-08-04', '0-1 Miles'], ['21709', '546', 'AW00021709', 'NULL', 'Katherine', 'J', 'Torres', '0', '1969-10-05', 'S', 'NULL', 'F', 'katherine17@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6406 Pepper Way', 'NULL', '452-555-0116', '2013-11-03', '1-2 Miles'], ['21710', '62', 'AW00021710', 'NULL', 'Brittany', 'NULL', 'Gonzales', '0', '1975-05-01', 'M', 'NULL', 'F', 'brittany15@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2332 Treat Blvd', 'NULL', '978-555-0123', '2011-01-21', '1-2 Miles'], ['21711', '383', 'AW00021711', 'NULL', 'Hailey', 'J', 'Gray', '0', '1964-05-10', 'S', 'NULL', 'F', 'hailey15@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '44 Garcia', 'NULL', '643-555-0126', '2013-11-05', '1-2 Miles'], ['21712', '316', 'AW00021712', 'NULL', 'Megan', 'R', 'Ross', '0', '1963-12-12', 'M', 'NULL', 'F', 'megan54@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '80 Sunview Terrace', 'NULL', '372-555-0116', '2013-05-06', '1-2 Miles'], ['21713', '315', 'AW00021713', 'NULL', 'Jose', 'B', 'Parker', '0', '1964-06-09', 'S', 'NULL', 'M', 'jose37@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '76 Woodcrest Dr.', 'NULL', '837-555-0179', '2013-05-27', '0-1 Miles'], ['21714', '612', 'AW00021714', 'NULL', 'Carmen', 'M', 'Patel', '0', '1964-03-08', 'S', 'NULL', 'F', 'carmen7@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '6490 Haviland Place', 'NULL', '505-555-0130', '2014-01-02', '0-1 Miles'], ['21715', '644', 'AW00021715', 'NULL', 'Jonathan', 'F', 'Ross', '0', '1969-05-09', 'M', 'NULL', 'M', 'jonathan3@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5251 Driftwood Drive', 'NULL', '553-555-0137', '2013-02-12', '1-2 Miles'], ['21716', '612', 'AW00021716', 'NULL', 'Gerald', 'C', 'Sara', '0', '1963-08-30', 'M', 'NULL', 'M', 'gerald40@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '339 Norcross Lane', 'NULL', '980-555-0176', '2013-09-09', '0-1 Miles'], ['21717', '374', 'AW00021717', 'NULL', 'Angel', 'M', 'King', '0', '1976-01-06', 'M', 'NULL', 'M', 'angel41@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2147 N. 66th Street', 'NULL', '344-555-0174', '2014-01-28', '0-1 Miles'], ['21718', '336', 'AW00021718', 'NULL', 'Devin', 'B', 'Roberts', '0', '1976-05-13', 'S', 'NULL', 'M', 'devin36@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1969 Meadowvale Court', 'NULL', '159-555-0161', '2013-08-26', '1-2 Miles'], ['21719', '543', 'AW00021719', 'NULL', 'Morgan', 'NULL', 'Torres', '0', '1965-05-25', 'S', 'NULL', 'F', 'morgan61@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8136 Guadalajara', 'NULL', '208-555-0145', '2013-10-31', '1-2 Miles'], ['21720', '301', 'AW00021720', 'NULL', 'Raul', 'NULL', 'Jai', '0', '1964-11-04', 'S', 'NULL', 'M', 'raul10@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '5361 Hungry Road', 'NULL', '996-555-0127', '2013-02-20', '0-1 Miles'], ['21721', '635', 'AW00021721', 'NULL', 'Sara', 'NULL', 'Campbell', '0', '1964-11-21', 'S', 'NULL', 'F', 'sara32@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7441 Clay Rd', 'NULL', '353-555-0198', '2013-10-13', '1-2 Miles'], ['21722', '372', 'AW00021722', 'NULL', 'Spencer', 'R', 'Wood', '0', '1964-11-01', 'M', 'NULL', 'M', 'spencer3@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6917 Del Monte Court', 'NULL', '272-555-0117', '2013-11-10', '1-2 Miles'], ['21723', '302', 'AW00021723', 'NULL', 'Tiffany', 'L', 'Huang', '0', '1977-09-06', 'M', 'NULL', 'F', 'tiffany6@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2807 10th Avenue', 'NULL', '502-555-0169', '2013-11-22', '1-2 Miles'], ['21724', '311', 'AW00021724', 'NULL', 'Mandy', 'NULL', 'Yang', '0', '1978-03-12', 'S', 'NULL', 'F', 'mandy6@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '33 RiverRock Dr', 'NULL', '232-555-0158', '2013-07-12', '0-1 Miles'], ['21725', '69', 'AW00021725', 'NULL', 'Gabrielle', 'C', 'Cannata', '0', '1983-08-18', 'S', 'NULL', 'F', 'gabrielle50@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '8607 Pineview Lane', 'NULL', '504-555-0188', '2013-07-12', '0-1 Miles'], ['21726', '63', 'AW00021726', 'NULL', 'Morgan', 'NULL', 'Hall', '0', '1979-02-19', 'S', 'NULL', 'F', 'morgan45@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '4387 Treat Blvd', 'NULL', '417-555-0179', '2013-07-14', '0-1 Miles'], ['21727', '64', 'AW00021727', 'NULL', 'Arianna', 'NULL', 'Flores', '0', '1978-12-22', 'M', 'NULL', 'F', 'arianna10@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4082 Shell Ct', 'NULL', '580-555-0124', '2011-01-27', '1-2 Miles'], ['21728', '612', 'AW00021728', 'NULL', 'Madison', 'K', 'Harris', '0', '1979-01-06', 'S', 'NULL', 'F', 'madison14@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1268 Joseph Ave', 'NULL', '456-555-0114', '2013-10-31', '1-2 Miles'], ['21729', '641', 'AW00021729', 'NULL', 'Alexandria', 'L', 'Morgan', '0', '1984-07-07', 'S', 'NULL', 'F', 'alexandria35@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '651 Bridgeview St', 'NULL', '881-555-0181', '2013-09-26', '1-2 Miles'], ['21730', '301', 'AW00021730', 'NULL', 'Noah', 'A', 'Campbell', '0', '1978-10-18', 'M', 'NULL', 'M', 'noah34@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '573 Willow Creek Ct.', 'NULL', '220-555-0114', '2013-12-04', '1-2 Miles'], ['21731', '331', 'AW00021731', 'NULL', 'Alexandra', 'J', 'Diaz', '0', '1979-01-22', 'M', 'NULL', 'F', 'alexandra43@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3255 Marsh Elder', 'NULL', '277-555-0156', '2013-12-20', '1-2 Miles'], ['21732', '57', 'AW00021732', 'NULL', 'Ian', 'E', 'Johnson', '0', '1978-04-23', 'S', 'NULL', 'M', 'ian2@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9500 Normal Avenue', 'NULL', '119-555-0194', '2013-10-14', '1-2 Miles'], ['21733', '627', 'AW00021733', 'NULL', 'Ian', 'M', 'Simmons', '0', '1977-05-03', 'S', 'NULL', 'M', 'ian55@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9512 C. Mt. Hood', 'NULL', '286-555-0117', '2013-12-15', '1-2 Miles'], ['21734', '337', 'AW00021734', 'NULL', 'Grace', 'NULL', 'Garcia', '0', '1977-01-29', 'M', 'NULL', 'F', 'grace16@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4421 Alderwood Lane', 'NULL', '824-555-0118', '2014-01-06', '1-2 Miles'], ['21735', '314', 'AW00021735', 'NULL', 'Grace', 'R', 'Diaz', '0', '1982-04-21', 'M', 'NULL', 'F', 'grace68@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6194 Via Maria', 'NULL', '870-555-0156', '2013-12-27', '0-1 Miles'], ['21736', '301', 'AW00021736', 'NULL', 'Thomas', 'D', 'Thompson', '0', '1982-04-20', 'M', 'NULL', 'M', 'thomas77@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '1553 Fairfield Ave.', 'NULL', '894-555-0159', '2013-11-16', '0-1 Miles'], ['21737', '223', 'AW00021737', 'NULL', 'Timothy', 'A', 'Rivera', '0', '1968-02-16', 'S', 'NULL', 'M', 'timothy18@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '4, quai de Grenelle', 'NULL', '1 (11) 500 555-0197', '2013-11-03', '0-1 Miles'], ['21738', '265', 'AW00021738', 'NULL', 'Francis', 'J', 'Alonso', '0', '1973-09-14', 'M', 'NULL', 'M', 'francis5@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2062 Woodruff Lane', 'NULL', '1 (11) 500 555-0150', '2013-12-04', '0-1 Miles'], ['21739', '273', 'AW00021739', 'NULL', 'Dale', 'E', 'Rai', '0', '1973-08-17', 'S', 'NULL', 'M', 'dale15@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8609 Camino Peral', 'NULL', '1 (11) 500 555-0163', '2013-04-04', '0-1 Miles'], ['21740', '273', 'AW00021740', 'NULL', 'Taylor', 'NULL', 'Walker', '0', '1968-04-24', 'M', 'NULL', 'F', 'taylor69@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3274 Corrinne Court', 'NULL', '1 (11) 500 555-0184', '2014-01-14', '0-1 Miles'], ['21741', '54', 'AW00021741', 'NULL', 'Alexa', 'E', 'Sanders', '0', '1972-12-08', 'M', 'NULL', 'F', 'alexa3@adventure-works.com', '70000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1133 Fillet Ave', 'NULL', '263-555-0147', '2011-01-22', '5-10 Miles'], ['21742', '51', 'AW00021742', 'NULL', 'Katelyn', 'B', 'Cox', '0', '1976-11-11', 'M', 'NULL', 'F', 'katelyn9@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '8754 San Marino Ct', 'NULL', '398-555-0188', '2013-04-29', '2-5 Miles'], ['21743', '307', 'AW00021743', 'NULL', 'Theresa', 'NULL', 'Rubio', '0', '1971-04-20', 'M', 'NULL', 'F', 'theresa17@adventure-works.com', '110000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '4777 Rockne Drive', 'NULL', '351-555-0167', '2013-04-29', '2-5 Miles'], ['21744', '310', 'AW00021744', 'NULL', 'Emma', 'NULL', 'Perry', '0', '1970-09-15', 'M', 'NULL', 'F', 'emma54@adventure-works.com', '110000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '2685 Keith Court', 'NULL', '341-555-0164', '2013-09-29', '2-5 Miles'], ['21745', '52', 'AW00021745', 'NULL', 'Isabel', 'M', 'Foster', '0', '1970-01-30', 'S', 'NULL', 'F', 'isabel15@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '2594 Benton Street', 'NULL', '817-555-0143', '2013-08-10', '2-5 Miles'], ['21746', '334', 'AW00021746', 'NULL', 'Xavier', 'NULL', 'Hernandez', '0', '1973-03-12', 'M', 'NULL', 'M', 'xavier24@adventure-works.com', '40000.00', '3', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '144 Santa Monica', 'NULL', '404-555-0118', '2013-11-21', '2-5 Miles'], ['21747', '302', 'AW00021747', 'NULL', 'Derrick', 'NULL', 'Munoz', '0', '1967-10-14', 'M', 'NULL', 'M', 'derrick7@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '266 H Street', 'NULL', '503-555-0119', '2013-02-28', '2-5 Miles'], ['21748', '325', 'AW00021748', 'NULL', 'Wyatt', 'NULL', 'Harris', '0', '1979-04-20', 'S', 'NULL', 'M', 'wyatt14@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7646 Strasbourg Lane', 'NULL', '712-555-0185', '2013-03-04', '0-1 Miles'], ['21749', '310', 'AW00021749', 'NULL', 'Ashley', 'G', 'Williams', '0', '1947-08-25', 'S', 'NULL', 'F', 'ashley2@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '805 Rainier Dr.', 'NULL', '143-555-0198', '2013-11-24', '1-2 Miles'], ['21750', '312', 'AW00021750', 'NULL', 'Carlos', 'E', 'Reed', '0', '1953-10-05', 'M', 'NULL', 'M', 'carlos23@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4003 Woodcrest Dr', 'NULL', '129-555-0154', '2013-04-02', '10+ Miles'], ['21751', '335', 'AW00021751', 'NULL', 'Logan', 'D', 'Jackson', '0', '1948-05-09', 'M', 'NULL', 'M', 'logan63@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7223 Brush Creek Court', 'NULL', '169-555-0196', '2013-08-23', '1-2 Miles'], ['21752', '41', 'AW00021752', 'NULL', 'Rafael', 'M', 'Li', '0', '1953-03-31', 'M', 'NULL', 'M', 'rafael3@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5860 Rock Creek Pl.', 'NULL', '838-555-0117', '2013-12-05', '10+ Miles'], ['21753', '536', 'AW00021753', 'NULL', 'Morgan', 'NULL', 'Robinson', '0', '1948-05-21', 'M', 'NULL', 'F', 'morgan39@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4468 Arleda Lane', 'NULL', '728-555-0198', '2013-04-30', '1-2 Miles'], ['21754', '548', 'AW00021754', 'NULL', 'Kaitlyn', 'NULL', 'Lopez', '0', '1953-10-05', 'M', 'NULL', 'F', 'kaitlyn19@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '3141 Gingham Way', 'NULL', '841-555-0144', '2013-09-16', '1-2 Miles'], ['21755', '312', 'AW00021755', 'NULL', 'Lucas', 'R', 'White', '0', '1948-09-20', 'M', 'NULL', 'M', 'lucas26@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2581 Browse Ct', 'NULL', '703-555-0112', '2013-10-15', '1-2 Miles'], ['21756', '369', 'AW00021756', 'NULL', 'Allison', 'NULL', 'Carter', '0', '1949-05-23', 'M', 'NULL', 'F', 'allison33@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '7535 Hoover Court', 'NULL', '299-555-0175', '2013-03-01', '1-2 Miles'], ['21757', '623', 'AW00021757', 'NULL', 'Elijah', 'S', 'Wang', '0', '1954-09-08', 'M', 'NULL', 'M', 'elijah26@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7614 Inez Ave', 'NULL', '922-555-0134', '2014-01-23', '5-10 Miles'], ['21758', '612', 'AW00021758', 'NULL', 'Patricia', 'S', 'Malhotra', '0', '1949-08-21', 'M', 'NULL', 'F', 'patricia10@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '42 Longview Road', 'NULL', '419-555-0139', '2013-10-13', '10+ Miles'], ['21759', '71', 'AW00021759', 'NULL', 'Jennifer', 'A', 'Moore', '0', '1949-10-18', 'M', 'NULL', 'F', 'jennifer36@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2802 Clayton Way', 'NULL', '959-555-0165', '2013-12-16', '10+ Miles'], ['21760', '311', 'AW00021760', 'NULL', 'Margaret', 'K', 'She', '0', '1950-04-17', 'M', 'NULL', 'F', 'margaret28@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6480 Croyden Dr.', 'NULL', '607-555-0153', '2013-10-05', '10+ Miles'], ['21761', '374', 'AW00021761', 'NULL', 'Makayla', 'NULL', 'Sanders', '0', '1950-02-13', 'S', 'NULL', 'F', 'makayla3@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9383 Ten Penny Lane', 'NULL', '868-555-0191', '2013-07-16', '10+ Miles'], ['21762', '616', 'AW00021762', 'NULL', 'Andrea', 'D', 'Hernandez', '0', '1950-02-22', 'M', 'NULL', 'F', 'andrea40@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3223 Contra Costa Blvd.', 'NULL', '417-555-0131', '2013-01-31', '1-2 Miles'], ['21763', '634', 'AW00021763', 'NULL', 'Madison', 'NULL', 'Brown', '0', '1962-03-07', 'M', 'NULL', 'F', 'madison4@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '1949 M St.', 'NULL', '194-555-0187', '2013-11-14', '2-5 Miles'], ['21764', '58', 'AW00021764', 'NULL', 'Nathan', 'NULL', 'Smith', '0', '1950-10-06', 'M', 'NULL', 'M', 'nathan54@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6577 Hillcrest Ave', 'NULL', '132-555-0151', '2013-03-24', '10+ Miles'], ['21765', '546', 'AW00021765', 'NULL', 'Nathaniel', 'P', 'Kelly', '0', '1962-02-08', 'M', 'NULL', 'M', 'nathaniel3@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '6154 Geneva Ave.', 'NULL', '368-555-0185', '2013-06-08', '2-5 Miles'], ['21766', '298', 'AW00021766', 'NULL', 'Jesse', 'M', 'Baker', '0', '1950-11-23', 'M', 'NULL', 'M', 'jesse32@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '965 Esperanza Drive', 'NULL', '141-555-0113', '2013-03-10', '10+ Miles'], ['21767', '298', 'AW00021767', 'NULL', 'Mariah', 'M', 'Ramirez', '0', '1951-12-11', 'M', 'NULL', 'F', 'mariah31@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '5308 Greenbrook Dr', 'NULL', '147-555-0185', '2013-08-03', '10+ Miles'], ['21768', '53', 'AW00021768', 'NULL', 'Cole', 'A', 'Watson', '0', '1952-02-19', 'S', 'NULL', 'M', 'cole1@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '601 Asilomar Dr.', 'NULL', '110-555-0129', '2010-12-29', '10+ Miles'], ['21769', '311', 'AW00021769', 'NULL', 'Michele', 'L', 'Rubio', '0', '1951-10-13', 'S', 'NULL', 'F', 'michele54@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '8192 Seagull Court', 'NULL', '688-555-0125', '2013-03-03', '2-5 Miles'], ['21770', '635', 'AW00021770', 'NULL', 'Brandon', 'L', 'Thomas', '0', '1957-08-07', 'M', 'NULL', 'M', 'brandon31@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6155 Hawkridge Terr.', 'NULL', '350-555-0197', '2013-07-19', '10+ Miles'], ['21771', '307', 'AW00021771', 'NULL', 'Sheena', 'NULL', 'Shen', '0', '1952-06-08', 'M', 'NULL', 'F', 'sheena2@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2109 Harvey Way', 'NULL', '599-555-0128', '2013-07-11', '10+ Miles'], ['21772', '547', 'AW00021772', 'NULL', 'Sarah', 'G', 'Patterson', '0', '1951-08-16', 'M', 'NULL', 'F', 'sarah35@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2073 Santa Fe Dr.', 'NULL', '237-555-0130', '2013-09-21', '10+ Miles'], ['21773', '536', 'AW00021773', 'NULL', 'Alyssa', 'NULL', 'Rogers', '0', '1951-12-19', 'M', 'NULL', 'F', 'alyssa27@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4228 Pacheco St.', 'NULL', '746-555-0157', '2013-05-27', '2-5 Miles'], ['21774', '374', 'AW00021774', 'NULL', 'Brian', 'B', 'James', '0', '1952-12-19', 'M', 'NULL', 'M', 'brian11@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '9822 Pepper Dr.', 'NULL', '826-555-0110', '2013-12-12', '10+ Miles'], ['21775', '345', 'AW00021775', 'NULL', 'Sean', 'R', 'Ramirez', '0', '1952-10-20', 'S', 'NULL', 'M', 'sean14@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7823 Joan Ave.', 'NULL', '148-555-0111', '2013-03-31', '10+ Miles'], ['21776', '623', 'AW00021776', 'NULL', 'Daniel', 'P', 'Thompson', '0', '1953-03-03', 'M', 'NULL', 'M', 'daniel5@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '8879 Greystone Drive', 'NULL', '169-555-0180', '2013-05-02', '10+ Miles'], ['21777', '66', 'AW00021777', 'NULL', 'Emily', 'P', 'Gonzales', '0', '1952-12-19', 'M', 'NULL', 'F', 'emily42@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '4471 Ryan Court', 'NULL', '860-555-0178', '2013-11-24', '2-5 Miles'], ['21778', '612', 'AW00021778', 'NULL', 'Louis', 'NULL', 'Shen', '0', '1952-10-31', 'M', 'NULL', 'M', 'louis19@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '9014 Brownstone Rd.', 'NULL', '313-555-0179', '2013-10-18', '2-5 Miles'], ['21779', '311', 'AW00021779', 'NULL', 'Maurice', 'J', 'Black', '0', '1958-10-01', 'S', 'NULL', 'M', 'maurice21@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '1950 Crown Court', 'NULL', '532-555-0180', '2013-12-19', '10+ Miles'], ['21780', '311', 'AW00021780', 'NULL', 'Pedro', 'NULL', 'Gonzalez', '0', '1963-08-19', 'M', 'NULL', 'M', 'pedro18@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '4705 Silverberry Court', 'NULL', '464-555-0153', '2013-04-06', '2-5 Miles'], ['21781', '626', 'AW00021781', 'NULL', 'Jared', 'NULL', 'Rivera', '0', '1952-12-19', 'M', 'NULL', 'M', 'jared18@adventure-works.com', '60000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '2096 Trinity Ave.', 'NULL', '432-555-0138', '2013-11-04', '10+ Miles'], ['21782', '536', 'AW00021782', 'NULL', 'Blake', 'NULL', 'Martin', '0', '1954-02-13', 'S', 'NULL', 'M', 'blake14@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8040 Erie Dr', '6 Monteira', '952-555-0176', '2013-04-28', '10+ Miles'], ['21783', '612', 'AW00021783', 'NULL', 'Kate', 'NULL', 'Goel', '0', '1954-04-18', 'S', 'NULL', 'F', 'kate16@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8756 Nottingham Pl.', 'NULL', '441-555-0194', '2013-02-25', '10+ Miles'], ['21784', '614', 'AW00021784', 'NULL', 'Mackenzie', 'J', 'Hernandez', '0', '1954-04-04', 'S', 'NULL', 'F', 'mackenzie39@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7866 Northridge Ct.', 'NULL', '896-555-0156', '2013-05-14', '10+ Miles'], ['21785', '307', 'AW00021785', 'NULL', 'Tabitha', 'M', 'Rodriguez', '0', '1953-11-08', 'S', 'NULL', 'F', 'tabitha16@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '750 Cataline Avenue', 'NULL', '686-555-0191', '2013-11-22', '2-5 Miles'], ['21786', '316', 'AW00021786', 'NULL', 'Alexis', 'NULL', 'Bennett', '0', '1953-12-30', 'M', 'NULL', 'F', 'alexis23@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '6753 Mines Road', 'NULL', '442-555-0153', '2013-08-29', '10+ Miles'], ['21787', '326', 'AW00021787', 'NULL', 'Rebecca', 'E', 'Allen', '0', '1954-05-15', 'M', 'NULL', 'F', 'rebecca24@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '6220 Boxer Blvd', 'NULL', '716-555-0195', '2013-02-19', '10+ Miles'], ['21788', '331', 'AW00021788', 'NULL', 'Spencer', 'NULL', 'Barnes', '0', '1953-11-01', 'M', 'NULL', 'M', 'spencer4@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '9613 Smoking Tree Court', 'NULL', '242-555-0153', '2013-11-26', '2-5 Miles'], ['21789', '343', 'AW00021789', 'NULL', 'Lauren', 'A', 'Griffin', '0', '1953-12-23', 'M', 'NULL', 'F', 'lauren67@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '6657 Camino Solano', 'NULL', '538-555-0113', '2013-05-07', '10+ Miles'], ['21790', '358', 'AW00021790', 'NULL', 'James', 'W', 'Diaz', '0', '1953-08-23', 'M', 'NULL', 'M', 'james37@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '4397 Lakewood Court', 'NULL', '632-555-0118', '2013-06-09', '10+ Miles'], ['21791', '361', 'AW00021791', 'NULL', 'Richard', 'NULL', 'Price', '0', '1954-06-18', 'M', 'NULL', 'M', 'richard56@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2064 Trafalgar Circle', 'NULL', '722-555-0113', '2013-03-29', '1-2 Miles'], ['21792', '69', 'AW00021792', 'NULL', 'Cassidy', 'L', 'Butler', '0', '1954-12-11', 'M', 'NULL', 'F', 'cassidy15@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '80 San Remo Ct', 'NULL', '677-555-0149', '2013-11-30', '10+ Miles'], ['21793', '546', 'AW00021793', 'NULL', 'Kaylee', 'L', 'Scott', '0', '1955-02-21', 'M', 'NULL', 'F', 'kaylee36@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2229 Pinehurst Court', 'NULL', '113-555-0140', '2013-11-26', '2-5 Miles'], ['21794', '315', 'AW00021794', 'NULL', 'Alyssa', 'J', 'James', '0', '1960-09-11', 'M', 'NULL', 'F', 'alyssa42@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '0', '9371 Corte Del Sol', 'NULL', '494-555-0178', '2013-11-01', '2-5 Miles'], ['21795', '361', 'AW00021795', 'NULL', 'Tristan', 'L', 'Bennett', '0', '1960-01-19', 'S', 'NULL', 'M', 'tristan1@adventure-works.com', '70000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '868 Aspen Dr.', 'NULL', '476-555-0139', '2013-03-12', '10+ Miles'], ['21796', '66', 'AW00021796', 'NULL', 'Emma', 'W', 'Ward', '0', '1955-10-08', 'M', 'NULL', 'F', 'emma39@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4313 Camby Rd.', 'NULL', '523-555-0149', '2013-08-18', '2-5 Miles'], ['21797', '609', 'AW00021797', 'NULL', 'Kelvin', 'P', 'Gao', '0', '1956-03-24', 'M', 'NULL', 'M', 'kelvin33@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1947 Sepulveda Ct', 'NULL', '301-555-0115', '2013-11-03', '2-5 Miles'], ['21798', '543', 'AW00021798', 'NULL', 'Jade', 'P', 'Sanders', '0', '1956-03-24', 'M', 'NULL', 'F', 'jade2@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1947 Serene Ct', 'NULL', '466-555-0168', '2013-11-11', '2-5 Miles'], ['21799', '543', 'AW00021799', 'NULL', 'Angel', 'M', 'Cook', '0', '1956-03-26', 'M', 'NULL', 'M', 'angel20@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5665 Maywood Lane', 'NULL', '128-555-0114', '2013-07-30', '10+ Miles'], ['21800', '311', 'AW00021800', 'NULL', 'Heidi', 'L', 'Raman', '0', '1956-03-18', 'M', 'NULL', 'F', 'heidi14@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6975 Olivera Road', 'NULL', '803-555-0117', '2013-09-04', '2-5 Miles'], ['21801', '352', 'AW00021801', 'NULL', 'Kaylee', 'M', 'Cooper', '0', '1956-04-13', 'M', 'NULL', 'F', 'kaylee14@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6335 Benita Way', 'NULL', '236-555-0152', '2013-08-05', '1-2 Miles'], ['21802', '372', 'AW00021802', 'NULL', 'Lucas', 'NULL', 'Roberts', '0', '1955-10-18', 'M', 'NULL', 'M', 'lucas5@adventure-works.com', '80000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '805 Stonyhill Circle', '#67', '651-555-0158', '2013-04-01', '5-10 Miles'], ['21803', '49', 'AW00021803', 'NULL', 'Emily', 'NULL', 'Thomas', '0', '1957-03-21', 'M', 'NULL', 'F', 'emily11@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '1172 Flamingo Dr.', 'NULL', '380-555-0167', '2013-10-26', '10+ Miles'], ['21804', '632', 'AW00021804', 'NULL', 'Brooke', 'V', 'Cook', '0', '1962-08-07', 'M', 'NULL', 'F', 'brooke19@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8519 Crivello Ave.', 'NULL', '161-555-0151', '2013-07-24', '10+ Miles'], ['21805', '635', 'AW00021805', 'NULL', 'Lucas', 'NULL', 'Russell', '0', '1956-10-15', 'M', 'NULL', 'M', 'lucas67@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '2133 Turner Dr.', 'NULL', '211-555-0162', '2013-04-15', '2-5 Miles'], ['21806', '301', 'AW00021806', 'NULL', 'Kelvin', 'K', 'Xie', '0', '1956-08-02', 'S', 'NULL', 'M', 'kelvin0@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2356 Shady Ln.', 'NULL', '499-555-0116', '2013-09-11', '10+ Miles'], ['21807', '310', 'AW00021807', 'NULL', 'Amanda', 'NULL', 'Campbell', '0', '1957-05-01', 'M', 'NULL', 'F', 'amanda50@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '9716 Holiday Hills Drive', 'NULL', '100-555-0170', '2013-11-13', '2-5 Miles'], ['21808', '315', 'AW00021808', 'NULL', 'Amanda', 'NULL', 'Green', '0', '1956-08-19', 'M', 'NULL', 'F', 'amanda57@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2870 Park Glenn', 'NULL', '115-555-0176', '2013-11-01', '2-5 Miles'], ['21809', '334', 'AW00021809', 'NULL', 'Sydney', 'R', 'Thompson', '0', '1968-03-30', 'M', 'NULL', 'F', 'sydney77@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '973 Marvello Lane', 'NULL', '756-555-0119', '2013-10-11', '10+ Miles'], ['21810', '372', 'AW00021810', 'NULL', 'Justin', 'C', 'Miller', '0', '1957-06-16', 'M', 'NULL', 'M', 'justin37@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2759 Dies Dorados', 'NULL', '646-555-0164', '2013-03-01', '10+ Miles'], ['21811', '310', 'AW00021811', 'NULL', 'Olivia', 'K', 'Williams', '0', '1957-08-11', 'M', 'NULL', 'F', 'olivia2@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '9264 Claudia Drive', 'NULL', '399-555-0155', '2013-11-27', '10+ Miles'], ['21812', '637', 'AW00021812', 'NULL', 'Adrian', 'NULL', 'Bailey', '0', '1957-07-04', 'M', 'NULL', 'M', 'adrian16@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '6894 Oeffler Ln.', 'NULL', '299-555-0129', '2013-11-13', '2-5 Miles'], ['21813', '64', 'AW00021813', 'NULL', 'Dalton', 'N', 'Brown', '0', '1963-08-30', 'M', 'NULL', 'M', 'dalton4@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '1471 Michigan Blvd.', 'NULL', '602-555-0134', '2011-02-15', '2-5 Miles'], ['21814', '552', 'AW00021814', 'NULL', 'Noah', 'K', 'Edwards', '0', '1957-09-21', 'M', 'NULL', 'M', 'noah28@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2246 Breaker Dr.', 'NULL', '228-555-0183', '2013-07-10', '10+ Miles'], ['21815', '63', 'AW00021815', 'NULL', 'Gabrielle', 'M', 'Green', '0', '1957-11-02', 'S', 'NULL', 'F', 'gabrielle57@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4925 Mariposa Ct.', 'NULL', '143-555-0148', '2013-04-05', '10+ Miles'], ['21816', '175', 'AW00021816', 'NULL', 'Jackson', 'NULL', 'Roberts', '0', '1964-01-17', 'S', 'NULL', 'M', 'jackson34@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', 'Lindenalle 6424', 'NULL', '1 (11) 500 555-0114', '2013-07-01', '0-1 Miles'], ['21817', '273', 'AW00021817', 'NULL', 'Jerome', 'J', 'Carlson', '0', '1963-10-07', 'M', 'NULL', 'M', 'jerome17@adventure-works.com', '160000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '8684 Military East', 'NULL', '1 (11) 500 555-0113', '2013-10-26', '5-10 Miles'], ['21818', '225', 'AW00021818', 'NULL', 'Willie', 'A', 'Chander', '0', '1963-04-23', 'M', 'NULL', 'M', 'willie35@adventure-works.com', '110000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '126, rue Maillard', 'NULL', '1 (11) 500 555-0199', '2013-05-02', '5-10 Miles'], ['21819', '224', 'AW00021819', 'NULL', 'Chloe', 'S', 'Howard', '0', '1963-05-02', 'M', 'NULL', 'F', 'chloe57@adventure-works.com', '110000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '2, rue Pierre-Demoulin', 'NULL', '1 (11) 500 555-0116', '2013-03-09', '5-10 Miles'], ['21820', '190', 'AW00021820', 'NULL', 'Priscilla', 'H', 'Nath', '0', '1973-12-05', 'M', 'NULL', 'F', 'priscilla17@adventure-works.com', '110000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '828, rue de Berri', 'NULL', '1 (11) 500 555-0192', '2013-08-09', '5-10 Miles'], ['21821', '142', 'AW00021821', 'NULL', 'Clayton', 'NULL', 'Tang', '0', '1962-11-19', 'S', 'NULL', 'M', 'clayton24@adventure-works.com', '120000.00', '2', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Pappelallee 622', 'NULL', '1 (11) 500 555-0187', '2013-07-27', '5-10 Miles'], ['21822', '278', 'AW00021822', 'NULL', 'Gregory', 'NULL', 'Yuan', '0', '1962-08-26', 'S', 'NULL', 'M', 'gregory11@adventure-works.com', '170000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '6437 Brookview Dr.', 'NULL', '1 (11) 500 555-0180', '2013-05-27', '0-1 Miles'], ['21823', '123', 'AW00021823', 'NULL', 'Lacey', 'A', 'She', '0', '1967-03-06', 'S', 'NULL', 'F', 'lacey36@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Bundesallee 95', 'NULL', '1 (11) 500 555-0170', '2013-09-25', '5-10 Miles'], ['21824', '255', 'AW00021824', 'NULL', 'Warren', 'NULL', 'She', '0', '1961-12-31', 'M', 'NULL', 'M', 'warren36@adventure-works.com', '150000.00', '2', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '4429 Deermeadow Way', 'NULL', '1 (11) 500 555-0171', '2013-12-10', '5-10 Miles'], ['21825', '140', 'AW00021825', 'NULL', 'Randy', 'J', 'Zhou', '0', '1961-05-18', 'M', 'NULL', 'M', 'randy10@adventure-works.com', '110000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Krönerweg 9796', 'NULL', '1 (11) 500 555-0156', '2013-12-29', '5-10 Miles'], ['21826', '121', 'AW00021826', 'NULL', 'Abigail', 'H', 'Russell', '0', '1961-01-06', 'M', 'NULL', 'F', 'abigail45@adventure-works.com', '120000.00', '2', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Am Grossen Dern 9824', 'NULL', '1 (11) 500 555-0149', '2013-11-14', '10+ Miles'], ['21827', '171', 'AW00021827', 'NULL', 'Mallory', 'NULL', 'Gutierrez', '0', '1960-07-06', 'M', 'NULL', 'F', 'mallory18@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', 'Hunzinger Allee 675', 'NULL', '1 (11) 500 555-0120', '2013-12-19', '0-1 Miles'], ['21828', '160', 'AW00021828', 'NULL', 'Megan', 'NULL', 'Gonzales', '0', '1960-08-01', 'S', 'NULL', 'F', 'megan65@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', 'Klara Straße 2465', 'NULL', '1 (11) 500 555-0178', '2013-12-11', '0-1 Miles'], ['21829', '270', 'AW00021829', 'NULL', 'Carolyn', 'NULL', 'Rana', '0', '1960-07-17', 'M', 'NULL', 'F', 'carolyn10@adventure-works.com', '170000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '4', '5119 Valley Run', 'NULL', '1 (11) 500 555-0129', '2013-10-12', '5-10 Miles'], ['21830', '272', 'AW00021830', 'NULL', 'Briana', 'NULL', 'Alonso', '0', '1961-04-15', 'M', 'NULL', 'F', 'briana8@adventure-works.com', '170000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5493 Gonzalez Ct', 'NULL', '1 (11) 500 555-0148', '2013-06-10', '5-10 Miles'], ['21831', '189', 'AW00021831', 'NULL', 'Yolanda', 'NULL', 'Anand', '0', '1965-08-30', 'M', 'NULL', 'F', 'yolanda21@adventure-works.com', '80000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '421, rue de Terre Neuve', 'NULL', '1 (11) 500 555-0123', '2013-10-06', '10+ Miles'], ['21832', '188', 'AW00021832', 'NULL', 'Pedro', 'S', 'Gill', '0', '1949-10-25', 'M', 'NULL', 'M', 'pedro34@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8482, rue des Grands Champs', 'NULL', '1 (11) 500 555-0198', '2014-01-15', '10+ Miles'], ['21833', '130', 'AW00021833', 'NULL', 'Terrance', 'B', 'Gonzalez', '0', '1955-06-16', 'S', 'NULL', 'M', 'terrance16@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Marienplatz 33651', 'NULL', '1 (11) 500 555-0168', '2013-12-09', '2-5 Miles'], ['21834', '120', 'AW00021834', 'NULL', 'Jillian', 'H', 'Mehta', '0', '1955-08-04', 'M', 'NULL', 'F', 'jillian14@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Helsenbergbogen 2', 'NULL', '1 (11) 500 555-0161', '2013-10-02', '10+ Miles'], ['21835', '175', 'AW00021835', 'NULL', 'Susan', 'NULL', 'Sun', '0', '1949-10-20', 'M', 'NULL', 'F', 'susan23@adventure-works.com', '120000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', 'Marienplatz 46464', 'NULL', '1 (11) 500 555-0196', '2013-12-09', '10+ Miles'], ['21836', '162', 'AW00021836', 'NULL', 'Kristi', 'NULL', 'Raman', '0', '1950-01-08', 'M', 'NULL', 'F', 'kristi29@adventure-works.com', '120000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', 'Celler Weg 14', 'NULL', '1 (11) 500 555-0152', '2013-07-26', '5-10 Miles'], ['21837', '131', 'AW00021837', 'NULL', 'Megan', 'NULL', 'Alexander', '0', '1951-01-21', 'M', 'NULL', 'F', 'megan66@adventure-works.com', '80000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Auf dem Ufer 224', 'NULL', '1 (11) 500 555-0110', '2014-01-04', '2-5 Miles'], ['21838', '173', 'AW00021838', 'NULL', 'Gerald', 'C', 'Ruiz', '0', '1951-03-02', 'M', 'NULL', 'M', 'gerald10@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Hochstr 2777', 'NULL', '1 (11) 500 555-0187', '2013-06-11', '10+ Miles'], ['21839', '241', 'AW00021839', 'NULL', 'Billy', 'NULL', 'Diaz', '0', '1956-10-16', 'M', 'NULL', 'M', 'billy4@adventure-works.com', '110000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '851 Solano Drive', 'NULL', '1 (11) 500 555-0169', '2013-08-27', '10+ Miles'], ['21840', '258', 'AW00021840', 'NULL', 'Stacey', 'NULL', 'Ma', '0', '1951-05-09', 'M', 'NULL', 'F', 'stacey17@adventure-works.com', '130000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '6212 Alpine Drive', 'NULL', '1 (11) 500 555-0111', '2013-02-02', '5-10 Miles'], ['21841', '278', 'AW00021841', 'NULL', 'Lindsay', 'NULL', 'Nath', '0', '1950-12-10', 'M', 'NULL', 'F', 'lindsay18@adventure-works.com', '160000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '2152 Zartop Street', 'NULL', '1 (11) 500 555-0145', '2013-07-19', '5-10 Miles'], ['21842', '147', 'AW00021842', 'NULL', 'Neil', 'L', 'Navarro', '0', '1952-05-13', 'M', 'NULL', 'M', 'neil9@adventure-works.com', '100000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', 'Viktoria-Luise-Platz 442', 'NULL', '1 (11) 500 555-0163', '2013-09-13', '10+ Miles'], ['21843', '158', 'AW00021843', 'NULL', 'Erica', 'F', 'He', '0', '1952-04-01', 'S', 'NULL', 'F', 'erica17@adventure-works.com', '110000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', 'Buergermeister-ulrich-str 433', 'NULL', '1 (11) 500 555-0133', '2013-04-06', '10+ Miles'], ['21844', '120', 'AW00021844', 'NULL', 'James', 'Y', 'Long', '0', '1959-10-05', 'M', 'NULL', 'M', 'james25@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', 'Residenz Straße 944', 'NULL', '1 (11) 500 555-0118', '2013-07-28', '2-5 Miles'], ['21845', '184', 'AW00021845', 'NULL', 'Cameron', 'NULL', 'Miller', '0', '1959-10-31', 'M', 'NULL', 'M', 'cameron46@adventure-works.com', '100000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '877, avenue de Villiers', 'NULL', '1 (11) 500 555-0169', '2013-03-29', '2-5 Miles'], ['21846', '121', 'AW00021846', 'NULL', 'Kevin', 'NULL', 'Patterson', '0', '1960-05-08', 'M', 'NULL', 'M', 'kevin13@adventure-works.com', '110000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Charlottenstr 844', 'NULL', '1 (11) 500 555-0164', '2013-03-15', '10+ Miles'], ['21847', '249', 'AW00021847', 'NULL', 'Dominic', 'F', 'Madan', '0', '1959-11-23', 'S', 'NULL', 'M', 'dominic7@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '1', '9680 Hungry Road', 'NULL', '1 (11) 500 555-0166', '2013-07-24', '0-1 Miles'], ['21848', '248', 'AW00021848', 'NULL', 'Jerry', 'E', 'Raje', '0', '1958-07-27', 'M', 'NULL', 'M', 'jerry15@adventure-works.com', '130000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '5023 Orangewood Court', 'NULL', '1 (11) 500 555-0169', '2013-06-15', '10+ Miles'], ['21849', '210', 'AW00021849', 'NULL', 'Todd', 'NULL', 'Chow', '0', '1957-07-12', 'M', 'NULL', 'M', 'todd4@adventure-works.com', '80000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2408, rue Maillard', 'NULL', '1 (11) 500 555-0182', '2013-03-22', '10+ Miles'], ['21850', '197', 'AW00021850', 'NULL', 'Bruce', 'NULL', 'Subram', '0', '1957-03-13', 'M', 'NULL', 'M', 'bruce12@adventure-works.com', '80000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '215, avenue du Québec', 'NULL', '1 (11) 500 555-0198', '2013-09-23', '2-5 Miles'], ['21851', '131', 'AW00021851', 'NULL', 'Stuart', 'W', 'Railson', '0', '1957-03-06', 'M', 'NULL', 'M', 'stuart3@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Karl Liebknecht str 299', 'NULL', '1 (11) 500 555-0134', '2013-03-25', '10+ Miles'], ['21852', '133', 'AW00021852', 'NULL', 'Eduardo', 'Q', 'Johnson', '0', '1957-01-29', 'M', 'NULL', 'M', 'eduardo1@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', 'Hochstr 8444', 'NULL', '1 (11) 500 555-0188', '2013-08-12', '2-5 Miles'], ['21853', '175', 'AW00021853', 'NULL', 'Stacy', 'L', 'Gutierrez', '0', '1956-07-17', 'M', 'NULL', 'F', 'stacy11@adventure-works.com', '100000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', 'Lützowplatz 4642', 'NULL', '1 (11) 500 555-0115', '2013-08-31', '5-10 Miles'], ['21854', '247', 'AW00021854', 'NULL', 'Theresa', 'NULL', 'Schmidt', '0', '1956-09-17', 'M', 'NULL', 'F', 'theresa16@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '3083 Boatwright Dr.', 'NULL', '1 (11) 500 555-0185', '2013-10-30', '10+ Miles'], ['21855', '276', 'AW00021855', 'NULL', 'Paula', 'B', 'Martin', '0', '1962-08-08', 'M', 'NULL', 'F', 'paula3@adventure-works.com', '170000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '4', '9424 Athens Circle', 'NULL', '1 (11) 500 555-0169', '2013-08-19', '10+ Miles'], ['21856', '242', 'AW00021856', 'NULL', 'Emmanuel', 'F', 'Sanchez', '0', '1955-11-08', 'M', 'NULL', 'M', 'emmanuel18@adventure-works.com', '120000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '3', '4837 Melrose Place', 'NULL', '1 (11) 500 555-0197', '2013-10-20', '10+ Miles'], ['21857', '253', 'AW00021857', 'NULL', 'Jay', 'A', 'Dominguez', '0', '1955-07-20', 'S', 'NULL', 'M', 'jay42@adventure-works.com', '150000.00', '4', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '6928 Woodland Drive', 'NULL', '1 (11) 500 555-0196', '2013-01-24', '0-1 Miles'], ['21858', '257', 'AW00021858', 'NULL', 'Curtis', 'N', 'Lin', '0', '1971-08-08', 'S', 'NULL', 'M', 'curtis7@adventure-works.com', '160000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '5004 Mazatlan', 'NULL', '1 (11) 500 555-0115', '2013-01-20', '0-1 Miles'], ['21859', '215', 'AW00021859', 'NULL', 'Monica', 'NULL', 'Kim', '0', '1954-02-13', 'S', 'NULL', 'F', 'monica1@adventure-works.com', '70000.00', '5', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6, rue Philibert-Delorme', 'NULL', '1 (11) 500 555-0118', '2013-08-18', '10+ Miles'], ['21860', '211', 'AW00021860', 'NULL', 'Jacquelyn', 'NULL', 'Gill', '0', '1959-01-07', 'M', 'NULL', 'F', 'jacquelyn14@adventure-works.com', '80000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '75, rue de Cambrai', 'NULL', '1 (11) 500 555-0130', '2013-08-03', '5-10 Miles'], ['21861', '199', 'AW00021861', 'NULL', 'Kari', 'NULL', 'Romero', '0', '1954-04-25', 'M', 'NULL', 'F', 'kari29@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '2, rue de Fontfroide', 'NULL', '1 (11) 500 555-0185', '2013-01-31', '10+ Miles'], ['21862', '206', 'AW00021862', 'NULL', 'Michele', 'C', 'Prasad', '0', '1954-03-04', 'M', 'NULL', 'F', 'michele24@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '10, avenue du Port', 'NULL', '1 (11) 500 555-0168', '2013-05-23', '10+ Miles'], ['21863', '134', 'AW00021863', 'NULL', 'Shawna', 'P', 'Anand', '0', '1959-08-19', 'S', 'NULL', 'F', 'shawna21@adventure-works.com', '90000.00', '4', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '4', 'Hans-Rosenthal-Platz 502', 'NULL', '1 (11) 500 555-0127', '2013-04-08', '10+ Miles'], ['21864', '231', 'AW00021864', 'NULL', 'Martin', 'E', 'Lopez', '0', '1954-04-21', 'S', 'NULL', 'M', 'martin21@adventure-works.com', '100000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '6536 Diver Way', 'NULL', '1 (11) 500 555-0198', '2013-06-28', '10+ Miles'], ['21865', '251', 'AW00021865', 'NULL', 'Kathryn', 'NULL', 'Andersen', '0', '1954-05-22', 'M', 'NULL', 'F', 'kathryn11@adventure-works.com', '130000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '6999 Indianhead Ct.', 'NULL', '1 (11) 500 555-0141', '2013-05-30', '10+ Miles'], ['21866', '226', 'AW00021866', 'NULL', 'Shannon', 'C', 'Zhu', '0', '1952-08-20', 'M', 'NULL', 'F', 'shannon13@adventure-works.com', '80000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6, rue des Vendangeurs', 'NULL', '1 (11) 500 555-0183', '2013-10-23', '5-10 Miles'], ['21867', '223', 'AW00021867', 'Mr.', 'Michael', 'NULL', 'Ruggiero', '0', '1953-05-13', 'M', 'NULL', 'M', 'michael23@adventure-works.com', '90000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5501, rue Lauriston', 'NULL', '227-555-0100', '2013-09-09', '10+ Miles'], ['21868', '153', 'AW00021868', 'NULL', 'Aimee', 'R', 'Ma', '0', '1952-08-02', 'M', 'NULL', 'F', 'aimee11@adventure-works.com', '100000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', 'Am Karlshof 8368', 'Verkaufsabteilung', '1 (11) 500 555-0117', '2013-02-05', '10+ Miles'], ['21869', '154', 'AW00021869', 'NULL', 'Tina', 'A', 'Prasad', '0', '1953-04-08', 'M', 'NULL', 'F', 'tina11@adventure-works.com', '100000.00', '3', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Karl Liebknecht str 399', 'NULL', '1 (11) 500 555-0120', '2013-12-01', '5-10 Miles'], ['21870', '267', 'AW00021870', 'NULL', 'Jenny', 'NULL', 'Raji', '0', '1953-03-03', 'M', 'NULL', 'F', 'jenny44@adventure-works.com', '130000.00', '5', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '8325 Newcastle Rd', 'NULL', '1 (11) 500 555-0125', '2013-11-14', '10+ Miles'], ['21871', '33', 'AW00021871', 'NULL', 'Devin', 'NULL', 'Adams', '0', '1982-05-05', 'S', 'NULL', 'M', 'devin29@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '8590 High Maple Court', 'NULL', '1 (11) 500 555-0161', '2013-12-04', '10+ Miles'], ['21872', '15', 'AW00021872', 'NULL', 'Alisha', 'C', 'Lal', '0', '1981-05-30', 'S', 'NULL', 'F', 'alisha33@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '9039 North Spoonwood Court', 'NULL', '1 (11) 500 555-0119', '2013-09-17', '2-5 Miles'], ['21873', '5', 'AW00021873', 'NULL', 'Kellie', 'I', 'Navarro', '0', '1981-01-30', 'M', 'NULL', 'F', 'kellie8@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '1164 Augustine Drive', 'NULL', '1 (11) 500 555-0157', '2012-03-23', '10+ Miles'], ['21874', '13', 'AW00021874', 'NULL', 'Brandi', 'NULL', 'Suarez', '0', '1981-11-19', 'M', 'NULL', 'F', 'brandi18@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '9825 Mt. Dell Drive', 'NULL', '1 (11) 500 555-0112', '2012-03-18', '10+ Miles'], ['21875', '15', 'AW00021875', 'NULL', 'Cedric', 'M', 'Nara', '0', '1982-02-14', 'S', 'NULL', 'M', 'cedric35@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '2257 Gate Drive', 'NULL', '1 (11) 500 555-0191', '2012-03-02', '10+ Miles'], ['21876', '10', 'AW00021876', 'NULL', 'Philip', 'P', 'Rubio', '0', '1981-10-24', 'S', 'NULL', 'M', 'philip20@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '3586 Everett Court', 'NULL', '1 (11) 500 555-0147', '2012-03-21', '10+ Miles'], ['21877', '2', 'AW00021877', 'NULL', 'Clarence', 'NULL', 'Xu', '0', '1982-02-10', 'S', 'NULL', 'M', 'clarence19@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '6403 Madhatter Circle', 'NULL', '1 (11) 500 555-0112', '2012-03-17', '10+ Miles'], ['21878', '10', 'AW00021878', 'NULL', 'Bryant', 'NULL', 'Rana', '0', '1981-10-23', 'M', 'NULL', 'M', 'bryant10@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '3748 Bellwood Dr.', 'NULL', '1 (11) 500 555-0184', '2012-03-13', '10+ Miles'], ['21879', '33', 'AW00021879', 'NULL', 'Louis', 'NULL', 'Ma', '0', '1980-04-07', 'S', 'NULL', 'M', 'louis10@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '9593 Singingwood Court', 'NULL', '1 (11) 500 555-0180', '2013-10-14', '10+ Miles'], ['21880', '33', 'AW00021880', 'NULL', 'Marc', 'J', 'Gomez', '0', '1985-08-16', 'M', 'NULL', 'M', 'marc4@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '5370 Adobe Drive', 'NULL', '1 (11) 500 555-0120', '2013-08-31', '10+ Miles'], ['21881', '21', 'AW00021881', 'NULL', 'Nicole', 'NULL', 'Lewis', '0', '1981-04-14', 'S', 'NULL', 'F', 'nicole21@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '245 Blue Jay Drive', 'NULL', '1 (11) 500 555-0199', '2013-09-18', '10+ Miles'], ['21882', '23', 'AW00021882', 'NULL', 'Jay', 'D', 'Ramos', '0', '1981-03-22', 'S', 'NULL', 'M', 'jay47@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '4887 Babbe Street', 'NULL', '1 (11) 500 555-0121', '2012-03-29', '10+ Miles'], ['21883', '39', 'AW00021883', 'NULL', 'Patricia', 'R', 'Kapoor', '0', '1979-09-04', 'S', 'NULL', 'F', 'patricia6@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '799 Northwood Drive', 'NULL', '1 (11) 500 555-0146', '2013-02-02', '10+ Miles'], ['21884', '18', 'AW00021884', 'NULL', 'Tabitha', 'A', 'Gutierrez', '0', '1979-01-05', 'M', 'NULL', 'F', 'tabitha31@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '3973 Via Cordona Ln.', 'NULL', '1 (11) 500 555-0110', '2013-10-06', '10+ Miles'], ['21885', '13', 'AW00021885', 'NULL', 'Rafael', 'A', 'Xu', '0', '1980-06-03', 'S', 'NULL', 'M', 'rafael13@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '1753 Camby Rd.', 'NULL', '1 (11) 500 555-0129', '2012-03-16', '10+ Miles'], ['21886', '10', 'AW00021886', 'NULL', 'Jill', 'NULL', 'Carlson', '0', '1979-11-07', 'S', 'NULL', 'F', 'jill26@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '2', '3393 Alpha Way', 'NULL', '1 (11) 500 555-0176', '2012-03-11', '10+ Miles'], ['21887', '31', 'AW00021887', 'NULL', 'Ashley', 'D', 'White', '0', '1977-11-09', 'M', 'NULL', 'F', 'ashley13@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '25 Glenellen Court', 'NULL', '1 (11) 500 555-0132', '2013-02-04', '10+ Miles'], ['21888', '23', 'AW00021888', 'NULL', 'Evan', 'L', 'Edwards', '0', '1979-03-04', 'S', 'NULL', 'M', 'evan25@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '2', '4976 Singingwood Court', 'NULL', '1 (11) 500 555-0118', '2012-03-05', '10+ Miles'], ['21889', '4', 'AW00021889', 'NULL', 'Sheila', 'L', 'Navarro', '0', '1979-02-14', 'M', 'NULL', 'F', 'sheila10@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', '1671 Via Del Verdes', 'NULL', '1 (11) 500 555-0118', '2012-03-10', '10+ Miles'], ['21890', '3', 'AW00021890', 'NULL', 'Tiffany', 'B', 'Zeng', '0', '1978-08-05', 'M', 'NULL', 'F', 'tiffany23@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '1301 Burwood Way', 'NULL', '1 (11) 500 555-0124', '2013-07-27', '10+ Miles'], ['21891', '5', 'AW00021891', 'NULL', 'Dawn', 'M', 'Nara', '0', '1977-12-21', 'M', 'NULL', 'F', 'dawn41@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '3071 Asilomar', 'NULL', '1 (11) 500 555-0189', '2012-03-17', '10+ Miles'], ['21892', '16', 'AW00021892', 'NULL', 'Joan', 'J', 'Hernandez', '0', '1977-02-22', 'M', 'NULL', 'F', 'joan15@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '2526 Sharon Dr.', 'NULL', '1 (11) 500 555-0111', '2012-03-08', '10+ Miles'], ['21893', '7', 'AW00021893', 'NULL', 'Brandi', 'C', 'Hernandez', '0', '1976-12-12', 'S', 'NULL', 'F', 'brandi4@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '1617 Cunningham Way', 'NULL', '1 (11) 500 555-0187', '2012-03-02', '10+ Miles'], ['21894', '31', 'AW00021894', 'NULL', 'David', 'A', 'Li', '0', '1981-11-09', 'S', 'NULL', 'M', 'david58@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '2461 Prancing Drive', 'NULL', '1 (11) 500 555-0188', '2012-03-25', '10+ Miles'], ['21895', '23', 'AW00021895', 'NULL', 'Kaylee', 'L', 'Gonzalez', '0', '1981-10-05', 'S', 'NULL', 'F', 'kaylee30@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '6977 Evergreen Ct.', 'NULL', '1 (11) 500 555-0179', '2012-03-05', '10+ Miles'], ['21896', '34', 'AW00021896', 'NULL', 'Roy', 'NULL', 'Subram', '0', '1976-01-23', 'M', 'NULL', 'M', 'roy13@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '2360 Cobblestone Ct.', 'NULL', '1 (11) 500 555-0165', '2013-06-06', '10+ Miles'], ['21897', '17', 'AW00021897', 'NULL', 'Francisco', 'A', 'Subram', '0', '1977-04-18', 'M', 'NULL', 'M', 'francisco14@adventure-works.com', '110000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '4', '9206 West Rd.', 'NULL', '1 (11) 500 555-0112', '2012-03-28', '10+ Miles'], ['21898', '33', 'AW00021898', 'NULL', 'Devon', 'D', 'Raji', '0', '1976-08-04', 'M', 'NULL', 'M', 'devon18@adventure-works.com', '110000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '2497 Hazel Drive', 'NULL', '1 (11) 500 555-0110', '2013-11-02', '10+ Miles'], ['21899', '6', 'AW00021899', 'NULL', 'Marie', 'NULL', 'Vazquez', '0', '1982-04-06', 'M', 'NULL', 'F', 'marie38@adventure-works.com', '110000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '3733 Water Street', 'NULL', '1 (11) 500 555-0136', '2012-03-03', '10+ Miles'], ['21900', '536', 'AW00021900', 'NULL', 'Robert', 'NULL', 'Jones', '0', '1980-10-14', 'S', 'NULL', 'M', 'robert87@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9011 Santa Lucia Dr.', 'NULL', '360-555-0153', '2013-06-02', '2-5 Miles'], ['21901', '542', 'AW00021901', 'NULL', 'Elizabeth', 'P', 'Taylor', '0', '1969-11-21', 'M', 'NULL', 'F', 'elizabeth13@adventure-works.com', '90000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '2680 Corte Del Sol', 'NULL', '439-555-0176', '2014-01-02', '0-1 Miles'], ['21902', '325', 'AW00021902', 'NULL', 'Natalie', 'M', 'James', '0', '1981-03-16', 'S', 'NULL', 'F', 'natalie20@adventure-works.com', '130000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '1277 Army Dr.', 'NULL', '344-555-0196', '2013-11-02', '1-2 Miles'], ['21903', '368', 'AW00021903', 'NULL', 'Fernando', 'J', 'Jenkins', '0', '1962-01-12', 'S', 'NULL', 'M', 'fernando50@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '198 Edie Ct.', 'NULL', '208-555-0178', '2013-03-17', '5-10 Miles'], ['21904', '52', 'AW00021904', 'NULL', 'Chase', 'NULL', 'Sandberg', '0', '1967-02-04', 'M', 'NULL', 'M', 'chase4@adventure-works.com', '70000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '4144 Mary Dr.', 'NULL', '780-555-0190', '2013-09-06', '5-10 Miles'], ['21905', '609', 'AW00021905', 'NULL', 'Pedro', 'NULL', 'Hernandez', '0', '1940-03-18', 'M', 'NULL', 'M', 'pedro24@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '428 Del Monte Court', 'NULL', '332-555-0111', '2013-07-18', '1-2 Miles'], ['21906', '609', 'AW00021906', 'NULL', 'Miranda', 'L', 'Simmons', '0', '1939-08-05', 'M', 'NULL', 'F', 'miranda15@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4340 Lagoon Court', 'NULL', '432-555-0140', '2013-08-20', '1-2 Miles'], ['21907', '616', 'AW00021907', 'NULL', 'Jordan', 'NULL', 'Hall', '0', '1940-02-17', 'M', 'NULL', 'F', 'jordan51@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4095 Minert Rd.', 'NULL', '167-555-0166', '2013-09-12', '5-10 Miles'], ['21908', '546', 'AW00021908', 'NULL', 'Isabel', 'NULL', 'Hayes', '0', '1939-12-30', 'M', 'NULL', 'F', 'isabel21@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2208 Mauna Kea Court', 'NULL', '982-555-0147', '2013-08-12', '1-2 Miles'], ['21909', '352', 'AW00021909', 'NULL', 'Allison', 'NULL', 'Ward', '0', '1939-12-22', 'M', 'NULL', 'F', 'allison11@adventure-works.com', '160000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '1841 Precipice Drive', 'NULL', '794-555-0174', '2013-03-13', '1-2 Miles'], ['21910', '154', 'AW00021910', 'NULL', 'Rebekah', 'C', 'Perez', '0', '1985-08-13', 'S', 'NULL', 'F', 'rebekah19@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Höhenstr 9415', 'NULL', '1 (11) 500 555-0151', '2013-12-14', '2-5 Miles'], ['21911', '223', 'AW00021911', 'NULL', 'Joan', 'B', 'Ross', '0', '1986-06-22', 'S', 'NULL', 'F', 'joan8@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '8101bis, boulevard Saint Germain', 'NULL', '1 (11) 500 555-0125', '2013-07-08', '0-1 Miles'], ['21912', '186', 'AW00021912', 'NULL', 'Colleen', 'R', 'Kumar', '0', '1985-09-18', 'S', 'NULL', 'F', 'colleen32@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '2, avenue de Norvege', 'NULL', '1 (11) 500 555-0190', '2013-05-12', '1-2 Miles'], ['21913', '212', 'AW00021913', 'NULL', 'Arthur', 'NULL', 'Blanco', '0', '1985-11-24', 'S', 'NULL', 'M', 'arthur40@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '8383, place du Tertre', 'NULL', '1 (11) 500 555-0147', '2013-12-22', '1-2 Miles'], ['21914', '120', 'AW00021914', 'NULL', 'Emily', 'NULL', 'Brown', '0', '1985-08-18', 'S', 'NULL', 'F', 'emily4@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Postfach 22 99 99', 'NULL', '1 (11) 500 555-0121', '2013-04-20', '0-1 Miles'], ['21915', '360', 'AW00021915', 'NULL', 'Tristan', 'M', 'Wood', '0', '1967-10-29', 'M', 'NULL', 'M', 'tristan2@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4580 Duck Horn Court', 'NULL', '756-555-0133', '2013-03-11', '2-5 Miles'], ['21916', '68', 'AW00021916', 'NULL', 'Jesse', 'NULL', 'Evans', '0', '1972-02-05', 'M', 'NULL', 'M', 'jesse24@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8533 Valley Oak Plaza', 'NULL', '309-555-0152', '2013-08-14', '0-1 Miles'], ['21917', '355', 'AW00021917', 'NULL', 'Dalton', 'NULL', 'Johnson', '0', '1977-12-18', 'M', 'NULL', 'M', 'dalton1@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '4284 Boynton Avenue', 'NULL', '130-555-0125', '2013-06-03', '10+ Miles'], ['21918', '311', 'AW00021918', 'NULL', 'Carol', 'NULL', 'Serrano', '0', '1967-05-03', 'S', 'NULL', 'F', 'carol11@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '16 White Pl.', 'NULL', '362-555-0117', '2013-01-30', '5-10 Miles'], ['21919', '611', 'AW00021919', 'NULL', 'Melissa', 'D', 'Howard', '0', '1967-02-04', 'M', 'NULL', 'F', 'melissa33@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7350 Bluejay Dr', 'NULL', '624-555-0115', '2013-11-24', '2-5 Miles'], ['21920', '335', 'AW00021920', 'NULL', 'Destiny', 'NULL', 'Bennett', '0', '1966-08-15', 'M', 'NULL', 'F', 'destiny49@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9875 Prestwick Court', 'NULL', '566-555-0180', '2013-11-24', '2-5 Miles'], ['21921', '59', 'AW00021921', 'NULL', 'Lucas', 'T', 'Collins', '0', '1967-01-30', 'M', 'NULL', 'M', 'lucas12@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8108 Abbey Court', 'NULL', '367-555-0120', '2011-02-20', '0-1 Miles'], ['21922', '374', 'AW00021922', 'NULL', 'Bailey', 'L', 'Ward', '0', '1967-05-23', 'M', 'NULL', 'F', 'bailey9@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1796 Hamlet', 'NULL', '643-555-0165', '2013-11-06', '2-5 Miles'], ['21923', '637', 'AW00021923', 'NULL', 'Justin', 'NULL', 'Williams', '0', '1967-01-17', 'M', 'NULL', 'M', 'justin33@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9473 Wawona Lane', 'NULL', '939-555-0154', '2013-12-06', '0-1 Miles'], ['21924', '648', 'AW00021924', 'NULL', 'Eduardo', 'NULL', 'Cook', '0', '1971-03-10', 'M', 'NULL', 'M', 'eduardo88@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4989 Ridge Park Dr.', 'NULL', '890-555-0145', '2013-12-26', '2-5 Miles'], ['21925', '49', 'AW00021925', 'NULL', 'Tabitha', 'T', 'Dominguez', '0', '1966-01-30', 'S', 'NULL', 'F', 'tabitha33@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '8108 Abbey Court', 'NULL', '286-555-0119', '2014-01-01', '0-1 Miles'], ['21926', '553', 'AW00021926', 'NULL', 'Melanie', 'NULL', 'Henderson', '0', '1973-01-11', 'S', 'NULL', 'F', 'melanie20@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '7459 Davis Ave', 'NULL', '292-555-0135', '2013-12-08', '2-5 Miles'], ['21927', '310', 'AW00021927', 'NULL', 'Meredith', 'NULL', 'Browning', '0', '1973-03-15', 'S', 'NULL', 'F', 'meredith39@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '6453 Pacific', 'NULL', '240-555-0117', '2013-12-24', '2-5 Miles'], ['21928', '310', 'AW00021928', 'NULL', 'Karl', 'L', 'Luo', '0', '1972-08-30', 'S', 'NULL', 'M', 'karl6@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '5581 Stanford Street', 'NULL', '830-555-0162', '2013-12-08', '2-5 Miles'], ['21929', '312', 'AW00021929', 'NULL', 'Karen', 'M', 'Perry', '0', '1984-05-14', 'S', 'NULL', 'F', 'karen36@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '7791 Black Pine Lane', 'NULL', '141-555-0111', '2013-12-05', '2-5 Miles'], ['21930', '325', 'AW00021930', 'NULL', 'Marissa', 'NULL', 'Perry', '0', '1984-01-20', 'S', 'NULL', 'F', 'marissa5@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '8021 Dallas Drive', 'NULL', '162-555-0133', '2013-12-12', '2-5 Miles'], ['21931', '360', 'AW00021931', 'NULL', 'Marcus', 'L', 'Wood', '0', '1966-03-20', 'M', 'NULL', 'M', 'marcus51@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '8074 Oakmead', 'NULL', '387-555-0136', '2013-12-12', '0-1 Miles'], ['21932', '310', 'AW00021932', 'NULL', 'Leonard', 'NULL', 'Kumar', '0', '1970-12-10', 'M', 'NULL', 'M', 'leonard9@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7127 Los Gatos Court', 'NULL', '129-555-0139', '2013-12-17', '2-5 Miles'], ['21933', '358', 'AW00021933', 'NULL', 'Nicole', 'I', 'Martin', '0', '1965-04-01', 'M', 'NULL', 'F', 'nicole15@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '6866 Winterberry Ct.', 'NULL', '378-555-0161', '2013-11-23', '2-5 Miles'], ['21934', '325', 'AW00021934', 'NULL', 'Jennifer', 'A', 'Cox', '0', '1964-12-07', 'M', 'NULL', 'F', 'jennifer64@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '7128 Joan Ave.', 'NULL', '589-555-0184', '2013-08-19', '0-1 Miles'], ['21935', '644', 'AW00021935', 'NULL', 'Victoria', 'NULL', 'Simmons', '0', '1970-07-24', 'M', 'NULL', 'F', 'victoria62@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '845 Olive Ave', 'NULL', '992-555-0163', '2014-01-02', '0-1 Miles'], ['21936', '301', 'AW00021936', 'NULL', 'Emma', 'H', 'Reed', '0', '1970-12-11', 'M', 'NULL', 'F', 'emma28@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '1191 Boxwood Dr.', 'NULL', '572-555-0116', '2013-09-01', '0-1 Miles'], ['21937', '359', 'AW00021937', 'NULL', 'Morgan', 'C', 'Ross', '0', '1970-11-23', 'S', 'NULL', 'F', 'morgan73@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '8314 Brandywine Way', 'NULL', '520-555-0181', '2013-12-05', '2-5 Miles'], ['21938', '545', 'AW00021938', 'NULL', 'Savannah', 'K', 'Hall', '0', '1970-06-09', 'M', 'NULL', 'F', 'savannah45@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '239 Crown Court', 'NULL', '812-555-0162', '2013-08-13', '2-5 Miles'], ['21939', '51', 'AW00021939', 'NULL', 'Thomas', 'J', 'Roberts', '0', '1970-03-07', 'M', 'NULL', 'M', 'thomas41@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '448 Roanoke Dr.', 'NULL', '874-555-0175', '2011-02-09', '2-5 Miles'], ['21940', '312', 'AW00021940', 'NULL', 'Alejandro', 'T', 'Sharma', '0', '1965-01-20', 'M', 'NULL', 'M', 'alejandro36@adventure-works.com', '90000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8998 Adobe Drive', 'NULL', '922-555-0153', '2013-03-21', '0-1 Miles'], ['21941', '369', 'AW00021941', 'NULL', 'Gail', 'NULL', 'Moore', '0', '1963-08-19', 'S', 'NULL', 'F', 'gail3@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4037 Trasher Road', 'NULL', '155-555-0169', '2013-12-01', '0-1 Miles'], ['21942', '626', 'AW00021942', 'NULL', 'Julia', 'M', 'Roberts', '0', '1964-03-04', 'M', 'NULL', 'F', 'julia10@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4249 Heights Ave.', 'NULL', '387-555-0169', '2013-03-04', '0-1 Miles'], ['21943', '19', 'AW00021943', 'NULL', 'Cindy', 'A', 'Mehta', '0', '1975-02-05', 'S', 'NULL', 'F', 'cindy14@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '4835 Bell Dr.', 'NULL', '1 (11) 500 555-0176', '2012-03-23', '0-1 Miles'], ['21944', '8', 'AW00021944', 'NULL', 'Daisy', 'NULL', 'Jiménez', '0', '1980-09-16', 'M', 'NULL', 'F', 'daisy2@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '3499 Parkway Drive', 'Apt. A', '1 (11) 500 555-0171', '2012-03-15', '0-1 Miles'], ['21945', '37', 'AW00021945', 'Ms.', 'Pearlie', 'J.', 'Rusek', '0', '1985-08-13', 'S', 'NULL', 'F', 'pearlie0@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '5154 Brannan Pl.', 'NULL', '633-555-0100', '2012-03-02', '0-1 Miles'], ['21946', '13', 'AW00021946', 'NULL', 'Michele', 'NULL', 'Deng', '0', '1974-07-03', 'M', 'NULL', 'F', 'michele1@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '24 Roslyn Drive', 'NULL', '1 (11) 500 555-0199', '2012-03-09', '1-2 Miles'], ['21947', '37', 'AW00021947', 'NULL', 'Diane', 'F', 'Romero', '0', '1975-04-08', 'M', 'NULL', 'F', 'diane14@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '5070 Via Alta', 'NULL', '1 (11) 500 555-0182', '2012-03-23', '0-1 Miles'], ['21948', '29', 'AW00021948', 'NULL', 'Ann', 'NULL', 'Madan', '0', '1974-10-10', 'M', 'NULL', 'F', 'ann13@adventure-works.com', '100000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '3330 Hawes Street', 'NULL', '1 (11) 500 555-0137', '2012-03-03', '0-1 Miles'], ['21949', '28', 'AW00021949', 'NULL', 'Clayton', 'NULL', 'Chavez', '0', '1980-09-23', 'S', 'NULL', 'M', 'clayton33@adventure-works.com', '100000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '0', '8109 Live Oak Ave.', 'NULL', '1 (11) 500 555-0172', '2012-03-24', '0-1 Miles'], ['21950', '4', 'AW00021950', 'NULL', 'Armando', 'NULL', 'Hernandez', '0', '1974-10-03', 'S', 'NULL', 'M', 'armando4@adventure-works.com', '100000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '1596 Brown Dr', 'NULL', '1 (11) 500 555-0182', '2012-03-13', '0-1 Miles'], ['21951', '23', 'AW00021951', 'NULL', 'Orlando', 'C', 'Hernandez', '0', '1981-11-23', 'S', 'NULL', 'M', 'orlando4@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '5929 William Reed Dr.', 'NULL', '1 (11) 500 555-0186', '2012-03-07', '0-1 Miles'], ['21952', '34', 'AW00021952', 'NULL', 'Latasha', 'NULL', 'Vazquez', '0', '1974-01-03', 'S', 'NULL', 'F', 'latasha14@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '8020 Gladstone Drive', 'NULL', '1 (11) 500 555-0125', '2013-05-28', '10+ Miles'], ['21953', '36', 'AW00021953', 'NULL', 'Marvin', 'K', 'Vazquez', '0', '1973-01-18', 'M', 'NULL', 'M', 'marvin15@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '2117 Mt Whitney', 'NULL', '1 (11) 500 555-0140', '2013-04-21', '10+ Miles'], ['21954', '31', 'AW00021954', 'NULL', 'Yolanda', 'NULL', 'Andersen', '0', '1978-05-20', 'S', 'NULL', 'F', 'yolanda12@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '2368 Olivera Rd', 'NULL', '1 (11) 500 555-0163', '2013-12-31', '10+ Miles'], ['21955', '7', 'AW00021955', 'NULL', 'Jenny', 'NULL', 'Ferrier', '0', '1975-02-19', 'S', 'NULL', 'F', 'jenny45@adventure-works.com', '110000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '2934 Treat Blvd', 'NULL', '1 (11) 500 555-0166', '2012-03-15', '5-10 Miles'], ['21956', '10', 'AW00021956', 'NULL', 'Jay', 'F', 'Kapoor', '0', '1975-04-15', 'S', 'NULL', 'M', 'jay7@adventure-works.com', '120000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '6011 Driftwood Dr.', 'NULL', '1 (11) 500 555-0159', '2012-03-12', '1-2 Miles'], ['21957', '12', 'AW00021957', 'NULL', 'Kathryn', 'R', 'Shen', '0', '1974-11-15', 'M', 'NULL', 'F', 'kathryn2@adventure-works.com', '120000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '1047 Las Quebradas Lane', 'NULL', '1 (11) 500 555-0151', '2012-03-08', '2-5 Miles'], ['21958', '16', 'AW00021958', 'NULL', 'Mallory', 'NULL', 'Blanco', '0', '1975-04-18', 'S', 'NULL', 'F', 'mallory2@adventure-works.com', '130000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '0', '4127 Esperanza Drive', 'NULL', '1 (11) 500 555-0137', '2012-03-24', '0-1 Miles'], ['21959', '18', 'AW00021959', 'NULL', 'Jimmy', 'NULL', 'Dominguez', '0', '1975-01-13', 'M', 'NULL', 'M', 'jimmy16@adventure-works.com', '130000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '3397 C Olivera Rd', 'NULL', '1 (11) 500 555-0145', '2012-03-16', '2-5 Miles'], ['21960', '33', 'AW00021960', 'NULL', 'Dawn', 'C', 'Liu', '0', '1972-08-17', 'M', 'NULL', 'F', 'dawn5@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '5878 Scenic Avenue', 'NULL', '1 (11) 500 555-0191', '2013-09-13', '10+ Miles'], ['21961', '24', 'AW00021961', 'NULL', 'Chelsea', 'NULL', 'Garcia', '0', '1978-04-16', 'M', 'NULL', 'F', 'chelsea16@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '3331 Algiers Dr.', 'NULL', '1 (11) 500 555-0194', '2013-03-02', '10+ Miles'], ['21962', '36', 'AW00021962', 'NULL', 'Kristi', 'M', 'Smith', '0', '1972-10-28', 'S', 'NULL', 'F', 'kristi25@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4580 Duck Horn Court', 'NULL', '1 (11) 500 555-0131', '2013-02-27', '0-1 Miles'], ['21963', '9', 'AW00021963', 'NULL', 'Jacquelyn', 'NULL', 'Serrano', '0', '1978-08-19', 'M', 'NULL', 'F', 'jacquelyn17@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6090 San Francisco', 'NULL', '1 (11) 500 555-0115', '2013-05-05', '0-1 Miles'], ['21964', '21', 'AW00021964', 'NULL', 'Devon', 'C', 'Nara', '0', '1973-01-30', 'M', 'NULL', 'M', 'devon14@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '5146 Shadow Falls Drive', 'NULL', '1 (11) 500 555-0174', '2013-09-22', '0-1 Miles'], ['21965', '37', 'AW00021965', 'NULL', 'Bethany', 'L', 'Raheem', '0', '1972-02-21', 'M', 'NULL', 'F', 'bethany21@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '1839 Kelly', 'NULL', '1 (11) 500 555-0125', '2013-11-17', '0-1 Miles'], ['21966', '38', 'AW00021966', 'NULL', 'Ross', 'A', 'Sai', '0', '1972-04-25', 'M', 'NULL', 'M', 'ross5@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '1368 Palms Drive', 'NULL', '1 (11) 500 555-0172', '2012-04-17', '2-5 Miles'], ['21967', '19', 'AW00021967', 'NULL', 'Charles', 'E', 'Sanders', '0', '1970-10-07', 'M', 'NULL', 'M', 'charles50@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '807 Winton Dr.', 'NULL', '1 (11) 500 555-0189', '2013-11-30', '2-5 Miles'], ['21968', '29', 'AW00021968', 'NULL', 'Jaime', 'R', 'Deng', '0', '1974-02-01', 'S', 'NULL', 'M', 'jaime25@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1924 Coldwater Drive', 'NULL', '1 (11) 500 555-0166', '2012-04-11', '0-1 Miles'], ['21969', '7', 'AW00021969', 'NULL', 'Latoya', 'H', 'Deng', '0', '1973-09-22', 'S', 'NULL', 'F', 'latoya1@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1546 Cinnabar St.', 'NULL', '1 (11) 500 555-0175', '2012-04-27', '0-1 Miles'], ['21970', '40', 'AW00021970', 'NULL', 'Jada', 'NULL', 'Rivera', '0', '1986-02-13', 'S', 'NULL', 'F', 'jada8@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '4661 Balboa Court', 'NULL', '1 (11) 500 555-0132', '2013-11-15', '5-10 Miles'], ['21971', '23', 'AW00021971', 'NULL', 'Warren', 'NULL', 'Shan', '0', '1969-11-21', 'M', 'NULL', 'M', 'warren41@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '6144 Rising Dawn Way', 'NULL', '1 (11) 500 555-0193', '2013-07-12', '5-10 Miles'], ['21972', '2', 'AW00021972', 'NULL', 'Mandy', 'K', 'She', '0', '1975-09-29', 'M', 'NULL', 'F', 'mandy24@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '3067 Maya', 'NULL', '1 (11) 500 555-0154', '2013-05-28', '0-1 Miles'], ['21973', '28', 'AW00021973', 'NULL', 'Janet', 'R', 'Vazquez', '0', '1969-08-14', 'M', 'NULL', 'F', 'janet20@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '3312 Clear View Circle', 'NULL', '1 (11) 500 555-0142', '2013-11-26', '10+ Miles'], ['21974', '36', 'AW00021974', 'NULL', 'Whitney', 'J', 'Suri', '0', '1986-01-30', 'S', 'NULL', 'F', 'whitney0@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4659 Montoya', 'NULL', '1 (11) 500 555-0196', '2012-04-28', '5-10 Miles'], ['21975', '30', 'AW00021975', 'NULL', 'Alfredo', 'NULL', 'Ruiz', '0', '1974-01-01', 'M', 'NULL', 'M', 'alfredo3@adventure-works.com', '60000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '8769 Haven Drive', 'NULL', '1 (11) 500 555-0166', '2013-12-28', '5-10 Miles'], ['21976', '18', 'AW00021976', 'NULL', 'Jacqueline', 'NULL', 'Torres', '0', '1968-12-28', 'S', 'NULL', 'F', 'jacqueline28@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '415 Courthouse Drive', 'NULL', '1 (11) 500 555-0134', '2012-04-01', '0-1 Miles'], ['21977', '17', 'AW00021977', 'NULL', 'Phillip', 'J', 'Malhotra', '0', '1969-01-17', 'S', 'NULL', 'M', 'phillip5@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9377 Detroit Ave', 'NULL', '1 (11) 500 555-0122', '2013-06-11', '5-10 Miles'], ['21978', '15', 'AW00021978', 'NULL', 'Tracy', 'E', 'Deng', '0', '1972-09-04', 'M', 'NULL', 'F', 'tracy3@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '6045 Elwood Drive', 'NULL', '1 (11) 500 555-0157', '2013-04-22', '0-1 Miles'], ['21979', '31', 'AW00021979', 'NULL', 'Philip', 'M', 'Gutierrez', '0', '1973-09-12', 'M', 'NULL', 'M', 'philip11@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '8574 Hillview Drive', 'NULL', '1 (11) 500 555-0111', '2012-04-09', '5-10 Miles'], ['21980', '22', 'AW00021980', 'NULL', 'Beth', 'NULL', 'Moreno', '0', '1967-03-10', 'S', 'NULL', 'F', 'beth9@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9217 Juliet Court', 'NULL', '1 (11) 500 555-0131', '2012-04-05', '5-10 Miles'], ['21981', '20', 'AW00021981', 'NULL', 'Isabella', 'L', 'Henderson', '0', '1972-04-07', 'M', 'NULL', 'F', 'isabella16@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2173 Heartwood Drive', 'NULL', '1 (11) 500 555-0193', '2013-11-10', '5-10 Miles'], ['21982', '32', 'AW00021982', 'NULL', 'Deborah', 'T', 'Lal', '0', '1966-08-25', 'M', 'NULL', 'F', 'deborah13@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9471 Tobi Drive', 'NULL', '1 (11) 500 555-0174', '2012-04-25', '0-1 Miles'], ['21983', '28', 'AW00021983', 'NULL', 'Glenn', 'NULL', 'Liang', '0', '1966-09-19', 'M', 'NULL', 'M', 'glenn18@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1135 W St.', 'NULL', '1 (11) 500 555-0127', '2012-04-01', '0-1 Miles'], ['21984', '5', 'AW00021984', 'NULL', 'Kristy', 'NULL', 'Suarez', '0', '1971-02-15', 'S', 'NULL', 'F', 'kristy17@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '117 Marvello Lane', 'NULL', '1 (11) 500 555-0173', '2012-04-12', '5-10 Miles'], ['21985', '14', 'AW00021985', 'NULL', 'Eddie', 'L', 'Torres', '0', '1966-04-13', 'M', 'NULL', 'M', 'eddie12@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5248 Gladstone Drive', 'NULL', '1 (11) 500 555-0151', '2012-04-04', '5-10 Miles'], ['21986', '29', 'AW00021986', 'NULL', 'Kristi', 'l', 'Chapman', '0', '1965-12-09', 'S', 'NULL', 'F', 'kristi18@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1312 Creekside Dr.', 'NULL', '1 (11) 500 555-0132', '2012-04-09', '5-10 Miles'], ['21987', '22', 'AW00021987', 'NULL', 'Theodore', 'F', 'Dominguez', '0', '1971-06-03', 'S', 'NULL', 'M', 'theodore13@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1291 Honey Court', 'NULL', '1 (11) 500 555-0151', '2012-04-27', '5-10 Miles'], ['21988', '13', 'AW00021988', 'NULL', 'Alisha', 'M', 'Zhao', '0', '1970-10-01', 'M', 'NULL', 'F', 'alisha10@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '1848 Wharf Dr.', 'NULL', '1 (11) 500 555-0160', '2013-11-22', '0-1 Miles'], ['21989', '14', 'AW00021989', 'NULL', 'Erik', 'H', 'Jimenez', '0', '1970-09-30', 'M', 'NULL', 'M', 'erik7@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '7419 Donaleen Ct.', 'NULL', '1 (11) 500 555-0116', '2013-03-26', '1-2 Miles'], ['21990', '26', 'AW00021990', 'NULL', 'Alejandro', 'R', 'Rai', '0', '1976-03-11', 'S', 'NULL', 'M', 'alejandro42@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '3919 El Pintado Road', 'NULL', '1 (11) 500 555-0116', '2013-04-06', '1-2 Miles'], ['21991', '37', 'AW00021991', 'NULL', 'Teresa', 'NULL', 'Gill', '0', '1971-01-11', 'M', 'NULL', 'F', 'teresa14@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '5139 The Trees Dr', 'NULL', '1 (11) 500 555-0164', '2014-01-22', '0-1 Miles'], ['21992', '40', 'AW00021992', 'NULL', 'Alejandro', 'P', 'Zhang', '0', '1971-02-24', 'S', 'NULL', 'M', 'alejandro2@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '4997 Clayburn Rd', 'NULL', '1 (11) 500 555-0184', '2013-12-28', '1-2 Miles'], ['21993', '32', 'AW00021993', 'NULL', 'Craig', 'M', 'Sanz', '0', '1981-03-16', 'M', 'NULL', 'M', 'craig19@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1277 Argenta Dr.', 'NULL', '1 (11) 500 555-0176', '2013-03-08', '0-1 Miles'], ['21994', '37', 'AW00021994', 'NULL', 'Natasha', 'NULL', 'Ruiz', '0', '1964-09-09', 'S', 'NULL', 'F', 'natasha2@adventure-works.com', '90000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6778 Edie Ct.', 'NULL', '1 (11) 500 555-0143', '2012-04-01', '2-5 Miles'], ['21995', '13', 'AW00021995', 'NULL', 'Kathryn', 'C', 'Raji', '0', '1967-09-19', 'S', 'NULL', 'F', 'kathryn19@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '380 Show Rd.', 'NULL', '1 (11) 500 555-0149', '2013-08-17', '5-10 Miles'], ['21996', '22', 'AW00021996', 'NULL', 'Amy', 'NULL', 'Gao', '0', '1967-05-19', 'M', 'NULL', 'F', 'amy21@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3248 Birdhaven Court', 'NULL', '1 (11) 500 555-0186', '2012-04-14', '0-1 Miles'], ['21997', '40', 'AW00021997', 'NULL', 'Dennis', 'NULL', 'Xu', '0', '1963-09-11', 'M', 'NULL', 'M', 'dennis13@adventure-works.com', '80000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '9707 Daffodil Drive', 'NULL', '1 (11) 500 555-0116', '2013-11-03', '1-2 Miles'], ['21998', '22', 'AW00021998', 'NULL', 'Erik', 'C', 'Hernandez', '0', '1964-05-07', 'M', 'NULL', 'M', 'erik5@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9847 E. 5th Street', 'NULL', '1 (11) 500 555-0133', '2013-07-14', '5-10 Miles'], ['21999', '34', 'AW00021999', 'NULL', 'Julia', 'R', 'Barnes', '0', '1969-05-09', 'M', 'NULL', 'F', 'julia69@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '8641 Summitview Dr.', 'NULL', '1 (11) 500 555-0194', '2012-04-22', '2-5 Miles'], ['22000', '25', 'AW00022000', 'NULL', 'Cynthia', 'NULL', 'Chandra', '0', '1969-09-07', 'M', 'NULL', 'F', 'cynthia6@adventure-works.com', '100000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6440 Co Road', 'NULL', '1 (11) 500 555-0165', '2012-04-10', '0-1 Miles'], ['22001', '31', 'AW00022001', 'NULL', 'Gregory', 'J', 'Chander', '0', '1963-04-20', 'S', 'NULL', 'M', 'gregory19@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5844 Miguel Drive', 'NULL', '1 (11) 500 555-0153', '2013-05-04', '5-10 Miles'], ['22002', '7', 'AW00022002', 'NULL', 'Kristen', 'L', 'Chen', '0', '1942-02-02', 'M', 'NULL', 'F', 'kristen2@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '1354 Helene Court', 'NULL', '1 (11) 500 555-0186', '2013-08-29', '0-1 Miles'], ['22003', '38', 'AW00022003', 'NULL', 'Jill', 'NULL', 'Navarro', '0', '1942-02-20', 'M', 'NULL', 'F', 'jill17@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '1026 Mt. Wilson Pl.', 'NULL', '1 (11) 500 555-0134', '2013-07-07', '5-10 Miles'], ['22004', '2', 'AW00022004', 'NULL', 'Meghan', 'E', 'Ortega', '0', '1966-02-13', 'M', 'NULL', 'F', 'meghan21@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3030 Blackburn Ct.', 'NULL', '1 (11) 500 555-0127', '2012-04-09', '5-10 Miles'], ['22005', '35', 'AW00022005', 'NULL', 'Pamela', 'NULL', 'Mehta', '0', '1965-08-31', 'M', 'NULL', 'F', 'pamela17@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '7633 Greenhills Circle', 'NULL', '1 (11) 500 555-0157', '2013-12-27', '5-10 Miles'], ['22006', '38', 'AW00022006', 'NULL', 'Jon', 'NULL', 'Nara', '0', '1965-12-18', 'M', 'NULL', 'M', 'jon13@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '1064 Armstrong Rd.', 'NULL', '1 (11) 500 555-0147', '2013-03-18', '5-10 Miles'], ['22007', '618', 'AW00022007', 'NULL', 'Kaylee', 'T', 'Hernandez', '0', '1982-03-13', 'S', 'NULL', 'F', 'kaylee41@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8777 Olivera Rd.', 'NULL', '894-555-0144', '2013-12-10', '5-10 Miles'], ['22008', '49', 'AW00022008', 'NULL', 'Alisha', 'J', 'Ye', '0', '1980-10-05', 'S', 'NULL', 'F', 'alisha9@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9525 Canyon Way', 'NULL', '292-555-0192', '2011-02-19', '0-1 Miles'], ['22009', '312', 'AW00022009', 'NULL', 'Ross', 'NULL', 'Alvarez', '0', '1980-08-08', 'S', 'NULL', 'M', 'ross25@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '490 Sepulveda Ct.', 'NULL', '152-555-0151', '2013-03-18', '5-10 Miles'], ['22010', '302', 'AW00022010', 'NULL', 'Henry', 'M', 'Lopez', '0', '1981-01-09', 'S', 'NULL', 'M', 'henry18@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8434 Balhan Court', 'NULL', '272-555-0141', '2013-10-28', '5-10 Miles'], ['22011', '634', 'AW00022011', 'NULL', 'Richard', 'L', 'Patterson', '0', '1986-05-13', 'S', 'NULL', 'M', 'richard65@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5165 Wintergreen Court', 'NULL', '294-555-0180', '2013-11-29', '0-1 Miles'], ['22012', '310', 'AW00022012', 'NULL', 'Regina', 'NULL', 'Malhotra', '0', '1985-12-24', 'S', 'NULL', 'F', 'regina4@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3146 Rose Street', 'NULL', '349-555-0176', '2013-06-30', '0-1 Miles'], ['22013', '545', 'AW00022013', 'NULL', 'Marcus', 'L', 'Jenkins', '0', '1986-05-01', 'S', 'NULL', 'M', 'marcus56@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7260 Holly Oak Dr.', 'NULL', '393-555-0137', '2013-12-14', '0-1 Miles'], ['22014', '50', 'AW00022014', 'NULL', 'Jose', 'NULL', 'Gonzales', '0', '1985-11-16', 'S', 'NULL', 'M', 'jose11@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2206 Countrywood Ct', 'NULL', '407-555-0164', '2013-06-11', '5-10 Miles'], ['22015', '64', 'AW00022015', 'NULL', 'Mary', 'NULL', 'Turner', '0', '1986-04-14', 'M', 'NULL', 'F', 'mary18@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1178 Flora Ave.', 'NULL', '735-555-0125', '2013-07-08', '5-10 Miles'], ['22016', '612', 'AW00022016', 'NULL', 'Terrence', 'E', 'Andersen', '0', '1986-04-21', 'S', 'NULL', 'M', 'terrence13@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7651 Smiling Tree Court', 'Space 55', '159-555-0162', '2013-12-25', '0-1 Miles'], ['22017', '8', 'AW00022017', 'NULL', 'Sharon', 'F', 'She', '0', '1943-06-08', 'M', 'NULL', 'F', 'sharon6@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5878 Arcadia Pl.', 'NULL', '1 (11) 500 555-0190', '2013-06-05', '5-10 Miles'], ['22018', '40', 'AW00022018', 'NULL', 'Todd', 'NULL', 'Sun', '0', '1942-11-06', 'M', 'NULL', 'M', 'todd12@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6699 Premier Place', 'NULL', '1 (11) 500 555-0112', '2013-06-12', '0-1 Miles'], ['22019', '65', 'AW00022019', 'NULL', 'Rachel', 'NULL', 'Bryant', '0', '1983-08-23', 'M', 'NULL', 'F', 'rachel66@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1315 Union St', 'NULL', '898-555-0158', '2013-02-27', '0-1 Miles'], ['22020', '34', 'AW00022020', 'NULL', 'Jaime', 'NULL', 'Shan', '0', '1943-10-16', 'M', 'NULL', 'M', 'jaime32@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3514 Sunshine', 'NULL', '1 (11) 500 555-0133', '2013-09-26', '5-10 Miles'], ['22021', '635', 'AW00022021', 'NULL', 'Ethan', 'C', 'White', '0', '1983-03-20', 'S', 'NULL', 'M', 'ethan46@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3361 Greenhills Circle', 'NULL', '182-555-0138', '2013-11-02', '5-10 Miles'], ['22022', '355', 'AW00022022', 'NULL', 'Christopher', 'M', 'Davis', '0', '1983-05-04', 'S', 'NULL', 'M', 'christopher5@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3538 Olivewood Ct.', 'NULL', '755-555-0171', '2013-11-12', '5-10 Miles'], ['22023', '300', 'AW00022023', 'NULL', 'Rafael', 'R', 'Chen', '0', '1982-10-29', 'S', 'NULL', 'M', 'rafael2@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5932 Houston Ct.', 'NULL', '125-555-0157', '2013-03-20', '0-1 Miles'], ['22024', '310', 'AW00022024', 'NULL', 'Samuel', 'D', 'Chen', '0', '1982-08-11', 'S', 'NULL', 'M', 'samuel24@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3514 Citrus Ave', 'NULL', '161-555-0122', '2013-05-03', '5-10 Miles'], ['22025', '312', 'AW00022025', 'NULL', 'Riley', 'S', 'Peterson', '0', '1982-12-04', 'S', 'NULL', 'F', 'riley24@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6239 Meadowvale Court', 'NULL', '156-555-0118', '2013-07-08', '0-1 Miles'], ['22026', '49', 'AW00022026', 'NULL', 'Bridget', 'NULL', 'Kennedy', '0', '1984-10-04', 'M', 'NULL', 'F', 'bridget10@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3376 Jacaranda Dr.', 'NULL', '379-555-0115', '2013-08-29', '0-1 Miles'], ['22027', '49', 'AW00022027', 'NULL', 'Franklin', 'J', 'Luo', '0', '1984-12-02', 'S', 'NULL', 'M', 'franklin24@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5763 Reed Way', 'NULL', '172-555-0141', '2013-05-11', '5-10 Miles'], ['22028', '31', 'AW00022028', 'NULL', 'Jodi', 'A', 'Shen', '0', '1945-05-21', 'M', 'NULL', 'F', 'jodi2@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6951 Harmony Way', 'NULL', '1 (11) 500 555-0159', '2013-02-02', '5-10 Miles'], ['22029', '15', 'AW00022029', 'NULL', 'Laura', 'NULL', 'Gao', '0', '1945-05-02', 'M', 'NULL', 'F', 'laura20@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '82 Mt. Dell Dr.', 'NULL', '1 (11) 500 555-0148', '2013-12-13', '5-10 Miles'], ['22030', '37', 'AW00022030', 'NULL', 'Barbara', 'NULL', 'Shen', '0', '1945-11-19', 'M', 'NULL', 'F', 'barbara33@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2137 Carlotta', 'NULL', '1 (11) 500 555-0144', '2012-04-19', '5-10 Miles'], ['22031', '19', 'AW00022031', 'NULL', 'Jorge', 'NULL', 'Cai', '0', '1946-02-09', 'M', 'NULL', 'M', 'jorge24@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7952 Quartermaster', 'NULL', '1 (11) 500 555-0191', '2012-04-13', '0-1 Miles'], ['22032', '35', 'AW00022032', 'NULL', 'Ivan', 'NULL', 'Fernandez', '0', '1948-03-11', 'M', 'NULL', 'M', 'ivan12@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3973 Gilardy Drive', 'NULL', '1 (11) 500 555-0188', '2012-04-06', '0-1 Miles'], ['22033', '16', 'AW00022033', 'NULL', 'Marshall', 'C', 'Zhao', '0', '1947-12-15', 'S', 'NULL', 'M', 'marshall9@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '6583 El Rancho Drive', 'NULL', '1 (11) 500 555-0179', '2012-04-11', '5-10 Miles'], ['22034', '326', 'AW00022034', 'NULL', 'Seth', 'H', 'Clark', '0', '1981-10-01', 'M', 'NULL', 'M', 'seth18@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8979 Adams Dr.', 'NULL', '131-555-0145', '2013-03-31', '5-10 Miles'], ['22035', '355', 'AW00022035', 'NULL', 'Ryan', 'C', 'Wilson', '0', '1982-05-09', 'M', 'NULL', 'M', 'ryan46@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8706 Royal Arch Court', 'NULL', '716-555-0163', '2013-03-31', '5-10 Miles'], ['22036', '315', 'AW00022036', 'NULL', 'Gabriella', 'NULL', 'Hall', '0', '1981-04-30', 'S', 'NULL', 'F', 'gabriella45@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4511 L St.', 'NULL', '874-555-0180', '2013-12-16', '1-2 Miles'], ['22037', '637', 'AW00022037', 'NULL', 'Angela', 'S', 'Gonzales', '0', '1980-11-28', 'M', 'NULL', 'F', 'angela20@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3182 Glendale Ave', 'NULL', '671-555-0144', '2013-09-14', '1-2 Miles'], ['22038', '326', 'AW00022038', 'NULL', 'Isabella', 'L', 'Jackson', '0', '1985-02-14', 'S', 'NULL', 'F', 'isabella67@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5028 Tanager Road', 'NULL', '363-555-0165', '2013-02-04', '5-10 Miles'], ['22039', '335', 'AW00022039', 'NULL', 'Marissa', 'NULL', 'Simmons', '0', '1979-09-13', 'S', 'NULL', 'F', 'marissa12@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3149 Blue Circle', 'NULL', '979-555-0111', '2013-12-13', '5-10 Miles'], ['22040', '385', 'AW00022040', 'NULL', 'Devin', 'NULL', 'Brown', '0', '1980-04-14', 'M', 'NULL', 'M', 'devin4@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3435 San Simeon', 'NULL', '101-555-0122', '2013-05-16', '1-2 Miles'], ['22041', '50', 'AW00022041', 'NULL', 'Paige', 'W', 'Morris', '0', '1978-10-31', 'S', 'NULL', 'F', 'paige43@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6720 Primrose Dr.', 'NULL', '711-555-0136', '2011-01-29', '5-10 Miles'], ['22042', '300', 'AW00022042', 'NULL', 'Abigail', 'K', 'Bryant', '0', '1983-08-18', 'M', 'NULL', 'F', 'abigail43@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2529 Clear Court', 'NULL', '843-555-0124', '2013-03-18', '5-10 Miles'], ['22043', '331', 'AW00022043', 'NULL', 'Trinity', 'NULL', 'Cox', '0', '1978-02-09', 'S', 'NULL', 'F', 'trinity10@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1820 Adobe St', 'NULL', '944-555-0152', '2013-04-06', '0-1 Miles'], ['22044', '358', 'AW00022044', 'NULL', 'Connor', 'NULL', 'Young', '0', '1983-05-13', 'S', 'NULL', 'M', 'connor46@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '8526 El Molino Dr.', 'NULL', '225-555-0129', '2013-04-11', '0-1 Miles'], ['22045', '612', 'AW00022045', 'NULL', 'Cameron', 'J', 'Chen', '0', '1979-05-04', 'S', 'NULL', 'M', 'cameron21@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '7971 Rolling Green Circle', 'NULL', '298-555-0161', '2013-04-13', '0-1 Miles'], ['22046', '644', 'AW00022046', 'NULL', 'Jasmine', 'E', 'Sanders', '0', '1984-08-16', 'S', 'NULL', 'F', 'jasmine40@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '9783 Amaranth Way', 'NULL', '745-555-0111', '2013-04-05', '0-1 Miles'], ['22047', '300', 'AW00022047', 'NULL', 'David', 'B', 'Gonzales', '0', '1979-12-13', 'M', 'NULL', 'M', 'david50@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '6306 El Dorado Way', 'NULL', '539-555-0134', '2013-09-20', '1-2 Miles'], ['22048', '360', 'AW00022048', 'NULL', 'Grace', 'A', 'Washington', '0', '1972-10-19', 'M', 'NULL', 'F', 'grace61@adventure-works.com', '100000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4698 Royal Oak Rd.', 'NULL', '482-555-0114', '2013-04-09', '1-2 Miles'], ['22049', '299', 'AW00022049', 'NULL', 'Allen', 'J', 'Patel', '0', '1978-05-03', 'S', 'NULL', 'M', 'allen3@adventure-works.com', '130000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '7971 Rolling Green Circle', 'NULL', '411-555-0121', '2013-05-05', '10+ Miles'], ['22050', '43', 'AW00022050', 'NULL', 'Richard', 'N', 'Bailey', '0', '1973-08-17', 'S', 'NULL', 'M', 'richard97@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '5826 Limewood Pl.', 'NULL', '818-555-0146', '2011-02-27', '1-2 Miles'], ['22051', '609', 'AW00022051', 'NULL', 'Lauren', 'G', 'Rogers', '0', '1974-06-04', 'S', 'NULL', 'F', 'lauren1@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '7399 Pacific', 'NULL', '793-555-0113', '2013-12-22', '1-2 Miles'], ['22052', '298', 'AW00022052', 'NULL', 'Zachary', 'NULL', 'Butler', '0', '1979-05-05', 'M', 'NULL', 'M', 'zachary13@adventure-works.com', '110000.00', '2', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '4050 Canyon Road', 'NULL', '193-555-0178', '2013-02-09', '1-2 Miles'], ['22053', '299', 'AW00022053', 'NULL', 'Jaime', 'W', 'Goel', '0', '1979-12-12', 'S', 'NULL', 'M', 'jaime42@adventure-works.com', '120000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '9067 Argonne Drive', 'NULL', '286-555-0153', '2013-10-06', '0-1 Miles'], ['22054', '299', 'AW00022054', 'NULL', 'Russell', 'NULL', 'Raji', '0', '1974-02-21', 'S', 'NULL', 'M', 'russell24@adventure-works.com', '120000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '1144 Paraiso Ct.', 'NULL', '172-555-0194', '2013-04-12', '2-5 Miles'], ['22055', '300', 'AW00022055', 'NULL', 'Hannah', 'H', 'Clark', '0', '1979-03-02', 'M', 'NULL', 'F', 'hannah17@adventure-works.com', '120000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '8612 Camino Ricardo', 'NULL', '622-555-0130', '2013-02-10', '0-1 Miles'], ['22056', '631', 'AW00022056', 'NULL', 'Alex', 'W', 'Howard', '0', '1984-08-17', 'M', 'NULL', 'M', 'alex15@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9779 Shuey Ave.', 'NULL', '809-555-0195', '2013-09-07', '1-2 Miles'], ['22057', '648', 'AW00022057', 'NULL', 'Kyle', 'NULL', 'Ross', '0', '1984-08-12', 'S', 'NULL', 'M', 'kyle0@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '313 Park Highlands', 'NULL', '102-555-0176', '2014-01-11', '5-10 Miles'], ['22058', '49', 'AW00022058', 'NULL', 'Jake', 'NULL', 'Zukowski', '0', '1984-05-04', 'S', 'NULL', 'M', 'jake22@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5888 Salem St.', 'NULL', '139-555-0143', '2011-03-02', '1-2 Miles'], ['22059', '52', 'AW00022059', 'NULL', 'Jonathan', 'NULL', 'Johnson', '0', '1983-08-09', 'M', 'NULL', 'M', 'jonathan61@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2559 Altura Drive', 'NULL', '310-555-0158', '2013-04-01', '5-10 Miles'], ['22060', '542', 'AW00022060', 'NULL', 'Evan', 'NULL', 'Hill', '0', '1984-05-05', 'M', 'NULL', 'M', 'evan38@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6468 Gatewood Court', 'NULL', '721-555-0154', '2013-03-07', '5-10 Miles'], ['22061', '306', 'AW00022061', 'NULL', 'Jenny', 'C', 'Goel', '0', '1984-03-19', 'S', 'NULL', 'F', 'jenny42@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7156 Rose Dr.', 'NULL', '753-555-0135', '2013-12-26', '1-2 Miles'], ['22062', '315', 'AW00022062', 'NULL', 'Cameron', 'NULL', 'Flores', '0', '1983-10-26', 'S', 'NULL', 'M', 'cameron7@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7892 M Ln.', 'NULL', '979-555-0198', '2013-12-20', '1-2 Miles'], ['22063', '7', 'AW00022063', 'NULL', 'Joanna', 'NULL', 'Suarez', '0', '1951-04-01', 'M', 'NULL', 'F', 'joanna18@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4906 Vine Hill Way', 'NULL', '1 (11) 500 555-0193', '2014-01-15', '5-10 Miles'], ['22064', '39', 'AW00022064', 'NULL', 'Lawrence', 'L', 'Carlson', '0', '1950-11-21', 'M', 'NULL', 'M', 'lawrence17@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '749 Tanager Court', 'NULL', '1 (11) 500 555-0174', '2013-02-16', '5-10 Miles'], ['22065', '20', 'AW00022065', 'NULL', 'Roy', 'NULL', 'Martin', '0', '1951-12-31', 'M', 'NULL', 'M', 'roy22@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8955 Miller Dr.', 'NULL', '1 (11) 500 555-0143', '2013-02-26', '1-2 Miles'], ['22066', '299', 'AW00022066', 'NULL', 'Paula', 'M', 'Munoz', '0', '1982-03-14', 'M', 'NULL', 'F', 'paula10@adventure-works.com', '70000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3200 Sandalwood Dr', 'NULL', '810-555-0167', '2013-04-01', '1-2 Miles'], ['22067', '609', 'AW00022067', 'NULL', 'Julia', 'E', 'Jackson', '0', '1982-01-14', 'M', 'NULL', 'F', 'julia34@adventure-works.com', '70000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2375 Elwood Drive', 'NULL', '114-555-0110', '2013-04-26', '0-1 Miles'], ['22068', '300', 'AW00022068', 'NULL', 'Sean', 'NULL', 'James', '0', '1968-12-12', 'S', 'NULL', 'M', 'sean15@adventure-works.com', '100000.00', '0', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3556 Hoek Maple Court', 'NULL', '278-555-0194', '2013-04-12', '5-10 Miles'], ['22069', '300', 'AW00022069', 'NULL', 'Bailey', 'L', 'Reed', '0', '1974-12-02', 'S', 'NULL', 'F', 'bailey18@adventure-works.com', '100000.00', '0', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3652 Happy Valley Road', 'NULL', '879-555-0197', '2013-07-29', '5-10 Miles'], ['22070', '310', 'AW00022070', 'NULL', 'Eduardo', 'J', 'Brown', '0', '1968-12-29', 'M', 'NULL', 'M', 'eduardo3@adventure-works.com', '110000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '2823 Pheasant Court', 'NULL', '317-555-0129', '2013-08-06', '5-10 Miles'], ['22071', '312', 'AW00022071', 'NULL', 'Gabriel', 'S', 'Carter', '0', '1969-05-19', 'S', 'NULL', 'M', 'gabriel41@adventure-works.com', '110000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '0', '3312 Kenneth Ct.', 'NULL', '263-555-0158', '2013-05-07', '1-2 Miles'], ['22072', '385', 'AW00022072', 'NULL', 'Devin', 'A', 'Russell', '0', '1969-01-31', 'S', 'NULL', 'M', 'devin57@adventure-works.com', '160000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '939 Loeffler Lane', 'NULL', '797-555-0157', '2013-03-31', '0-1 Miles'], ['22073', '609', 'AW00022073', 'NULL', 'Timothy', 'L', 'Sanders', '0', '1968-06-23', 'M', 'NULL', 'M', 'timothy5@adventure-works.com', '90000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '8838 Kirker Pass Road', 'NULL', '161-555-0179', '2013-05-23', '5-10 Miles'], ['22074', '552', 'AW00022074', 'NULL', 'Richard', 'NULL', 'Washington', '0', '1973-08-11', 'S', 'NULL', 'M', 'richard68@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '3069 Serpentine', 'NULL', '696-555-0112', '2013-04-28', '5-10 Miles'], ['22075', '298', 'AW00022075', 'NULL', 'Pedro', 'NULL', 'Patel', '0', '1973-05-11', 'M', 'NULL', 'M', 'pedro3@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '9462 Ohara Ave.', 'NULL', '187-555-0175', '2013-09-27', '5-10 Miles'], ['22076', '310', 'AW00022076', 'NULL', 'Nelson', 'D', 'Vazquez', '0', '1973-06-20', 'M', 'NULL', 'M', 'nelson13@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7888 Stanford Street', 'NULL', '721-555-0115', '2013-05-26', '1-2 Miles'], ['22077', '311', 'AW00022077', 'NULL', 'Marvin', 'R', 'Rubio', '0', '1968-01-07', 'M', 'NULL', 'M', 'marvin21@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '9075 Calle Verde', 'NULL', '643-555-0118', '2013-04-06', '5-10 Miles'], ['22078', '325', 'AW00022078', 'NULL', 'William', 'R', 'Martin', '0', '1973-07-04', 'M', 'NULL', 'M', 'william10@adventure-works.com', '120000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '7432 N. 17th St.', 'NULL', '411-555-0139', '2013-04-28', '5-10 Miles'], ['22079', '54', 'AW00022079', 'NULL', 'Katherine', 'J', 'Perez', '0', '1972-10-12', 'M', 'NULL', 'F', 'katherine60@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '1935 Heavenly Drive', 'NULL', '691-555-0114', '2013-10-09', '5-10 Miles'], ['22080', '66', 'AW00022080', 'NULL', 'Caitlin', 'M', 'Sanchez', '0', '1972-11-30', 'M', 'NULL', 'F', 'caitlin21@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '3356 Northstar Drive', 'NULL', '629-555-0115', '2013-11-28', '1-2 Miles'], ['22081', '552', 'AW00022081', 'NULL', 'Olivia', 'NULL', 'Clark', '0', '1972-04-03', 'M', 'NULL', 'F', 'olivia18@adventure-works.com', '100000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '6874 Magnolia Ave.', 'NULL', '499-555-0114', '2013-04-05', '1-2 Miles'], ['22082', '299', 'AW00022082', 'NULL', 'Lucas', 'NULL', 'Barnes', '0', '1972-10-19', 'S', 'NULL', 'M', 'lucas52@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '6695 Treat Blvd.', 'NULL', '605-555-0193', '2013-04-13', '5-10 Miles'], ['22083', '299', 'AW00022083', 'NULL', 'David', 'J', 'Flores', '0', '1966-09-13', 'M', 'NULL', 'M', 'david45@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '8829 Northstar Drive', 'NULL', '185-555-0185', '2013-08-27', '2-5 Miles'], ['22084', '307', 'AW00022084', 'NULL', 'Francis', 'T', 'Gomez', '0', '1972-07-03', 'M', 'NULL', 'M', 'francis20@adventure-works.com', '110000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '2300 Lillian Dr', 'NULL', '941-555-0184', '2013-10-08', '5-10 Miles'], ['22085', '310', 'AW00022085', 'NULL', 'Toni', 'NULL', 'Mehta', '0', '1972-07-09', 'M', 'NULL', 'F', 'toni14@adventure-works.com', '110000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '4173 Rockledge Lane', 'NULL', '786-555-0184', '2013-08-05', '5-10 Miles'], ['22086', '311', 'AW00022086', 'NULL', 'Chelsea', 'NULL', 'Sanchez', '0', '1967-05-17', 'M', 'NULL', 'F', 'chelsea22@adventure-works.com', '110000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '8967 Chrislend Court', 'NULL', '129-555-0173', '2013-06-12', '5-10 Miles'], ['22087', '312', 'AW00022087', 'NULL', 'Joan', 'K', 'Coleman', '0', '1972-10-12', 'M', 'NULL', 'F', 'joan4@adventure-works.com', '120000.00', '1', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '2260 Clear Court', 'NULL', '387-555-0136', '2013-07-10', '2-5 Miles'], ['22088', '325', 'AW00022088', 'NULL', 'Hannah', 'C', 'Diaz', '0', '1966-07-19', 'M', 'NULL', 'F', 'hannah43@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7345 Stillman Court', 'NULL', '249-555-0155', '2013-04-14', '0-1 Miles'], ['22089', '347', 'AW00022089', 'NULL', 'Mason', 'NULL', 'Gray', '0', '1966-09-01', 'M', 'NULL', 'M', 'mason7@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '4625 Dos Encinas', 'NULL', '364-555-0117', '2013-04-08', '0-1 Miles'], ['22090', '383', 'AW00022090', 'NULL', 'Alexandra', 'E', 'Miller', '0', '1961-05-19', 'M', 'NULL', 'F', 'alexandra69@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '328 Shelly Dr.', 'NULL', '402-555-0180', '2013-02-09', '1-2 Miles'], ['22091', '626', 'AW00022091', 'NULL', 'Kayla', 'NULL', 'Griffin', '0', '1961-02-19', 'M', 'NULL', 'F', 'kayla45@adventure-works.com', '80000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '1026 Mt. Wilson Pl.', 'NULL', '175-555-0156', '2013-04-25', '5-10 Miles'], ['22092', '642', 'AW00022092', 'NULL', 'Andrea', 'NULL', 'Young', '0', '1960-08-22', 'M', 'NULL', 'F', 'andrea39@adventure-works.com', '90000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '9384 Ashmount Way', 'NULL', '639-555-0165', '2013-04-12', '10+ Miles'], ['22093', '547', 'AW00022093', 'NULL', 'Sydney', 'A', 'Baker', '0', '1960-12-13', 'M', 'NULL', 'F', 'sydney57@adventure-works.com', '90000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '2959 Freda Drive', 'NULL', '598-555-0163', '2013-05-16', '10+ Miles'], ['22094', '644', 'AW00022094', 'NULL', 'Jared', 'A', 'Watson', '0', '1960-12-01', 'M', 'NULL', 'M', 'jared2@adventure-works.com', '90000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '7477 Mt. Everest Court', 'NULL', '775-555-0143', '2013-05-08', '10+ Miles'], ['22095', '69', 'AW00022095', 'NULL', 'Brandon', 'NULL', 'Perry', '0', '1961-04-13', 'S', 'NULL', 'M', 'brandon5@adventure-works.com', '90000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '384 Dayton Court', 'NULL', '758-555-0120', '2013-11-10', '10+ Miles'], ['22096', '609', 'AW00022096', 'NULL', 'Bryce', 'D', 'Cooper', '0', '1959-07-22', 'S', 'NULL', 'M', 'bryce7@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4399 Price Lane', 'NULL', '414-555-0161', '2013-05-03', '5-10 Miles'], ['22097', '69', 'AW00022097', 'NULL', 'David', 'A', 'Anderson', '0', '1946-05-04', 'M', 'NULL', 'M', 'david68@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4683 Tuolumne Way', 'NULL', '834-555-0113', '2013-02-16', '5-10 Miles'], ['22098', '552', 'AW00022098', 'NULL', 'Katherine', 'NULL', 'Brooks', '0', '1941-04-16', 'S', 'NULL', 'F', 'katherine22@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '252 Meadowbrook Drive', 'NULL', '326-555-0144', '2013-06-28', '1-2 Miles'], ['22099', '310', 'AW00022099', 'NULL', 'Joel', 'M', 'Schmidt', '0', '1940-10-20', 'M', 'NULL', 'M', 'joel9@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9558 Orchard View Ave.', 'NULL', '784-555-0134', '2013-05-13', '1-2 Miles'], ['22100', '60', 'AW00022100', 'NULL', 'Fernando', 'NULL', 'Hall', '0', '1982-03-13', 'M', 'NULL', 'M', 'fernando22@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '8886 Marsh Drive', 'NULL', '167-555-0129', '2013-08-08', '1-2 Miles'], ['22101', '616', 'AW00022101', 'NULL', 'Carol', 'P', 'White', '0', '1971-05-09', 'S', 'NULL', 'F', 'carol18@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '9854 Martindale Drive', 'NULL', '721-555-0110', '2013-10-06', '1-2 Miles'], ['22102', '548', 'AW00022102', 'NULL', 'Eduardo', 'P', 'Cox', '0', '1971-02-04', 'M', 'NULL', 'M', 'eduardo79@adventure-works.com', '100000.00', '0', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '5253 Harris Court', 'NULL', '936-555-0183', '2013-10-06', '1-2 Miles'], ['22103', '302', 'AW00022103', 'NULL', 'Alexandra', 'C', 'Hernandez', '0', '1971-06-22', 'M', 'NULL', 'F', 'alexandra59@adventure-works.com', '110000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '6544 Bella Vista', 'NULL', '509-555-0141', '2013-05-23', '2-5 Miles'], ['22104', '314', 'AW00022104', 'NULL', 'Richard', 'R', 'Adams', '0', '1965-07-19', 'S', 'NULL', 'M', 'richard26@adventure-works.com', '110000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '2284 Azalea Avenue', 'NULL', '243-555-0193', '2013-05-07', '5-10 Miles'], ['22105', '335', 'AW00022105', 'NULL', 'Taylor', 'NULL', 'Cooper', '0', '1965-09-20', 'M', 'NULL', 'F', 'taylor11@adventure-works.com', '120000.00', '5', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8291 Crossbow Way', 'NULL', '780-555-0156', '2014-01-01', '2-5 Miles'], ['22106', '352', 'AW00022106', 'NULL', 'Olivia', 'NULL', 'Long', '0', '1976-12-04', 'M', 'NULL', 'F', 'olivia55@adventure-works.com', '160000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1487 Franklin Canyon Road', 'NULL', '438-555-0177', '2013-05-11', '0-1 Miles'], ['22107', '59', 'AW00022107', 'NULL', 'Michael', 'A', 'Jones', '0', '1965-09-30', 'S', 'NULL', 'M', 'michael35@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '608 Lincoln Dr.', 'NULL', '210-555-0110', '2013-06-12', '1-2 Miles'], ['22108', '347', 'AW00022108', 'NULL', 'Eduardo', 'NULL', 'Powell', '0', '1959-12-15', 'S', 'NULL', 'M', 'eduardo53@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1810 Darlene Dr.', 'NULL', '196-555-0183', '2013-04-18', '1-2 Miles'], ['22109', '68', 'AW00022109', 'NULL', 'Jonathan', 'L', 'Mitchell', '0', '1959-08-02', 'M', 'NULL', 'M', 'jonathan40@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2595 Franklin Canyon Rd.', 'NULL', '160-555-0163', '2011-03-19', '1-2 Miles'], ['22110', '536', 'AW00022110', 'NULL', 'Eduardo', 'NULL', 'King', '0', '1960-02-05', 'M', 'NULL', 'M', 'eduardo27@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3348 Galindo Street', 'NULL', '853-555-0118', '2013-12-24', '5-10 Miles'], ['22111', '311', 'AW00022111', 'NULL', 'Gabriella', 'NULL', 'King', '0', '1960-05-09', 'M', 'NULL', 'F', 'gabriella43@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3939 Northridge Ct.', 'NULL', '217-555-0137', '2013-12-01', '1-2 Miles'], ['22112', '60', 'AW00022112', 'NULL', 'Paige', 'NULL', 'Reed', '0', '1960-06-24', 'M', 'NULL', 'F', 'paige45@adventure-works.com', '60000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1256 Orangewood Ave.', 'NULL', '305-555-0120', '2011-03-27', '5-10 Miles'], ['22113', '552', 'AW00022113', 'NULL', 'Katherine', 'A', 'Garcia', '0', '1964-09-10', 'S', 'NULL', 'F', 'katherine87@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2341 Breaker Dr.', 'NULL', '495-555-0158', '2013-05-17', '5-10 Miles'], ['22114', '49', 'AW00022114', 'NULL', 'Lucas', 'L', 'Martin', '0', '1959-01-13', 'M', 'NULL', 'M', 'lucas28@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '191 Trail Way', 'NULL', '434-555-0192', '2011-03-01', '5-10 Miles'], ['22115', '634', 'AW00022115', 'NULL', 'Dalton', 'A', 'Rogers', '0', '1958-12-11', 'M', 'NULL', 'M', 'dalton91@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '2467 Green St.', 'NULL', '803-555-0141', '2013-05-07', '1-2 Miles'], ['22116', '326', 'AW00022116', 'NULL', 'Robert', 'K', 'Lopez', '0', '1964-10-31', 'S', 'NULL', 'M', 'robert76@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '457 Ryan Rd.', 'NULL', '944-555-0157', '2013-05-28', '5-10 Miles'], ['22117', '68', 'AW00022117', 'NULL', 'Sydney', 'C', 'Perez', '0', '1958-10-09', 'M', 'NULL', 'F', 'sydney53@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2402 Sutherland Dr.', 'NULL', '171-555-0192', '2011-03-22', '1-2 Miles'], ['22118', '68', 'AW00022118', 'NULL', 'Jennifer', 'D', 'Parker', '0', '1958-11-17', 'S', 'NULL', 'F', 'jennifer10@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5772 Ridgewood Drive', 'NULL', '755-555-0136', '2011-04-22', '5-10 Miles'], ['22119', '302', 'AW00022119', 'NULL', 'Hailey', 'L', 'Flores', '0', '1964-10-09', 'M', 'NULL', 'F', 'hailey32@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '90 Toyon Dr.', 'NULL', '754-555-0183', '2013-05-28', '1-2 Miles'], ['22120', '69', 'AW00022120', 'NULL', 'Jennifer', 'J', 'Perry', '0', '1959-05-01', 'M', 'NULL', 'F', 'jennifer82@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6274 San Antonio', 'NULL', '263-555-0116', '2011-04-28', '5-10 Miles'], ['22121', '50', 'AW00022121', 'NULL', 'Jackson', 'A', 'Henderson', '0', '1957-11-09', 'M', 'NULL', 'M', 'jackson7@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '6715 North Park Court', 'NULL', '547-555-0182', '2011-05-18', '1-2 Miles'], ['22122', '634', 'AW00022122', 'NULL', 'Rachel', 'NULL', 'Butler', '0', '1958-04-24', 'M', 'NULL', 'F', 'rachel62@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5079 Notre Dame Avenue', 'NULL', '831-555-0110', '2013-04-13', '5-10 Miles'], ['22123', '300', 'AW00022123', 'NULL', 'Isabella', 'NULL', 'Bailey', '0', '1942-10-01', 'S', 'NULL', 'F', 'isabella90@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1726 Hacienda', 'NULL', '808-555-0174', '2013-05-24', '10+ Miles'], ['22124', '432', 'AW00022124', 'NULL', 'Desiree', 'J', 'Alonso', '0', '1943-03-05', 'M', 'NULL', 'F', 'desiree4@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5785 Lislin Ct.', 'NULL', '992-555-0176', '2013-11-12', '10+ Miles'], ['22125', '343', 'AW00022125', 'NULL', 'Zachary', 'K', 'Garcia', '0', '1942-08-02', 'M', 'NULL', 'M', 'zachary47@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1915 Seawind Dr.', 'NULL', '272-555-0172', '2013-03-11', '10+ Miles'], ['22126', '302', 'AW00022126', 'NULL', 'Rachel', 'C', 'Ward', '0', '1943-01-31', 'M', 'NULL', 'F', 'rachel41@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '7694 Furness Street', 'NULL', '442-555-0167', '2013-08-20', '1-2 Miles'], ['22127', '310', 'AW00022127', 'NULL', 'Marcus', 'NULL', 'Thompson', '0', '1949-11-05', 'M', 'NULL', 'M', 'marcus16@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3260 Fountainhead Court', 'NULL', '239-555-0129', '2013-05-09', '1-2 Miles'], ['22128', '51', 'AW00022128', 'NULL', 'Melissa', 'NULL', 'Perry', '0', '1943-10-05', 'M', 'NULL', 'F', 'melissa2@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6828 Willow Pass Road', '#5', '641-555-0114', '2011-05-26', '1-2 Miles'], ['22129', '300', 'AW00022129', 'NULL', 'Chloe', 'L', 'Hall', '0', '1944-06-06', 'M', 'NULL', 'F', 'chloe33@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4042 Shoenic', 'NULL', '148-555-0188', '2013-05-13', '10+ Miles'], ['22130', '359', 'AW00022130', 'NULL', 'Xavier', 'R', 'Bryant', '0', '1949-08-24', 'M', 'NULL', 'M', 'xavier58@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3905 Mt. Trinity Court', 'NULL', '115-555-0174', '2013-05-09', '1-2 Miles'], ['22131', '326', 'AW00022131', 'NULL', 'Jessica', 'J', 'Cook', '0', '1943-12-29', 'M', 'NULL', 'F', 'jessica5@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1889 Carmel Dr', 'NULL', '563-555-0111', '2013-05-19', '10+ Miles'], ['22132', '310', 'AW00022132', 'NULL', 'Rachael', 'D', 'Mehta', '0', '1943-08-25', 'M', 'NULL', 'F', 'rachael13@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '93 N. 39th Street', 'NULL', '107-555-0161', '2013-05-28', '10+ Miles'], ['22133', '631', 'AW00022133', 'NULL', 'Xavier', 'C', 'Adams', '0', '1944-03-22', 'M', 'NULL', 'M', 'xavier29@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4030 La Orinda Place', 'NULL', '682-555-0196', '2013-05-19', '1-2 Miles'], ['22134', '301', 'AW00022134', 'NULL', 'Leonard', 'L', 'Raji', '0', '1945-05-09', 'M', 'NULL', 'M', 'leonard23@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2038 Encino Drive', 'NULL', '847-555-0162', '2013-09-25', '10+ Miles'], ['22135', '635', 'AW00022135', 'NULL', 'Julia', 'L', 'Hernandez', '0', '1944-12-16', 'M', 'NULL', 'F', 'julia15@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '921 Pembrook Court', 'NULL', '563-555-0175', '2013-05-06', '10+ Miles'], ['22136', '316', 'AW00022136', 'NULL', 'Devin', 'C', 'Evans', '0', '1945-05-13', 'M', 'NULL', 'M', 'devin41@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8937 Two Bay Road', 'NULL', '131-555-0193', '2013-05-06', '5-10 Miles'], ['22137', '345', 'AW00022137', 'NULL', 'Elizabeth', 'L', 'Griffin', '0', '1945-09-17', 'M', 'NULL', 'F', 'elizabeth49@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9046 C Street', 'NULL', '169-555-0182', '2013-12-05', '10+ Miles'], ['22138', '307', 'AW00022138', 'NULL', 'Alexandra', 'H', 'Brooks', '0', '1946-03-11', 'M', 'NULL', 'F', 'alexandra21@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5854 Eagle Way', 'NULL', '998-555-0187', '2013-04-17', '5-10 Miles'], ['22139', '311', 'AW00022139', 'NULL', 'Jaime', 'NULL', 'Pal', '0', '1951-05-05', 'M', 'NULL', 'M', 'jaime34@adventure-works.com', '80000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5279 East L Street', 'NULL', '652-555-0116', '2013-05-12', '1-2 Miles'], ['22140', '635', 'AW00022140', 'NULL', 'Makayla', 'L', 'Sanchez', '0', '1947-06-21', 'M', 'NULL', 'F', 'makayla19@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5919 Maywood Lane', 'NULL', '322-555-0172', '2013-12-25', '1-2 Miles'], ['22141', '66', 'AW00022141', 'NULL', 'Jesse', 'E', 'Carter', '0', '1952-09-09', 'M', 'NULL', 'M', 'jesse35@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6359 Sand Point Road', 'NULL', '271-555-0138', '2013-08-26', '10+ Miles'], ['22142', '302', 'AW00022142', 'NULL', 'Nelson', 'NULL', 'Alonso', '0', '1946-10-08', 'M', 'NULL', 'M', 'nelson7@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5608 Montanya Court', 'NULL', '647-555-0111', '2013-03-27', '10+ Miles'], ['22143', '49', 'AW00022143', 'NULL', 'Summer', 'M', 'Prasad', '0', '1947-01-12', 'M', 'NULL', 'F', 'summer8@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2328 Elk Dr', 'NULL', '184-555-0159', '2013-02-15', '10+ Miles'], ['22144', '50', 'AW00022144', 'NULL', 'Zachary', 'NULL', 'Wang', '0', '1946-08-06', 'M', 'NULL', 'M', 'zachary23@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2901 Sunny Ave', 'NULL', '603-555-0152', '2013-07-13', '1-2 Miles'], ['22145', '299', 'AW00022145', 'NULL', 'Eduardo', 'C', 'Kelly', '0', '1946-12-04', 'M', 'NULL', 'M', 'eduardo69@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1483 Santa Lucia Dr.', 'NULL', '834-555-0116', '2013-03-22', '10+ Miles'], ['22146', '374', 'AW00022146', 'NULL', 'Benjamin', 'J', 'Chen', '0', '1953-10-17', 'S', 'NULL', 'M', 'benjamin27@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5844 Miguel Drive', 'NULL', '515-555-0145', '2013-12-11', '10+ Miles'], ['22147', '21', 'AW00022147', 'NULL', 'Brett', 'L', 'Kapoor', '0', '1952-10-14', 'M', 'NULL', 'M', 'brett0@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1307 Horseshoe Circle', 'NULL', '1 (11) 500 555-0152', '2013-08-24', '5-10 Miles'], ['22148', '33', 'AW00022148', 'NULL', 'Candace', 'S', 'Prasad', '0', '1952-08-24', 'M', 'NULL', 'F', 'candace9@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2964 Mt. Washington', 'NULL', '1 (11) 500 555-0189', '2013-06-22', '5-10 Miles'], ['22149', '31', 'AW00022149', 'NULL', 'Gregory', 'NULL', 'Shen', '0', '1953-03-14', 'M', 'NULL', 'M', 'gregory6@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9995 All Ways Drive', 'NULL', '1 (11) 500 555-0135', '2013-12-30', '5-10 Miles'], ['22150', '27', 'AW00022150', 'NULL', 'Damien', 'M', 'Liang', '0', '1952-08-24', 'M', 'NULL', 'M', 'damien13@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '1691 Boxer Blvd.', 'NULL', '1 (11) 500 555-0163', '2013-03-11', '5-10 Miles'], ['22151', '28', 'AW00022151', 'NULL', 'Neil', 'NULL', 'Jimenez', '0', '1954-01-03', 'M', 'NULL', 'M', 'neil6@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6036 Park Glenn', 'NULL', '1 (11) 500 555-0172', '2013-09-08', '5-10 Miles'], ['22152', '337', 'AW00022152', 'NULL', 'Marcus', 'NULL', 'King', '0', '1983-08-18', 'M', 'NULL', 'M', 'marcus29@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8564 Hickory Drive', 'NULL', '964-555-0119', '2013-12-07', '5-10 Miles'], ['22153', '361', 'AW00022153', 'NULL', 'Alyssa', 'D', 'Kelly', '0', '1984-02-01', 'M', 'NULL', 'F', 'alyssa45@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4111 Vista Diablo', 'NULL', '186-555-0170', '2013-05-28', '0-1 Miles'], ['22154', '77', 'AW00022154', 'NULL', 'Yolanda', 'C', 'Yuan', '0', '1982-07-24', 'S', 'NULL', 'F', 'yolanda6@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5786 St. George Drive', 'NULL', '896-555-0142', '2013-02-04', '5-10 Miles'], ['22155', '39', 'AW00022155', 'NULL', 'Steve', 'M', 'Cai', '0', '1954-01-02', 'M', 'NULL', 'M', 'steve24@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2582 South Ranchford Ct.', 'NULL', '1 (11) 500 555-0110', '2013-09-07', '5-10 Miles'], ['22156', '20', 'AW00022156', 'NULL', 'Jamie', 'L', 'Zheng', '0', '1953-09-01', 'M', 'NULL', 'F', 'jamie23@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2104 Grading Way', 'NULL', '1 (11) 500 555-0118', '2013-03-06', '5-10 Miles'], ['22157', '536', 'AW00022157', 'NULL', 'Maria', 'L', 'Richardson', '0', '1983-05-22', 'S', 'NULL', 'F', 'maria12@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2868 Filling Ave.', 'NULL', '880-555-0163', '2013-10-08', '5-10 Miles'], ['22158', '536', 'AW00022158', 'NULL', 'Amber', 'NULL', 'Phillips', '0', '1982-08-16', 'S', 'NULL', 'F', 'amber5@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9445 Shady Ln.', 'NULL', '702-555-0117', '2013-06-06', '5-10 Miles'], ['22159', '631', 'AW00022159', 'NULL', 'David', 'NULL', 'Davis', '0', '1982-11-14', 'S', 'NULL', 'M', 'david78@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3923 Dew Drop Circle', 'NULL', '232-555-0155', '2013-12-11', '5-10 Miles'], ['22160', '547', 'AW00022160', 'NULL', 'Alex', 'E', 'Richardson', '0', '1983-06-10', 'S', 'NULL', 'M', 'alex13@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '2309 Mt. Olivet Ct.', 'NULL', '812-555-0128', '2013-06-03', '1-2 Miles'], ['22161', '299', 'AW00022161', 'NULL', 'Rachel', 'K', 'Clark', '0', '1983-04-03', 'S', 'NULL', 'F', 'rachel22@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6308 Broadway Street', 'NULL', '508-555-0132', '2013-12-20', '1-2 Miles'], ['22162', '301', 'AW00022162', 'NULL', 'Brad', 'S', 'Yuan', '0', '1982-10-09', 'M', 'NULL', 'M', 'brad6@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9001 Esperanza', 'NULL', '658-555-0190', '2013-06-05', '5-10 Miles'], ['22163', '334', 'AW00022163', 'NULL', 'Morgan', 'D', 'Scott', '0', '1982-12-29', 'S', 'NULL', 'F', 'morgan10@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6710 Santa Monica Drive', 'NULL', '632-555-0118', '2013-02-04', '5-10 Miles'], ['22164', '372', 'AW00022164', 'NULL', 'Destiny', 'NULL', 'Morris', '0', '1983-02-21', 'S', 'NULL', 'F', 'destiny25@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8166 Starflower Dr', 'NULL', '385-555-0163', '2013-06-10', '0-1 Miles'], ['22165', '325', 'AW00022165', 'NULL', 'Aaron', 'L', 'Perez', '0', '1982-05-01', 'M', 'NULL', 'M', 'aaron36@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '749 Ida Dr.', 'NULL', '143-555-0143', '2013-05-18', '1-2 Miles'], ['22166', '648', 'AW00022166', 'NULL', 'Katherine', 'NULL', 'Gray', '0', '1982-02-25', 'S', 'NULL', 'F', 'katherine18@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4524 Ferndale Lane', 'NULL', '649-555-0191', '2013-06-12', '1-2 Miles'], ['22167', '5', 'AW00022167', 'NULL', 'Colleen', 'NULL', 'Yang', '0', '1960-03-18', 'M', 'NULL', 'F', 'colleen5@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6221 Stephine Way', 'NULL', '1 (11) 500 555-0158', '2013-02-10', '5-10 Miles'], ['22168', '19', 'AW00022168', 'NULL', 'Erica', 'J', 'Wang', '0', '1954-10-30', 'M', 'NULL', 'F', 'erica1@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5648 Roland Ct.', 'NULL', '1 (11) 500 555-0132', '2012-04-12', '1-2 Miles'], ['22169', '35', 'AW00022169', 'NULL', 'Jenny', 'B', 'Li', '0', '1956-06-11', 'M', 'NULL', 'F', 'jenny5@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '251 Steven Circle', 'NULL', '1 (11) 500 555-0196', '2013-06-19', '1-2 Miles'], ['22170', '40', 'AW00022170', 'NULL', 'Cynthia', 'NULL', 'Martinez', '0', '1956-03-17', 'M', 'NULL', 'F', 'cynthia23@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6409 Buckthorn Court', 'NULL', '1 (11) 500 555-0135', '2012-04-03', '1-2 Miles'], ['22171', '33', 'AW00022171', 'NULL', 'Meredith', 'NULL', 'Gonzalez', '0', '1956-11-06', 'M', 'NULL', 'F', 'meredith18@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8668 Via Neruda', 'NULL', '1 (11) 500 555-0176', '2012-04-24', '1-2 Miles'], ['22172', '14', 'AW00022172', 'NULL', 'Cesar', 'C', 'Sara', '0', '1962-09-05', 'M', 'NULL', 'M', 'cesar9@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8049 Jefferson Street', 'NULL', '1 (11) 500 555-0141', '2012-04-01', '5-10 Miles'], ['22173', '14', 'AW00022173', 'NULL', 'Bianca', 'D', 'Cai', '0', '1957-10-18', 'M', 'NULL', 'F', 'bianca18@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6963 Grand View Avenue', 'NULL', '1 (11) 500 555-0111', '2012-04-08', '1-2 Miles'], ['22174', '30', 'AW00022174', 'NULL', 'Micah', 'NULL', 'Lu', '0', '1957-10-30', 'M', 'NULL', 'M', 'micah22@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5710 Ida Drive', 'NULL', '1 (11) 500 555-0182', '2012-04-11', '5-10 Miles'], ['22175', '40', 'AW00022175', 'NULL', 'Joy', 'NULL', 'Dominguez', '0', '1958-05-05', 'M', 'NULL', 'F', 'joy14@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2625 Fremont St.', 'NULL', '1 (11) 500 555-0189', '2012-04-12', '5-10 Miles'], ['22176', '19', 'AW00022176', 'NULL', 'Alejandro', 'M', 'Yang', '0', '1959-03-10', 'M', 'NULL', 'M', 'alejandro7@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3192 Oakleaf Ct', 'NULL', '1 (11) 500 555-0126', '2013-07-05', '1-2 Miles'], ['22177', '13', 'AW00022177', 'NULL', 'Meghan', 'L', 'Suarez', '0', '1958-09-22', 'M', 'NULL', 'F', 'meghan18@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5236 Clayton Road', 'NULL', '1 (11) 500 555-0185', '2013-07-13', '1-2 Miles'], ['22178', '13', 'AW00022178', 'NULL', 'Jessica', 'NULL', 'Bell', '0', '1958-12-24', 'M', 'NULL', 'F', 'jessica7@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '261 La Orinda Pl', 'NULL', '1 (11) 500 555-0117', '2012-04-10', '5-10 Miles'], ['22179', '16', 'AW00022179', 'NULL', 'Abby', 'C', 'Mehta', '0', '1959-08-08', 'M', 'NULL', 'F', 'abby11@adventure-works.com', '40000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6289 Via Del Verdes', 'NULL', '1 (11) 500 555-0118', '2013-06-15', '1-2 Miles'], ['22180', '11', 'AW00022180', 'NULL', 'Joe', 'NULL', 'Srini', '0', '1965-10-10', 'S', 'NULL', 'M', 'joe11@adventure-works.com', '70000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3337 East 26th Street', 'NULL', '1 (11) 500 555-0187', '2012-03-31', '1-2 Miles'], ['22181', '11', 'AW00022181', 'NULL', 'Gary', 'NULL', 'Romero', '0', '1976-10-13', 'S', 'NULL', 'M', 'gary20@adventure-works.com', '70000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8826 Fine Drive', 'NULL', '1 (11) 500 555-0117', '2012-04-05', '5-10 Miles'], ['22182', '66', 'AW00022182', 'NULL', 'Madeline', 'H', 'Parker', '0', '1981-05-03', 'S', 'NULL', 'F', 'madeline7@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9379 Terrapin Court', 'NULL', '184-555-0138', '2011-05-26', '1-2 Miles'], ['22183', '611', 'AW00022183', 'NULL', 'Benjamin', 'C', 'Jones', '0', '1981-04-24', 'M', 'NULL', 'M', 'benjamin35@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5497 Brandywine Way', 'NULL', '844-555-0132', '2013-10-17', '5-10 Miles'], ['22184', '334', 'AW00022184', 'NULL', 'Jeremy', 'NULL', 'Carter', '0', '1981-01-23', 'M', 'NULL', 'M', 'jeremy13@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5985 Bouncing Road', 'NULL', '809-555-0156', '2013-10-13', '5-10 Miles'], ['22185', '352', 'AW00022185', 'NULL', 'Connor', 'NULL', 'Henderson', '0', '1980-11-29', 'M', 'NULL', 'M', 'connor1@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1515 Palm Dr', 'NULL', '205-555-0110', '2013-03-26', '5-10 Miles'], ['22186', '358', 'AW00022186', 'NULL', 'Jonathan', 'NULL', 'Foster', '0', '1981-04-02', 'S', 'NULL', 'M', 'jonathan15@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1135 Glenellen Court', 'NULL', '222-555-0131', '2013-12-23', '1-2 Miles'], ['22187', '539', 'AW00022187', 'NULL', 'Hannah', 'A', 'Russell', '0', '1979-12-22', 'S', 'NULL', 'F', 'hannah41@adventure-works.com', '50000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6318 Merriewood Dr.', 'NULL', '718-555-0129', '2014-01-01', '5-10 Miles'], ['22188', '609', 'AW00022188', 'NULL', 'Sarah', 'J', 'Barnes', '0', '1984-06-04', 'M', 'NULL', 'F', 'sarah28@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1011 Green St.', 'NULL', '271-555-0194', '2013-12-20', '5-10 Miles'], ['22189', '612', 'AW00022189', 'NULL', 'Linda', 'NULL', 'Hernandez', '0', '1978-08-31', 'M', 'NULL', 'F', 'linda18@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '582 Ofarrell Dr', 'NULL', '591-555-0144', '2013-06-20', '5-10 Miles'], ['22190', '335', 'AW00022190', 'NULL', 'Carlos', 'NULL', 'Richardson', '0', '1981-08-17', 'S', 'NULL', 'M', 'carlos11@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '4150 Grant St.', 'NULL', '599-555-0118', '2013-10-22', '1-2 Miles'], ['22191', '637', 'AW00022191', 'NULL', 'Jack', 'NULL', 'Adams', '0', '1981-08-08', 'S', 'NULL', 'M', 'jack52@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '490 Sepulveda Ct.', 'NULL', '505-555-0120', '2013-05-17', '5-10 Miles'], ['22192', '627', 'AW00022192', 'NULL', 'Henry', 'NULL', 'Zimmerman', '0', '1982-03-11', 'S', 'NULL', 'M', 'henry1@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '6855 Leewood Place', 'NULL', '639-555-0142', '2013-06-24', '1-2 Miles'], ['22193', '37', 'AW00022193', 'NULL', 'Toni', 'NULL', 'Garcia', '0', '1961-05-20', 'S', 'NULL', 'F', 'toni15@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9618 San Rafael', 'NULL', '1 (11) 500 555-0188', '2012-04-28', '5-10 Miles'], ['22194', '6', 'AW00022194', 'NULL', 'Bruce', 'NULL', 'Sai', '0', '1971-10-16', 'S', 'NULL', 'M', 'bruce4@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3648 El Dorado', 'NULL', '1 (11) 500 555-0165', '2012-04-26', '5-10 Miles'], ['22195', '20', 'AW00022195', 'NULL', 'Philip', 'F', 'Romero', '0', '1961-10-22', 'M', 'NULL', 'M', 'philip9@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1960 Via Catanzaro', 'NULL', '1 (11) 500 555-0149', '2012-04-05', '1-2 Miles'], ['22196', '27', 'AW00022196', 'NULL', 'Francis', 'NULL', 'Romero', '0', '1967-01-21', 'S', 'NULL', 'M', 'francis6@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1240 Dayton Court', 'NULL', '1 (11) 500 555-0141', '2012-04-13', '1-2 Miles'], ['22197', '28', 'AW00022197', 'NULL', 'Larry', 'NULL', 'Dominguez', '0', '1962-06-13', 'S', 'NULL', 'M', 'larry15@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6730 East Cypress Road', 'NULL', '1 (11) 500 555-0123', '2012-04-06', '1-2 Miles'], ['22198', '2', 'AW00022198', 'NULL', 'Frank', 'G', 'Hernandez', '0', '1973-05-10', 'M', 'NULL', 'M', 'frank34@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9510 Lakespring Place', 'NULL', '1 (11) 500 555-0113', '2012-04-10', '1-2 Miles'], ['22199', '34', 'AW00022199', 'NULL', 'David', 'J', 'Lee', '0', '1961-12-06', 'S', 'NULL', 'M', 'david85@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1574 Hudson Ave.', 'NULL', '1 (11) 500 555-0180', '2012-04-17', '1-2 Miles'], ['22200', '8', 'AW00022200', 'NULL', 'Martha', 'NULL', 'Ye', '0', '1962-09-25', 'S', 'NULL', 'F', 'martha9@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6584 Oak Leaf Ct', 'NULL', '1 (11) 500 555-0159', '2012-04-11', '5-10 Miles'], ['22201', '27', 'AW00022201', 'NULL', 'Lindsey', 'R', 'Luo', '0', '1962-07-05', 'M', 'NULL', 'F', 'lindsey6@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8812 Dianda Dr.', 'NULL', '1 (11) 500 555-0144', '2012-05-19', '5-10 Miles'], ['22202', '17', 'AW00022202', 'NULL', 'Roberto', 'A', 'Diaz', '0', '1963-01-03', 'M', 'NULL', 'M', 'roberto2@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6161 Stimel Drive', 'NULL', '1 (11) 500 555-0154', '2012-05-07', '5-10 Miles'], ['22203', '37', 'AW00022203', 'NULL', 'Alisha', 'NULL', 'Zheng', '0', '1969-06-12', 'M', 'NULL', 'F', 'alisha20@adventure-works.com', '100000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '8788 Green Leaf Drive', 'NULL', '1 (11) 500 555-0111', '2012-05-23', '0-1 Miles'], ['22204', '31', 'AW00022204', 'NULL', 'Dustin', 'NULL', 'Xie', '0', '1963-12-22', 'M', 'NULL', 'M', 'dustin3@adventure-works.com', '110000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '3947 Vista Valley Rd', 'NULL', '1 (11) 500 555-0188', '2013-07-15', '2-5 Miles'], ['22205', '2', 'AW00022205', 'NULL', 'Bobby', 'D', 'Saunders', '0', '1964-02-07', 'M', 'NULL', 'M', 'bobby6@adventure-works.com', '110000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '2708 Stephanie Way', 'NULL', '1 (11) 500 555-0150', '2013-07-20', '0-1 Miles'], ['22206', '21', 'AW00022206', 'NULL', 'Cynthia', 'E', 'Rodriguez', '0', '1969-08-30', 'S', 'NULL', 'F', 'cynthia25@adventure-works.com', '110000.00', '5', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '275 South Ranchford Ct', 'NULL', '1 (11) 500 555-0198', '2013-08-12', '2-5 Miles'], ['22207', '5', 'AW00022207', 'NULL', 'Nancy', 'L', 'Sanchez', '0', '1963-07-01', 'S', 'NULL', 'F', 'nancy23@adventure-works.com', '130000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '7267 St. Raphael Drive', 'NULL', '1 (11) 500 555-0181', '2012-05-05', '0-1 Miles'], ['22208', '14', 'AW00022208', 'NULL', 'Candice', 'NULL', 'Liang', '0', '1965-04-09', 'M', 'NULL', 'F', 'candice0@adventure-works.com', '110000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '4823 Kirkwood Ct.', 'NULL', '1 (11) 500 555-0142', '2013-03-31', '0-1 Miles'], ['22209', '13', 'AW00022209', 'NULL', 'Cedric', 'NULL', 'Shen', '0', '1964-07-11', 'M', 'NULL', 'M', 'cedric24@adventure-works.com', '110000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '3717 Via Cordona', 'NULL', '1 (11) 500 555-0124', '2013-05-03', '0-1 Miles'], ['22210', '12', 'AW00022210', 'NULL', 'Martha', 'G', 'Yang', '0', '1970-04-03', 'M', 'NULL', 'F', 'martha4@adventure-works.com', '110000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '3463 Bel Air Dr.', 'NULL', '1 (11) 500 555-0151', '2013-06-11', '0-1 Miles'], ['22211', '631', 'AW00022211', 'NULL', 'Richard', 'D', 'Gray', '0', '1979-08-24', 'M', 'NULL', 'M', 'richard87@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8978 Kingsford Dr.', 'NULL', '500-555-0184', '2013-05-15', '5-10 Miles'], ['22212', '3', 'AW00022212', 'NULL', 'Kara', 'E', 'Xu', '0', '1964-09-03', 'M', 'NULL', 'F', 'kara5@adventure-works.com', '110000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '5744 Medina Dr.', 'NULL', '1 (11) 500 555-0180', '2013-05-03', '2-5 Miles'], ['22213', '30', 'AW00022213', 'NULL', 'Jay', 'NULL', 'Patel', '0', '1964-09-02', 'S', 'NULL', 'M', 'jay9@adventure-works.com', '110000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '861 Napa Ct.', 'NULL', '1 (11) 500 555-0150', '2013-02-27', '2-5 Miles'], ['22214', '34', 'AW00022214', 'NULL', 'Sabrina', 'A', 'Ruiz', '0', '1970-01-01', 'M', 'NULL', 'F', 'sabrina17@adventure-works.com', '120000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '9066 Vancouver Way', 'NULL', '1 (11) 500 555-0136', '2013-09-29', '2-5 Miles'], ['22215', '336', 'AW00022215', 'NULL', 'Samuel', 'R', 'Lal', '0', '1972-06-23', 'M', 'NULL', 'M', 'samuel26@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '488 Meadow Glen Way', 'NULL', '587-555-0173', '2013-04-14', '0-1 Miles'], ['22216', '372', 'AW00022216', 'NULL', 'Marcus', 'C', 'Howard', '0', '1977-03-11', 'S', 'NULL', 'M', 'marcus87@adventure-works.com', '150000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6886 Berry Dr.', 'NULL', '603-555-0128', '2013-06-11', '0-1 Miles'], ['22217', '59', 'AW00022217', 'NULL', 'Dylan', 'M', 'Powell', '0', '1963-06-17', 'M', 'NULL', 'M', 'dylan7@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8236 Almond Avenue', 'NULL', '540-555-0189', '2014-01-17', '1-2 Miles'], ['22218', '611', 'AW00022218', 'NULL', 'Christian', 'M', 'Bryant', '0', '1962-08-24', 'M', 'NULL', 'M', 'christian5@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '4199 Del Rey St', 'NULL', '448-555-0169', '2013-12-24', '1-2 Miles'], ['22219', '53', 'AW00022219', 'NULL', 'Juha-Pekka', 'NULL', 'Posti', '0', '1962-08-01', 'M', 'NULL', 'F', 'juha-pekka0@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6131 Green Leaf Drive', 'NULL', '130-555-0116', '2013-11-22', '5-10 Miles'], ['22220', '543', 'AW00022220', 'NULL', 'Brandon', 'NULL', 'Sharma', '0', '1967-12-30', 'M', 'NULL', 'M', 'brandon27@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '6781 M Ln.', 'NULL', '457-555-0140', '2013-12-26', '1-2 Miles'], ['22221', '310', 'AW00022221', 'NULL', 'Benjamin', 'NULL', 'Kumar', '0', '1968-10-14', 'M', 'NULL', 'M', 'benjamin30@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '3494 Radar Blvd', 'NULL', '581-555-0158', '2013-12-14', '1-2 Miles'], ['22222', '374', 'AW00022222', 'NULL', 'Angel', 'E', 'Hill', '0', '1963-01-21', 'M', 'NULL', 'M', 'angel36@adventure-works.com', '90000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '9204 Lexington Road', 'NULL', '859-555-0153', '2013-12-19', '5-10 Miles'], ['22223', '339', 'AW00022223', 'NULL', 'Gabrielle', 'NULL', 'Parker', '0', '1962-10-09', 'M', 'NULL', 'F', 'gabrielle51@adventure-works.com', '90000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6857 Medina Drive', 'NULL', '213-555-0111', '2013-09-27', '5-10 Miles'], ['22224', '307', 'AW00022224', 'NULL', 'Katherine', 'NULL', 'Alexander', '0', '1962-08-31', 'M', 'NULL', 'F', 'katherine45@adventure-works.com', '90000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '3675 Q St.', 'NULL', '638-555-0187', '2013-06-10', '2-5 Miles'], ['22225', '618', 'AW00022225', 'NULL', 'Jessica', 'NULL', 'Murphy', '0', '1962-08-31', 'S', 'NULL', 'F', 'jessica8@adventure-works.com', '90000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6883 Freda Drive', 'NULL', '813-555-0193', '2013-06-27', '2-5 Miles'], ['22226', '326', 'AW00022226', 'NULL', 'Morgan', 'A', 'Sanders', '0', '1962-04-23', 'M', 'NULL', 'F', 'morgan69@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '9590 Galloway Dr', 'NULL', '593-555-0164', '2013-03-18', '5-10 Miles'], ['22227', '301', 'AW00022227', 'NULL', 'Barbara', 'A', 'Cai', '0', '1961-11-18', 'M', 'NULL', 'F', 'barbara30@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '7521 Partridge Dr.', 'NULL', '332-555-0118', '2013-03-26', '5-10 Miles'], ['22228', '616', 'AW00022228', 'NULL', 'Katelyn', 'NULL', 'Gonzalez', '0', '1962-03-12', 'M', 'NULL', 'F', 'katelyn31@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '9113 Flamingo Dr.', 'NULL', '454-555-0116', '2013-10-31', '5-10 Miles'], ['22229', '301', 'AW00022229', 'NULL', 'Wyatt', 'NULL', 'Perry', '0', '1967-08-05', 'M', 'NULL', 'M', 'wyatt59@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '2360 St. George Court', 'NULL', '435-555-0159', '2013-12-04', '1-2 Miles'], ['22230', '54', 'AW00022230', 'NULL', 'Jordyn', 'L', 'Bennett', '0', '1962-03-22', 'M', 'NULL', 'F', 'jordyn0@adventure-works.com', '70000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1702 Vista', 'NULL', '627-555-0187', '2011-05-26', '5-10 Miles'], ['22231', '325', 'AW00022231', 'NULL', 'Grace', 'G', 'Brooks', '0', '1961-10-20', 'M', 'NULL', 'F', 'grace45@adventure-works.com', '70000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3711 Amargosa Drive', 'NULL', '101-555-0143', '2013-05-30', '5-10 Miles'], ['22232', '50', 'AW00022232', 'NULL', 'Paige', 'NULL', 'Brooks', '0', '1978-02-15', 'M', 'NULL', 'F', 'paige24@adventure-works.com', '50000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6052 Sandy Way', 'NULL', '876-555-0142', '2011-05-21', '1-2 Miles'], ['22233', '50', 'AW00022233', 'NULL', 'Xavier', 'NULL', 'Martin', '0', '1977-10-20', 'M', 'NULL', 'M', 'xavier12@adventure-works.com', '50000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4539 Leeds Ct', 'NULL', '398-555-0127', '2011-05-18', '0-1 Miles'], ['22234', '63', 'AW00022234', 'NULL', 'Katherine', 'NULL', 'Gonzalez', '0', '1977-08-07', 'M', 'NULL', 'F', 'katherine65@adventure-works.com', '50000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9424 Oakgrove', 'NULL', '474-555-0142', '2011-05-23', '0-1 Miles'], ['22235', '312', 'AW00022235', 'NULL', 'Sebastian', 'G', 'Peterson', '0', '1983-09-08', 'M', 'NULL', 'M', 'sebastian6@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5342 Pacheco St.', 'NULL', '339-555-0112', '2013-12-19', '0-1 Miles'], ['22236', '345', 'AW00022236', 'NULL', 'Jose', 'D', 'Gonzalez', '0', '1975-09-02', 'M', 'NULL', 'M', 'jose44@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3648 Willow Drive', 'NULL', '655-555-0121', '2013-12-27', '0-1 Miles'], ['22237', '325', 'AW00022237', 'NULL', 'Angel', 'C', 'Morris', '0', '1975-10-03', 'M', 'NULL', 'M', 'angel17@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '16 Heron Ct.', 'NULL', '538-555-0136', '2013-07-27', '0-1 Miles'], ['22238', '543', 'AW00022238', 'NULL', 'Alex', 'NULL', 'Murphy', '0', '1976-05-17', 'M', 'NULL', 'M', 'alex19@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7114 Ceemar Court', 'NULL', '413-555-0110', '2013-12-27', '2-5 Miles'], ['22239', '360', 'AW00022239', 'NULL', 'Jesse', 'NULL', 'Cook', '0', '1975-07-05', 'M', 'NULL', 'M', 'jesse22@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2928 Harmony Way', 'NULL', '213-555-0154', '2013-07-01', '0-1 Miles'], ['22240', '627', 'AW00022240', 'NULL', 'Miguel', 'NULL', 'Powell', '0', '1976-03-20', 'M', 'NULL', 'M', 'miguel55@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7269 Mesa Vista Dr.', 'NULL', '512-555-0144', '2013-06-04', '0-1 Miles'], ['22241', '634', 'AW00022241', 'NULL', 'Alexandria', 'M', 'Washington', '0', '1975-12-30', 'M', 'NULL', 'F', 'alexandria13@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1779 Virginia Hills Dr', 'NULL', '617-555-0119', '2013-12-11', '2-5 Miles'], ['22242', '648', 'AW00022242', 'NULL', 'Cameron', 'M', 'Walker', '0', '1976-06-25', 'M', 'NULL', 'M', 'cameron41@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6557 Jalalon Place', 'NULL', '964-555-0160', '2013-03-06', '0-1 Miles'], ['22243', '627', 'AW00022243', 'NULL', 'Emma', 'NULL', 'Lewis', '0', '1975-09-11', 'M', 'NULL', 'F', 'emma20@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7900 Black Walnut Ct.', 'NULL', '138-555-0185', '2013-12-04', '2-5 Miles'], ['22244', '614', 'AW00022244', 'NULL', 'Shelby', 'B', 'Howard', '0', '1974-11-15', 'M', 'NULL', 'F', 'shelby12@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6495 Army Dr', 'NULL', '608-555-0170', '2013-04-05', '0-1 Miles'], ['22245', '542', 'AW00022245', 'NULL', 'Evan', 'NULL', 'Lopez', '0', '1980-05-07', 'S', 'NULL', 'M', 'evan37@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4932 Reliz Valley Road', 'NULL', '252-555-0182', '2013-12-08', '2-5 Miles'], ['22246', '326', 'AW00022246', 'NULL', 'Jacqueline', 'G', 'Cox', '0', '1974-09-10', 'M', 'NULL', 'F', 'jacqueline34@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3275 Corrinne Court', 'NULL', '511-555-0117', '2013-12-02', '2-5 Miles'], ['22247', '62', 'AW00022247', 'NULL', 'Ryan', 'R', 'Williams', '0', '1975-04-06', 'M', 'NULL', 'M', 'ryan41@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5075 William Reed Dr.', 'NULL', '543-555-0176', '2011-06-20', '0-1 Miles'], ['22248', '300', 'AW00022248', 'NULL', 'Gary', 'S', 'Ramos', '0', '1980-10-14', 'M', 'NULL', 'M', 'gary28@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1342 Isla Bonita', 'NULL', '880-555-0119', '2013-12-01', '0-1 Miles'], ['22249', '335', 'AW00022249', 'NULL', 'Kevin', 'NULL', 'Chen', '0', '1977-02-04', 'M', 'NULL', 'M', 'kevin28@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4620 Mountain Spring Road', 'NULL', '431-555-0163', '2013-06-27', '2-5 Miles'], ['22250', '368', 'AW00022250', 'NULL', 'Michael', 'K', 'Wilson', '0', '1977-01-19', 'M', 'NULL', 'M', 'michael39@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6843 San Simeon Dr.', 'NULL', '387-555-0140', '2013-06-27', '0-1 Miles'], ['22251', '41', 'AW00022251', 'NULL', 'Martha', 'E', 'She', '0', '1981-12-15', 'M', 'NULL', 'F', 'martha22@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6827 Glaze Dr.', 'NULL', '929-555-0195', '2011-06-18', '0-1 Miles'], ['22252', '59', 'AW00022252', 'NULL', 'Makayla', 'NULL', 'Brooks', '0', '1976-01-05', 'S', 'NULL', 'F', 'makayla1@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6693 Ryan Rd', 'NULL', '336-555-0117', '2011-06-23', '2-5 Miles'], ['22253', '611', 'AW00022253', 'NULL', 'Stephanie', 'NULL', 'Reed', '0', '1975-08-06', 'M', 'NULL', 'F', 'stephanie7@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6507 Mayda Way', 'NULL', '217-555-0124', '2013-12-28', '2-5 Miles'], ['22254', '627', 'AW00022254', 'NULL', 'Fernando', 'C', 'Scott', '0', '1976-05-23', 'M', 'NULL', 'M', 'fernando29@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '342 San Simeon', 'NULL', '966-555-0175', '2013-01-13', '2-5 Miles'], ['22255', '637', 'AW00022255', 'NULL', 'Nicole', 'E', 'Rogers', '0', '1981-12-15', 'M', 'NULL', 'F', 'nicole28@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6827 Glazier Dr.', 'NULL', '286-555-0142', '2013-06-26', '0-1 Miles'], ['22256', '307', 'AW00022256', 'NULL', 'Edwin', 'NULL', 'Lu', '0', '1975-12-05', 'M', 'NULL', 'M', 'edwin12@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9788 Trinity Ave', 'NULL', '309-555-0192', '2013-06-01', '0-1 Miles'], ['22257', '311', 'AW00022257', 'NULL', 'Carrie', 'NULL', 'Romero', '0', '1975-08-06', 'M', 'NULL', 'F', 'carrie9@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6507 Mayda Way', 'NULL', '170-555-0168', '2013-06-06', '2-5 Miles'], ['22258', '325', 'AW00022258', 'NULL', 'Jessica', 'H', 'Reed', '0', '1975-10-18', 'M', 'NULL', 'F', 'jessica4@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7484 Lacanda Ct.', 'NULL', '487-555-0136', '2013-06-16', '0-1 Miles'], ['22259', '543', 'AW00022259', 'NULL', 'Dalton', 'R', 'Mitchell', '0', '1978-10-29', 'S', 'NULL', 'M', 'dalton36@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9461 Rose Ave', 'NULL', '433-555-0117', '2013-01-08', '2-5 Miles'], ['22260', '548', 'AW00022260', 'NULL', 'Courtney', 'M', 'Allen', '0', '1973-02-11', 'M', 'NULL', 'F', 'courtney19@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4689 Deerwood Court', 'NULL', '413-555-0137', '2013-01-07', '2-5 Miles'], ['22261', '299', 'AW00022261', 'NULL', 'Isaac', 'J', 'Allen', '0', '1978-03-06', 'S', 'NULL', 'M', 'isaac40@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4681 Holiday Hills', 'NULL', '775-555-0154', '2012-12-28', '2-5 Miles'], ['22262', '339', 'AW00022262', 'NULL', 'Marcus', 'NULL', 'Collins', '0', '1978-06-01', 'S', 'NULL', 'M', 'marcus48@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4546 Vista Valley Rd', 'NULL', '995-555-0181', '2013-01-22', '2-5 Miles'], ['22263', '623', 'AW00022263', 'NULL', 'Patrick', 'B', 'Blue', '0', '1971-11-24', 'M', 'NULL', 'M', 'patrick19@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8939 Monzeneda Way', 'NULL', '688-555-0112', '2014-01-22', '2-5 Miles'], ['22264', '49', 'AW00022264', 'NULL', 'Stephanie', 'NULL', 'Coleman', '0', '1972-05-13', 'S', 'NULL', 'F', 'stephanie33@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '7182 Olive Hill', 'NULL', '124-555-0115', '2013-06-10', '0-1 Miles'], ['22265', '63', 'AW00022265', 'NULL', 'Jeremiah', 'E', 'Sanchez', '0', '1972-05-13', 'M', 'NULL', 'M', 'jeremiah45@adventure-works.com', '70000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '2407 Banyan Way', 'NULL', '426-555-0142', '2013-03-10', '0-1 Miles'], ['22266', '345', 'AW00022266', 'NULL', 'Rachel', 'NULL', 'Sanders', '0', '1972-06-16', 'M', 'NULL', 'F', 'rachel46@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7480 Linton Terr', 'NULL', '176-555-0170', '2013-06-26', '2-5 Miles'], ['22267', '55', 'AW00022267', 'NULL', 'Brianna', 'J', 'Rodriguez', '0', '1971-08-15', 'M', 'NULL', 'F', 'brianna19@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7342 Dew Drop Circle', 'NULL', '116-555-0176', '2011-06-12', '0-1 Miles'], ['22268', '57', 'AW00022268', 'NULL', 'Alexandra', 'P', 'Barnes', '0', '1975-03-22', 'S', 'NULL', 'F', 'alexandra26@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4618 Olive Hill', 'NULL', '574-555-0184', '2011-06-27', '2-5 Miles'], ['22269', '311', 'AW00022269', 'NULL', 'Caleb', 'NULL', 'Yang', '0', '1985-08-13', 'M', 'NULL', 'M', 'caleb23@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '3', '2756 Sinclair Avenue', 'NULL', '109-555-0114', '2013-07-23', '10+ Miles'], ['22270', '325', 'AW00022270', 'NULL', 'Antonio', 'NULL', 'Gonzales', '0', '1974-10-13', 'M', 'NULL', 'M', 'antonio17@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2823 La Orinda Pl.', 'NULL', '678-555-0115', '2013-06-07', '0-1 Miles'], ['22271', '336', 'AW00022271', 'NULL', 'Connor', 'L', 'Mitchell', '0', '1980-02-21', 'M', 'NULL', 'M', 'connor39@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3946 Quigley Street', 'NULL', '588-555-0131', '2013-06-19', '0-1 Miles'], ['22272', '352', 'AW00022272', 'NULL', 'Isabella', 'NULL', 'Kelly', '0', '1980-03-03', 'M', 'NULL', 'F', 'isabella9@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1706 Valley Blvd.', 'NULL', '471-555-0148', '2013-06-21', '0-1 Miles'], ['22273', '307', 'AW00022273', 'NULL', 'Patricia', 'M', 'Rodriguez', '0', '1971-03-08', 'S', 'NULL', 'F', 'patricia21@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '417 Silver Oak Pl', 'NULL', '152-555-0182', '2013-01-17', '2-5 Miles'], ['22274', '642', 'AW00022274', 'NULL', 'Adam', 'NULL', 'Chen', '0', '1971-03-18', 'S', 'NULL', 'M', 'adam22@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2489 Teakwood Drive', 'NULL', '624-555-0118', '2013-01-21', '2-5 Miles'], ['22275', '336', 'AW00022275', 'NULL', 'Ian', 'R', 'Bailey', '0', '1976-02-16', 'S', 'NULL', 'M', 'ian83@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7107 Kingsford Dr.', 'NULL', '141-555-0190', '2013-02-08', '2-5 Miles'], ['22276', '361', 'AW00022276', 'NULL', 'Gabriella', 'M', 'Gray', '0', '1970-12-05', 'S', 'NULL', 'F', 'gabriella3@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '218 Baxter Court', 'NULL', '133-555-0116', '2013-02-02', '2-5 Miles'], ['22277', '632', 'AW00022277', 'NULL', 'Arianna', 'A', 'Torres', '0', '1976-07-21', 'S', 'NULL', 'F', 'arianna25@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4046 Maywood Lane', 'NULL', '714-555-0177', '2014-01-25', '2-5 Miles'], ['22278', '54', 'AW00022278', 'NULL', 'Mariah', 'NULL', 'Gray', '0', '1976-12-22', 'S', 'NULL', 'F', 'mariah30@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9829 Santa Ana Drive', 'NULL', '203-555-0115', '2013-03-16', '2-5 Miles'], ['22279', '302', 'AW00022279', 'NULL', 'Riley', 'NULL', 'Kelly', '0', '1971-05-09', 'M', 'NULL', 'F', 'riley22@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5832 Dellwood Court', 'NULL', '346-555-0177', '2013-12-04', '2-5 Miles'], ['22280', '314', 'AW00022280', 'NULL', 'Luis', 'A', 'Scott', '0', '1976-07-14', 'M', 'NULL', 'M', 'luis45@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '5966 Shannon Lane', 'NULL', '159-555-0196', '2013-05-17', '10+ Miles'], ['22281', '385', 'AW00022281', 'NULL', 'Alexia', 'NULL', 'Diaz', '0', '1971-03-11', 'M', 'NULL', 'F', 'alexia18@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '838 Monte Vista Road', 'NULL', '359-555-0158', '2013-02-15', '2-5 Miles'], ['22282', '542', 'AW00022282', 'NULL', 'Jonathan', 'NULL', 'Hughes', '0', '1975-01-23', 'S', 'NULL', 'M', 'jonathan11@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6706 Ridgeview Dr', 'NULL', '847-555-0120', '2013-01-30', '0-1 Miles'], ['22283', '546', 'AW00022283', 'NULL', 'Eduardo', 'F', 'Davis', '0', '1970-01-02', 'S', 'NULL', 'M', 'eduardo4@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4064 Regina Lane', 'NULL', '857-555-0182', '2013-08-20', '2-5 Miles'], ['22284', '300', 'AW00022284', 'NULL', 'Kristy', 'NULL', 'Sanz', '0', '1975-06-24', 'S', 'NULL', 'F', 'kristy18@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '590 Sudan Loop', 'NULL', '118-555-0169', '2013-01-28', '10+ Miles'], ['22285', '49', 'AW00022285', 'NULL', 'Meredith', 'D', 'Moreno', '0', '1970-05-22', 'M', 'NULL', 'F', 'meredith29@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6832 Le Jean Way', 'NULL', '415-555-0131', '2013-07-14', '10+ Miles'], ['22286', '361', 'AW00022286', 'NULL', 'Gabriel', 'L', 'Hughes', '0', '1975-08-09', 'M', 'NULL', 'M', 'gabriel8@adventure-works.com', '60000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6120 Vine Maple Street', 'NULL', '285-555-0183', '2013-05-12', '10+ Miles'], ['22287', '336', 'AW00022287', 'NULL', 'Megan', 'A', 'Griffin', '0', '1975-08-15', 'S', 'NULL', 'F', 'megan68@adventure-works.com', '60000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '207 Barquentine Court', 'NULL', '970-555-0118', '2013-02-18', '5-10 Miles'], ['22288', '536', 'AW00022288', 'NULL', 'Isabel', 'M', 'Patterson', '0', '1970-05-26', 'S', 'NULL', 'F', 'isabel11@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8748 Creekside Dr.', 'NULL', '706-555-0118', '2013-02-07', '0-1 Miles'], ['22289', '298', 'AW00022289', 'NULL', 'Thomas', 'E', 'Long', '0', '1980-11-07', 'M', 'NULL', 'M', 'thomas11@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6345 Fox Way', 'NULL', '749-555-0158', '2013-02-06', '2-5 Miles'], ['22290', '637', 'AW00022290', 'NULL', 'Jocelyn', 'R', 'Jenkins', '0', '1980-03-16', 'M', 'NULL', 'F', 'jocelyn7@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '7632 Willbrook Court', 'NULL', '763-555-0121', '2013-06-05', '2-5 Miles'], ['22291', '299', 'AW00022291', 'NULL', 'Carlos', 'J', 'Morris', '0', '1974-02-22', 'M', 'NULL', 'M', 'carlos21@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '230 Lavere Way', 'NULL', '931-555-0175', '2013-05-31', '0-1 Miles'], ['22292', '301', 'AW00022292', 'NULL', 'Stacy', 'M', 'Gomez', '0', '1968-09-05', 'M', 'NULL', 'F', 'stacy2@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '3960 Thornhill Pl.', 'NULL', '140-555-0110', '2013-06-26', '0-1 Miles'], ['22293', '322', 'AW00022293', 'NULL', 'Jasmine', 'S', 'Johnson', '0', '1968-12-17', 'M', 'NULL', 'F', 'jasmine1@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '1395 Bonanza', 'NULL', '836-555-0179', '2013-06-06', '2-5 Miles'], ['22294', '325', 'AW00022294', 'NULL', 'Rachel', 'NULL', 'Brown', '0', '1974-04-09', 'S', 'NULL', 'F', 'rachel6@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6054 Laguna Circle', 'NULL', '148-555-0141', '2013-06-22', '2-5 Miles'], ['22295', '329', 'AW00022295', 'NULL', 'Jade', 'P', 'Morgan', '0', '1973-09-13', 'S', 'NULL', 'F', 'jade10@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6672 Mt. Dias Blvd.', 'NULL', '984-555-0190', '2013-06-23', '2-5 Miles'], ['22296', '335', 'AW00022296', 'NULL', 'Benjamin', 'M', 'Johnson', '0', '1984-09-16', 'M', 'NULL', 'M', 'benjamin47@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4137 Garcia Ranch Road', 'NULL', '913-555-0137', '2013-10-27', '0-1 Miles'], ['22297', '355', 'AW00022297', 'NULL', 'Jasmine', 'A', 'Garcia', '0', '1974-02-16', 'S', 'NULL', 'F', 'jasmine14@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7583 Green Hill Rd', 'NULL', '121-555-0131', '2013-06-16', '2-5 Miles'], ['22298', '372', 'AW00022298', 'NULL', 'Marcus', 'B', 'Williams', '0', '1979-04-17', 'S', 'NULL', 'M', 'marcus2@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5050 Mt. Wilson Way', 'NULL', '781-555-0122', '2013-07-24', '2-5 Miles'], ['22299', '59', 'AW00022299', 'NULL', 'Richard', 'M', 'Murphy', '0', '1974-12-23', 'S', 'NULL', 'M', 'richard96@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '4528 Summit View Dr.', 'NULL', '258-555-0135', '2011-06-07', '2-5 Miles'], ['22300', '634', 'AW00022300', 'NULL', 'Kaitlyn', 'NULL', 'Price', '0', '1974-03-14', 'S', 'NULL', 'F', 'kaitlyn68@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '8991 Olivera', 'NULL', '926-555-0170', '2013-02-22', '0-1 Miles'], ['22301', '334', 'AW00022301', 'NULL', 'Abigail', 'NULL', 'Rodriguez', '0', '1974-09-09', 'M', 'NULL', 'F', 'abigail61@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7633 Stonehedge Dr.', 'NULL', '771-555-0162', '2013-02-06', '0-1 Miles'], ['22302', '243', 'AW00022302', 'NULL', 'Clayton', 'J', 'Guo', '0', '1979-07-14', 'M', 'NULL', 'M', 'clayton16@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3654 Alaska Dr.', 'NULL', '1 (11) 500 555-0158', '2013-07-10', '1-2 Miles'], ['22303', '213', 'AW00022303', 'NULL', 'Philip', 'L', 'Alonso', '0', '1977-08-20', 'S', 'NULL', 'M', 'philip8@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '93, avenue des Champs-Elysées', 'NULL', '1 (11) 500 555-0166', '2013-12-14', '1-2 Miles'], ['22304', '256', 'AW00022304', 'NULL', 'Jaime', 'NULL', 'Vazquez', '0', '1977-12-25', 'S', 'NULL', 'F', 'jaime16@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '2974 Yolanda Circle', 'NULL', '1 (11) 500 555-0163', '2013-07-22', '0-1 Miles'], ['22305', '248', 'AW00022305', 'NULL', 'Anne', 'H', 'Carlson', '0', '1978-05-21', 'S', 'NULL', 'F', 'anne20@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '1097 Kulani Lane', 'NULL', '1 (11) 500 555-0143', '2014-01-05', '0-1 Miles'], ['22306', '196', 'AW00022306', 'NULL', 'Ivan', 'T', 'Kapoor', '0', '1978-10-09', 'S', 'NULL', 'M', 'ivan1@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '17, avenue de l´Europe', 'NULL', '1 (11) 500 555-0134', '2013-05-05', '1-2 Miles'], ['22307', '120', 'AW00022307', 'NULL', 'Sarah', 'L', 'Ross', '0', '1984-03-12', 'M', 'NULL', 'F', 'sarah29@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Brunnenstr 123', 'NULL', '1 (11) 500 555-0124', '2013-10-01', '0-1 Miles'], ['22308', '237', 'AW00022308', 'NULL', 'Cassandra', 'NULL', 'Lopez', '0', '1979-02-19', 'M', 'NULL', 'F', 'cassandra18@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6897 Pome Court', 'NULL', '1 (11) 500 555-0173', '2013-06-30', '1-2 Miles'], ['22309', '246', 'AW00022309', 'NULL', 'Leah', 'L', 'Zhou', '0', '1978-12-30', 'M', 'NULL', 'F', 'leah6@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2577 Dover Way', 'NULL', '1 (11) 500 555-0172', '2013-08-13', '1-2 Miles'], ['22310', '171', 'AW00022310', 'NULL', 'Christina', 'NULL', 'Sanders', '0', '1983-03-10', 'S', 'NULL', 'F', 'christina2@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Zeiter Weg 7765', 'NULL', '1 (11) 500 555-0117', '2013-06-24', '1-2 Miles'], ['22311', '277', 'AW00022311', 'NULL', 'Bruce', 'NULL', 'Sara', '0', '1978-01-01', 'S', 'NULL', 'M', 'bruce9@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '5237 Babel Lane', 'NULL', '1 (11) 500 555-0144', '2013-07-15', '1-2 Miles'], ['22312', '183', 'AW00022312', 'NULL', 'Kristi', 'D', 'Mehta', '0', '1983-08-06', 'M', 'NULL', 'F', 'kristi31@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '281, rue de Varenne', 'NULL', '1 (11) 500 555-0197', '2013-01-11', '1-2 Miles'], ['22313', '271', 'AW00022313', 'NULL', 'Jarrod', 'H', 'Martinez', '0', '1977-12-04', 'S', 'NULL', 'M', 'jarrod16@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6104 North Civic Drive', 'NULL', '1 (11) 500 555-0122', '2013-08-03', '1-2 Miles'], ['22314', '225', 'AW00022314', 'NULL', 'Brandy', 'NULL', 'Patel', '0', '1977-05-14', 'M', 'NULL', 'F', 'brandy21@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '701, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0188', '2013-08-01', '0-1 Miles'], ['22315', '278', 'AW00022315', 'NULL', 'Darren', 'K', 'Raman', '0', '1982-02-24', 'S', 'NULL', 'M', 'darren15@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '5069 Kipling Court', 'NULL', '1 (11) 500 555-0126', '2013-10-23', '1-2 Miles'], ['22316', '202', 'AW00022316', 'NULL', 'Deanna', 'S', 'Sara', '0', '1976-09-17', 'M', 'NULL', 'F', 'deanna14@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '68, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0118', '2013-05-29', '0-1 Miles'], ['22317', '161', 'AW00022317', 'NULL', 'Karla', 'NULL', 'Nath', '0', '1982-05-05', 'S', 'NULL', 'F', 'karla19@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Räuscherweg 664', 'NULL', '1 (11) 500 555-0141', '2013-03-01', '0-1 Miles'], ['22318', '143', 'AW00022318', 'NULL', 'Ramon', 'D', 'Xu', '0', '1976-09-04', 'S', 'NULL', 'M', 'ramon12@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Am Kreuz 4055', 'NULL', '1 (11) 500 555-0193', '2013-12-26', '2-5 Miles'], ['22319', '199', 'AW00022319', 'NULL', 'Jorge', 'M', 'Zhou', '0', '1977-05-06', 'S', 'NULL', 'M', 'jorge10@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '9, rue de la Comédie', 'NULL', '1 (11) 500 555-0198', '2013-05-25', '2-5 Miles'], ['22320', '230', 'AW00022320', 'NULL', 'Danny', 'L', 'Gill', '0', '1977-04-26', 'M', 'NULL', 'M', 'danny14@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '7172 Parkway Drive', 'NULL', '1 (11) 500 555-0174', '2013-08-06', '1-2 Miles'], ['22321', '276', 'AW00022321', 'NULL', 'Alan', 'M', 'Zeng', '0', '1975-07-26', 'S', 'NULL', 'M', 'alan26@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6289 Duck Horn Court', 'NULL', '1 (11) 500 555-0117', '2013-08-12', '1-2 Miles'], ['22322', '220', 'AW00022322', 'NULL', 'Roger', 'NULL', 'Zhao', '0', '1977-05-14', 'S', 'NULL', 'M', 'roger15@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '67, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0114', '2013-05-03', '2-5 Miles'], ['22323', '211', 'AW00022323', 'NULL', 'Erica', 'C', 'Liang', '0', '1977-06-10', 'S', 'NULL', 'F', 'erica16@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2110321, boulevard Beau Marchais', 'NULL', '1 (11) 500 555-0149', '2013-01-21', '1-2 Miles'], ['22324', '217', 'AW00022324', 'NULL', 'Kari', 'A', 'Gill', '0', '1977-02-05', 'M', 'NULL', 'F', 'kari34@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '80, avenue de Malakoff', 'NULL', '1 (11) 500 555-0141', '2013-03-28', '0-1 Miles'], ['22325', '243', 'AW00022325', 'NULL', 'Noah', 'J', 'Rodriguez', '0', '1981-06-16', 'S', 'NULL', 'M', 'noah67@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2200 Rock Oak Road', 'NULL', '1 (11) 500 555-0153', '2013-07-29', '1-2 Miles'], ['22326', '635', 'AW00022326', 'NULL', 'Riley', 'A', 'Howard', '0', '1980-08-22', 'S', 'NULL', 'F', 'riley31@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2264 Story Lane', 'NULL', '232-555-0114', '2013-11-06', '0-1 Miles'], ['22327', '612', 'AW00022327', 'NULL', 'Jake', 'T', 'Cai', '0', '1985-11-16', 'S', 'NULL', 'M', 'jake19@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5415 Beechwood Dr.', 'NULL', '354-555-0116', '2013-02-16', '1-2 Miles'], ['22328', '612', 'AW00022328', 'NULL', 'Grace', 'D', 'Anderson', '0', '1979-12-30', 'S', 'NULL', 'F', 'grace9@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8826 Kinross Drive', 'NULL', '237-555-0198', '2013-02-08', '1-2 Miles'], ['22329', '542', 'AW00022329', 'NULL', 'Grace', 'Y', 'Peterson', '0', '1979-07-02', 'M', 'NULL', 'F', 'grace40@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1755 Winton Drive', 'NULL', '554-555-0118', '2013-02-24', '1-2 Miles'], ['22330', '311', 'AW00022330', 'NULL', 'Jose', 'NULL', 'Walker', '0', '1979-10-01', 'M', 'NULL', 'M', 'jose66@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3869 Adobe Dr.', 'NULL', '736-555-0124', '2013-01-28', '1-2 Miles'], ['22331', '307', 'AW00022331', 'NULL', 'Michele', 'L', 'Yuan', '0', '1935-03-20', 'M', 'NULL', 'F', 'michele7@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '8074 Oakmead', 'NULL', '598-555-0156', '2014-01-15', '0-1 Miles'], ['22332', '62', 'AW00022332', 'NULL', 'Brittany', 'J', 'Bennett', '0', '1937-01-09', 'M', 'NULL', 'F', 'brittany1@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9012 F St.', 'NULL', '862-555-0191', '2013-06-16', '2-5 Miles'], ['22333', '546', 'AW00022333', 'NULL', 'Gabriella', 'D', 'Watson', '0', '1937-02-09', 'M', 'NULL', 'F', 'gabriella6@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9147 Meadowlark Court', 'NULL', '120-555-0179', '2013-03-04', '1-2 Miles'], ['22334', '612', 'AW00022334', 'NULL', 'Juan', 'NULL', 'Serrano', '0', '1977-05-20', 'M', 'NULL', 'M', 'juan4@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1646 Seal Way', 'NULL', '780-555-0126', '2013-02-23', '1-2 Miles'], ['22335', '623', 'AW00022335', 'NULL', 'Anthony', 'F', 'Taylor', '0', '1977-11-20', 'M', 'NULL', 'M', 'anthony18@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7388 Greenview Court', 'NULL', '685-555-0172', '2013-03-11', '1-2 Miles'], ['22336', '302', 'AW00022336', 'NULL', 'Frank', 'E', 'Moreno', '0', '1977-10-31', 'M', 'NULL', 'M', 'frank14@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3332 Green Valley Road', 'NULL', '148-555-0131', '2013-03-26', '1-2 Miles'], ['22337', '310', 'AW00022337', 'NULL', 'Haley', 'L', 'Jenkins', '0', '1958-10-01', 'M', 'NULL', 'F', 'haley25@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '5464 Janin Pl.', 'NULL', '562-555-0130', '2013-10-14', '1-2 Miles'], ['22338', '314', 'AW00022338', 'NULL', 'Thomas', 'NULL', 'Russell', '0', '1964-03-22', 'M', 'NULL', 'M', 'thomas22@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '2102 W. 35th Street', 'NULL', '360-555-0165', '2013-02-02', '1-2 Miles'], ['22339', '634', 'AW00022339', 'NULL', 'Richard', 'NULL', 'Nelson', '0', '1959-05-02', 'M', 'NULL', 'M', 'richard29@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '7970 Madrid', 'NULL', '730-555-0154', '2013-08-01', '1-2 Miles'], ['22340', '368', 'AW00022340', 'NULL', 'Isaac', 'NULL', 'Young', '0', '1959-04-01', 'M', 'NULL', 'M', 'isaac39@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '658 Elmhurst Lane', 'NULL', '421-555-0114', '2013-09-02', '1-2 Miles'], ['22341', '542', 'AW00022341', 'NULL', 'Tristan', 'A', 'Washington', '0', '1959-05-16', 'M', 'NULL', 'M', 'tristan14@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '5159 Amanda Circle', 'NULL', '194-555-0163', '2014-01-27', '0-1 Miles'], ['22342', '612', 'AW00022342', 'NULL', 'Jon', 'M', 'Lal', '0', '1965-09-30', 'M', 'NULL', 'M', 'jon4@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5649 East 39th Street', 'NULL', '953-555-0197', '2013-10-01', '1-2 Miles'], ['22343', '641', 'AW00022343', 'NULL', 'Brittany', 'C', 'Powell', '0', '1960-01-04', 'M', 'NULL', 'F', 'brittany7@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7418 Jumping St.', 'NULL', '193-555-0183', '2013-04-04', '1-2 Miles'], ['22344', '307', 'AW00022344', 'NULL', 'Krystal', 'NULL', 'Yang', '0', '1960-06-22', 'M', 'NULL', 'F', 'krystal5@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6594 Jefferson St.', 'NULL', '155-555-0182', '2013-05-28', '1-2 Miles'], ['22345', '368', 'AW00022345', 'NULL', 'Amanda', 'R', 'James', '0', '1961-01-14', 'M', 'NULL', 'F', 'amanda17@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2 Columbia River Ct.', 'NULL', '281-555-0144', '2013-02-17', '1-2 Miles'], ['22346', '300', 'AW00022346', 'NULL', 'Catherine', 'S', 'Howard', '0', '1971-09-30', 'M', 'NULL', 'F', 'catherine10@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '325 Woodbury Place', 'NULL', '196-555-0125', '2013-03-01', '1-2 Miles'], ['22347', '383', 'AW00022347', 'NULL', 'Abigail', 'F', 'Long', '0', '1967-02-13', 'M', 'NULL', 'F', 'abigail34@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5652 East View Place', 'NULL', '697-555-0185', '2013-09-18', '0-1 Miles'], ['22348', '347', 'AW00022348', 'NULL', 'Zoe', 'E', 'Torres', '0', '1961-12-29', 'M', 'NULL', 'F', 'zoe11@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4109 Perry Way', 'NULL', '669-555-0163', '2013-05-26', '1-2 Miles'], ['22349', '62', 'AW00022349', 'NULL', 'Mason', 'J', 'Morris', '0', '1967-10-18', 'M', 'NULL', 'M', 'mason17@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '662 T St.', 'NULL', '911-555-0137', '2013-08-17', '1-2 Miles'], ['22350', '637', 'AW00022350', 'NULL', 'Riley', 'M', 'Powell', '0', '1961-12-04', 'M', 'NULL', 'F', 'riley6@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6516 Beauer Lane', 'NULL', '986-555-0185', '2013-10-19', '1-2 Miles'], ['22351', '612', 'AW00022351', 'NULL', 'Sarah', 'V', 'Davis', '0', '1962-03-12', 'M', 'NULL', 'F', 'sarah7@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', 'P. O. Box 1053', 'NULL', '112-555-0188', '2013-06-19', '0-1 Miles'], ['22352', '334', 'AW00022352', 'NULL', 'Elizabeth', 'J', 'Moore', '0', '1963-06-04', 'M', 'NULL', 'F', 'elizabeth12@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1439 Springvale Court', 'NULL', '992-555-0131', '2013-09-07', '0-1 Miles'], ['22353', '55', 'AW00022353', 'NULL', 'Amanda', 'NULL', 'Allen', '0', '1962-09-04', 'M', 'NULL', 'F', 'amanda67@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8702 Nightingale Drive', 'NULL', '364-555-0150', '2013-07-20', '1-2 Miles'], ['22354', '71', 'AW00022354', 'NULL', 'Sara', 'NULL', 'King', '0', '1962-08-31', 'M', 'NULL', 'F', 'sara46@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2270 Gill Dr.', 'NULL', '428-555-0136', '2013-07-06', '0-1 Miles'], ['22355', '311', 'AW00022355', 'NULL', 'Logan', 'NULL', 'Jones', '0', '1979-04-20', 'M', 'NULL', 'M', 'logan52@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7860 Banbury Loop', 'NULL', '480-555-0159', '2013-06-04', '0-1 Miles'], ['22356', '325', 'AW00022356', 'NULL', 'Charles', 'NULL', 'Ward', '0', '1962-08-26', 'M', 'NULL', 'M', 'charles51@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4779 Scenic Dr.', 'NULL', '460-555-0140', '2014-01-26', '1-2 Miles'], ['22357', '316', 'AW00022357', 'NULL', 'Justin', 'NULL', 'Lal', '0', '1979-01-13', 'M', 'NULL', 'M', 'justin26@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4169 Deercreek Ln', 'NULL', '173-555-0176', '2014-01-14', '1-2 Miles'], ['22358', '316', 'AW00022358', 'NULL', 'Sydney', 'L', 'Butler', '0', '1963-02-05', 'M', 'NULL', 'F', 'sydney36@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2648 Hillcrest', 'NULL', '771-555-0180', '2013-05-22', '0-1 Miles'], ['22359', '68', 'AW00022359', 'NULL', 'Ethan', 'J', 'Lee', '0', '1969-10-22', 'S', 'NULL', 'M', 'ethan50@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '9947 Buskirk Avenue', 'NULL', '706-555-0191', '2013-05-03', '0-1 Miles'], ['22360', '612', 'AW00022360', 'NULL', 'Caleb', 'NULL', 'Collins', '0', '1963-07-13', 'S', 'NULL', 'M', 'caleb31@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '1426 Waterfall Way', 'NULL', '462-555-0162', '2013-07-27', '0-1 Miles'], ['22361', '343', 'AW00022361', 'NULL', 'Nathan', 'G', 'White', '0', '1964-04-19', 'M', 'NULL', 'M', 'nathan70@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6577 La Canada', 'NULL', '861-555-0137', '2013-06-23', '0-1 Miles'], ['22362', '312', 'AW00022362', 'NULL', 'Austin', 'NULL', 'Russell', '0', '1964-05-12', 'M', 'NULL', 'M', 'austin16@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '9641 M St.', 'NULL', '256-555-0186', '2013-09-10', '0-1 Miles'], ['22363', '50', 'AW00022363', 'NULL', 'Faith', 'M', 'Diaz', '0', '1969-04-17', 'S', 'NULL', 'F', 'faith21@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8831 Lemonwood Drive', 'NULL', '887-555-0115', '2013-06-26', '1-2 Miles'], ['22364', '360', 'AW00022364', 'NULL', 'Katherine', 'E', 'Jenkins', '0', '1964-03-19', 'M', 'NULL', 'F', 'katherine32@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7906 Clayburn Road', 'NULL', '428-555-0132', '2013-07-18', '1-2 Miles'], ['22365', '361', 'AW00022365', 'NULL', 'Sebastian', 'C', 'Richardson', '0', '1963-08-30', 'M', 'NULL', 'M', 'sebastian10@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '339 Norcross Lane', 'NULL', '347-555-0164', '2013-02-07', '0-1 Miles'], ['22366', '66', 'AW00022366', 'NULL', 'Logan', 'C', 'Henderson', '0', '1964-01-13', 'M', 'NULL', 'M', 'logan7@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '1695 Valley High Dr', 'NULL', '154-555-0134', '2013-08-06', '0-1 Miles'], ['22367', '352', 'AW00022367', 'NULL', 'Jasmine', 'NULL', 'Griffin', '0', '1964-04-11', 'S', 'NULL', 'F', 'jasmine60@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '805 Willow Lane', 'NULL', '519-555-0199', '2013-04-26', '1-2 Miles'], ['22368', '633', 'AW00022368', 'NULL', 'Edward', 'NULL', 'Ross', '0', '1975-09-19', 'S', 'NULL', 'M', 'edward52@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '2321 Wilson Ln.', 'NULL', '535-555-0118', '2013-03-22', '1-2 Miles'], ['22369', '302', 'AW00022369', 'NULL', 'Louis', 'D', 'Deng', '0', '1964-11-01', 'M', 'NULL', 'M', 'louis18@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7745 Relis Valley Road', 'NULL', '824-555-0117', '2013-06-11', '1-2 Miles'], ['22370', '334', 'AW00022370', 'NULL', 'Carol', 'L', 'Patterson', '0', '1964-11-07', 'S', 'NULL', 'F', 'carol25@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3974 Diver Way', 'NULL', '257-555-0139', '2013-12-26', '1-2 Miles'], ['22371', '55', 'AW00022371', 'NULL', 'Blake', 'J', 'Powell', '0', '1978-04-13', 'S', 'NULL', 'M', 'blake56@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '8764 Mt. Pisgah', 'NULL', '565-555-0115', '2013-07-28', '0-1 Miles'], ['22372', '361', 'AW00022372', 'NULL', 'Melanie', 'NULL', 'Perry', '0', '1978-02-22', 'S', 'NULL', 'F', 'melanie23@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9982 Fawn Glen Circle', 'NULL', '936-555-0151', '2013-03-07', '1-2 Miles'], ['22373', '60', 'AW00022373', 'NULL', 'Gabrielle', 'NULL', 'Bell', '0', '1979-03-24', 'S', 'NULL', 'F', 'gabrielle6@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4068 Camelback Road', 'NULL', '123-555-0110', '2011-06-20', '1-2 Miles'], ['22374', '618', 'AW00022374', 'NULL', 'Luke', 'NULL', 'Patterson', '0', '1978-09-01', 'M', 'NULL', 'M', 'luke29@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6381 Cardinal', 'NULL', '560-555-0134', '2013-03-27', '1-2 Miles'], ['22375', '335', 'AW00022375', 'NULL', 'Jasmine', 'T', 'Williams', '0', '1979-03-26', 'S', 'NULL', 'F', 'jasmine2@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7763 Folson Drive', 'NULL', '690-555-0185', '2013-09-12', '1-2 Miles'], ['22376', '542', 'AW00022376', 'NULL', 'Marcus', 'R', 'Martin', '0', '1977-09-15', 'S', 'NULL', 'M', 'marcus15@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5690 Morgan Territory Rd', 'NULL', '338-555-0113', '2013-06-14', '1-2 Miles'], ['22377', '183', 'AW00022377', 'NULL', 'Roger', 'NULL', 'Zeng', '0', '1978-03-08', 'S', 'NULL', 'M', 'roger26@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '1, rue Pierre-Demoulin', 'NULL', '1 (11) 500 555-0165', '2013-10-13', '0-1 Miles'], ['22378', '219', 'AW00022378', 'NULL', 'Rebekah', 'G', 'Malhotra', '0', '1967-08-14', 'S', 'NULL', 'F', 'rebekah5@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '38, chaussée de Tournai', 'NULL', '1 (11) 500 555-0180', '2013-04-08', '0-1 Miles'], ['22379', '224', 'AW00022379', 'NULL', 'Fernando', 'G', 'Hayes', '0', '1973-07-13', 'S', 'NULL', 'M', 'fernando64@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '98, rue Marbeuf', 'NULL', '1 (11) 500 555-0161', '2013-10-30', '0-1 Miles'], ['22380', '126', 'AW00022380', 'NULL', 'Brendan', 'C', 'Nath', '0', '1968-02-20', 'S', 'NULL', 'M', 'brendan16@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Räuscherweg 193', 'NULL', '1 (11) 500 555-0188', '2013-04-03', '0-1 Miles'], ['22381', '120', 'AW00022381', 'NULL', 'Hunter', 'B', 'Patterson', '0', '1967-09-20', 'M', 'NULL', 'M', 'hunter7@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Galeriestr 229', 'NULL', '1 (11) 500 555-0182', '2013-05-18', '0-1 Miles'], ['22382', '250', 'AW00022382', 'NULL', 'Bethany', 'F', 'Xu', '0', '1968-05-25', 'S', 'NULL', 'F', 'bethany8@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '539 Rolling Green Circle', 'NULL', '1 (11) 500 555-0114', '2014-01-09', '0-1 Miles'], ['22383', '261', 'AW00022383', 'NULL', 'Devin', 'NULL', 'Jenkins', '0', '1973-02-17', 'M', 'NULL', 'M', 'devin45@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8548 Sony Hill Circle', 'NULL', '1 (11) 500 555-0114', '2013-08-01', '0-1 Miles'], ['22384', '121', 'AW00022384', 'NULL', 'Paige', 'A', 'Sanchez', '0', '1967-03-27', 'S', 'NULL', 'F', 'paige42@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Heiderweg 4982', 'NULL', '1 (11) 500 555-0185', '2013-06-25', '0-1 Miles'], ['22385', '230', 'AW00022385', 'NULL', 'Misty', 'L', 'Lal', '0', '1967-06-14', 'M', 'NULL', 'F', 'misty10@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2184 Vallejo', 'NULL', '1 (11) 500 555-0110', '2013-09-11', '0-1 Miles'], ['22386', '174', 'AW00022386', 'NULL', 'Jerome', 'A', 'Gill', '0', '1940-09-11', 'M', 'NULL', 'M', 'jerome12@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Reiherweg 4164', 'NULL', '1 (11) 500 555-0132', '2013-09-20', '0-1 Miles'], ['22387', '173', 'AW00022387', 'NULL', 'Audrey', 'S', 'Romero', '0', '1942-05-19', 'M', 'NULL', 'F', 'audrey10@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Kulmer Straße 566', 'NULL', '1 (11) 500 555-0119', '2013-10-15', '0-1 Miles'], ['22388', '241', 'AW00022388', 'NULL', 'Bradley', 'L', 'Beck', '0', '1941-11-13', 'M', 'NULL', 'M', 'bradley22@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8566 Beatrice Rd.', 'NULL', '1 (11) 500 555-0155', '2013-03-25', '0-1 Miles'], ['22389', '121', 'AW00022389', 'NULL', 'Edwin', 'S', 'Luo', '0', '1963-03-15', 'M', 'NULL', 'M', 'edwin28@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Waldstr 992', 'NULL', '1 (11) 500 555-0192', '2014-01-12', '0-1 Miles'], ['22390', '176', 'AW00022390', 'NULL', 'Kelvin', 'A', 'Zheng', '0', '1962-08-02', 'M', 'NULL', 'M', 'kelvin38@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Residenz Straße 644', 'Unit F', '1 (11) 500 555-0115', '2013-07-13', '0-1 Miles'], ['22391', '175', 'AW00022391', 'NULL', 'Angela', 'M', 'Watson', '0', '1959-12-03', 'M', 'NULL', 'F', 'angela26@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Essener Straße 326', 'NULL', '1 (11) 500 555-0122', '2013-12-16', '0-1 Miles'], ['22392', '220', 'AW00022392', 'NULL', 'Bailey', 'A', 'Gray', '0', '1965-05-10', 'M', 'NULL', 'F', 'bailey4@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '505, quai Paul Doumer', 'NULL', '1 (11) 500 555-0130', '2013-06-05', '0-1 Miles'], ['22393', '150', 'AW00022393', 'NULL', 'Chelsea', 'K', 'Perez', '0', '1965-03-12', 'S', 'NULL', 'F', 'chelsea23@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Haberstr 18', 'NULL', '1 (11) 500 555-0130', '2013-01-17', '0-1 Miles'], ['22394', '222', 'AW00022394', 'NULL', 'Meagan', 'D', 'Suri', '0', '1942-12-04', 'S', 'NULL', 'F', 'meagan0@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '2, rue Villedo', 'NULL', '1 (11) 500 555-0187', '2014-01-25', '0-1 Miles'], ['22395', '196', 'AW00022395', 'NULL', 'Jermaine', 'E', 'Patel', '0', '1943-11-22', 'S', 'NULL', 'M', 'jermaine2@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2822 Bluejay Dr.', 'NULL', '1 (11) 500 555-0179', '2013-05-31', '0-1 Miles'], ['22396', '274', 'AW00022396', 'NULL', 'Rebekah', 'R', 'Patel', '0', '1952-08-24', 'S', 'NULL', 'F', 'rebekah3@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7669 Alpine Dr.', 'NULL', '1 (11) 500 555-0118', '2013-08-10', '0-1 Miles'], ['22397', '215', 'AW00022397', 'NULL', 'Marie', 'NULL', 'Patel', '0', '1948-02-02', 'M', 'NULL', 'F', 'marie7@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '1234, rue Saint-Lazare', 'NULL', '1 (11) 500 555-0140', '2013-05-28', '0-1 Miles'], ['22398', '132', 'AW00022398', 'NULL', 'Sheila', 'C', 'Moreno', '0', '1947-09-09', 'M', 'NULL', 'F', 'sheila6@adventure-works.com', '20000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Räuscherweg 292', 'NULL', '1 (11) 500 555-0153', '2013-01-26', '0-1 Miles'], ['22399', '9', 'AW00022399', 'NULL', 'Arthur', 'J', 'Fernandez', '0', '1985-07-05', 'S', 'NULL', 'M', 'arthur18@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '113 Gordon Ct.', 'NULL', '1 (11) 500 555-0142', '2012-05-17', '1-2 Miles'], ['22400', '38', 'AW00022400', 'NULL', 'Ruben', 'NULL', 'Martin', '0', '1985-11-16', 'M', 'NULL', 'M', 'ruben23@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '4070 Lacorso Drive', 'NULL', '1 (11) 500 555-0112', '2012-04-30', '0-1 Miles'], ['22401', '26', 'AW00022401', 'NULL', 'Ian', 'J', 'Price', '0', '1985-07-07', 'M', 'NULL', 'M', 'ian40@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5979 Leisure Lane', 'NULL', '1 (11) 500 555-0134', '2012-05-17', '2-5 Miles'], ['22402', '26', 'AW00022402', 'NULL', 'Clarence', 'NULL', 'Xie', '0', '1986-03-10', 'M', 'NULL', 'M', 'clarence18@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5749 Esperanza', 'NULL', '1 (11) 500 555-0132', '2012-05-10', '2-5 Miles'], ['22403', '5', 'AW00022403', 'NULL', 'Cedric', 'L', 'Beck', '0', '1984-08-20', 'M', 'NULL', 'M', 'cedric38@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '7350 Pine', 'NULL', '1 (11) 500 555-0131', '2013-05-05', '2-5 Miles'], ['22404', '31', 'AW00022404', 'NULL', 'Margaret', 'T', 'Xu', '0', '1986-05-06', 'S', 'NULL', 'F', 'margaret18@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6854 Veale Ave.', 'NULL', '1 (11) 500 555-0134', '2012-05-28', '0-1 Miles'], ['22405', '28', 'AW00022405', 'NULL', 'Leonard', 'C', 'Becker', '0', '1984-03-20', 'M', 'NULL', 'M', 'leonard22@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5424 Bel Air Drive', 'NULL', '1 (11) 500 555-0111', '2013-05-07', '2-5 Miles'], ['22406', '7', 'AW00022406', 'NULL', 'Kelvin', 'NULL', 'Shen', '0', '1983-05-12', 'M', 'NULL', 'M', 'kelvin44@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '3098 Seabourne Ct', 'NULL', '1 (11) 500 555-0131', '2012-05-27', '0-1 Miles'], ['22407', '6', 'AW00022407', 'NULL', 'Carolyn', 'H', 'Gonzalez', '0', '1985-04-17', 'M', 'NULL', 'F', 'carolyn18@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '6857 La Salle Ct', 'NULL', '1 (11) 500 555-0113', '2012-05-19', '2-5 Miles'], ['22408', '38', 'AW00022408', 'NULL', 'Clarence', 'NULL', 'Shan', '0', '1985-03-05', 'S', 'NULL', 'M', 'clarence25@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '647 Newport Drive', 'NULL', '1 (11) 500 555-0121', '2012-05-10', '1-2 Miles'], ['22409', '25', 'AW00022409', 'NULL', 'Candace', 'NULL', 'Madan', '0', '1985-02-11', 'S', 'NULL', 'F', 'candace7@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1488 Guadalupe', 'NULL', '1 (11) 500 555-0115', '2012-05-21', '0-1 Miles'], ['22410', '25', 'AW00022410', 'NULL', 'Cassandra', 'M', 'Arthur', '0', '1984-02-13', 'S', 'NULL', 'F', 'cassandra7@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '5790 Ponderosa Drive', 'NULL', '1 (11) 500 555-0111', '2012-05-05', '0-1 Miles'], ['22411', '19', 'AW00022411', 'NULL', 'Amy', 'NULL', 'He', '0', '1984-05-04', 'S', 'NULL', 'F', 'amy25@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '2100 Linton Terr', 'NULL', '1 (11) 500 555-0116', '2012-05-24', '0-1 Miles'], ['22412', '35', 'AW00022412', 'NULL', 'Drew', 'K', 'Andersen', '0', '1983-04-03', 'M', 'NULL', 'M', 'drew14@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '6308 Broadway Street', 'NULL', '1 (11) 500 555-0190', '2012-04-30', '0-1 Miles'], ['22413', '204', 'AW00022413', 'NULL', 'Kristi', 'J', 'Diaz', '0', '1949-06-25', 'M', 'NULL', 'F', 'kristi43@adventure-works.com', '20000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '5, rue Montcalm', 'NULL', '1 (11) 500 555-0121', '2013-12-23', '1-2 Miles'], ['22414', '132', 'AW00022414', 'NULL', 'Eugene', 'P', 'Wu', '0', '1960-02-01', 'S', 'NULL', 'M', 'eugene11@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Lützowplatz 28', 'NULL', '1 (11) 500 555-0187', '2013-01-08', '1-2 Miles'], ['22415', '161', 'AW00022415', 'NULL', 'Natalie', 'NULL', 'Phillips', '0', '1948-07-15', 'S', 'NULL', 'F', 'natalie49@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Moritzstr 1', 'NULL', '1 (11) 500 555-0111', '2013-01-07', '0-1 Miles'], ['22416', '247', 'AW00022416', 'NULL', 'Tabitha', 'M', 'Romero', '0', '1949-04-01', 'M', 'NULL', 'F', 'tabitha29@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '416 Tupelo Drive', 'NULL', '1 (11) 500 555-0119', '2013-08-06', '0-1 Miles'], ['22417', '202', 'AW00022417', 'NULL', 'Shaun', 'L', 'Goel', '0', '1972-11-06', 'M', 'NULL', 'M', 'shaun19@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '87, rue Lafayette', 'NULL', '1 (11) 500 555-0139', '2013-09-16', '1-2 Miles'], ['22418', '234', 'AW00022418', 'NULL', 'Jacob', 'A', 'Smith', '0', '1967-02-23', 'M', 'NULL', 'M', 'jacob1@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2433 Bailey Road', 'NULL', '1 (11) 500 555-0152', '2013-08-09', '0-1 Miles'], ['22419', '208', 'AW00022419', 'NULL', 'Damien', 'NULL', 'Xu', '0', '1964-10-30', 'S', 'NULL', 'M', 'damien22@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '499, rue de la Comédie', 'NULL', '1 (11) 500 555-0119', '2013-09-24', '2-5 Miles'], ['22420', '184', 'AW00022420', 'NULL', 'Richard', 'L', 'Moore', '0', '1965-04-26', 'S', 'NULL', 'M', 'richard48@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '82, avenue des Ternes', 'NULL', '1 (11) 500 555-0113', '2013-05-29', '1-2 Miles'], ['22421', '230', 'AW00022421', 'NULL', 'Barbara', 'D', 'Sharma', '0', '1965-04-09', 'S', 'NULL', 'F', 'barbara41@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1242 Frayne Lane', 'NULL', '1 (11) 500 555-0115', '2013-06-06', '2-5 Miles'], ['22422', '267', 'AW00022422', 'NULL', 'Nichole', 'NULL', 'Black', '0', '1970-12-01', 'M', 'NULL', 'F', 'nichole20@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '9711 Contra Costa Blvd.', 'NULL', '1 (11) 500 555-0185', '2013-09-18', '0-1 Miles'], ['22423', '196', 'AW00022423', 'NULL', 'Byron', 'NULL', 'Hernandez', '0', '1974-08-11', 'S', 'NULL', 'M', 'byron3@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1555, rue des Pyrenees', 'NULL', '1 (11) 500 555-0118', '2013-06-12', '0-1 Miles'], ['22424', '206', 'AW00022424', 'NULL', 'Edwin', 'M', 'Rai', '0', '1969-04-17', 'S', 'NULL', 'M', 'edwin40@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '8, avenue de Norvege', 'NULL', '1 (11) 500 555-0163', '2013-04-07', '2-5 Miles'], ['22425', '213', 'AW00022425', 'NULL', 'Roy', 'NULL', 'Sullivan', '0', '1964-04-05', 'S', 'NULL', 'M', 'roy39@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '22, rue Jean Mermoz', 'NULL', '1 (11) 500 555-0169', '2013-10-24', '2-5 Miles'], ['22426', '218', 'AW00022426', 'NULL', 'Heather', 'NULL', 'Zhu', '0', '1971-08-08', 'M', 'NULL', 'F', 'heather13@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '51, rue Henri Gagnon', 'NULL', '1 (11) 500 555-0199', '2013-06-26', '0-1 Miles'], ['22427', '258', 'AW00022427', 'NULL', 'Willie', 'W', 'Sharma', '0', '1965-10-13', 'S', 'NULL', 'M', 'willie28@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '6286 Mt. Sequoia Ct.', 'NULL', '1 (11) 500 555-0149', '2013-08-29', '0-1 Miles'], ['22428', '279', 'AW00022428', 'NULL', 'Destiny', 'NULL', 'Smith', '0', '1966-03-26', 'S', 'NULL', 'F', 'destiny0@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '9643 Willow Pass Road', 'NULL', '1 (11) 500 555-0114', '2013-09-22', '0-1 Miles'], ['22429', '261', 'AW00022429', 'NULL', 'Jesse', 'E', 'Reed', '0', '1971-11-11', 'M', 'NULL', 'M', 'jesse21@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4216 Seaview Ave.', 'NULL', '1 (11) 500 555-0192', '2013-08-31', '0-1 Miles'], ['22430', '188', 'AW00022430', 'NULL', 'Brad', 'S', 'Chande', '0', '1965-09-02', 'S', 'NULL', 'M', 'brad15@adventure-works.com', '40000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '70, rue de Linois', 'NULL', '1 (11) 500 555-0164', '2012-12-28', '0-1 Miles'], ['22431', '200', 'AW00022431', 'NULL', 'Marie', 'R', 'Dominguez', '0', '1981-06-04', 'S', 'NULL', 'F', 'marie36@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '811, avenue Reille', 'NULL', '1 (11) 500 555-0110', '2013-03-06', '1-2 Miles'], ['22432', '131', 'AW00022432', 'NULL', 'Bridget', 'R', 'Xie', '0', '1976-02-08', 'S', 'NULL', 'F', 'bridget4@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Buergermeister-ulrich-str 2999', 'NULL', '1 (11) 500 555-0181', '2013-01-05', '0-1 Miles'], ['22433', '273', 'AW00022433', 'NULL', 'Miguel', 'C', 'Hill', '0', '1976-02-12', 'S', 'NULL', 'M', 'miguel29@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '934 Acardia Pl', 'NULL', '1 (11) 500 555-0118', '2013-08-30', '2-5 Miles'], ['22434', '247', 'AW00022434', 'NULL', 'Billy', 'NULL', 'Schmidt', '0', '1976-02-29', 'S', 'NULL', 'M', 'billy20@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6797 Almondtree Circle', 'NULL', '1 (11) 500 555-0143', '2013-10-18', '0-1 Miles'], ['22435', '187', 'AW00022435', 'NULL', 'Ross', 'NULL', 'Navarro', '0', '1980-06-18', 'S', 'NULL', 'M', 'ross28@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '21, place Beaubernard', 'NULL', '1 (11) 500 555-0189', '2013-05-17', '0-1 Miles'], ['22436', '154', 'AW00022436', 'NULL', 'Roger', 'M', 'Raji', '0', '1976-03-22', 'S', 'NULL', 'M', 'roger49@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Dunckerstr 1835', 'NULL', '1 (11) 500 555-0179', '2013-01-15', '0-1 Miles'], ['22437', '275', 'AW00022437', 'NULL', 'Trisha', 'NULL', 'Zheng', '0', '1975-07-27', 'S', 'NULL', 'F', 'trisha14@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '6061 St. Paul Way', 'NULL', '1 (11) 500 555-0176', '2013-08-19', '0-1 Miles'], ['22438', '215', 'AW00022438', 'NULL', 'Casey', 'NULL', 'Jiménez', '0', '1974-12-08', 'S', 'NULL', 'M', 'casey29@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '2, rue de la Cavalerie', 'NULL', '1 (11) 500 555-0194', '2013-06-05', '2-5 Miles'], ['22439', '267', 'AW00022439', 'NULL', 'Tracy', 'NULL', 'Raji', '0', '1974-07-02', 'M', 'NULL', 'F', 'tracy20@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8037 St. Francis St.', 'NULL', '1 (11) 500 555-0182', '2013-10-26', '0-1 Miles'], ['22440', '213', 'AW00022440', 'NULL', 'Robyn', 'NULL', 'Sanz', '0', '1974-11-17', 'S', 'NULL', 'F', 'robyn16@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '76, avenue de Villiers', 'NULL', '1 (11) 500 555-0123', '2013-06-18', '1-2 Miles'], ['22441', '120', 'AW00022441', 'NULL', 'Andrea', 'L', 'Torres', '0', '1985-08-16', 'S', 'NULL', 'F', 'andrea14@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Herzogstr 2998', 'NULL', '1 (11) 500 555-0112', '2013-01-23', '0-1 Miles'], ['22442', '240', 'AW00022442', 'NULL', 'Trisha', 'NULL', 'Sun', '0', '1974-12-12', 'S', 'NULL', 'F', 'trisha8@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2877, rue des Ecoles', 'NULL', '1 (11) 500 555-0165', '2013-10-27', '0-1 Miles'], ['22443', '184', 'AW00022443', 'NULL', 'Marvin', 'M', 'Suarez', '0', '1975-01-31', 'S', 'NULL', 'M', 'marvin19@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '99, rue de Cambrai', 'NULL', '1 (11) 500 555-0111', '2013-06-02', '0-1 Miles'], ['22444', '118', 'AW00022444', 'NULL', 'Colin', 'NULL', 'Xie', '0', '1974-08-27', 'S', 'NULL', 'M', 'colin26@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Hans-Rosenthal-Platz 4243', 'NULL', '1 (11) 500 555-0139', '2013-11-01', '0-1 Miles'], ['22445', '180', 'AW00022445', 'NULL', 'Diane', 'L', 'Suarez', '0', '1980-03-30', 'S', 'NULL', 'F', 'diane24@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '1009, rue des Bouchers', 'NULL', '1 (11) 500 555-0133', '2013-01-24', '0-1 Miles'], ['22446', '239', 'AW00022446', 'NULL', 'Jake', 'E', 'Wu', '0', '1975-04-19', 'S', 'NULL', 'M', 'jake7@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '7522 Santa Ana Drive', 'NULL', '1 (11) 500 555-0122', '2013-09-17', '0-1 Miles'], ['22447', '168', 'AW00022447', 'NULL', 'Tara', 'C', 'Shan', '0', '1985-10-07', 'M', 'NULL', 'F', 'tara10@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Waldstr 12', 'NULL', '1 (11) 500 555-0177', '2013-11-08', '0-1 Miles'], ['22448', '212', 'AW00022448', 'NULL', 'Cindy', 'NULL', 'Weber', '0', '1980-10-06', 'S', 'NULL', 'F', 'cindy4@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8344, rue de la Centenaire', 'NULL', '1 (11) 500 555-0169', '2013-02-21', '0-1 Miles'], ['22449', '206', 'AW00022449', 'NULL', 'Heather', 'G', 'He', '0', '1980-04-12', 'M', 'NULL', 'F', 'heather17@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '11, rue Henri Gagnon', 'NULL', '1 (11) 500 555-0137', '2013-02-24', '0-1 Miles'], ['22450', '178', 'AW00022450', 'NULL', 'Audrey', 'L', 'Alvarez', '0', '1980-02-21', 'M', 'NULL', 'F', 'audrey6@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Erlenweg 2624', 'NULL', '1 (11) 500 555-0163', '2013-10-29', '0-1 Miles'], ['22451', '236', 'AW00022451', 'NULL', 'Barbara', 'J', 'Rai', '0', '1974-12-18', 'S', 'NULL', 'F', 'barbara46@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '337 Tosca Way', 'NULL', '1 (11) 500 555-0113', '2013-09-18', '0-1 Miles'], ['22452', '240', 'AW00022452', 'NULL', 'Carly', 'E', 'Deng', '0', '1975-04-19', 'S', 'NULL', 'F', 'carly0@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '734 Mt. Tooth Place', 'NULL', '1 (11) 500 555-0149', '2013-08-29', '0-1 Miles'], ['22453', '127', 'AW00022453', 'NULL', 'Dakota', 'N', 'Long', '0', '1927-08-04', 'M', 'NULL', 'M', 'dakota8@adventure-works.com', '10000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Pflugstr 8515', 'NULL', '1 (11) 500 555-0168', '2013-11-16', '0-1 Miles'], ['22454', '258', 'AW00022454', 'NULL', 'Rebekah', 'E', 'Raman', '0', '1963-05-07', 'M', 'NULL', 'F', 'rebekah11@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '566 Morgan Territory Rd.', 'NULL', '1 (11) 500 555-0160', '2013-11-07', '0-1 Miles'], ['22455', '132', 'AW00022455', 'NULL', 'Roy', 'NULL', 'Kapoor', '0', '1957-09-06', 'M', 'NULL', 'M', 'roy1@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Hunzinger Allee 292', 'NULL', '1 (11) 500 555-0194', '2013-02-08', '0-1 Miles'], ['22456', '272', 'AW00022456', 'NULL', 'Brittney', 'B', 'Guo', '0', '1962-08-07', 'S', 'NULL', 'F', 'brittney16@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '4820 N Larwin Ave.', 'NULL', '1 (11) 500 555-0174', '2013-10-17', '0-1 Miles'], ['22457', '234', 'AW00022457', 'NULL', 'Kimberly', 'J', 'Cooper', '0', '1973-11-15', 'M', 'NULL', 'F', 'kimberly12@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '4275 Gumwood Dr', 'NULL', '1 (11) 500 555-0154', '2013-04-23', '0-1 Miles'], ['22458', '213', 'AW00022458', 'NULL', 'Kendra', 'L', 'Vazquez', '0', '1973-12-11', 'S', 'NULL', 'F', 'kendra14@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '02, place de Fontenoy', 'NULL', '1 (11) 500 555-0196', '2013-06-21', '0-1 Miles'], ['22459', '154', 'AW00022459', 'NULL', 'Johnny', 'NULL', 'Xu', '0', '1973-10-31', 'M', 'NULL', 'M', 'johnny5@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Pascalstr 551', 'NULL', '1 (11) 500 555-0122', '2013-01-20', '2-5 Miles'], ['22460', '245', 'AW00022460', 'NULL', 'Julio', 'NULL', 'Torres', '0', '1974-02-14', 'S', 'NULL', 'M', 'julio12@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '3723 Coach Pl.', 'NULL', '1 (11) 500 555-0177', '2013-10-11', '2-5 Miles'], ['22461', '273', 'AW00022461', 'NULL', 'Arturo', 'NULL', 'Luo', '0', '1979-10-01', 'S', 'NULL', 'M', 'arturo30@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '7164 Pinncale Drive', 'NULL', '1 (11) 500 555-0188', '2013-10-14', '2-5 Miles'], ['22462', '130', 'AW00022462', 'NULL', 'Lydia', 'NULL', 'Chandra', '0', '1973-07-04', 'S', 'NULL', 'F', 'lydia1@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Winterfeldtstr 3539', 'NULL', '1 (11) 500 555-0170', '2013-02-08', '0-1 Miles'], ['22463', '221', 'AW00022463', 'NULL', 'Raymond', 'F', 'Chandra', '0', '1974-02-25', 'M', 'NULL', 'M', 'raymond4@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '15, avenue de la Gare', 'NULL', '1 (11) 500 555-0174', '2013-07-06', '2-5 Miles'], ['22464', '211', 'AW00022464', 'NULL', 'Erik', 'I', 'Sanz', '0', '1974-04-10', 'M', 'NULL', 'M', 'erik20@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '22, rue du Départ', 'NULL', '1 (11) 500 555-0128', '2013-04-27', '0-1 Miles'], ['22465', '219', 'AW00022465', 'NULL', 'Arturo', 'NULL', 'Shan', '0', '1974-04-09', 'S', 'NULL', 'M', 'arturo35@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '15, avenue de la Gare', 'NULL', '1 (11) 500 555-0158', '2013-04-21', '0-1 Miles'], ['22466', '202', 'AW00022466', 'NULL', 'Raul', 'NULL', 'Tang', '0', '1973-03-12', 'S', 'NULL', 'M', 'raul4@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '935, rue Mazagran', 'NULL', '1 (11) 500 555-0175', '2013-06-30', '1-2 Miles'], ['22467', '258', 'AW00022467', 'NULL', 'Neil', 'C', 'Alvarez', '0', '1972-08-19', 'S', 'NULL', 'M', 'neil5@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5617 Spice Terrace', 'NULL', '1 (11) 500 555-0111', '2013-10-16', '2-5 Miles'], ['22468', '245', 'AW00022468', 'NULL', 'Ruben', 'A', 'Gonzalez', '0', '1973-03-17', 'M', 'NULL', 'M', 'ruben19@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5242 Miguel Drive', 'NULL', '1 (11) 500 555-0125', '2013-11-16', '2-5 Miles'], ['22469', '117', 'AW00022469', 'NULL', 'Sabrina', 'L', 'Moreno', '0', '1973-04-30', 'M', 'NULL', 'F', 'sabrina4@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Husemann Straße 9514', 'NULL', '1 (11) 500 555-0194', '2013-03-15', '2-5 Miles'], ['22470', '240', 'AW00022470', 'NULL', 'Carly', 'A', 'Tang', '0', '1973-05-04', 'M', 'NULL', 'F', 'carly3@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4030 Rosina Court', 'NULL', '1 (11) 500 555-0150', '2013-11-02', '2-5 Miles'], ['22471', '205', 'AW00022471', 'NULL', 'Joel', 'NULL', 'Martinez', '0', '1973-03-04', 'S', 'NULL', 'M', 'joel16@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '244, rue Descartes', 'NULL', '1 (11) 500 555-0148', '2013-07-23', '1-2 Miles'], ['22472', '212', 'AW00022472', 'NULL', 'Bridget', 'H', 'Sharma', '0', '1973-04-04', 'S', 'NULL', 'F', 'bridget11@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '57, rue Lafayette', 'NULL', '1 (11) 500 555-0173', '2013-07-07', '0-1 Miles'], ['22473', '141', 'AW00022473', 'NULL', 'Clifford', 'L', 'Patel', '0', '1972-11-10', 'S', 'NULL', 'M', 'clifford3@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Kurfürstenstr 5094', 'NULL', '1 (11) 500 555-0179', '2013-03-22', '1-2 Miles'], ['22474', '166', 'AW00022474', 'NULL', 'Leah', 'NULL', 'Zhu', '0', '1977-11-29', 'S', 'NULL', 'F', 'leah11@adventure-works.com', '10000.00', '5', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Hansaallee 5989', 'NULL', '1 (11) 500 555-0176', '2013-12-07', '0-1 Miles'], ['22475', '229', 'AW00022475', 'NULL', 'Heidi', 'M', 'Rana', '0', '1977-12-06', 'S', 'NULL', 'F', 'heidi13@adventure-works.com', '10000.00', '5', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '6578 Woodhaven Ln.', 'NULL', '1 (11) 500 555-0132', '2013-04-10', '0-1 Miles'], ['22476', '175', 'AW00022476', 'NULL', 'Shane', 'J', 'Martinez', '0', '1977-11-21', 'S', 'NULL', 'M', 'shane20@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Winterfeldtstr 4446', 'NULL', '1 (11) 500 555-0111', '2013-11-12', '0-1 Miles'], ['22477', '133', 'AW00022477', 'NULL', 'Kevin', 'NULL', 'Diaz', '0', '1971-12-11', 'S', 'NULL', 'M', 'kevin24@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Alderweg 500', 'NULL', '1 (11) 500 555-0137', '2013-03-04', '0-1 Miles'], ['22478', '135', 'AW00022478', 'NULL', 'Carolyn', 'NULL', 'Browning', '0', '1971-12-06', 'S', 'NULL', 'F', 'carolyn36@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Kalkweg 4444', 'NULL', '1 (11) 500 555-0198', '2013-03-19', '1-2 Miles'], ['22479', '157', 'AW00022479', 'NULL', 'Tammy', 'C', 'Malhotra', '0', '1972-02-15', 'M', 'NULL', 'F', 'tammy5@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Heideweg 2459', 'NULL', '1 (11) 500 555-0192', '2013-03-22', '2-5 Miles'], ['22480', '225', 'AW00022480', 'NULL', 'Abby', 'P', 'Gonzalez', '0', '1971-11-09', 'M', 'NULL', 'F', 'abby16@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2, rue Faubourg St Antoine', 'NULL', '1 (11) 500 555-0177', '2013-07-05', '0-1 Miles'], ['22481', '176', 'AW00022481', 'NULL', 'Erik', 'A', 'Ortega', '0', '1977-05-22', 'M', 'NULL', 'M', 'erik22@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Nollendorfplatz 4662', 'NULL', '1 (11) 500 555-0131', '2013-03-01', '2-5 Miles'], ['22482', '131', 'AW00022482', 'NULL', 'Cassidy', 'L', 'Jenkins', '0', '1982-03-12', 'S', 'NULL', 'F', 'cassidy7@adventure-works.com', '10000.00', '4', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Zeiter Weg 9963', 'NULL', '1 (11) 500 555-0189', '2014-01-08', '0-1 Miles'], ['22483', '200', 'AW00022483', 'NULL', 'Lee', 'NULL', 'Ramos', '0', '1982-04-20', 'S', 'NULL', 'M', 'lee16@adventure-works.com', '10000.00', '4', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '14, rue Marbeuf', 'NULL', '1 (11) 500 555-0153', '2013-12-04', '0-1 Miles'], ['22484', '193', 'AW00022484', 'NULL', 'Kristy', 'NULL', 'Ruiz', '0', '1971-03-27', 'S', 'NULL', 'F', 'kristy2@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '1, rue Georges-Clémenceau', 'NULL', '1 (11) 500 555-0113', '2013-07-30', '0-1 Miles'], ['22485', '223', 'AW00022485', 'NULL', 'Andy', 'NULL', 'Suarez', '0', '1971-02-15', 'S', 'NULL', 'M', 'andy23@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '1234, rue Ste-Honoré', 'NULL', '1 (11) 500 555-0114', '2013-10-21', '0-1 Miles'], ['22486', '154', 'AW00022486', 'NULL', 'Jimmy', 'E', 'Ruiz', '0', '1970-10-07', 'S', 'NULL', 'M', 'jimmy4@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Hans-Rosenthal-Platz 4107', 'NULL', '1 (11) 500 555-0117', '2013-03-21', '0-1 Miles'], ['22487', '224', 'AW00022487', 'NULL', 'Jonathon', 'B', 'Gill', '0', '1976-04-15', 'S', 'NULL', 'M', 'jonathon10@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '8, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0141', '2013-08-01', '0-1 Miles'], ['22488', '115', 'AW00022488', 'NULL', 'Frederick', 'NULL', 'Patel', '0', '1970-10-19', 'M', 'NULL', 'M', 'frederick2@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', 'Platz des Landtags 300', 'NULL', '1 (11) 500 555-0176', '2013-04-27', '0-1 Miles'], ['22489', '213', 'AW00022489', 'NULL', 'Roger', 'V', 'Xie', '0', '1970-12-08', 'M', 'NULL', 'M', 'roger30@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '242, rue de Cambrai', 'NULL', '1 (11) 500 555-0114', '2013-12-12', '0-1 Miles'], ['22490', '217', 'AW00022490', 'NULL', 'Desiree', 'NULL', 'Vazquez', '0', '1969-10-24', 'S', 'NULL', 'F', 'desiree11@adventure-works.com', '10000.00', '5', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '9, boulevard Tremblay', 'NULL', '1 (11) 500 555-0149', '2013-08-11', '0-1 Miles'], ['22491', '171', 'AW00022491', 'NULL', 'Jerry', 'NULL', 'Nara', '0', '1981-03-16', 'S', 'NULL', 'M', 'jerry18@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Hüttenstr 7005', 'NULL', '1 (11) 500 555-0190', '2013-02-08', '0-1 Miles'], ['22492', '161', 'AW00022492', 'NULL', 'Jorge', 'NULL', 'She', '0', '1970-01-21', 'S', 'NULL', 'M', 'jorge25@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Knaackstr 646', 'NULL', '1 (11) 500 555-0129', '2013-02-19', '0-1 Miles'], ['22493', '170', 'AW00022493', 'NULL', 'Dwayne', 'D', 'Sanz', '0', '1969-07-20', 'S', 'NULL', 'M', 'dwayne18@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Kappellweg 675', 'NULL', '1 (11) 500 555-0132', '2014-01-24', '0-1 Miles'], ['22494', '127', 'AW00022494', 'NULL', 'Jon', 'NULL', 'Andersen', '0', '1969-08-05', 'S', 'NULL', 'M', 'jon9@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Heideweg 1459', 'NULL', '1 (11) 500 555-0133', '2013-03-07', '0-1 Miles'], ['22495', '216', 'AW00022495', 'NULL', 'Andy', 'NULL', 'Serrano', '0', '1969-10-02', 'S', 'NULL', 'M', 'andy21@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '62, route de Marseille', 'NULL', '1 (11) 500 555-0132', '2013-08-04', '0-1 Miles'], ['22496', '236', 'AW00022496', 'NULL', 'Christina', 'W', 'Brooks', '0', '1969-08-31', 'M', 'NULL', 'F', 'christina1@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9430 Versailles Pl', 'NULL', '1 (11) 500 555-0121', '2013-10-05', '0-1 Miles'], ['22497', '128', 'AW00022497', 'NULL', 'Casey', 'NULL', 'Gomez', '0', '1968-11-08', 'S', 'NULL', 'M', 'casey24@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Moritzstr 123', 'NULL', '1 (11) 500 555-0138', '2013-06-01', '0-1 Miles'], ['22498', '220', 'AW00022498', 'NULL', 'Pedro', 'S', 'Jimenez', '0', '1969-04-26', 'S', 'NULL', 'M', 'pedro26@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '68, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0114', '2013-08-11', '0-1 Miles'], ['22499', '218', 'AW00022499', 'NULL', 'Dawn', 'NULL', 'Zhou', '0', '1939-01-03', 'M', 'NULL', 'F', 'dawn10@adventure-works.com', '10000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '201bis, boulevard Saint Germain', 'NULL', '1 (11) 500 555-0169', '2013-08-27', '0-1 Miles'], ['22500', '198', 'AW00022500', 'NULL', 'Brent', 'NULL', 'Zhao', '0', '1977-08-09', 'S', 'NULL', 'M', 'brent10@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '61680, rue Malar', 'NULL', '1 (11) 500 555-0127', '2013-05-15', '0-1 Miles'], ['22501', '204', 'AW00022501', 'NULL', 'Colin', 'NULL', 'Ye', '0', '1971-09-15', 'S', 'NULL', 'M', 'colin10@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '84, avenue des Ternes', 'NULL', '1 (11) 500 555-0175', '2013-06-19', '0-1 Miles'], ['22502', '236', 'AW00022502', 'NULL', 'Grace', 'NULL', 'Miller', '0', '1972-06-16', 'S', 'NULL', 'F', 'grace5@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '3099 Crawford', 'NULL', '1 (11) 500 555-0166', '2013-08-29', '0-1 Miles'], ['22503', '261', 'AW00022503', 'NULL', 'Sandra', 'S', 'Zhao', '0', '1977-07-02', 'M', 'NULL', 'F', 'sandra17@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '4698 G Street', 'NULL', '1 (11) 500 555-0162', '2013-09-09', '0-1 Miles'], ['22504', '267', 'AW00022504', 'NULL', 'Arturo', 'T', 'Rai', '0', '1972-03-14', 'S', 'NULL', 'M', 'arturo43@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '2405 Mission Drive', 'NULL', '1 (11) 500 555-0111', '2013-08-29', '0-1 Miles'], ['22505', '270', 'AW00022505', 'NULL', 'Julie', 'NULL', 'Shen', '0', '1979-04-20', 'M', 'NULL', 'F', 'julie6@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '844 Raven Court', 'NULL', '1 (11) 500 555-0121', '2013-10-31', '0-1 Miles'], ['22506', '117', 'AW00022506', 'NULL', 'Brenda', 'E', 'Prasad', '0', '1970-09-30', 'S', 'NULL', 'F', 'brenda13@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Alte Landstr 9901', 'NULL', '1 (11) 500 555-0111', '2013-04-25', '0-1 Miles'], ['22507', '117', 'AW00022507', 'NULL', 'Louis', 'J', 'Wang', '0', '1976-07-09', 'S', 'NULL', 'M', 'louis39@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Dunckerstr 185', 'NULL', '1 (11) 500 555-0142', '2013-06-24', '0-1 Miles'], ['22508', '159', 'AW00022508', 'NULL', 'Jon', 'NULL', 'Huang', '0', '1971-05-04', 'M', 'NULL', 'M', 'jon25@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Holzstr 7555', 'NULL', '1 (11) 500 555-0147', '2013-11-12', '0-1 Miles'], ['22509', '160', 'AW00022509', 'NULL', 'Lacey', 'NULL', 'Nara', '0', '1976-09-30', 'M', 'NULL', 'F', 'lacey6@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Wasserstr 65', 'NULL', '1 (11) 500 555-0115', '2013-11-09', '0-1 Miles'], ['22510', '267', 'AW00022510', 'NULL', 'Lori', 'A', 'Gill', '0', '1970-08-11', 'M', 'NULL', 'F', 'lori15@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7074 Crown Court', 'NULL', '1 (11) 500 555-0136', '2013-10-02', '0-1 Miles'], ['22511', '186', 'AW00022511', 'NULL', 'Wendy', 'NULL', 'Suarez', '0', '1970-01-15', 'S', 'NULL', 'F', 'wendy18@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1, rue de Varenne', 'NULL', '1 (11) 500 555-0111', '2013-07-29', '0-1 Miles'], ['22512', '223', 'AW00022512', 'NULL', 'Meagan', 'J', 'Mehta', '0', '1969-11-12', 'S', 'NULL', 'F', 'meagan14@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '44, rue Mazagran', 'NULL', '1 (11) 500 555-0182', '2013-08-12', '0-1 Miles'], ['22513', '215', 'AW00022513', 'NULL', 'Kenneth', 'L', 'Anand', '0', '1968-10-12', 'S', 'NULL', 'M', 'kenneth18@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3905bis, boulevard Saint Germain', 'NULL', '1 (11) 500 555-0115', '2013-04-24', '0-1 Miles'], ['22514', '160', 'AW00022514', 'NULL', 'Marvin', 'T', 'Johnsen', '0', '1983-03-03', 'S', 'NULL', 'M', 'marvin6@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Buergermeister-ulrich-str 75', 'NULL', '1 (11) 500 555-0129', '2014-01-14', '2-5 Miles'], ['22515', '207', 'AW00022515', 'NULL', 'Alexa', 'NULL', 'Morris', '0', '1984-12-06', 'S', 'NULL', 'F', 'alexa17@adventure-works.com', '20000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '8818, avenue de Villiers', 'NULL', '1 (11) 500 555-0168', '2013-08-10', '0-1 Miles'], ['22516', '157', 'AW00022516', 'NULL', 'Adrienne', 'Y', 'Ortega', '0', '1984-11-08', 'S', 'NULL', 'F', 'adrienne17@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Heiderplatz 948', 'NULL', '1 (11) 500 555-0165', '2013-06-13', '0-1 Miles'], ['22517', '120', 'AW00022517', 'NULL', 'Luis', 'R', 'Adams', '0', '1985-02-12', 'S', 'NULL', 'M', 'luis48@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Moritzstr 45', 'NULL', '1 (11) 500 555-0120', '2013-04-19', '0-1 Miles'], ['22518', '266', 'AW00022518', 'NULL', 'Jillian', 'NULL', 'Sai', '0', '1984-10-16', 'S', 'NULL', 'F', 'jillian6@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '8345 Orangewood Ave.', 'NULL', '1 (11) 500 555-0174', '2013-11-15', '0-1 Miles'], ['22519', '175', 'AW00022519', 'NULL', 'Logan', 'M', 'Hughes', '0', '1969-05-10', 'M', 'NULL', 'M', 'logan14@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Erlenweg 6664', 'NULL', '1 (11) 500 555-0117', '2013-10-31', '0-1 Miles'], ['22520', '251', 'AW00022520', 'NULL', 'Rodney', 'L', 'Torres', '0', '1969-01-06', 'M', 'NULL', 'M', 'rodney8@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7444 Cherokee Drive', 'NULL', '1 (11) 500 555-0115', '2013-10-14', '0-1 Miles'], ['22521', '131', 'AW00022521', 'NULL', 'Christina', 'K', 'Rivera', '0', '1973-09-14', 'S', 'NULL', 'F', 'christina15@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Lieblingsweg 345', 'NULL', '1 (11) 500 555-0172', '2014-01-02', '2-5 Miles'], ['22522', '171', 'AW00022522', 'NULL', 'Benjamin', 'C', 'Hayes', '0', '1978-10-07', 'S', 'NULL', 'M', 'benjamin24@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Zur Lindung 7', 'NULL', '1 (11) 500 555-0149', '2013-04-10', '0-1 Miles'], ['22523', '131', 'AW00022523', 'NULL', 'Jon', 'G', 'Xu', '0', '1973-07-13', 'M', 'NULL', 'M', 'jon32@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Lindenalle 2284', 'NULL', '1 (11) 500 555-0138', '2013-12-19', '0-1 Miles'], ['22524', '189', 'AW00022524', 'NULL', 'Michele', 'F', 'Hernandez', '0', '1967-12-24', 'M', 'NULL', 'F', 'michele38@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '380, avenue de Malakoff', 'NULL', '1 (11) 500 555-0171', '2013-06-04', '0-1 Miles'], ['22525', '178', 'AW00022525', 'NULL', 'Julio', 'C', 'Gutierrez', '0', '1984-02-03', 'S', 'NULL', 'M', 'julio11@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Zollstr 68', 'NULL', '1 (11) 500 555-0117', '2013-04-19', '0-1 Miles'], ['22526', '263', 'AW00022526', 'NULL', 'Jamie', 'NULL', 'Moreno', '0', '1984-05-25', 'S', 'NULL', 'M', 'jamie30@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '3', '1113 Ready Road', 'NULL', '1 (11) 500 555-0136', '2013-11-19', '0-1 Miles'], ['22527', '186', 'AW00022527', 'NULL', 'Rachel', 'L', 'Flores', '0', '1982-12-13', 'S', 'NULL', 'F', 'rachel60@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '864, rue Mazagran', 'NULL', '1 (11) 500 555-0148', '2013-03-20', '2-5 Miles'], ['22528', '233', 'AW00022528', 'NULL', 'Jaime', 'NULL', 'Blanco', '0', '1981-08-07', 'S', 'NULL', 'F', 'jaime17@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '6728 Palisade Court', 'NULL', '1 (11) 500 555-0112', '2013-08-08', '2-5 Miles'], ['22529', '205', 'AW00022529', 'NULL', 'Ross', 'NULL', 'Raman', '0', '1980-09-29', 'S', 'NULL', 'M', 'ross12@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '3534, rue des Grands Champs', 'NULL', '1 (11) 500 555-0139', '2013-08-09', '0-1 Miles'], ['22530', '264', 'AW00022530', 'NULL', 'Kelli', 'NULL', 'Jai', '0', '1980-09-24', 'S', 'NULL', 'F', 'kelli34@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '5448 Nulty Drive', 'NULL', '1 (11) 500 555-0147', '2013-09-24', '2-5 Miles'], ['22531', '193', 'AW00022531', 'NULL', 'Tiffany', 'V', 'Zhou', '0', '1982-05-20', 'S', 'NULL', 'F', 'tiffany8@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '386, rue de Varenne', 'NULL', '1 (11) 500 555-0125', '2013-10-02', '2-5 Miles'], ['22532', '269', 'AW00022532', 'NULL', 'Ryan', 'NULL', 'Thomas', '0', '1982-02-07', 'S', 'NULL', 'M', 'ryan50@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '5716 Weatherly Drive', 'NULL', '1 (11) 500 555-0197', '2013-12-03', '2-5 Miles'], ['22533', '147', 'AW00022533', 'NULL', 'Jake', 'NULL', 'Liu', '0', '1979-08-03', 'M', 'NULL', 'M', 'jake4@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Residenz Straße 431', 'NULL', '1 (11) 500 555-0155', '2013-11-27', '0-1 Miles'], ['22534', '202', 'AW00022534', 'NULL', 'Suzanne', 'M', 'Liang', '0', '1980-08-12', 'S', 'NULL', 'F', 'suzanne18@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '336, quai Paul Doumer', 'NULL', '1 (11) 500 555-0116', '2013-12-19', '2-5 Miles'], ['22535', '237', 'AW00022535', 'NULL', 'Rachael', 'M', 'Prasad', '0', '1986-02-10', 'M', 'NULL', 'F', 'rachael9@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6557 Artnell Ct.', 'NULL', '1 (11) 500 555-0111', '2013-11-16', '1-2 Miles'], ['22536', '262', 'AW00022536', 'NULL', 'Brianna', 'NULL', 'Rogers', '0', '1980-11-18', 'M', 'NULL', 'F', 'brianna27@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1356 Grove Way', 'NULL', '1 (11) 500 555-0199', '2013-11-17', '0-1 Miles'], ['22537', '160', 'AW00022537', 'NULL', 'Xavier', 'L', 'Jenkins', '0', '1979-12-20', 'S', 'NULL', 'M', 'xavier48@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Waldstr 76', 'NULL', '1 (11) 500 555-0136', '2013-12-14', '1-2 Miles'], ['22538', '224', 'AW00022538', 'NULL', 'Bianca', 'NULL', 'Wang', '0', '1978-07-10', 'S', 'NULL', 'F', 'bianca1@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '3230 Hamilton Ave', 'NULL', '1 (11) 500 555-0173', '2014-01-24', '1-2 Miles'], ['22539', '276', 'AW00022539', 'NULL', 'Randall', 'D', 'Sanz', '0', '1984-03-07', 'S', 'NULL', 'M', 'randall22@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '3001 Mt. Etna', 'NULL', '1 (11) 500 555-0177', '2013-05-26', '0-1 Miles'], ['22540', '231', 'AW00022540', 'NULL', 'Latasha', 'L', 'Ramos', '0', '1979-02-19', 'S', 'NULL', 'F', 'latasha17@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '370 Treat Blvd', 'NULL', '1 (11) 500 555-0186', '2013-04-24', '0-1 Miles'], ['22541', '151', 'AW00022541', 'NULL', 'Stefanie', 'NULL', 'Martinez', '0', '1979-06-25', 'S', 'NULL', 'F', 'stefanie15@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Im Himmelsweg 27', 'NULL', '1 (11) 500 555-0120', '2013-04-29', '2-5 Miles'], ['22542', '201', 'AW00022542', 'NULL', 'Teresa', 'NULL', 'Alvarez', '0', '1985-10-04', 'S', 'NULL', 'F', 'teresa5@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '57bis, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0139', '2013-10-24', '2-5 Miles'], ['22543', '547', 'AW00022543', 'NULL', 'Jeremy', 'NULL', 'Campbell', '0', '1979-02-19', 'S', 'NULL', 'M', 'jeremy17@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6897 Pome Court', 'NULL', '520-555-0139', '2013-03-20', '1-2 Miles'], ['22544', '62', 'AW00022544', 'NULL', 'Maria', 'NULL', 'Evans', '0', '1978-04-02', 'M', 'NULL', 'F', 'maria44@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6287 Strasbourg Lane', 'NULL', '486-555-0199', '2013-02-04', '1-2 Miles'], ['22545', '51', 'AW00022545', 'NULL', 'Brittany', 'NULL', 'Bryant', '0', '1983-06-16', 'M', 'NULL', 'F', 'brittany16@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '410 Wheel Ave.', 'NULL', '145-555-0142', '2013-08-05', '1-2 Miles'], ['22546', '543', 'AW00022546', 'NULL', 'Nicholas', 'L', 'Jones', '0', '1982-10-21', 'M', 'NULL', 'M', 'nicholas5@adventure-works.com', '40000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '1064 Slavio', 'NULL', '173-555-0158', '2013-08-21', '10+ Miles'], ['22547', '343', 'AW00022547', 'NULL', 'Elijah', 'C', 'Flores', '0', '1977-04-01', 'S', 'NULL', 'M', 'elijah16@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6465 Brushcreek Dr', 'NULL', '337-555-0173', '2013-05-07', '1-2 Miles'], ['22548', '358', 'AW00022548', 'NULL', 'Angela', 'NULL', 'Brooks', '0', '1977-03-31', 'M', 'NULL', 'F', 'angela27@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1821 Mt. Hood Circle', 'NULL', '142-555-0138', '2014-01-02', '0-1 Miles'], ['22549', '631', 'AW00022549', 'NULL', 'Isabel', 'C', 'Russell', '0', '1977-01-15', 'M', 'NULL', 'F', 'isabel19@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9684 La Vista Avenue', 'NULL', '687-555-0112', '2013-03-02', '0-1 Miles'], ['22550', '278', 'AW00022550', 'NULL', 'Kristopher', 'W', 'Rana', '0', '1972-03-06', 'M', 'NULL', 'M', 'kristopher10@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '4663 Hoek Maple Court', 'NULL', '1 (11) 500 555-0197', '2013-08-17', '0-1 Miles'], ['22551', '159', 'AW00022551', 'NULL', 'Andy', 'M', 'Rubio', '0', '1967-12-24', 'S', 'NULL', 'M', 'andy24@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Altendorfer Straße 570', 'NULL', '1 (11) 500 555-0129', '2013-10-29', '0-1 Miles'], ['22552', '222', 'AW00022552', 'Ms.', 'Andrea', 'NULL', 'Rusko', '0', '1968-03-08', 'S', 'NULL', 'F', 'andrea0@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '4, avenue des Ternes', 'NULL', '587-555-0100', '2013-06-28', '0-1 Miles'], ['22553', '262', 'AW00022553', 'NULL', 'Melinda', 'C', 'Vazquez', '0', '1940-12-05', 'M', 'NULL', 'F', 'melinda10@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '8546 Wilson Court', 'NULL', '1 (11) 500 555-0131', '2013-07-06', '0-1 Miles'], ['22554', '277', 'AW00022554', 'NULL', 'Gilbert', 'NULL', 'Xu', '0', '1974-11-13', 'M', 'NULL', 'M', 'gilbert26@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '3128 Second Street', 'NULL', '1 (11) 500 555-0155', '2013-03-11', '0-1 Miles'], ['22555', '223', 'AW00022555', 'NULL', 'Ethan', 'NULL', 'Taylor', '0', '1964-03-05', 'M', 'NULL', 'M', 'ethan42@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '11, avenue du Président-Kennedy', 'NULL', '1 (11) 500 555-0196', '2013-09-15', '0-1 Miles'], ['22556', '224', 'AW00022556', 'NULL', 'Oscar', 'F', 'Griffin', '0', '1963-10-07', 'S', 'NULL', 'M', 'oscar7@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '59, place de la Concorde', 'NULL', '1 (11) 500 555-0176', '2013-07-13', '0-1 Miles'], ['22557', '243', 'AW00022557', 'NULL', 'Jason', 'NULL', 'Scott', '0', '1962-08-14', 'S', 'NULL', 'M', 'jason41@adventure-works.com', '10000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '9944 Maywood Lane', 'NULL', '1 (11) 500 555-0147', '2013-07-31', '0-1 Miles'], ['22558', '272', 'AW00022558', 'NULL', 'Ernest', 'A', 'Ye', '0', '1968-04-06', 'M', 'NULL', 'M', 'ernest9@adventure-works.com', '10000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '3550 Mildred Ln', 'NULL', '1 (11) 500 555-0161', '2013-05-26', '0-1 Miles'], ['22559', '279', 'AW00022559', 'NULL', 'Stacy', 'NULL', 'Vazquez', '0', '1968-11-08', 'S', 'NULL', 'F', 'stacy15@adventure-works.com', '10000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '1453 Asilomar Dr.', 'NULL', '1 (11) 500 555-0179', '2013-02-13', '0-1 Miles'], ['22560', '231', 'AW00022560', 'NULL', 'Casey', 'C', 'Jai', '0', '1968-07-12', 'S', 'NULL', 'F', 'casey12@adventure-works.com', '10000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '8019 Via Romero', 'NULL', '1 (11) 500 555-0159', '2013-04-23', '0-1 Miles'], ['22561', '185', 'AW00022561', 'NULL', 'Katie', 'NULL', 'Nara', '0', '1962-08-28', 'S', 'NULL', 'F', 'katie19@adventure-works.com', '10000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '94, avenue du Port', 'NULL', '1 (11) 500 555-0189', '2013-07-25', '0-1 Miles'], ['22562', '221', 'AW00022562', 'NULL', 'Kelli', 'W', 'Li', '0', '1961-10-05', 'S', 'NULL', 'F', 'kelli3@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '1281, boulevard Beau Marchais', 'NULL', '1 (11) 500 555-0114', '2013-03-14', '0-1 Miles'], ['22563', '174', 'AW00022563', 'NULL', 'Darren', 'A', 'Weber', '0', '1961-12-20', 'S', 'NULL', 'M', 'darren6@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Parise Straße 6446', 'NULL', '1 (11) 500 555-0160', '2013-09-26', '0-1 Miles'], ['22564', '264', 'AW00022564', 'NULL', 'Autumn', 'A', 'Sun', '0', '1967-09-20', 'M', 'NULL', 'F', 'autumn12@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9192 Dublin Court', 'NULL', '1 (11) 500 555-0115', '2013-10-02', '0-1 Miles'], ['22565', '166', 'AW00022565', 'NULL', 'Brenda', 'L', 'Subram', '0', '1961-08-11', 'S', 'NULL', 'F', 'brenda16@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Pflugstr 8525', 'NULL', '1 (11) 500 555-0113', '2013-11-19', '0-1 Miles'], ['22566', '233', 'AW00022566', 'NULL', 'Damien', 'M', 'Pal', '0', '1960-07-03', 'S', 'NULL', 'M', 'damien28@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '2803 E. Cypress Rd.', 'NULL', '1 (11) 500 555-0119', '2013-11-26', '0-1 Miles'], ['22567', '201', 'AW00022567', 'NULL', 'Glenn', 'NULL', 'Zhu', '0', '1942-07-27', 'M', 'NULL', 'M', 'glenn15@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6, rue de Courtaboeuf', 'NULL', '1 (11) 500 555-0154', '2013-06-09', '0-1 Miles'], ['22568', '165', 'AW00022568', 'NULL', 'Autumn', 'NULL', 'Wu', '0', '1942-11-19', 'S', 'NULL', 'F', 'autumn6@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Am Kreuz 4095', 'Verkaufsabteilung', '1 (11) 500 555-0184', '2013-07-17', '0-1 Miles'], ['22569', '258', 'AW00022569', 'NULL', 'Johnny', 'J', 'Goel', '0', '1943-06-01', 'M', 'NULL', 'M', 'johnny21@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5869 Clayton Road', 'NULL', '1 (11) 500 555-0155', '2013-03-19', '0-1 Miles'], ['22570', '273', 'AW00022570', 'NULL', 'Jackson', 'NULL', 'Yang', '0', '1945-01-04', 'S', 'NULL', 'M', 'jackson0@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4290 Wellington Avenue', 'NULL', '1 (11) 500 555-0111', '2013-11-01', '0-1 Miles'], ['22571', '9', 'AW00022571', 'NULL', 'Armando', 'NULL', 'Vazquez', '0', '1985-08-09', 'M', 'NULL', 'M', 'armando15@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '4628 Mountain View Place', 'NULL', '1 (11) 500 555-0113', '2012-05-07', '2-5 Miles'], ['22572', '19', 'AW00022572', 'NULL', 'Karen', 'NULL', 'Cai', '0', '1986-05-03', 'M', 'NULL', 'F', 'karen30@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '748 Whitehall Drive', 'NULL', '1 (11) 500 555-0114', '2012-05-25', '2-5 Miles'], ['22573', '4', 'AW00022573', 'NULL', 'Lance', 'NULL', 'Sanz', '0', '1985-09-23', 'S', 'NULL', 'M', 'lance20@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '8327 Roundhouse Place', 'NULL', '1 (11) 500 555-0136', '2012-05-22', '0-1 Miles'], ['22574', '13', 'AW00022574', 'NULL', 'Randy', 'B', 'Zheng', '0', '1984-09-17', 'M', 'NULL', 'M', 'randy22@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '4798 San Benito Dr.', 'NULL', '1 (11) 500 555-0182', '2013-06-03', '0-1 Miles'], ['22575', '35', 'AW00022575', 'NULL', 'Orlando', 'NULL', 'Blanco', '0', '1986-02-16', 'S', 'NULL', 'M', 'orlando15@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '5135 Oak Park Blvd.', 'NULL', '1 (11) 500 555-0153', '2012-05-01', '0-1 Miles'], ['22576', '11', 'AW00022576', 'NULL', 'Tony', 'L', 'Xu', '0', '1986-06-23', 'S', 'NULL', 'M', 'tony8@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '8489 Barbie Dr.', 'NULL', '1 (11) 500 555-0154', '2012-05-01', '0-1 Miles'], ['22577', '13', 'AW00022577', 'NULL', 'Bryant', 'S', 'Sai', '0', '1985-11-30', 'M', 'NULL', 'M', 'bryant6@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8500 Byers Rd.', 'NULL', '1 (11) 500 555-0180', '2012-05-29', '0-1 Miles'], ['22578', '37', 'AW00022578', 'NULL', 'Juan', 'P', 'Vazquez', '0', '1983-04-11', 'S', 'NULL', 'M', 'juan3@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '2736 Scottsdale Rd', 'NULL', '1 (11) 500 555-0182', '2012-05-09', '0-1 Miles'], ['22579', '13', 'AW00022579', 'NULL', 'Kara', 'NULL', 'Lal', '0', '1981-10-15', 'S', 'NULL', 'F', 'kara9@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '7340 Pine Creek Way', 'NULL', '1 (11) 500 555-0174', '2012-05-16', '1-2 Miles'], ['22580', '23', 'AW00022580', 'NULL', 'Alexis', 'NULL', 'Long', '0', '1984-10-04', 'S', 'NULL', 'F', 'alexis32@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '3376 Jacaranda Dr.', 'NULL', '1 (11) 500 555-0174', '2012-05-02', '1-2 Miles'], ['22581', '19', 'AW00022581', 'NULL', 'Theresa', 'F', 'Vazquez', '0', '1985-02-16', 'M', 'NULL', 'F', 'theresa10@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '5227 Sutton Circle', 'NULL', '1 (11) 500 555-0116', '2012-05-10', '0-1 Miles'], ['22582', '27', 'AW00022582', 'NULL', 'Evelyn', 'D', 'Madan', '0', '1985-05-16', 'S', 'NULL', 'F', 'evelyn8@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '8162 Zacatecas', 'NULL', '1 (11) 500 555-0137', '2012-05-06', '0-1 Miles'], ['22583', '25', 'AW00022583', 'NULL', 'Troy', 'R', 'Sara', '0', '1983-02-09', 'S', 'NULL', 'M', 'troy11@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '1002 N. Spoonwood Court', 'NULL', '1 (11) 500 555-0139', '2012-05-15', '1-2 Miles'], ['22584', '211', 'AW00022584', 'NULL', 'Meagan', 'NULL', 'Lopez', '0', '1966-10-03', 'S', 'NULL', 'F', 'meagan16@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '36, rue de Berri', 'NULL', '1 (11) 500 555-0135', '2013-06-26', '1-2 Miles'], ['22585', '144', 'AW00022585', 'NULL', 'Kelvin', 'A', 'He', '0', '1967-01-17', 'S', 'NULL', 'M', 'kelvin37@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Alderweg 1849', 'NULL', '1 (11) 500 555-0157', '2013-05-28', '0-1 Miles'], ['22586', '279', 'AW00022586', 'NULL', 'Derek', 'T', 'Shen', '0', '1972-01-04', 'M', 'NULL', 'M', 'derek2@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '7884 Power Ave.', 'NULL', '1 (11) 500 555-0174', '2013-11-26', '0-1 Miles'], ['22587', '150', 'AW00022587', 'NULL', 'Gina', 'C', 'Alonso', '0', '1971-06-22', 'S', 'NULL', 'F', 'gina8@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Kapellstr 4924', 'NULL', '1 (11) 500 555-0114', '2013-05-01', '0-1 Miles'], ['22588', '239', 'AW00022588', 'NULL', 'Teresa', 'D', 'Martin', '0', '1966-04-16', 'S', 'NULL', 'F', 'teresa1@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '9608 Grammercy Lane', 'NULL', '1 (11) 500 555-0191', '2013-07-09', '1-2 Miles'], ['22589', '262', 'AW00022589', 'NULL', 'Cynthia', 'NULL', 'Suri', '0', '1965-09-29', 'S', 'NULL', 'F', 'cynthia4@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '1075 San Miguel Circle', 'NULL', '1 (11) 500 555-0167', '2013-08-27', '1-2 Miles'], ['22590', '171', 'AW00022590', 'NULL', 'Oscar', 'B', 'Hughes', '0', '1965-04-02', 'M', 'NULL', 'M', 'oscar19@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Platz des Landtags 55', 'NULL', '1 (11) 500 555-0132', '2013-05-13', '0-1 Miles'], ['22591', '147', 'AW00022591', 'NULL', 'Jon', 'G', 'Becker', '0', '1969-04-06', 'S', 'NULL', 'M', 'jon17@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Helsenbergbogen 2', 'NULL', '1 (11) 500 555-0155', '2013-05-23', '0-1 Miles'], ['22592', '269', 'AW00022592', 'NULL', 'Lindsey', 'K', 'Anand', '0', '1965-08-01', 'S', 'NULL', 'F', 'lindsey22@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1915 Seawind Dr.', 'NULL', '1 (11) 500 555-0155', '2013-11-16', '0-1 Miles'], ['22593', '190', 'AW00022593', 'NULL', 'Thomas', 'C', 'Johnson', '0', '1966-03-16', 'S', 'NULL', 'M', 'thomas61@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '22, avenue de Malakoff', 'NULL', '1 (11) 500 555-0170', '2013-08-26', '0-1 Miles'], ['22594', '231', 'AW00022594', 'NULL', 'Gabriella', 'S', 'James', '0', '1966-05-22', 'M', 'NULL', 'F', 'gabriella5@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '5886 Book Rd', 'NULL', '1 (11) 500 555-0137', '2013-11-04', '0-1 Miles'], ['22595', '180', 'AW00022595', 'NULL', 'Nicolas', 'W', 'Xie', '0', '1971-09-18', 'M', 'NULL', 'M', 'nicolas1@adventure-works.com', '40000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '64, rue des Grands Champs', 'NULL', '1 (11) 500 555-0111', '2013-07-06', '0-1 Miles'], ['22596', '248', 'AW00022596', 'NULL', 'Omar', 'A', 'Xu', '0', '1970-05-08', 'M', 'NULL', 'M', 'omar11@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4789 Estrada', 'NULL', '1 (11) 500 555-0110', '2013-11-01', '0-1 Miles'], ['22597', '140', 'AW00022597', 'NULL', 'Rachael', 'V', 'Chandra', '0', '1970-09-21', 'M', 'NULL', 'F', 'rachael2@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Kulmer Straße 4636', 'NULL', '1 (11) 500 555-0121', '2013-05-16', '0-1 Miles'], ['22598', '163', 'AW00022598', 'NULL', 'Donald', 'NULL', 'Sanchez', '0', '1964-09-30', 'S', 'NULL', 'M', 'donald22@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Welt Platz 990', 'NULL', '1 (11) 500 555-0141', '2013-05-26', '0-1 Miles'], ['22599', '244', 'AW00022599', 'NULL', 'Philip', 'NULL', 'Gill', '0', '1965-03-12', 'M', 'NULL', 'M', 'philip14@adventure-works.com', '40000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '2988 Wightman Lane', 'NULL', '1 (11) 500 555-0132', '2013-11-11', '0-1 Miles'], ['22600', '241', 'AW00022600', 'NULL', 'Maurice', 'L', 'Kumar', '0', '1980-08-05', 'S', 'NULL', 'M', 'maurice8@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5846 Premier Place', 'NULL', '1 (11) 500 555-0189', '2013-12-16', '0-1 Miles'], ['22601', '183', 'AW00022601', 'NULL', 'Aimee', 'NULL', 'Gao', '0', '1964-01-21', 'M', 'NULL', 'F', 'aimee10@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '67, rue des Berges', 'NULL', '1 (11) 500 555-0111', '2013-08-22', '0-1 Miles'], ['22602', '275', 'AW00022602', 'NULL', 'Kelli', 'NULL', 'Andersen', '0', '1981-11-01', 'S', 'NULL', 'F', 'kelli36@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '1826 Village Road', 'NULL', '1 (11) 500 555-0131', '2013-12-07', '0-1 Miles'], ['22603', '189', 'AW00022603', 'NULL', 'Autumn', 'NULL', 'He', '0', '1981-08-31', 'S', 'NULL', 'F', 'autumn18@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '242, avenue de la Gare', 'NULL', '1 (11) 500 555-0182', '2013-08-27', '0-1 Miles'], ['22604', '243', 'AW00022604', 'NULL', 'Wyatt', 'V', 'Simmons', '0', '1976-03-07', 'S', 'NULL', 'M', 'wyatt65@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '143 Pecan Pl.', 'NULL', '1 (11) 500 555-0114', '2013-12-12', '2-5 Miles'], ['22605', '273', 'AW00022605', 'NULL', 'Derrick', 'R', 'Schmidt', '0', '1975-09-02', 'S', 'NULL', 'M', 'derrick18@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6084 Norris Court', 'NULL', '1 (11) 500 555-0156', '2013-12-12', '1-2 Miles'], ['22606', '149', 'AW00022606', 'NULL', 'Alfredo', 'C', 'Hernandez', '0', '1981-03-13', 'S', 'NULL', 'M', 'alfredo5@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Karl Liebknecht str 299', 'NULL', '1 (11) 500 555-0142', '2013-05-06', '2-5 Miles'], ['22607', '171', 'AW00022607', 'NULL', 'Whitney', 'Y', 'Gonzalez', '0', '1975-09-01', 'S', 'NULL', 'F', 'whitney17@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Heidestieg Straße 2664', 'NULL', '1 (11) 500 555-0140', '2013-06-13', '1-2 Miles'], ['22608', '233', 'AW00022608', 'NULL', 'Arthur', 'L', 'Munoz', '0', '1974-11-03', 'S', 'NULL', 'M', 'arthur31@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '2199 Laverne Way', 'NULL', '1 (11) 500 555-0117', '2013-12-17', '0-1 Miles'], ['22609', '141', 'AW00022609', 'NULL', 'Clarence', 'L', 'Cai', '0', '1976-01-17', 'M', 'NULL', 'M', 'clarence14@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Auf der Krone 493', 'NULL', '1 (11) 500 555-0126', '2013-06-07', '0-1 Miles'], ['22610', '163', 'AW00022610', 'NULL', 'Brent', 'A', 'Chen', '0', '1976-04-15', 'M', 'NULL', 'M', 'brent2@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Kampstr 5998', 'NULL', '1 (11) 500 555-0197', '2013-06-04', '0-1 Miles'], ['22611', '267', 'AW00022611', 'NULL', 'Chad', 'NULL', 'Deng', '0', '1975-11-10', 'M', 'NULL', 'M', 'chad2@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '975 Harris Circle', 'NULL', '1 (11) 500 555-0167', '2013-11-24', '0-1 Miles'], ['22612', '191', 'AW00022612', 'NULL', 'Franklin', 'M', 'Huang', '0', '1974-12-12', 'S', 'NULL', 'M', 'franklin6@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '3355, rue de Longchamp', 'NULL', '1 (11) 500 555-0157', '2013-08-07', '2-5 Miles'], ['22613', '264', 'AW00022613', 'NULL', 'Dale', 'M', 'Luo', '0', '1974-12-18', 'S', 'NULL', 'M', 'dale5@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '3913 Euclid Ave.', 'NULL', '1 (11) 500 555-0128', '2013-01-10', '2-5 Miles'], ['22614', '255', 'AW00022614', 'NULL', 'Tommy', 'H', 'Shan', '0', '1980-11-07', 'S', 'NULL', 'M', 'tommy7@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7833 Cook Pkwy', 'NULL', '1 (11) 500 555-0113', '2013-01-18', '0-1 Miles'], ['22615', '157', 'AW00022615', 'NULL', 'Misty', 'NULL', 'Xu', '0', '1974-10-15', 'S', 'NULL', 'F', 'misty6@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Postenweg 2428', 'NULL', '1 (11) 500 555-0142', '2013-06-19', '0-1 Miles'], ['22616', '258', 'AW00022616', 'NULL', 'Jake', 'NULL', 'Zhang', '0', '1975-02-15', 'S', 'NULL', 'M', 'jake0@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2901 Ninth Avenue SW Court', 'NULL', '1 (11) 500 555-0179', '2013-11-28', '0-1 Miles'], ['22617', '117', 'AW00022617', 'NULL', 'Andres', 'NULL', 'Nath', '0', '1986-02-13', 'M', 'NULL', 'M', 'andres15@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Wolfgangstraße 10', 'NULL', '1 (11) 500 555-0159', '2013-12-16', '0-1 Miles'], ['22618', '244', 'AW00022618', 'NULL', 'Rosa', 'NULL', 'Cai', '0', '1975-01-29', 'M', 'NULL', 'F', 'rosa21@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '302 Camelback Ct.', 'NULL', '1 (11) 500 555-0129', '2013-12-06', '0-1 Miles'], ['22619', '147', 'AW00022619', 'NULL', 'Robin', 'NULL', 'Hernandez', '0', '1974-08-11', 'S', 'NULL', 'F', 'robin1@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', 'Wallstr 824', 'NULL', '1 (11) 500 555-0128', '2013-12-12', '0-1 Miles'], ['22620', '157', 'AW00022620', 'NULL', 'Stefanie', 'R', 'Suri', '0', '1974-09-10', 'S', 'NULL', 'F', 'stefanie0@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', 'Heiderweg 4982', 'NULL', '1 (11) 500 555-0154', '2013-02-09', '0-1 Miles'], ['22621', '162', 'AW00022621', 'NULL', 'Xavier', 'NULL', 'Davis', '0', '1980-12-05', 'M', 'NULL', 'M', 'xavier5@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Winter der Böck 441', 'NULL', '1 (11) 500 555-0173', '2013-04-21', '0-1 Miles'], ['22622', '257', 'AW00022622', 'NULL', 'Neil', 'M', 'Sanz', '0', '1957-11-10', 'M', 'NULL', 'M', 'neil19@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '9667 Argonne Drive', 'NULL', '1 (11) 500 555-0153', '2013-08-27', '0-1 Miles'], ['22623', '176', 'AW00022623', 'NULL', 'Jamie', 'M', 'Suarez', '0', '1957-08-29', 'S', 'NULL', 'M', 'jamie41@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Am Grossen Dern 46', 'NULL', '1 (11) 500 555-0146', '2013-06-28', '0-1 Miles'], ['22624', '189', 'AW00022624', 'NULL', 'Sandra', 'NULL', 'Wu', '0', '1957-04-16', 'M', 'NULL', 'F', 'sandra13@adventure-works.com', '10000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '70, place de la République', 'NULL', '1 (11) 500 555-0167', '2014-01-02', '0-1 Miles'], ['22625', '221', 'AW00022625', 'NULL', 'Meagan', 'NULL', 'Patel', '0', '1974-01-21', 'S', 'NULL', 'F', 'meagan3@adventure-works.com', '10000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '766, rue de Berri', 'NULL', '1 (11) 500 555-0128', '2013-02-25', '0-1 Miles'], ['22626', '208', 'AW00022626', 'NULL', 'Arturo', 'NULL', 'Anand', '0', '1973-09-22', 'S', 'NULL', 'M', 'arturo46@adventure-works.com', '10000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '1112, rue des Grands Champs', 'NULL', '1 (11) 500 555-0187', '2013-08-07', '0-1 Miles'], ['22627', '144', 'AW00022627', 'NULL', 'Shawna', 'K', 'Sharma', '0', '1979-05-14', 'S', 'NULL', 'F', 'shawna10@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Hansaallee 59', 'NULL', '1 (11) 500 555-0114', '2013-06-25', '0-1 Miles'], ['22628', '130', 'AW00022628', 'NULL', 'Marshall', 'J', 'Lu', '0', '1973-12-23', 'M', 'NULL', 'M', 'marshall10@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Alderweg 4918', 'NULL', '1 (11) 500 555-0178', '2013-06-04', '2-5 Miles'], ['22629', '241', 'AW00022629', 'NULL', 'Matthew', 'NULL', 'Rodriguez', '0', '1929-01-30', 'M', 'NULL', 'M', 'matthew25@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9222 Roseann Drive', 'NULL', '1 (11) 500 555-0197', '2013-06-06', '0-1 Miles'], ['22630', '237', 'AW00022630', 'NULL', 'Roger', 'NULL', 'Wu', '0', '1979-10-05', 'M', 'NULL', 'M', 'roger11@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5453 James Donlon Blvd.', 'NULL', '1 (11) 500 555-0116', '2013-01-19', '1-2 Miles'], ['22631', '237', 'AW00022631', 'NULL', 'Theodore', 'NULL', 'Serrano', '0', '1974-03-15', 'S', 'NULL', 'M', 'theodore17@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '5071 Paradise Ct.', 'NULL', '1 (11) 500 555-0187', '2013-01-06', '0-1 Miles'], ['22632', '199', 'AW00022632', 'NULL', 'Tabitha', 'C', 'Perez', '0', '1973-10-10', 'M', 'NULL', 'F', 'tabitha18@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '244, boulevard d´Albi', 'NULL', '1 (11) 500 555-0169', '2013-08-08', '0-1 Miles'], ['22633', '120', 'AW00022633', 'NULL', 'Claudia', 'E', 'Zhao', '0', '1974-04-04', 'S', 'NULL', 'F', 'claudia9@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Lützowplatz 5928', 'NULL', '1 (11) 500 555-0141', '2013-05-08', '0-1 Miles'], ['22634', '241', 'AW00022634', 'NULL', 'Giraldo', 'Hierro', 'Sandoval', '0', '1973-11-24', 'S', 'NULL', 'F', 'giraldo0@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6526 Creed Ave', 'NULL', '1 (11) 500 555-0196', '2013-12-23', '0-1 Miles'], ['22635', '244', 'AW00022635', 'NULL', 'Kristi', 'L', 'Hernandez', '0', '1973-07-13', 'S', 'NULL', 'F', 'kristi0@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '4443 Virginia Lane', 'NULL', '1 (11) 500 555-0182', '2013-12-10', '0-1 Miles'], ['22636', '265', 'AW00022636', 'NULL', 'Stacey', 'E', 'Zhu', '0', '1979-05-11', 'S', 'NULL', 'F', 'stacey15@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '8796 Walnut Ave.', 'NULL', '1 (11) 500 555-0175', '2013-12-23', '0-1 Miles'], ['22637', '267', 'AW00022637', 'NULL', 'Ana', 'R', 'Alexander', '0', '1979-12-13', 'M', 'NULL', 'F', 'ana17@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8494 Military Way', 'NULL', '1 (11) 500 555-0181', '2013-12-05', '0-1 Miles'], ['22638', '161', 'AW00022638', 'NULL', 'Kristi', 'NULL', 'Gutierrez', '0', '1978-10-15', 'S', 'NULL', 'F', 'kristi6@adventure-works.com', '10000.00', '3', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Hunzinger Allee 664', 'NULL', '1 (11) 500 555-0147', '2013-06-12', '0-1 Miles'], ['22639', '239', 'AW00022639', 'NULL', 'Lori', 'M', 'Munoz', '0', '1983-10-04', 'S', 'NULL', 'F', 'lori10@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '2934 Bentley St.', 'NULL', '1 (11) 500 555-0132', '2013-02-20', '2-5 Miles'], ['22640', '261', 'AW00022640', 'NULL', 'Caleb', 'NULL', 'Li', '0', '1972-12-14', 'M', 'NULL', 'M', 'caleb22@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '6387 Tanager Road', 'NULL', '1 (11) 500 555-0150', '2013-02-13', '2-5 Miles'], ['22641', '223', 'AW00022641', 'NULL', 'Abigail', 'G', 'Diaz', '0', '1983-09-17', 'S', 'NULL', 'F', 'abigail70@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '34, route de Marseille', 'NULL', '1 (11) 500 555-0123', '2013-09-18', '2-5 Miles'], ['22642', '269', 'AW00022642', 'NULL', 'Garrett', 'NULL', 'Rivera', '0', '1983-10-18', 'S', 'NULL', 'M', 'garrett21@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6541 Central Ave.', 'NULL', '1 (11) 500 555-0178', '2013-02-14', '1-2 Miles'], ['22643', '230', 'AW00022643', 'NULL', 'Brenda', 'D', 'Suri', '0', '1973-05-12', 'S', 'NULL', 'F', 'brenda4@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '7271 Adelaide St', 'NULL', '1 (11) 500 555-0180', '2013-02-22', '2-5 Miles'], ['22644', '147', 'AW00022644', 'NULL', 'Marc', 'C', 'Ortega', '0', '1978-03-12', 'S', 'NULL', 'M', 'marc26@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Rotthäuser Weg 2200', 'NULL', '1 (11) 500 555-0167', '2013-06-23', '1-2 Miles'], ['22645', '184', 'AW00022645', 'NULL', 'Isabella', 'NULL', 'Murphy', '0', '1972-08-07', 'S', 'NULL', 'F', 'isabella89@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '1', '9955, rue Ste-Honoré', 'NULL', '1 (11) 500 555-0117', '2013-09-15', '0-1 Miles'], ['22646', '247', 'AW00022646', 'NULL', 'Cara', 'H', 'She', '0', '1972-01-22', 'S', 'NULL', 'F', 'cara19@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '4612 A St.', 'NULL', '1 (11) 500 555-0171', '2013-02-16', '1-2 Miles'], ['22647', '207', 'AW00022647', 'NULL', 'Taylor', 'D', 'Martinez', '0', '1973-05-26', 'S', 'NULL', 'F', 'taylor64@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '577, avenue de Villiers', 'NULL', '1 (11) 500 555-0150', '2013-08-29', '0-1 Miles'], ['22648', '222', 'AW00022648', 'NULL', 'Kaitlin', 'J', 'Srini', '0', '1973-04-01', 'S', 'NULL', 'F', 'kaitlin8@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '44bis, boulevard Saint Germain', 'NULL', '1 (11) 500 555-0184', '2013-09-06', '0-1 Miles'], ['22649', '184', 'AW00022649', 'NULL', 'Corey', 'NULL', 'Tang', '0', '1977-08-16', 'S', 'NULL', 'M', 'corey4@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '1', '31, place de Fontenoy', 'NULL', '1 (11) 500 555-0128', '2013-09-20', '0-1 Miles'], ['22650', '115', 'AW00022650', 'NULL', 'Kristina', 'J', 'Suri', '0', '1971-10-18', 'S', 'NULL', 'F', 'kristina0@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Kapellstr 4961', 'NULL', '1 (11) 500 555-0187', '2013-06-07', '0-1 Miles'], ['22651', '211', 'AW00022651', 'NULL', 'Frederick', 'NULL', 'Sara', '0', '1972-05-14', 'S', 'NULL', 'M', 'frederick9@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '1', '410, rue de l´Esplanade', 'NULL', '1 (11) 500 555-0190', '2013-09-22', '0-1 Miles'], ['22652', '168', 'AW00022652', 'NULL', 'Gilbert', 'B', 'Shan', '0', '1971-06-01', 'S', 'NULL', 'M', 'gilbert31@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Heidestieg Straße 8224', 'NULL', '1 (11) 500 555-0156', '2013-06-18', '0-1 Miles'], ['22653', '256', 'AW00022653', 'NULL', 'Carolyn', 'F', 'Dominguez', '0', '1970-12-15', 'S', 'NULL', 'F', 'carolyn33@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '9678 Redlands Way', 'NULL', '1 (11) 500 555-0199', '2013-02-11', '0-1 Miles'], ['22654', '215', 'AW00022654', 'NULL', 'Orlando', 'NULL', 'Romero', '0', '1971-03-22', 'S', 'NULL', 'M', 'orlando9@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '8, rue de la Comédie', 'NULL', '1 (11) 500 555-0112', '2013-09-16', '0-1 Miles'], ['22655', '120', 'AW00022655', 'NULL', 'Lucas', 'M', 'Young', '0', '1976-04-12', 'S', 'NULL', 'M', 'lucas40@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Alderstr 284', 'NULL', '1 (11) 500 555-0153', '2013-07-16', '0-1 Miles'], ['22656', '243', 'AW00022656', 'NULL', 'Willie', 'T', 'Goel', '0', '1969-10-23', 'S', 'NULL', 'M', 'willie38@adventure-works.com', '10000.00', '5', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '9440 Newell Ave.', 'NULL', '1 (11) 500 555-0186', '2013-03-22', '0-1 Miles'], ['22657', '273', 'AW00022657', 'NULL', 'Clinton', 'NULL', 'Suarez', '0', '1975-02-15', 'S', 'NULL', 'M', 'clinton15@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '4037 Trasher Road', 'NULL', '1 (11) 500 555-0133', '2013-09-08', '0-1 Miles'], ['22658', '220', 'AW00022658', 'NULL', 'Devin', 'NULL', 'Rodriguez', '0', '1970-05-17', 'S', 'NULL', 'M', 'devin19@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '30, allée des Princes', 'NULL', '1 (11) 500 555-0149', '2013-11-06', '0-1 Miles'], ['22659', '120', 'AW00022659', 'NULL', 'Shawna', 'NULL', 'Luo', '0', '1975-02-19', 'S', 'NULL', 'F', 'shawna6@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Alderweg 20', 'NULL', '1 (11) 500 555-0185', '2013-11-09', '0-1 Miles'], ['22660', '155', 'AW00022660', 'NULL', 'Monica', 'M', 'Lopez', '0', '1975-07-13', 'S', 'NULL', 'F', 'monica16@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Postfach 11 05 00', 'NULL', '1 (11) 500 555-0183', '2014-01-13', '0-1 Miles'], ['22661', '215', 'AW00022661', 'NULL', 'Tracy', 'NULL', 'Shan', '0', '1981-01-30', 'M', 'NULL', 'F', 'tracy9@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '58, rue des Berges', 'NULL', '1 (11) 500 555-0198', '2013-10-31', '0-1 Miles'], ['22662', '241', 'AW00022662', 'NULL', 'Tyrone', 'S', 'Carlson', '0', '1969-08-14', 'M', 'NULL', 'M', 'tyrone17@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6300 Colfax Street', 'NULL', '1 (11) 500 555-0193', '2013-11-20', '0-1 Miles'], ['22663', '191', 'AW00022663', 'NULL', 'Terrence', 'P', 'Deng', '0', '1971-08-18', 'S', 'NULL', 'M', 'terrence2@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '995, rue de Courtaboeuf', 'NULL', '1 (11) 500 555-0158', '2013-09-24', '0-1 Miles'], ['22664', '187', 'AW00022664', 'NULL', 'Dawn', 'A', 'Yang', '0', '1971-12-20', 'M', 'NULL', 'F', 'dawn6@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '8104bis, boulevard Saint Germain', 'NULL', '1 (11) 500 555-0181', '2013-10-08', '0-1 Miles'], ['22665', '120', 'AW00022665', 'NULL', 'Orlando', 'L', 'Diaz', '0', '1972-06-11', 'S', 'NULL', 'M', 'orlando3@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', 'Zollstr 28', 'NULL', '1 (11) 500 555-0163', '2013-05-16', '0-1 Miles'], ['22666', '159', 'AW00022666', 'NULL', 'Mayra', 'NULL', 'Srini', '0', '1972-05-15', 'M', 'NULL', 'F', 'mayra8@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', 'Herzogstr 5772', 'NULL', '1 (11) 500 555-0116', '2013-06-16', '0-1 Miles'], ['22667', '239', 'AW00022667', 'NULL', 'Roy', 'M', 'Rana', '0', '1982-10-08', 'S', 'NULL', 'M', 'roy11@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '2910 Boyd', 'NULL', '1 (11) 500 555-0158', '2013-01-03', '0-1 Miles'], ['22668', '245', 'AW00022668', 'NULL', 'Adrienne', 'Y', 'Hernandez', '0', '1977-05-24', 'M', 'NULL', 'F', 'adrienne3@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '4067 Sandiago Drive', 'NULL', '1 (11) 500 555-0125', '2013-01-16', '0-1 Miles'], ['22669', '250', 'AW00022669', 'NULL', 'Lindsay', 'E', 'Raji', '0', '1977-08-16', 'S', 'NULL', 'F', 'lindsay21@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '4371 Erie Dr.', 'NULL', '1 (11) 500 555-0180', '2013-01-19', '0-1 Miles'], ['22670', '278', 'AW00022670', 'NULL', 'Erika', 'J', 'Sanz', '0', '1972-01-29', 'M', 'NULL', 'F', 'erika17@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '378 Canyon Road', 'NULL', '1 (11) 500 555-0132', '2013-03-14', '0-1 Miles'], ['22671', '243', 'AW00022671', 'NULL', 'Wyatt', 'NULL', 'King', '0', '1968-10-05', 'S', 'NULL', 'M', 'wyatt29@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '3980 Bridge', 'NULL', '1 (11) 500 555-0184', '2013-03-05', '0-1 Miles'], ['22672', '241', 'AW00022672', 'NULL', 'Crystal', 'W', 'Wu', '0', '1969-01-04', 'S', 'NULL', 'F', 'crystal9@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7904 Eagle Peak Avenue', 'NULL', '1 (11) 500 555-0151', '2013-07-01', '0-1 Miles'], ['22673', '222', 'AW00022673', 'NULL', 'Andy', 'NULL', 'Gill', '0', '1969-05-11', 'S', 'NULL', 'M', 'andy18@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '76, rue des Berges', 'NULL', '1 (11) 500 555-0152', '2013-09-14', '0-1 Miles'], ['22674', '120', 'AW00022674', 'NULL', 'Troy', 'C', 'Prasad', '0', '1968-12-20', 'S', 'NULL', 'M', 'troy10@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Im Himmelsweg 89', 'NULL', '1 (11) 500 555-0151', '2013-07-02', '0-1 Miles'], ['22675', '196', 'AW00022675', 'NULL', 'Alexandra', 'A', 'Winston', '0', '1982-01-16', 'S', 'NULL', 'F', 'alexandra65@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7, place Beaubernard', 'Agence Taillefer', '1 (11) 500 555-0160', '2013-09-15', '0-1 Miles'], ['22676', '193', 'AW00022676', 'NULL', 'Stefanie', 'NULL', 'Jordan', '0', '1976-04-11', 'S', 'NULL', 'F', 'stefanie1@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '88, impasse Notre-Dame', 'NULL', '1 (11) 500 555-0157', '2013-02-23', '0-1 Miles'], ['22677', '132', 'AW00022677', 'NULL', 'Reginald', 'NULL', 'Carlson', '0', '1971-04-11', 'S', 'NULL', 'M', 'reginald4@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Marketplatz 5492', 'NULL', '1 (11) 500 555-0173', '2013-11-12', '0-1 Miles'], ['22678', '120', 'AW00022678', 'NULL', 'Sydney', 'NULL', 'Lee', '0', '1980-09-13', 'M', 'NULL', 'F', 'sydney84@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Alte Landstr 722', 'NULL', '1 (11) 500 555-0116', '2013-07-16', '0-1 Miles'], ['22679', '159', 'AW00022679', 'NULL', 'Derrick', 'A', 'Dominguez', '0', '1969-10-31', 'M', 'NULL', 'M', 'derrick12@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Auf der Krone 499', 'NULL', '1 (11) 500 555-0177', '2013-08-31', '0-1 Miles'], ['22680', '151', 'AW00022680', 'NULL', 'Lee', 'D', 'Suarez', '0', '1969-10-10', 'M', 'NULL', 'M', 'lee18@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Heiderplatz 772', 'NULL', '1 (11) 500 555-0192', '2013-11-18', '0-1 Miles'], ['22681', '220', 'AW00022681', 'NULL', 'Tristan', 'T', 'Barnes', '0', '1969-05-19', 'S', 'NULL', 'M', 'tristan3@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1208, rue Maillard', 'NULL', '1 (11) 500 555-0126', '2013-06-10', '0-1 Miles'], ['22682', '226', 'AW00022682', 'NULL', 'Willie', 'C', 'Luo', '0', '1969-05-25', 'S', 'NULL', 'M', 'willie25@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '76, rue de Berri', 'NULL', '1 (11) 500 555-0143', '2014-01-17', '0-1 Miles'], ['22683', '190', 'AW00022683', 'NULL', 'David', 'NULL', 'Garcia', '0', '1969-03-02', 'S', 'NULL', 'M', 'david79@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6699, rue de Longchamp', 'NULL', '1 (11) 500 555-0146', '2013-05-18', '0-1 Miles'], ['22684', '147', 'AW00022684', 'NULL', 'Lauren', 'W', 'Cooper', '0', '1968-11-12', 'M', 'NULL', 'F', 'lauren9@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Haberstr 8', 'NULL', '1 (11) 500 555-0116', '2013-11-27', '0-1 Miles'], ['22685', '132', 'AW00022685', 'NULL', 'Barbara', 'NULL', 'Ma', '0', '1984-11-01', 'S', 'NULL', 'F', 'barbara25@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Zollhof 4822', 'NULL', '1 (11) 500 555-0175', '2013-07-25', '0-1 Miles'], ['22686', '251', 'AW00022686', 'NULL', 'Wayne', 'H', 'Anand', '0', '1984-09-08', 'S', 'NULL', 'M', 'wayne24@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3394 Near Drive', 'NULL', '1 (11) 500 555-0127', '2013-03-11', '0-1 Miles'], ['22687', '246', 'AW00022687', 'NULL', 'Javier', 'M', 'Jiménez', '0', '1969-05-10', 'M', 'NULL', 'M', 'javier2@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '199 Buskirk Ave', 'NULL', '1 (11) 500 555-0114', '2012-12-29', '0-1 Miles'], ['22688', '121', 'AW00022688', 'NULL', 'Seth', 'NULL', 'Perez', '0', '1968-03-18', 'S', 'NULL', 'M', 'seth39@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Auf dem Ufer 424', 'NULL', '1 (11) 500 555-0157', '2013-07-25', '2-5 Miles'], ['22689', '211', 'AW00022689', 'NULL', 'Gilbert', 'A', 'Zheng', '0', '1967-10-13', 'S', 'NULL', 'M', 'gilbert17@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '8, rue Pierre-Demoulin', 'NULL', '1 (11) 500 555-0167', '2013-10-15', '0-1 Miles'], ['22690', '211', 'AW00022690', 'NULL', 'Kurt', 'C', 'Luo', '0', '1978-10-07', 'M', 'NULL', 'M', 'kurt5@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '10bis, rue des Peupliers', 'NULL', '1 (11) 500 555-0156', '2013-10-25', '0-1 Miles'], ['22691', '219', 'AW00022691', 'NULL', 'Gerald', 'V', 'Raman', '0', '1967-12-18', 'M', 'NULL', 'M', 'gerald42@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '75, avenue de la Gare', 'NULL', '1 (11) 500 555-0164', '2013-10-17', '0-1 Miles'], ['22692', '185', 'AW00022692', 'NULL', 'Paula', 'L', 'Alonso', '0', '1968-06-09', 'M', 'NULL', 'F', 'paula11@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '87, rue de l´Avenir', 'NULL', '1 (11) 500 555-0130', '2013-11-15', '0-1 Miles'], ['22693', '226', 'AW00022693', 'NULL', 'Darryl', 'NULL', 'Gao', '0', '1967-12-14', 'M', 'NULL', 'M', 'darryl14@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Attaché de Presse', 'NULL', '1 (11) 500 555-0115', '2013-02-02', '0-1 Miles'], ['22694', '129', 'AW00022694', 'NULL', 'Molly', 'N', 'Kapoor', '0', '1983-07-06', 'S', 'NULL', 'F', 'molly2@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Westheimer Straße 9', 'NULL', '1 (11) 500 555-0163', '2013-07-07', '0-1 Miles'], ['22695', '256', 'AW00022695', 'NULL', 'Darren', 'NULL', 'Martin', '0', '1984-02-14', 'S', 'NULL', 'M', 'darren22@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '3', '5457 Woodcrest Dr.', 'NULL', '1 (11) 500 555-0174', '2013-03-10', '0-1 Miles'], ['22696', '191', 'AW00022696', 'NULL', 'Kari', 'NULL', 'Vazquez', '0', '1983-01-05', 'S', 'NULL', 'F', 'kari35@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '808, quai de Grenelle', 'NULL', '1 (11) 500 555-0162', '2013-11-15', '2-5 Miles'], ['22697', '221', 'AW00022697', 'NULL', 'Harold', 'S', 'Sara', '0', '1982-12-03', 'S', 'NULL', 'M', 'harold7@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '88, impasse Notre-Dame', 'NULL', '1 (11) 500 555-0185', '2013-03-06', '2-5 Miles'], ['22698', '211', 'AW00022698', 'NULL', 'Bradley', 'A', 'Andersen', '0', '1980-07-08', 'M', 'NULL', 'M', 'bradley15@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Midi-Couleurs', 'NULL', '1 (11) 500 555-0155', '2013-04-13', '0-1 Miles'], ['22699', '160', 'AW00022699', 'NULL', 'Clarence', 'A', 'Chande', '0', '1981-02-21', 'M', 'NULL', 'M', 'clarence29@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Wolfgangstraße 72', 'NULL', '1 (11) 500 555-0160', '2013-11-23', '0-1 Miles'], ['22700', '123', 'AW00022700', 'NULL', 'Gina', 'NULL', 'Serrano', '0', '1986-06-03', 'M', 'NULL', 'F', 'gina17@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Pappelallee 961', 'NULL', '1 (11) 500 555-0113', '2013-07-18', '0-1 Miles'], ['22701', '168', 'AW00022701', 'NULL', 'Anne', 'NULL', 'Navarro', '0', '1980-10-03', 'S', 'NULL', 'F', 'anne11@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Parise Straße 4552', 'NULL', '1 (11) 500 555-0185', '2013-07-04', '5-10 Miles'], ['22702', '215', 'AW00022702', 'NULL', 'Patricia', 'G', 'Gonzalez', '0', '1980-08-05', 'S', 'NULL', 'F', 'patricia20@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1442, rue des Pyrenees', 'NULL', '1 (11) 500 555-0128', '2013-11-13', '5-10 Miles'], ['22703', '211', 'AW00022703', 'NULL', 'Melvin', 'D', 'Raji', '0', '1982-01-05', 'S', 'NULL', 'M', 'melvin20@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '211, quai de Grenelle', 'NULL', '1 (11) 500 555-0117', '2014-01-07', '5-10 Miles'], ['22704', '197', 'AW00022704', 'NULL', 'Bethany', 'B', 'Raje', '0', '1981-08-11', 'S', 'NULL', 'F', 'bethany17@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '877bis, rue des Peupliers', 'NULL', '1 (11) 500 555-0161', '2013-06-15', '5-10 Miles'], ['22705', '125', 'AW00022705', 'NULL', 'Adriana', 'NULL', 'Kapoor', '0', '1981-09-22', 'S', 'NULL', 'F', 'adriana1@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Berliner Platz 994', 'Einkaufsabteilung', '1 (11) 500 555-0119', '2013-02-11', '2-5 Miles'], ['22706', '132', 'AW00022706', 'Mr.', 'Andy', 'NULL', 'Ruth', '0', '1981-10-24', 'S', 'NULL', 'F', 'andy2@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Kurfürstenstr 5444', 'NULL', '856-555-0100', '2014-01-16', '2-5 Miles'], ['22707', '171', 'AW00022707', 'NULL', 'Haley', 'NULL', 'Russell', '0', '1981-07-18', 'S', 'NULL', 'F', 'haley39@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Pascalstr 7', 'NULL', '1 (11) 500 555-0119', '2013-08-11', '2-5 Miles'], ['22708', '219', 'AW00022708', 'NULL', 'Anne', 'J', 'Ruiz', '0', '1979-11-29', 'S', 'NULL', 'F', 'anne3@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '5, rue Lafayette', 'NULL', '1 (11) 500 555-0114', '2013-09-10', '0-1 Miles'], ['22709', '186', 'AW00022709', 'NULL', 'Tamara', 'NULL', 'Gao', '0', '1985-03-14', 'S', 'NULL', 'F', 'tamara4@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '22, rue de Courtaboeuf', 'NULL', '1 (11) 500 555-0191', '2013-09-13', '0-1 Miles'], ['22710', '145', 'AW00022710', 'NULL', 'Trisha', 'A', 'Zhao', '0', '1980-04-08', 'M', 'NULL', 'F', 'trisha5@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Königsteiner Straße 449', 'NULL', '1 (11) 500 555-0188', '2013-04-18', '0-1 Miles'], ['22711', '131', 'AW00022711', 'NULL', 'Isaiah', 'G', 'Hernandez', '0', '1978-10-07', 'S', 'NULL', 'M', 'isaiah44@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Lützowplatz 528', 'NULL', '1 (11) 500 555-0163', '2013-07-17', '0-1 Miles'], ['22712', '184', 'AW00022712', 'NULL', 'Monique', 'NULL', 'Romero', '0', '1979-08-06', 'S', 'NULL', 'F', 'monique5@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '16, rue des Grands Champs', 'NULL', '1 (11) 500 555-0145', '2013-10-20', '2-5 Miles'], ['22713', '49', 'AW00022713', 'NULL', 'Joseph', 'A', 'Miller', '0', '1972-08-29', 'S', 'NULL', 'M', 'joseph12@adventure-works.com', '70000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '3570 Court Lane', 'NULL', '122-555-0193', '2011-06-21', '0-1 Miles'], ['22714', '64', 'AW00022714', 'NULL', 'Angelica', 'NULL', 'Alexander', '0', '1970-10-06', 'M', 'NULL', 'F', 'angelica18@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '1749 Champion Rd', 'NULL', '214-555-0150', '2013-06-25', '0-1 Miles'], ['22715', '66', 'AW00022715', 'NULL', 'Marcus', 'NULL', 'Watson', '0', '1971-05-18', 'M', 'NULL', 'M', 'marcus74@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '6542 Greenwood Pl.', 'NULL', '137-555-0164', '2013-05-16', '0-1 Miles'], ['22716', '614', 'AW00022716', 'NULL', 'Caleb', 'NULL', 'Nelson', '0', '1981-12-30', 'S', 'NULL', 'M', 'caleb39@adventure-works.com', '100000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '8404 Houston Ct.', 'NULL', '331-555-0117', '2013-07-17', '2-5 Miles'], ['22717', '644', 'AW00022717', 'NULL', 'Nicole', 'S', 'Watson', '0', '1976-05-06', 'M', 'NULL', 'F', 'nicole44@adventure-works.com', '100000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '9218 Sanford St.', 'NULL', '259-555-0148', '2013-07-09', '2-5 Miles'], ['22718', '299', 'AW00022718', 'NULL', 'Zachary', 'L', 'Simmons', '0', '1970-12-09', 'M', 'NULL', 'M', 'zachary14@adventure-works.com', '110000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '7000 Hawes Street', 'NULL', '159-555-0168', '2013-07-28', '2-5 Miles'], ['22719', '311', 'AW00022719', 'NULL', 'Jesse', 'NULL', 'Brooks', '0', '1971-04-11', 'S', 'NULL', 'M', 'jesse1@adventure-works.com', '110000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '5121 Alta Vista', 'NULL', '839-555-0180', '2013-07-18', '2-5 Miles'], ['22720', '337', 'AW00022720', 'NULL', 'Jonathan', 'NULL', 'Alexander', '0', '1982-04-23', 'M', 'NULL', 'M', 'jonathan18@adventure-works.com', '130000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '8784 Detroit Ave.', 'NULL', '150-555-0187', '2013-12-26', '0-1 Miles'], ['22721', '607', 'AW00022721', 'NULL', 'Colleen', 'E', 'Lin', '0', '1968-01-21', 'M', 'NULL', 'F', 'colleen8@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1679 Via Doble', 'NULL', '993-555-0167', '2013-08-07', '2-5 Miles'], ['22722', '302', 'AW00022722', 'NULL', 'Tina', 'NULL', 'Fernandez', '0', '1968-01-16', 'S', 'NULL', 'F', 'tina17@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4265 Ashwood Drive', 'NULL', '249-555-0139', '2013-07-20', '0-1 Miles'], ['22723', '383', 'AW00022723', 'NULL', 'Alexander', 'G', 'Anderson', '0', '1948-06-03', 'M', 'NULL', 'M', 'alexander14@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9614 Warwick Dr.', 'NULL', '709-555-0162', '2013-09-29', '1-2 Miles'], ['22724', '315', 'AW00022724', 'NULL', 'Noah', 'E', 'Evans', '0', '1958-08-22', 'M', 'NULL', 'M', 'noah27@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1640 Windmill Way', 'NULL', '377-555-0168', '2013-07-28', '10+ Miles'], ['22725', '633', 'AW00022725', 'NULL', 'Richard', 'A', 'Gonzales', '0', '1949-01-19', 'M', 'NULL', 'M', 'richard72@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8796 Altura Dr.', 'NULL', '621-555-0196', '2013-08-03', '10+ Miles'], ['22726', '623', 'AW00022726', 'NULL', 'Anna', 'A', 'Morris', '0', '1954-11-11', 'M', 'NULL', 'F', 'anna4@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7435 Ricardo', 'NULL', '232-555-0182', '2013-12-28', '1-2 Miles'], ['22727', '611', 'AW00022727', 'NULL', 'Jodi', 'NULL', 'She', '0', '1954-10-19', 'M', 'NULL', 'F', 'jodi0@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1510 American Beauty Dr.', 'NULL', '359-555-0153', '2013-04-06', '10+ Miles'], ['22728', '49', 'AW00022728', 'NULL', 'Arianna', 'NULL', 'Russell', '0', '1948-09-21', 'M', 'NULL', 'F', 'arianna18@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5537 Virginia Hills', 'NULL', '179-555-0197', '2013-02-24', '10+ Miles'], ['22729', '326', 'AW00022729', 'NULL', 'Seth', 'NULL', 'Nelson', '0', '1948-11-03', 'M', 'NULL', 'M', 'seth36@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3425 El Verano', 'NULL', '135-555-0112', '2013-04-06', '10+ Miles'], ['22730', '62', 'AW00022730', 'NULL', 'Timothy', 'L', 'Perez', '0', '1948-08-13', 'M', 'NULL', 'M', 'timothy29@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7711 Fieldcrest Dr.', 'NULL', '967-555-0112', '2013-09-02', '10+ Miles'], ['22731', '331', 'AW00022731', 'NULL', 'Brandon', 'L', 'Henderson', '0', '1949-02-07', 'M', 'NULL', 'M', 'brandon2@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9315 Green Valley Road', 'NULL', '618-555-0184', '2013-07-09', '10+ Miles'], ['22732', '66', 'AW00022732', 'NULL', 'Sean', 'NULL', 'Turner', '0', '1949-02-11', 'M', 'NULL', 'M', 'sean37@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '869 Cherry St.', 'NULL', '535-555-0140', '2011-06-01', '1-2 Miles'], ['22733', '611', 'AW00022733', 'NULL', 'Alexandria', 'NULL', 'Powell', '0', '1948-08-18', 'M', 'NULL', 'F', 'alexandria8@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '7720 Winterberry Ct', 'NULL', '986-555-0153', '2013-07-04', '1-2 Miles'], ['22734', '360', 'AW00022734', 'NULL', 'Maria', 'N', 'Adams', '0', '1950-02-06', 'S', 'NULL', 'F', 'maria57@adventure-works.com', '30000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7290 Mt. Hood Circle', 'NULL', '974-555-0128', '2013-02-24', '1-2 Miles'], ['22735', '539', 'AW00022735', 'NULL', 'Katherine', 'NULL', 'Jones', '0', '1949-12-23', 'M', 'NULL', 'F', 'katherine74@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '7040 Santa Fe Street', 'NULL', '435-555-0151', '2013-05-02', '10+ Miles'], ['22736', '642', 'AW00022736', 'NULL', 'Katherine', 'V', 'Morgan', '0', '1950-01-08', 'M', 'NULL', 'F', 'katherine8@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '7341 46th St.', 'NULL', '472-555-0123', '2013-03-12', '1-2 Miles'], ['22737', '299', 'AW00022737', 'NULL', 'Heidi', 'S', 'Sai', '0', '1949-11-05', 'M', 'NULL', 'F', 'heidi8@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1210 St. Patricia', 'NULL', '374-555-0119', '2013-06-13', '10+ Miles'], ['22738', '347', 'AW00022738', 'NULL', 'Haley', 'NULL', 'Diaz', '0', '1955-07-07', 'M', 'NULL', 'F', 'haley41@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9620 Laurel Drive', 'NULL', '176-555-0168', '2013-10-16', '1-2 Miles'], ['22739', '52', 'AW00022739', 'NULL', 'Destiny', 'J', 'Rodriguez', '0', '1949-10-08', 'M', 'NULL', 'F', 'destiny18@adventure-works.com', '70000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4556 Rolling Green Circle', 'NULL', '729-555-0189', '2013-02-13', '10+ Miles'], ['22740', '299', 'AW00022740', 'NULL', 'Kimberly', 'NULL', 'Rogers', '0', '1950-12-10', 'S', 'NULL', 'F', 'kimberly20@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '2152 Zebra Street', 'NULL', '131-555-0179', '2013-11-07', '1-2 Miles'], ['22741', '607', 'AW00022741', 'NULL', 'Darryl', 'R', 'He', '0', '1951-06-20', 'M', 'NULL', 'M', 'darryl18@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3854 Galindo St.', 'NULL', '714-555-0150', '2013-03-24', '10+ Miles'], ['22742', '536', 'AW00022742', 'NULL', 'Nathan', 'NULL', 'Nelson', '0', '1950-12-05', 'S', 'NULL', 'M', 'nathan37@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', 'P.O. Box 2851', 'NULL', '841-555-0116', '2013-03-04', '2-5 Miles'], ['22743', '623', 'AW00022743', 'NULL', 'Kaylee', 'A', 'Murphy', '0', '1956-09-04', 'M', 'NULL', 'F', 'kaylee11@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3040 Snow Drive', 'Unit A', '693-555-0152', '2013-03-01', '10+ Miles'], ['22744', '311', 'AW00022744', 'NULL', 'Edward', 'NULL', 'Wright', '0', '1951-03-12', 'S', 'NULL', 'M', 'edward3@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '3848 East 39th Street', 'NULL', '592-555-0110', '2013-09-30', '2-5 Miles'], ['22745', '385', 'AW00022745', 'NULL', 'Alexandria', 'A', 'Patterson', '0', '1950-08-16', 'M', 'NULL', 'F', 'alexandria10@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '5330 Military Way', 'NULL', '117-555-0124', '2013-03-09', '10+ Miles'], ['22746', '311', 'AW00022746', 'NULL', 'Erica', 'J', 'Zhang', '0', '1951-03-06', 'M', 'NULL', 'F', 'erica0@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6270 North Star Dr.', 'NULL', '461-555-0127', '2013-07-17', '2-5 Miles'], ['22747', '325', 'AW00022747', 'NULL', 'Brianna', 'H', 'Martinez', '0', '1950-09-07', 'M', 'NULL', 'F', 'brianna16@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6044 Gloria Terr.', 'NULL', '952-555-0159', '2013-04-15', '10+ Miles'], ['22748', '62', 'AW00022748', 'NULL', 'Adam', 'R', 'Phillips', '0', '1952-03-12', 'S', 'NULL', 'M', 'adam36@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '152 Scenic Ave.', 'NULL', '114-555-0113', '2011-07-05', '10+ Miles'], ['22749', '632', 'AW00022749', 'NULL', 'Miranda', 'NULL', 'Patterson', '0', '1952-01-07', 'M', 'NULL', 'F', 'miranda10@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '3630 Second Avenue', 'NULL', '161-555-0163', '2013-07-11', '10+ Miles'], ['22750', '315', 'AW00022750', 'NULL', 'Jesse', 'D', 'Gonzalez', '0', '1951-12-02', 'M', 'NULL', 'M', 'jesse33@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '5587 Stanley Dollar Dr.', 'NULL', '228-555-0146', '2013-10-18', '2-5 Miles'], ['22751', '316', 'AW00022751', 'NULL', 'Samuel', 'P', 'Rodriguez', '0', '1952-01-15', 'M', 'NULL', 'M', 'samuel64@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '6612 Elliott Dr.', 'NULL', '178-555-0140', '2013-06-13', '2-5 Miles'], ['22752', '543', 'AW00022752', 'NULL', 'Daniel', 'J', 'Brown', '0', '1951-10-09', 'M', 'NULL', 'M', 'daniel22@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '7485 Lacassie Ave.', 'NULL', '410-555-0119', '2013-05-18', '2-5 Miles'], ['22753', '547', 'AW00022753', 'NULL', 'Hailey', 'G', 'Morgan', '0', '1953-02-18', 'S', 'NULL', 'F', 'hailey5@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '6465 Detroit Ave.', 'NULL', '555-555-0125', '2013-07-29', '2-5 Miles'], ['22754', '627', 'AW00022754', 'NULL', 'Robert', 'S', 'Foster', '0', '1952-08-24', 'M', 'NULL', 'M', 'robert28@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '2964 Mt. Washington', 'NULL', '963-555-0171', '2013-09-12', '10+ Miles'], ['22755', '49', 'AW00022755', 'NULL', 'Christian', 'NULL', 'Brown', '0', '1952-11-07', 'M', 'NULL', 'M', 'christian35@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '3106 Julpum Loop', 'NULL', '933-555-0166', '2013-12-12', '2-5 Miles'], ['22756', '299', 'AW00022756', 'NULL', 'Jon', 'NULL', 'Nath', '0', '1953-05-06', 'M', 'NULL', 'M', 'jon15@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '9685 La Vista Ave.', 'NULL', '135-555-0119', '2013-05-01', '2-5 Miles'], ['22757', '339', 'AW00022757', 'NULL', 'Savannah', 'J', 'Peterson', '0', '1952-10-31', 'M', 'NULL', 'F', 'savannah3@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '4393 Rossmor Parkway', 'NULL', '256-555-0121', '2014-01-16', '2-5 Miles'], ['22758', '539', 'AW00022758', 'NULL', 'Katherine', 'M', 'Jackson', '0', '1959-05-17', 'S', 'NULL', 'F', 'katherine82@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '3917 Fern Leaf Lane', 'NULL', '881-555-0135', '2013-04-04', '2-5 Miles'], ['22759', '631', 'AW00022759', 'NULL', 'Julia', 'A', 'Ramirez', '0', '1954-05-21', 'M', 'NULL', 'F', 'julia60@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '8371 Marlesta Rd', 'NULL', '207-555-0114', '2013-06-18', '10+ Miles'], ['22760', '631', 'AW00022760', 'NULL', 'Hunter', 'B', 'Chen', '0', '1954-04-03', 'M', 'NULL', 'M', 'hunter20@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '5736 Monument Blvd', 'NULL', '564-555-0137', '2013-04-20', '2-5 Miles'], ['22761', '635', 'AW00022761', 'NULL', 'Eduardo', 'W', 'Price', '0', '1954-03-09', 'S', 'NULL', 'M', 'eduardo44@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '9830 Santa Ana Dr.', 'NULL', '737-555-0178', '2013-09-18', '10+ Miles'], ['22762', '635', 'AW00022762', 'NULL', 'Melissa', 'NULL', 'Diaz', '0', '1953-10-11', 'M', 'NULL', 'F', 'melissa17@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '1661 Military Way', 'NULL', '426-555-0176', '2013-09-28', '10+ Miles'], ['22763', '637', 'AW00022763', 'NULL', 'Rebecca', 'NULL', 'Gonzalez', '0', '1954-02-07', 'S', 'NULL', 'F', 'rebecca11@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '2198 Clay Road', 'NULL', '622-555-0164', '2013-10-09', '10+ Miles'], ['22764', '648', 'AW00022764', 'NULL', 'Chase', 'A', 'Brooks', '0', '1953-12-02', 'M', 'NULL', 'M', 'chase2@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9699 William Reed Dr.', 'NULL', '402-555-0117', '2013-09-03', '10+ Miles'], ['22765', '71', 'AW00022765', 'NULL', 'Luis', 'J', 'Collins', '0', '1955-03-21', 'M', 'NULL', 'M', 'luis35@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '399 Orange Street', 'NULL', '110-555-0123', '2011-07-06', '2-5 Miles'], ['22766', '632', 'AW00022766', 'NULL', 'Cassidy', 'NULL', 'Hayes', '0', '1955-05-05', 'M', 'NULL', 'F', 'cassidy24@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3584 Hawes Street', 'NULL', '675-555-0112', '2013-05-20', '10+ Miles'], ['22767', '553', 'AW00022767', 'NULL', 'Luis', 'B', 'Hernandez', '0', '1954-11-18', 'M', 'NULL', 'M', 'luis50@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8260 Klamath Woods Pl.', 'NULL', '264-555-0131', '2013-03-25', '10+ Miles'], ['22768', '301', 'AW00022768', 'NULL', 'Aaron', 'A', 'Zhang', '0', '1955-01-19', 'M', 'NULL', 'M', 'aaron23@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '6769 Kingswood Circle', 'NULL', '273-555-0153', '2013-04-19', '2-5 Miles'], ['22769', '337', 'AW00022769', 'NULL', 'Benjamin', 'NULL', 'Martin', '0', '1955-04-21', 'M', 'NULL', 'M', 'benjamin51@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '1538 Mt. Diablo St.', 'NULL', '123-555-0168', '2013-06-08', '10+ Miles'], ['22770', '348', 'AW00022770', 'NULL', 'Chloe', 'L', 'Morgan', '0', '1955-05-25', 'M', 'NULL', 'F', 'chloe51@adventure-works.com', '70000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '555 Moretti Drive', 'NULL', '555-555-0111', '2013-07-20', '10+ Miles'], ['22771', '69', 'AW00022771', 'NULL', 'Mason', 'D', 'King', '0', '1956-05-26', 'M', 'NULL', 'M', 'mason40@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3220 Liscome Way', 'NULL', '337-555-0159', '2014-01-08', '2-5 Miles'], ['22772', '69', 'AW00022772', 'NULL', 'Erin', 'B', 'Watson', '0', '1956-06-11', 'M', 'NULL', 'F', 'erin4@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '251 Steven Circle', 'NULL', '480-555-0169', '2013-03-23', '2-5 Miles'], ['22773', '609', 'AW00022773', 'Ms.', 'Autumn', 'D', 'Zhang', '0', '1961-04-19', 'M', 'NULL', 'F', 'autumn0@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8836 D Bel Air Drive', 'NULL', '621-555-0181', '2013-10-29', '10+ Miles'], ['22774', '616', 'AW00022774', 'NULL', 'Caleb', 'NULL', 'Alexander', '0', '1956-04-17', 'M', 'NULL', 'M', 'caleb15@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1261 Viking Drive', 'NULL', '670-555-0141', '2013-12-25', '10+ Miles'], ['22775', '311', 'AW00022775', 'NULL', 'Madison', 'NULL', 'Martinez', '0', '1956-02-17', 'M', 'NULL', 'F', 'madison18@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '3831 Golden Gate Way', 'NULL', '100-555-0191', '2013-07-03', '2-5 Miles'], ['22776', '331', 'AW00022776', 'NULL', 'Julia', 'NULL', 'Perry', '0', '1955-11-03', 'M', 'NULL', 'F', 'julia74@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '1246 Glenside Ct.', 'NULL', '364-555-0142', '2013-05-30', '1-2 Miles'], ['22777', '614', 'AW00022777', 'NULL', 'Tyler', 'NULL', 'Garcia', '0', '1956-10-09', 'M', 'NULL', 'M', 'tyler12@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6828 Benedict Court', 'NULL', '290-555-0179', '2013-06-05', '10+ Miles'], ['22778', '298', 'AW00022778', 'NULL', 'Monique', 'C', 'Dominguez', '0', '1957-05-12', 'M', 'NULL', 'F', 'monique9@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '711 Sweetwater Drive', 'NULL', '596-555-0179', '2013-04-24', '10+ Miles'], ['22779', '299', 'AW00022779', 'NULL', 'Lance', 'NULL', 'Ruiz', '0', '1957-06-10', 'M', 'NULL', 'M', 'lance2@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8609 Eagle Ct', 'NULL', '674-555-0195', '2014-01-14', '10+ Miles'], ['22780', '337', 'AW00022780', 'NULL', 'Jennifer', 'NULL', 'Rogers', '0', '1956-11-13', 'M', 'NULL', 'F', 'jennifer55@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4023 Glen Court', 'NULL', '113-555-0147', '2013-04-21', '2-5 Miles'], ['22781', '352', 'AW00022781', 'NULL', 'Hunter', 'NULL', 'Powell', '0', '1956-12-19', 'M', 'NULL', 'M', 'hunter5@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6601 Browse Ct', 'NULL', '516-555-0191', '2014-01-07', '10+ Miles'], ['22782', '361', 'AW00022782', 'NULL', 'Dakota', 'N', 'Wood', '0', '1956-09-30', 'S', 'NULL', 'M', 'dakota1@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9234 Paso Del Rio Court', 'NULL', '116-555-0193', '2013-07-22', '10+ Miles'], ['22783', '626', 'AW00022783', 'NULL', 'Isaac', 'C', 'Green', '0', '1958-04-03', 'M', 'NULL', 'M', 'isaac38@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3696 Hidden Lakes Court', 'NULL', '239-555-0151', '2013-09-09', '10+ Miles'], ['22784', '338', 'AW00022784', 'NULL', 'Nicholas', 'H', 'Jackson', '0', '1963-06-14', 'M', 'NULL', 'M', 'nicholas12@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7939 Bayview Court', 'NULL', '531-555-0167', '2013-07-08', '2-5 Miles'], ['22785', '54', 'AW00022785', 'NULL', 'Oscar', 'NULL', 'Perry', '0', '1957-07-12', 'M', 'NULL', 'M', 'oscar16@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6503 Geneva Lane', 'NULL', '678-555-0179', '2011-07-03', '10+ Miles'], ['22786', '612', 'AW00022786', 'NULL', 'Wyatt', 'NULL', 'Goldstein', '0', '1958-01-13', 'M', 'NULL', 'M', 'wyatt67@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '1794 English Court', 'NULL', '612-555-0184', '2013-11-02', '10+ Miles'], ['22787', '385', 'AW00022787', 'NULL', 'Andrea', 'L', 'Sanchez', '0', '1957-09-08', 'M', 'NULL', 'F', 'andrea28@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '1941 Pinecrest Court', '#611', '422-555-0197', '2013-07-05', '10+ Miles'], ['22788', '374', 'AW00022788', 'NULL', 'Jordan', 'NULL', 'Jenkins', '0', '1958-06-13', 'M', 'NULL', 'M', 'jordan3@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '2665 B Wildbrook Ct', 'NULL', '314-555-0132', '2013-07-13', '2-5 Miles'], ['22789', '359', 'AW00022789', 'NULL', 'Richard', 'NULL', 'Taylor', '0', '1958-01-08', 'M', 'NULL', 'M', 'richard49@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '8254 North Ridge Drive', 'NULL', '144-555-0114', '2013-07-17', '10+ Miles'], ['22790', '368', 'AW00022790', 'NULL', 'Luke', 'H', 'Phillips', '0', '1957-08-04', 'S', 'NULL', 'M', 'luke37@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '4', '4211 Las Lomas Way', 'NULL', '333-555-0181', '2013-07-25', '10+ Miles'], ['22791', '307', 'AW00022791', 'NULL', 'Taylor', 'NULL', 'Jenkins', '0', '1957-09-07', 'M', 'NULL', 'F', 'taylor32@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2466 Clearland Circle', 'NULL', '572-555-0144', '2013-04-23', '2-5 Miles'], ['22792', '547', 'AW00022792', 'NULL', 'Thomas', 'W', 'Carter', '0', '1969-08-01', 'M', 'NULL', 'M', 'thomas47@adventure-works.com', '70000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '4207 Beech Ct.', 'NULL', '420-555-0161', '2013-08-09', '10+ Miles'], ['22793', '648', 'AW00022793', 'NULL', 'Antonio', 'M', 'Jenkins', '0', '1958-12-16', 'S', 'NULL', 'M', 'antonio6@adventure-works.com', '70000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '3464 Joan Ave.', 'NULL', '516-555-0126', '2013-09-24', '10+ Miles'], ['22794', '239', 'AW00022794', 'NULL', 'Kelli', 'NULL', 'Deng', '0', '1980-04-30', 'M', 'NULL', 'F', 'kelli24@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6836 Somerset Pl.', 'NULL', '1 (11) 500 555-0167', '2013-03-04', '5-10 Miles'], ['22795', '201', 'AW00022795', 'NULL', 'Tara', 'G', 'Yuan', '0', '1973-08-14', 'M', 'NULL', 'F', 'tara7@adventure-works.com', '110000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '11, rue du Puits Dixme', 'NULL', '1 (11) 500 555-0154', '2013-02-21', '5-10 Miles'], ['22796', '179', 'AW00022796', 'NULL', 'Brad', 'NULL', 'Nath', '0', '1962-11-14', 'M', 'NULL', 'M', 'brad19@adventure-works.com', '110000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '2, rue de Maubeuge', 'NULL', '1 (11) 500 555-0154', '2013-05-16', '5-10 Miles'], ['22797', '119', 'AW00022797', 'NULL', 'Leonard', 'S', 'She', '0', '1962-08-26', 'M', 'NULL', 'M', 'leonard1@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Am Gallberg 22', 'NULL', '1 (11) 500 555-0172', '2013-12-20', '0-1 Miles'], ['22798', '238', 'AW00022798', 'NULL', 'Heidi', 'L', 'Fernandez', '0', '1963-02-05', 'M', 'NULL', 'F', 'heidi18@adventure-works.com', '150000.00', '2', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '2648 Hillcrest', 'NULL', '1 (11) 500 555-0194', '2013-05-07', '5-10 Miles'], ['22799', '231', 'AW00022799', 'NULL', 'Riley', 'NULL', 'Alexander', '0', '1961-10-02', 'M', 'NULL', 'F', 'riley16@adventure-works.com', '120000.00', '3', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '4', '9038 Ida Drive', 'NULL', '1 (11) 500 555-0188', '2013-11-23', '5-10 Miles'], ['22800', '215', 'AW00022800', 'NULL', 'Dwayne', 'G', 'Alvarez', '0', '1960-12-10', 'M', 'NULL', 'M', 'dwayne4@adventure-works.com', '90000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '1, rue de la Centenaire', 'NULL', '1 (11) 500 555-0147', '2013-12-08', '2-5 Miles'], ['22801', '154', 'AW00022801', 'NULL', 'Alicia', 'NULL', 'Raje', '0', '1961-05-09', 'M', 'NULL', 'F', 'alicia12@adventure-works.com', '110000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Essener Straße 19', 'Einkaufsabteilung', '1 (11) 500 555-0142', '2013-09-13', '10+ Miles'], ['22802', '118', 'AW00022802', 'NULL', 'Ann', 'A', 'Van', '0', '1966-03-20', 'S', 'NULL', 'F', 'ann9@adventure-works.com', '120000.00', '3', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Erftplatz 727', 'NULL', '1 (11) 500 555-0117', '2014-01-21', '10+ Miles'], ['22803', '162', 'AW00022803', 'NULL', 'Marshall', 'J', 'Shan', '0', '1960-08-04', 'S', 'NULL', 'M', 'marshall31@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', 'Am Gallberg 234', 'NULL', '1 (11) 500 555-0113', '2013-12-20', '0-1 Miles'], ['22804', '147', 'AW00022804', 'NULL', 'Kelly', 'NULL', 'Butler', '0', '1960-05-15', 'M', 'NULL', 'F', 'kelly19@adventure-works.com', '80000.00', '3', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Pappelallee 300', 'NULL', '1 (11) 500 555-0152', '2013-04-06', '2-5 Miles'], ['22805', '143', 'AW00022805', 'NULL', 'Cristina', 'NULL', 'Goel', '0', '1950-04-24', 'M', 'NULL', 'F', 'cristina16@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', 'Nollendorfplatz 118', 'NULL', '1 (11) 500 555-0116', '2013-12-06', '10+ Miles'], ['22806', '115', 'AW00022806', 'NULL', 'Crystal', 'E', 'Sun', '0', '1949-10-24', 'M', 'NULL', 'F', 'crystal14@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Kalkweg 123', 'NULL', '1 (11) 500 555-0119', '2013-10-15', '10+ Miles'], ['22807', '254', 'AW00022807', 'NULL', 'Cindy', 'A', 'Garcia', '0', '1949-10-07', 'M', 'NULL', 'F', 'cindy15@adventure-works.com', '130000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '1775 Chocolate Court', 'NULL', '1 (11) 500 555-0178', '2014-01-12', '0-1 Miles'], ['22808', '274', 'AW00022808', 'NULL', 'Ebony', 'A', 'Suri', '0', '1949-10-18', 'S', 'NULL', 'F', 'ebony0@adventure-works.com', '170000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '2802 Clay Way', 'NULL', '1 (11) 500 555-0140', '2013-01-19', '0-1 Miles'], ['22809', '166', 'AW00022809', 'NULL', 'Martin', 'NULL', 'Sara', '0', '1950-12-13', 'M', 'NULL', 'M', 'martin15@adventure-works.com', '80000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Winter der Böck 8559', 'NULL', '1 (11) 500 555-0189', '2013-12-30', '10+ Miles'], ['22810', '160', 'AW00022810', 'NULL', 'Nathaniel', 'NULL', 'Sanchez', '0', '1950-10-05', 'M', 'NULL', 'M', 'nathaniel19@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Heideweg 6457', 'NULL', '1 (11) 500 555-0165', '2013-12-22', '2-5 Miles'], ['22811', '239', 'AW00022811', 'NULL', 'Brent', 'NULL', 'Stone', '0', '1950-12-14', 'M', 'NULL', 'M', 'brent21@adventure-works.com', '110000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '7578 Sierra Road', 'NULL', '1 (11) 500 555-0135', '2013-11-17', '10+ Miles'], ['22812', '243', 'AW00022812', 'NULL', 'Destiny', 'NULL', 'Washington', '0', '1951-03-24', 'M', 'NULL', 'F', 'destiny61@adventure-works.com', '120000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '3841 Frisbie Ct', 'NULL', '1 (11) 500 555-0189', '2013-08-14', '5-10 Miles'], ['22813', '257', 'AW00022813', 'NULL', 'Jerry', 'NULL', 'Deng', '0', '1951-03-12', 'M', 'NULL', 'M', 'jerry1@adventure-works.com', '130000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '3848 East 39th Street', 'NULL', '1 (11) 500 555-0147', '2013-10-27', '5-10 Miles'], ['22814', '219', 'AW00022814', 'NULL', 'Edwin', 'NULL', 'Kumar', '0', '1951-08-10', 'M', 'NULL', 'M', 'edwin30@adventure-works.com', '100000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '10, rue de l´Avenir', 'NULL', '1 (11) 500 555-0135', '2013-03-24', '10+ Miles'], ['22815', '147', 'AW00022815', 'NULL', 'Margaret', 'P', 'Wang', '0', '1952-02-07', 'M', 'NULL', 'F', 'margaret8@adventure-works.com', '100000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', 'Celler Weg 29', 'NULL', '1 (11) 500 555-0186', '2013-08-28', '10+ Miles'], ['22816', '172', 'AW00022816', 'NULL', 'Erica', 'NULL', 'Cai', '0', '1951-12-05', 'M', 'NULL', 'F', 'erica20@adventure-works.com', '120000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', 'Lindenalle 24', 'NULL', '1 (11) 500 555-0169', '2013-12-13', '10+ Miles'], ['22817', '135', 'AW00022817', 'NULL', 'Calvin', 'NULL', 'Nath', '0', '1951-09-15', 'S', 'NULL', 'M', 'calvin17@adventure-works.com', '120000.00', '4', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', 'Kapellstr 4666', 'NULL', '1 (11) 500 555-0179', '2013-12-13', '10+ Miles'], ['22818', '264', 'AW00022818', 'NULL', 'Janet', 'M', 'Ruiz', '0', '1951-09-29', 'M', 'NULL', 'F', 'janet7@adventure-works.com', '150000.00', '3', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '447 Power Ave', 'NULL', '1 (11) 500 555-0139', '2013-01-29', '5-10 Miles'], ['22819', '255', 'AW00022819', 'NULL', 'Daisy', 'P', 'Alvarez', '0', '1958-11-17', 'M', 'NULL', 'F', 'daisy1@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2660 St George Dr', 'NULL', '1 (11) 500 555-0118', '2013-08-16', '2-5 Miles'], ['22820', '190', 'AW00022820', 'NULL', 'Alex', 'NULL', 'Nelson', '0', '1960-05-12', 'M', 'NULL', 'M', 'alex38@adventure-works.com', '100000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '54, route de Marseille', 'NULL', '1 (11) 500 555-0161', '2014-01-25', '2-5 Miles'], ['22821', '133', 'AW00022821', 'NULL', 'Wendy', 'R', 'Munoz', '0', '1959-11-29', 'M', 'NULL', 'F', 'wendy7@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Hans-Rosenthal-Platz 425', 'NULL', '1 (11) 500 555-0183', '2013-06-07', '0-1 Miles'], ['22822', '271', 'AW00022822', 'NULL', 'Devin', 'A', 'Anderson', '0', '1959-08-22', 'M', 'NULL', 'M', 'devin8@adventure-works.com', '170000.00', '5', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '4116 Hummingbird Ct', 'NULL', '1 (11) 500 555-0113', '2012-12-31', '10+ Miles'], ['22823', '267', 'AW00022823', 'NULL', 'Isabel', 'NULL', 'Alexander', '0', '1959-01-09', 'M', 'NULL', 'F', 'isabel18@adventure-works.com', '160000.00', '2', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9643 North Star Dr', 'NULL', '1 (11) 500 555-0117', '2013-09-10', '0-1 Miles'], ['22824', '188', 'AW00022824', 'NULL', 'April', 'R', 'Nath', '0', '1963-11-18', 'M', 'NULL', 'F', 'april14@adventure-works.com', '80000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '873, rue Malar', 'NULL', '1 (11) 500 555-0134', '2013-12-14', '2-5 Miles'], ['22825', '231', 'AW00022825', 'NULL', 'Kelli', 'M', 'Zeng', '0', '1957-11-09', 'S', 'NULL', 'F', 'kelli22@adventure-works.com', '120000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '8380 Toyon Dr.', 'NULL', '1 (11) 500 555-0161', '2013-09-06', '10+ Miles'], ['22826', '238', 'AW00022826', 'NULL', 'Christian', 'S', 'Russell', '0', '1958-04-18', 'M', 'NULL', 'M', 'christian7@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '9406 Lincoln Dr', 'NULL', '1 (11) 500 555-0185', '2013-03-15', '10+ Miles'], ['22827', '209', 'AW00022827', 'NULL', 'Clayton', 'C', 'Gao', '0', '1957-06-16', 'M', 'NULL', 'M', 'clayton14@adventure-works.com', '80000.00', '5', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '101, avenue Reille', 'NULL', '1 (11) 500 555-0170', '2013-06-07', '10+ Miles'], ['22828', '264', 'AW00022828', 'NULL', 'Francisco', 'NULL', 'Suri', '0', '1955-07-02', 'M', 'NULL', 'M', 'francisco1@adventure-works.com', '160000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', '639 La Corte Bonita', 'NULL', '1 (11) 500 555-0189', '2013-01-14', '0-1 Miles'], ['22829', '226', 'AW00022829', 'NULL', 'Chelsea', 'D', 'Chandra', '0', '1955-02-24', 'M', 'NULL', 'F', 'chelsea2@adventure-works.com', '80000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '475, rue Léo Delibes', 'NULL', '1 (11) 500 555-0151', '2013-12-05', '5-10 Miles'], ['22830', '147', 'AW00022830', 'NULL', 'Lee', 'NULL', 'Travers', '0', '1955-05-05', 'M', 'NULL', 'M', 'lee10@adventure-works.com', '120000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', 'Rehstr 4242', 'NULL', '1 (11) 500 555-0145', '2013-12-27', '10+ Miles'], ['22831', '214', 'AW00022831', 'NULL', 'Victor', 'NULL', 'Ruiz', '0', '1954-06-05', 'S', 'NULL', 'M', 'victor3@adventure-works.com', '70000.00', '5', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '11, rue de Cambrai', 'NULL', '1 (11) 500 555-0113', '2013-05-01', '10+ Miles'], ['22832', '214', 'AW00022832', 'NULL', 'Martin', 'E', 'Gonzalez', '0', '1953-12-07', 'M', 'NULL', 'M', 'martin23@adventure-works.com', '70000.00', '5', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '18, rue de la Comédie', 'NULL', '1 (11) 500 555-0115', '2013-03-13', '5-10 Miles'], ['22833', '185', 'AW00022833', 'NULL', 'Bruce', 'NULL', 'Prasad', '0', '1959-03-19', 'M', 'NULL', 'M', 'bruce8@adventure-works.com', '80000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '34, avenue des Laurentides', 'NULL', '1 (11) 500 555-0157', '2013-10-23', '10+ Miles'], ['22834', '165', 'AW00022834', 'NULL', 'Darryl', 'T', 'Zhou', '0', '1952-10-15', 'M', 'NULL', 'M', 'darryl8@adventure-works.com', '100000.00', '3', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Alderweg 7849', 'NULL', '1 (11) 500 555-0196', '2013-09-06', '5-10 Miles'], ['22835', '144', 'AW00022835', 'NULL', 'Alan', 'NULL', 'Zhang', '0', '1953-05-12', 'M', 'NULL', 'M', 'alan28@adventure-works.com', '100000.00', '4', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '0', 'Auf dem Ufer 164', 'NULL', '1 (11) 500 555-0170', '2013-03-14', '5-10 Miles'], ['22836', '168', 'AW00022836', 'NULL', 'Michele', 'NULL', 'Sai', '0', '1952-10-01', 'S', 'NULL', 'F', 'michele61@adventure-works.com', '110000.00', '4', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '3', 'Klara Straße 822', 'NULL', '1 (11) 500 555-0133', '2013-12-08', '10+ Miles'], ['22837', '251', 'AW00022837', 'NULL', 'Sergio', 'A', 'Chandra', '0', '1958-02-06', 'M', 'NULL', 'M', 'sergio2@adventure-works.com', '120000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '7079 Green Leaf Drive', 'NULL', '1 (11) 500 555-0160', '2013-09-12', '10+ Miles'], ['22838', '261', 'AW00022838', 'NULL', 'Cedric', 'NULL', 'Rai', '0', '1953-01-29', 'M', 'NULL', 'M', 'cedric36@adventure-works.com', '130000.00', '5', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '7869 Sea Point Way', 'NULL', '1 (11) 500 555-0170', '2013-07-18', '0-1 Miles'], ['22839', '23', 'AW00022839', 'NULL', 'Brandy', 'NULL', 'Mehta', '0', '1986-05-15', 'S', 'NULL', 'F', 'brandy10@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '7101 Stillwater Ct.', 'NULL', '1 (11) 500 555-0140', '2013-02-05', '2-5 Miles'], ['22840', '2', 'AW00022840', 'NULL', 'Dominic', 'M', 'Sullivan', '0', '1981-10-08', 'S', 'NULL', 'M', 'dominic13@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '3605 Gallagher Circle', 'NULL', '1 (11) 500 555-0118', '2013-10-21', '10+ Miles'], ['22841', '29', 'AW00022841', 'NULL', 'Douglas', 'C', 'Martinez', '0', '1982-02-16', 'S', 'NULL', 'M', 'douglas21@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '7963 Elk Dr', 'NULL', '1 (11) 500 555-0126', '2013-03-05', '10+ Miles'], ['22842', '20', 'AW00022842', 'NULL', 'Michele', 'R', 'Nara', '0', '1981-10-18', 'S', 'NULL', 'F', 'michele17@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '5581 Grand Ct', 'NULL', '1 (11) 500 555-0133', '2013-06-17', '10+ Miles'], ['22843', '3', 'AW00022843', 'NULL', 'Tiffany', 'NULL', 'Lu', '0', '1982-04-06', 'S', 'NULL', 'F', 'tiffany11@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '593 Chatworth', 'NULL', '1 (11) 500 555-0193', '2013-04-12', '10+ Miles'], ['22844', '16', 'AW00022844', 'NULL', 'Marie', 'E', 'Arun', '0', '1982-02-15', 'M', 'NULL', 'F', 'marie11@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '831 Valley Crest Dr.', 'NULL', '1 (11) 500 555-0148', '2013-03-31', '10+ Miles'], ['22845', '18', 'AW00022845', 'NULL', 'Jake', 'NULL', 'Chen', '0', '1981-09-10', 'M', 'NULL', 'M', 'jake2@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '8354 Sugar Valley Blv.', 'NULL', '1 (11) 500 555-0129', '2012-05-09', '10+ Miles'], ['22846', '35', 'AW00022846', 'NULL', 'Frank', 'G', 'Gutierrez', '0', '1980-11-14', 'S', 'NULL', 'M', 'frank18@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '8742 Martindale', 'NULL', '1 (11) 500 555-0153', '2013-01-30', '10+ Miles'], ['22847', '4', 'AW00022847', 'NULL', 'Jaclyn', 'C', 'Chen', '0', '1985-11-16', 'S', 'NULL', 'F', 'jaclyn2@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '8177 Grasswood Ct.', 'NULL', '1 (11) 500 555-0152', '2013-05-11', '10+ Miles'], ['22848', '7', 'AW00022848', 'NULL', 'Peter', 'K', 'Pal', '0', '1980-04-07', 'S', 'NULL', 'M', 'peter18@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '927 Parkside Dr', 'NULL', '1 (11) 500 555-0199', '2013-02-05', '10+ Miles'], ['22849', '38', 'AW00022849', 'NULL', 'Kristopher', 'M', 'Suri', '0', '1978-11-14', 'M', 'NULL', 'M', 'kristopher0@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '4088 Millfield Place', 'NULL', '1 (11) 500 555-0178', '2013-12-09', '10+ Miles'], ['22850', '14', 'AW00022850', 'NULL', 'Devon', 'D', 'Luo', '0', '1979-08-05', 'M', 'NULL', 'M', 'devon4@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '1955 Glaze Dr.', 'NULL', '1 (11) 500 555-0155', '2012-05-23', '10+ Miles'], ['22851', '21', 'AW00022851', 'NULL', 'Kaylee', 'M', 'Edwards', '0', '1979-01-13', 'S', 'NULL', 'F', 'kaylee21@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '7567 Blackwood Drive', 'NULL', '1 (11) 500 555-0156', '2012-05-10', '10+ Miles'], ['22852', '33', 'AW00022852', 'NULL', 'Billy', 'M', 'Alonso', '0', '1978-02-19', 'M', 'NULL', 'M', 'billy10@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '2411 Hazelnut Lane', 'NULL', '1 (11) 500 555-0198', '2013-11-20', '10+ Miles'], ['22853', '10', 'AW00022853', 'NULL', 'Tasha', 'NULL', 'Pal', '0', '1983-05-02', 'S', 'NULL', 'F', 'tasha13@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '7685 Imperial Dr', 'NULL', '1 (11) 500 555-0179', '2013-05-27', '10+ Miles'], ['22854', '27', 'AW00022854', 'NULL', 'Ebony', 'J', 'Mehta', '0', '1984-08-16', 'S', 'NULL', 'F', 'ebony14@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '2', '629 Redrock Drive', 'NULL', '1 (11) 500 555-0115', '2012-05-11', '10+ Miles'], ['22855', '28', 'AW00022855', 'NULL', 'Summer', 'S', 'Sai', '0', '1978-08-12', 'M', 'NULL', 'F', 'summer4@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '3', '2929 Marie Dr.', 'NULL', '1 (11) 500 555-0148', '2013-11-28', '10+ Miles'], ['22856', '21', 'AW00022856', 'NULL', 'Lance', 'E', 'Carlson', '0', '1977-04-12', 'M', 'NULL', 'M', 'lance18@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '7275 Andrea Lane', 'NULL', '1 (11) 500 555-0128', '2013-07-25', '10+ Miles'], ['22857', '40', 'AW00022857', 'NULL', 'Julio', 'NULL', 'Romero', '0', '1977-07-14', 'M', 'NULL', 'M', 'julio9@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '362 Richard Place', 'NULL', '1 (11) 500 555-0150', '2012-05-08', '10+ Miles'], ['22858', '8', 'AW00022858', 'NULL', 'Deborah', 'NULL', 'Tang', '0', '1978-02-13', 'M', 'NULL', 'F', 'deborah8@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '6049 Flora Ave', 'NULL', '1 (11) 500 555-0146', '2014-01-16', '10+ Miles'], ['22859', '34', 'AW00022859', 'NULL', 'Arianna', 'E', 'Sanders', '0', '1977-01-20', 'M', 'NULL', 'F', 'arianna24@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '5289 Birch Park Rd', 'NULL', '1 (11) 500 555-0194', '2013-07-15', '10+ Miles'], ['22860', '24', 'AW00022860', 'NULL', 'Cedric', 'B', 'Kumar', '0', '1975-11-24', 'M', 'NULL', 'M', 'cedric29@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '8939 Monetary Way', 'NULL', '1 (11) 500 555-0112', '2012-05-24', '10+ Miles'], ['22861', '542', 'AW00022861', 'NULL', 'Devin', 'P', 'Hughes', '0', '1970-01-14', 'M', 'NULL', 'M', 'devin50@adventure-works.com', '90000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '645 Dublin Court', 'NULL', '317-555-0155', '2013-07-24', '0-1 Miles'], ['22862', '299', 'AW00022862', 'NULL', 'Derrick', 'NULL', 'Navarro', '0', '1980-07-18', 'M', 'NULL', 'M', 'derrick10@adventure-works.com', '110000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '9191 Camelback Ct.', 'NULL', '766-555-0116', '2013-07-28', '2-5 Miles'], ['22863', '542', 'AW00022863', 'NULL', 'Hunter', 'NULL', 'Thomas', '0', '1961-11-08', 'M', 'NULL', 'M', 'hunter69@adventure-works.com', '70000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '8528 San Ramon Road', 'NULL', '861-555-0142', '2013-04-19', '0-1 Miles'], ['22864', '618', 'AW00022864', 'NULL', 'Mason', 'NULL', 'Hall', '0', '1973-06-20', 'M', 'NULL', 'M', 'mason43@adventure-works.com', '90000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '0', '3647 San Miguel Road', 'NULL', '977-555-0194', '2013-07-23', '5-10 Miles'], ['22865', '311', 'AW00022865', 'NULL', 'Stephanie', 'E', 'Hall', '0', '1945-01-30', 'M', 'NULL', 'F', 'stephanie67@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9568 Sunsine Drive', 'NULL', '612-555-0190', '2013-10-02', '2-5 Miles'], ['22866', '160', 'AW00022866', 'NULL', 'William', 'NULL', 'Thompson', '0', '1979-12-12', 'S', 'NULL', 'M', 'william11@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Curieweg 577', 'NULL', '1 (11) 500 555-0190', '2013-03-25', '2-5 Miles'], ['22867', '175', 'AW00022867', 'NULL', 'Max', 'NULL', 'Ruiz', '0', '1986-06-05', 'S', 'NULL', 'M', 'max3@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Zeiter Weg 6664', 'NULL', '1 (11) 500 555-0116', '2013-07-31', '1-2 Miles'], ['22868', '208', 'AW00022868', 'NULL', 'Ernest', 'V', 'Sun', '0', '1985-08-22', 'S', 'NULL', 'M', 'ernest13@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '910, rue Montcalm', 'NULL', '1 (11) 500 555-0125', '2013-12-13', '1-2 Miles'], ['22869', '251', 'AW00022869', 'NULL', 'Rafael', 'J', 'Lu', '0', '1986-04-12', 'S', 'NULL', 'M', 'rafael12@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '3923 Montgomery Ave.', 'NULL', '1 (11) 500 555-0110', '2013-09-19', '1-2 Miles'], ['22870', '226', 'AW00022870', 'NULL', 'Barbara', 'M', 'Chen', '0', '1984-05-14', 'S', 'NULL', 'F', 'barbara12@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '28, place de la Concorde', 'NULL', '1 (11) 500 555-0180', '2013-04-24', '2-5 Miles'], ['22871', '644', 'AW00022871', 'NULL', 'David', 'D', 'Coleman', '0', '1979-04-02', 'M', 'NULL', 'M', 'david38@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4596 Hill Meadow Place', 'NULL', '779-555-0199', '2013-07-24', '2-5 Miles'], ['22872', '612', 'AW00022872', 'NULL', 'Sara', 'F', 'Bailey', '0', '1967-12-24', 'M', 'NULL', 'F', 'sara17@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4245 Gregory Lane', 'NULL', '794-555-0117', '2013-07-18', '2-5 Miles'], ['22873', '298', 'AW00022873', 'NULL', 'Robert', 'C', 'Williams', '0', '1967-07-26', 'M', 'NULL', 'M', 'robert86@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1616 East Leland', 'NULL', '534-555-0111', '2013-07-21', '2-5 Miles'], ['22874', '612', 'AW00022874', 'NULL', 'Drew', 'NULL', 'Anand', '0', '1967-04-09', 'S', 'NULL', 'M', 'drew23@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '1117 Ashford Court', 'NULL', '257-555-0161', '2013-04-21', '10+ Miles'], ['22875', '325', 'AW00022875', 'NULL', 'Robert', 'L', 'Russell', '0', '1966-09-13', 'S', 'NULL', 'M', 'robert31@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5527 Liszt Way', 'NULL', '375-555-0116', '2013-04-13', '2-5 Miles'], ['22876', '345', 'AW00022876', 'NULL', 'Jenna', 'A', 'Campbell', '0', '1972-11-12', 'M', 'NULL', 'F', 'jenna6@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7013 St. Raphael Drive', 'NULL', '977-555-0190', '2013-04-18', '2-5 Miles'], ['22877', '49', 'AW00022877', 'NULL', 'Xavier', 'NULL', 'Griffin', '0', '1972-11-06', 'M', 'NULL', 'M', 'xavier61@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6936 Woodruff Lane', 'NULL', '573-555-0144', '2011-07-30', '2-5 Miles'], ['22878', '552', 'AW00022878', 'NULL', 'Angelica', 'A', 'Ross', '0', '1967-01-08', 'M', 'NULL', 'F', 'angelica3@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8839 Leonard Dr', 'NULL', '194-555-0172', '2013-04-09', '2-5 Miles'], ['22879', '315', 'AW00022879', 'NULL', 'Jocelyn', 'C', 'Russell', '0', '1972-11-16', 'M', 'NULL', 'F', 'jocelyn19@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9998 Rockne Drive', 'NULL', '377-555-0172', '2013-04-14', '0-1 Miles'], ['22880', '539', 'AW00022880', 'NULL', 'Ashley', 'M', 'Harris', '0', '1965-12-29', 'M', 'NULL', 'F', 'ashley14@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4430 Ardilla Road', 'NULL', '676-555-0195', '2013-04-27', '0-1 Miles'], ['22881', '57', 'AW00022881', 'NULL', 'Wyatt', 'R', 'Martinez', '0', '1971-10-16', 'M', 'NULL', 'M', 'wyatt18@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7784 Door Way', 'NULL', '392-555-0121', '2011-07-16', '2-5 Miles'], ['22882', '60', 'AW00022882', 'NULL', 'Charles', 'NULL', 'Jones', '0', '1972-09-01', 'S', 'NULL', 'M', 'charles6@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4814 Ward Street', 'NULL', '267-555-0115', '2013-08-26', '0-1 Miles'], ['22883', '545', 'AW00022883', 'NULL', 'Xavier', 'NULL', 'Morgan', '0', '1972-11-10', 'S', 'NULL', 'M', 'xavier80@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3425 Sun Hill Lane', 'NULL', '385-555-0148', '2013-03-21', '0-1 Miles'], ['22884', '548', 'AW00022884', 'NULL', 'Danielle', 'NULL', 'Richardson', '0', '1978-11-19', 'S', 'NULL', 'F', 'danielle11@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '8830 Versailles Pl', 'NULL', '606-555-0192', '2013-12-26', '0-1 Miles'], ['22885', '648', 'AW00022885', 'NULL', 'Caleb', 'NULL', 'Henderson', '0', '1972-08-27', 'S', 'NULL', 'M', 'caleb1@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '9800 St. George Dr', 'NULL', '966-555-0176', '2013-03-30', '2-5 Miles'], ['22886', '326', 'AW00022886', 'NULL', 'Andrea', 'K', 'King', '0', '1973-03-07', 'S', 'NULL', 'F', 'andrea41@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '9025 Talbart Street', 'NULL', '116-555-0197', '2013-04-16', '2-5 Miles'], ['22887', '347', 'AW00022887', 'NULL', 'Mason', 'L', 'Richardson', '0', '1965-09-01', 'M', 'NULL', 'M', 'mason10@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3082 Cowell Rd.', 'NULL', '114-555-0161', '2013-04-27', '2-5 Miles'], ['22888', '631', 'AW00022888', 'NULL', 'Abigail', 'M', 'Long', '0', '1965-09-01', 'M', 'NULL', 'F', 'abigail64@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9081 Myrtle Drive', 'NULL', '485-555-0122', '2013-04-26', '2-5 Miles'], ['22889', '58', 'AW00022889', 'NULL', 'Julia', 'R', 'Long', '0', '1970-05-22', 'M', 'NULL', 'F', 'julia75@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2528 Fall Creek Road', 'NULL', '721-555-0117', '2011-07-20', '2-5 Miles'], ['22890', '359', 'AW00022890', 'NULL', 'Alexis', 'H', 'Hall', '0', '1970-09-21', 'M', 'NULL', 'F', 'alexis21@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '8869 Lightwood Drive', 'NULL', '118-555-0144', '2013-11-09', '2-5 Miles'], ['22891', '329', 'AW00022891', 'NULL', 'Andrea', 'M', 'Gonzalez', '0', '1964-07-31', 'M', 'NULL', 'F', 'andrea33@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '8004 N. Broadway', 'NULL', '852-555-0176', '2013-05-12', '2-5 Miles'], ['22892', '315', 'AW00022892', 'NULL', 'Timothy', 'E', 'Mitchell', '0', '1964-10-14', 'S', 'NULL', 'M', 'timothy36@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '6821 Sepulveda Ct.', 'NULL', '521-555-0198', '2013-08-25', '0-1 Miles'], ['22893', '49', 'AW00022893', 'NULL', 'Chloe', 'V', 'Miller', '0', '1965-01-13', 'S', 'NULL', 'F', 'chloe39@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '7390 Discovery Bay', 'NULL', '332-555-0185', '2011-07-24', '0-1 Miles'], ['22894', '314', 'AW00022894', 'NULL', 'Danielle', 'NULL', 'Ramirez', '0', '1964-10-29', 'M', 'NULL', 'F', 'danielle9@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '3', '2664 Escobar', 'NULL', '271-555-0142', '2013-03-07', '10+ Miles'], ['22895', '64', 'AW00022895', 'NULL', 'Eduardo', 'M', 'Perez', '0', '1965-05-19', 'S', 'NULL', 'M', 'eduardo36@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '3', '6973 Elena', 'NULL', '505-555-0125', '2011-07-11', '10+ Miles'], ['22896', '616', 'AW00022896', 'NULL', 'Logan', 'H', 'Miller', '0', '1963-09-16', 'M', 'NULL', 'M', 'logan57@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7396 Greenwood Place', 'NULL', '496-555-0121', '2013-04-01', '2-5 Miles'], ['22897', '632', 'AW00022897', 'NULL', 'Arianna', 'C', 'Ramirez', '0', '1969-05-23', 'M', 'NULL', 'F', 'arianna28@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1036 Mason Dr', 'NULL', '497-555-0182', '2013-05-08', '2-5 Miles'], ['22898', '316', 'AW00022898', 'NULL', 'Melanie', 'NULL', 'Washington', '0', '1963-08-30', 'M', 'NULL', 'F', 'melanie0@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1739 Glenhaven Ave', 'NULL', '603-555-0197', '2013-05-02', '2-5 Miles'], ['22899', '316', 'AW00022899', 'NULL', 'Charles', 'R', 'Carter', '0', '1963-11-18', 'M', 'NULL', 'M', 'charles38@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '149 Valley Blvd.', 'NULL', '969-555-0140', '2013-04-30', '2-5 Miles'], ['22900', '553', 'AW00022900', 'NULL', 'Hunter', 'G', 'Li', '0', '1964-06-04', 'S', 'NULL', 'M', 'hunter21@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2612 Berry Dr', 'NULL', '402-555-0113', '2013-05-16', '2-5 Miles'], ['22901', '57', 'AW00022901', 'NULL', 'Katherine', 'Z', 'Stewart', '0', '1969-10-22', 'S', 'NULL', 'F', 'katherine2@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7561 Humphrey Drive', 'NULL', '231-555-0156', '2011-07-12', '0-1 Miles'], ['22902', '609', 'AW00022902', 'NULL', 'Pedro', 'NULL', 'Madan', '0', '1963-11-22', 'M', 'NULL', 'M', 'pedro8@adventure-works.com', '70000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '8746 Gonzalez Ct', 'NULL', '702-555-0192', '2013-09-21', '2-5 Miles'], ['22903', '60', 'AW00022903', 'NULL', 'Hailey', 'NULL', 'Stewart', '0', '1963-12-09', 'S', 'NULL', 'F', 'hailey0@adventure-works.com', '80000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9710 Valley Blvd.', 'NULL', '640-555-0133', '2011-07-24', '0-1 Miles'], ['22904', '31', 'AW00022904', 'NULL', 'Mitchell', 'M', 'Shen', '0', '1975-01-12', 'S', 'NULL', 'M', 'mitchell2@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '0', '9632 S. Silver Spring', 'NULL', '1 (11) 500 555-0111', '2012-05-12', '0-1 Miles'], ['22905', '16', 'AW00022905', 'NULL', 'Joe', 'M', 'Schmidt', '0', '1975-01-15', 'M', 'NULL', 'M', 'joe13@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '2055 Fountain Road', 'NULL', '1 (11) 500 555-0114', '2012-06-11', '0-1 Miles'], ['22906', '11', 'AW00022906', 'NULL', 'Jessie', 'C', 'Moreno', '0', '1980-10-21', 'M', 'NULL', 'F', 'jessie4@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '0', '8294 El Rancho Drive', 'NULL', '1 (11) 500 555-0169', '2012-06-13', '0-1 Miles'], ['22907', '14', 'AW00022907', 'NULL', 'Barry', 'NULL', 'Sai', '0', '1973-08-21', 'M', 'NULL', 'M', 'barry6@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6114 North Park Court', '# 12', '1 (11) 500 555-0114', '2012-06-03', '0-1 Miles'], ['22908', '37', 'AW00022908', 'NULL', 'Eddie', 'NULL', 'Ortega', '0', '1975-09-19', 'M', 'NULL', 'M', 'eddie22@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '332 Laguna Niguel', 'NULL', '1 (11) 500 555-0151', '2012-06-10', '2-5 Miles'], ['22909', '25', 'AW00022909', 'NULL', 'Tommy', 'NULL', 'Goel', '0', '1974-05-25', 'S', 'NULL', 'M', 'tommy16@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3249 E Lane', 'NULL', '1 (11) 500 555-0147', '2012-06-05', '0-1 Miles'], ['22910', '25', 'AW00022910', 'NULL', 'Latoya', 'F', 'Tang', '0', '1973-10-15', 'M', 'NULL', 'F', 'latoya3@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7338 Solano Drive', 'NULL', '1 (11) 500 555-0132', '2012-06-28', '0-1 Miles'], ['22911', '15', 'AW00022911', 'NULL', 'Gregory', 'C', 'Raje', '0', '1979-10-01', 'M', 'NULL', 'M', 'gregory17@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '3491 Cook Street', 'NULL', '1 (11) 500 555-0118', '2013-08-26', '10+ Miles'], ['22912', '5', 'AW00022912', 'NULL', 'Mallory', 'P', 'Moreno', '0', '1980-12-03', 'S', 'NULL', 'F', 'mallory14@adventure-works.com', '110000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '4572 San Jose Drive', 'NULL', '1 (11) 500 555-0118', '2012-06-01', '2-5 Miles'], ['22913', '15', 'AW00022913', 'NULL', 'Valerie', 'NULL', 'Lu', '0', '1975-06-24', 'S', 'NULL', 'F', 'valerie13@adventure-works.com', '120000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9471 Shelly Dr.', 'NULL', '1 (11) 500 555-0158', '2012-05-30', '0-1 Miles'], ['22914', '36', 'AW00022914', 'NULL', 'Faith', 'NULL', 'Gray', '0', '1972-08-08', 'S', 'NULL', 'F', 'faith27@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '3969 Two Bay Road', 'NULL', '1 (11) 500 555-0119', '2013-04-04', '10+ Miles'], ['22915', '30', 'AW00022915', 'NULL', 'Carly', 'NULL', 'Shen', '0', '1972-08-07', 'M', 'NULL', 'F', 'carly1@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '8533 Valley Oak Plaza', '# 174', '1 (11) 500 555-0149', '2013-06-27', '10+ Miles'], ['22916', '22', 'AW00022916', 'NULL', 'Raquel', 'Z', 'Romero', '0', '1978-05-17', 'M', 'NULL', 'F', 'raquel6@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '9972 San Miguel Rd', 'NULL', '1 (11) 500 555-0113', '2013-09-10', '10+ Miles'], ['22917', '40', 'AW00022917', 'NULL', 'Maurice', 'NULL', 'She', '0', '1971-10-09', 'S', 'NULL', 'M', 'maurice0@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '7185 West Cliff Place', 'NULL', '1 (11) 500 555-0196', '2013-03-03', '0-1 Miles'], ['22918', '20', 'AW00022918', 'NULL', 'Calvin', 'S', 'Jai', '0', '1971-09-17', 'S', 'NULL', 'M', 'calvin11@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '2687 Ridge Road', 'NULL', '1 (11) 500 555-0176', '2013-10-06', '0-1 Miles'], ['22919', '5', 'AW00022919', 'NULL', 'Stanley', 'J', 'Rana', '0', '1972-03-11', 'M', 'NULL', 'M', 'stanley12@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '8309 Colonial Way', 'NULL', '1 (11) 500 555-0121', '2013-08-12', '0-1 Miles'], ['22920', '23', 'AW00022920', 'NULL', 'Calvin', 'NULL', 'Andersen', '0', '1970-08-25', 'M', 'NULL', 'M', 'calvin12@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7751 Mendocino Dr.', 'NULL', '1 (11) 500 555-0128', '2013-11-26', '0-1 Miles'], ['22921', '22', 'AW00022921', 'NULL', 'Kelsey', 'R', 'Shen', '0', '1973-08-17', 'S', 'NULL', 'F', 'kelsey1@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '8693 Balhan Dr.', 'NULL', '1 (11) 500 555-0191', '2012-06-11', '5-10 Miles'], ['22922', '23', 'AW00022922', 'NULL', 'Heidi', 'L', 'Martinez', '0', '1974-01-06', 'S', 'NULL', 'F', 'heidi20@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3372 Mobile Lane', 'NULL', '1 (11) 500 555-0133', '2013-07-27', '5-10 Miles'], ['22923', '23', 'AW00022923', 'NULL', 'Mason', 'E', 'Lopez', '0', '1975-01-22', 'M', 'NULL', 'M', 'mason33@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '3264 Kaski Lane', 'NULL', '1 (11) 500 555-0177', '2013-12-28', '5-10 Miles'], ['22924', '16', 'AW00022924', 'NULL', 'Marie', 'NULL', 'Sanchez', '0', '1969-07-31', 'S', 'NULL', 'F', 'marie22@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '6131 Green Leaf Drive', 'NULL', '1 (11) 500 555-0112', '2013-02-11', '10+ Miles'], ['22925', '17', 'AW00022925', 'NULL', 'Karla', 'E', 'Shen', '0', '1975-05-14', 'M', 'NULL', 'F', 'karla2@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '9088 Almaden Dr', 'NULL', '1 (11) 500 555-0186', '2013-09-03', '10+ Miles'], ['22926', '25', 'AW00022926', 'NULL', 'Keith', 'N', 'Yuan', '0', '1968-08-07', 'S', 'NULL', 'M', 'keith9@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '6441 Mcelroy Court', 'NULL', '1 (11) 500 555-0137', '2012-06-21', '5-10 Miles'], ['22927', '7', 'AW00022927', 'NULL', 'Jon', 'NULL', 'Guo', '0', '1968-08-02', 'S', 'NULL', 'M', 'jon38@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '895 Sandalwood Drive', 'NULL', '1 (11) 500 555-0111', '2012-05-30', '0-1 Miles'], ['22928', '2', 'AW00022928', 'NULL', 'Natalie', 'C', 'Nelson', '0', '1968-10-08', 'S', 'NULL', 'F', 'natalie52@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4800 Quiz Street', 'NULL', '1 (11) 500 555-0193', '2013-06-13', '5-10 Miles'], ['22929', '20', 'AW00022929', 'NULL', 'Isabella', 'A', 'Davis', '0', '1973-04-26', 'S', 'NULL', 'F', 'isabella62@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '4814 Seascape Circle', 'NULL', '1 (11) 500 555-0125', '2012-06-06', '1-2 Miles'], ['22930', '39', 'AW00022930', 'NULL', 'Brett', 'L', 'Raman', '0', '1978-11-18', 'M', 'NULL', 'M', 'brett11@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '4631 Hilltop Dr.', 'NULL', '1 (11) 500 555-0166', '2012-06-28', '1-2 Miles'], ['22931', '21', 'AW00022931', 'NULL', 'Logan', 'K', 'Johnson', '0', '1933-08-30', 'M', 'NULL', 'M', 'logan50@adventure-works.com', '100000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '4945 Pennsylvania Blvd.', 'NULL', '1 (11) 500 555-0149', '2012-06-11', '1-2 Miles'], ['22932', '8', 'AW00022932', 'NULL', 'Maurice', 'NULL', 'Jai', '0', '1973-05-07', 'S', 'NULL', 'M', 'maurice12@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '8528 San Ramon Road', 'NULL', '1 (11) 500 555-0147', '2012-05-31', '0-1 Miles'], ['22933', '12', 'AW00022933', 'NULL', 'Kelli', 'C', 'Chande', '0', '1968-03-13', 'S', 'NULL', 'F', 'kelli38@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '606 Chelsea Way', 'NULL', '1 (11) 500 555-0161', '2012-06-26', '0-1 Miles'], ['22934', '26', 'AW00022934', 'NULL', 'Tonya', 'A', 'Kumar', '0', '1968-05-15', 'M', 'NULL', 'F', 'tonya7@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '677 Riviera Way', 'NULL', '1 (11) 500 555-0165', '2012-06-18', '5-10 Miles'], ['22935', '14', 'AW00022935', 'NULL', 'Tamara', 'G', 'Shen', '0', '1972-05-19', 'S', 'NULL', 'F', 'tamara13@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '7284 Zion Ave.', 'NULL', '1 (11) 500 555-0115', '2012-06-15', '0-1 Miles'], ['22936', '34', 'AW00022936', 'NULL', 'Jill', 'F', 'Diaz', '0', '1967-01-29', 'S', 'NULL', 'F', 'jill10@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '676 Yosemite Ct', 'NULL', '1 (11) 500 555-0170', '2012-06-12', '0-1 Miles'], ['22937', '26', 'AW00022937', 'NULL', 'Jose', 'A', 'Baker', '0', '1972-06-10', 'S', 'NULL', 'M', 'jose52@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9457 Roxbury Dr.', 'NULL', '1 (11) 500 555-0179', '2012-06-28', '0-1 Miles'], ['22938', '24', 'AW00022938', 'NULL', 'Hector', 'J', 'Blanco', '0', '1967-01-29', 'M', 'NULL', 'M', 'hector13@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9194 West I St', 'NULL', '1 (11) 500 555-0184', '2012-06-22', '5-10 Miles'], ['22939', '9', 'AW00022939', 'NULL', 'Rebekah', 'NULL', 'Arthur', '0', '1966-12-10', 'S', 'NULL', 'F', 'rebekah7@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4426 Tanager Road', 'NULL', '1 (11) 500 555-0117', '2012-06-06', '5-10 Miles'], ['22940', '28', 'AW00022940', 'NULL', 'Briana', 'NULL', 'Ashe', '0', '1972-05-16', 'S', 'NULL', 'F', 'briana4@adventure-works.com', '100000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '371 Ridge Place', 'NULL', '1 (11) 500 555-0113', '2012-05-30', '1-2 Miles'], ['22941', '25', 'AW00022941', 'NULL', 'Destiny', 'C', 'Bailey', '0', '1977-12-11', 'S', 'NULL', 'F', 'destiny32@adventure-works.com', '100000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3507 Limeridge Drive', 'NULL', '1 (11) 500 555-0136', '2013-07-04', '5-10 Miles'], ['22942', '30', 'AW00022942', 'NULL', 'Brittney', 'M', 'She', '0', '1965-12-24', 'M', 'NULL', 'F', 'brittney22@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6951 Harmony Way', 'NULL', '1 (11) 500 555-0119', '2012-06-05', '5-10 Miles'], ['22943', '18', 'AW00022943', 'NULL', 'Timothy', 'C', 'Parker', '0', '1966-04-06', 'S', 'NULL', 'M', 'timothy24@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1173 Dale Pl.', 'NULL', '1 (11) 500 555-0174', '2012-06-11', '0-1 Miles'], ['22944', '6', 'AW00022944', 'NULL', 'Jodi', 'J', 'Lal', '0', '1964-10-09', 'M', 'NULL', 'F', 'jodi8@adventure-works.com', '90000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9593 Power Ave.', 'NULL', '1 (11) 500 555-0152', '2013-05-07', '5-10 Miles'], ['22945', '13', 'AW00022945', 'NULL', 'Linda', 'P', 'Sanz', '0', '1976-05-13', 'M', 'NULL', 'F', 'linda35@adventure-works.com', '90000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1305 Black Point Pl.', 'NULL', '1 (11) 500 555-0198', '2013-03-20', '1-2 Miles'], ['22946', '6', 'AW00022946', 'NULL', 'Bryant', 'NULL', 'Kapoor', '0', '1964-11-14', 'S', 'NULL', 'M', 'bryant1@adventure-works.com', '90000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7068 Rock Drive', 'NULL', '1 (11) 500 555-0135', '2012-06-17', '2-5 Miles'], ['22947', '19', 'AW00022947', 'NULL', 'Danielle', 'G', 'Torres', '0', '1939-04-09', 'S', 'NULL', 'F', 'danielle15@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9195 Park Glen Ct', 'NULL', '1 (11) 500 555-0166', '2013-03-03', '0-1 Miles'], ['22948', '20', 'AW00022948', 'NULL', 'Lucas', 'NULL', 'Turner', '0', '1970-01-01', 'S', 'NULL', 'M', 'lucas6@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4264 C Street', 'NULL', '1 (11) 500 555-0144', '2013-05-01', '5-10 Miles'], ['22949', '13', 'AW00022949', 'NULL', 'Gavin', 'D', 'Butler', '0', '1939-09-17', 'S', 'NULL', 'M', 'gavin13@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '956 B Wildbrook Ct.', 'NULL', '1 (11) 500 555-0122', '2013-04-18', '5-10 Miles'], ['22950', '20', 'AW00022950', 'NULL', 'Nicole', 'V', 'Cox', '0', '1969-05-11', 'S', 'NULL', 'F', 'nicole37@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6400 Kenwal Rd.', 'NULL', '1 (11) 500 555-0186', '2012-06-23', '0-1 Miles'], ['22951', '29', 'AW00022951', 'NULL', 'Chelsea', 'NULL', 'Mehta', '0', '1969-01-01', 'S', 'NULL', 'F', 'chelsea15@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5108 C Mt. Hood Cr.', 'NULL', '1 (11) 500 555-0162', '2012-06-21', '5-10 Miles'], ['22952', '34', 'AW00022952', 'NULL', 'Luke', 'J', 'Baker', '0', '1968-11-05', 'M', 'NULL', 'M', 'luke39@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3742 Alpine Drive', 'NULL', '1 (11) 500 555-0154', '2013-02-23', '0-1 Miles'], ['22953', '31', 'AW00022953', 'NULL', 'Barbara', 'T', 'Liang', '0', '1969-05-14', 'S', 'NULL', 'F', 'barbara26@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '3300 Blenheim Way', 'NULL', '1 (11) 500 555-0148', '2012-06-01', '5-10 Miles'], ['22954', '27', 'AW00022954', 'NULL', 'Justin', 'NULL', 'Thompson', '0', '1968-08-31', 'S', 'NULL', 'M', 'justin43@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '4566 Warmcastle Court', 'NULL', '1 (11) 500 555-0145', '2012-06-07', '5-10 Miles'], ['22955', '9', 'AW00022955', 'NULL', 'Leslie', 'C', 'Suarez', '0', '1973-06-20', 'M', 'NULL', 'F', 'leslie19@adventure-works.com', '70000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '1914 N Lucile Lane', 'NULL', '1 (11) 500 555-0130', '2013-08-26', '0-1 Miles'], ['22956', '13', 'AW00022956', 'NULL', 'Randy', 'L', 'Guo', '0', '1968-02-21', 'M', 'NULL', 'M', 'randy20@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2535 Park Lane', 'NULL', '1 (11) 500 555-0195', '2013-10-20', '5-10 Miles'], ['22957', '27', 'AW00022957', 'NULL', 'Nicole', 'NULL', 'Davis', '0', '1973-04-08', 'M', 'NULL', 'F', 'nicole5@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2630 Morgan Terr. Rd', 'NULL', '1 (11) 500 555-0144', '2013-08-11', '0-1 Miles'], ['22958', '29', 'AW00022958', 'NULL', 'Brandy', 'B', 'Fernandez', '0', '1966-08-01', 'S', 'NULL', 'F', 'brandy12@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1949 Bayter Court', 'NULL', '1 (11) 500 555-0164', '2012-06-12', '0-1 Miles'], ['22959', '23', 'AW00022959', 'NULL', 'Julie', 'NULL', 'Yuan', '0', '1972-03-01', 'S', 'NULL', 'F', 'julie11@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1201 Olive Hill', 'NULL', '1 (11) 500 555-0158', '2012-06-09', '0-1 Miles'], ['22960', '36', 'AW00022960', 'NULL', 'Douglas', 'L', 'Malhotra', '0', '1972-08-06', 'M', 'NULL', 'M', 'douglas8@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '8859 Wood Ranch Circle', 'NULL', '1 (11) 500 555-0146', '2013-09-18', '5-10 Miles'], ['22961', '19', 'AW00022961', 'NULL', 'Nina', 'NULL', 'She', '0', '1972-07-03', 'M', 'NULL', 'F', 'nina0@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '8500 Pinehurst Court', 'NULL', '1 (11) 500 555-0131', '2012-06-05', '10+ Miles'], ['22962', '13', 'AW00022962', 'NULL', 'Casey', 'J', 'Martin', '0', '1963-01-03', 'M', 'NULL', 'M', 'casey23@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1013 Buchanan Rd', 'NULL', '1 (11) 500 555-0188', '2013-05-30', '5-10 Miles'], ['22963', '24', 'AW00022963', 'NULL', 'Willie', 'NULL', 'Ye', '0', '1974-06-17', 'M', 'NULL', 'M', 'willie7@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1649 Temple Court', 'NULL', '1 (11) 500 555-0123', '2013-03-23', '5-10 Miles'], ['22964', '33', 'AW00022964', 'NULL', 'Eric', 'A', 'Hayes', '0', '1946-04-27', 'S', 'NULL', 'M', 'eric30@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6991 Pembroke Dr', 'NULL', '1 (11) 500 555-0162', '2013-05-27', '5-10 Miles'], ['22965', '24', 'AW00022965', 'NULL', 'Carrie', 'NULL', 'Gomez', '0', '1941-12-30', 'S', 'NULL', 'F', 'carrie0@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '567 Water Street', 'NULL', '1 (11) 500 555-0154', '2013-09-21', '5-10 Miles'], ['22966', '40', 'AW00022966', 'NULL', 'Jodi', 'L', 'Chapman', '0', '1967-11-29', 'S', 'NULL', 'F', 'jodi16@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1604 Crown Court', 'NULL', '1 (11) 500 555-0118', '2012-06-25', '0-1 Miles'], ['22967', '631', 'AW00022967', 'NULL', 'Rachel', 'NULL', 'Smith', '0', '1982-05-23', 'M', 'NULL', 'F', 'rachel2@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '327 Bon Homme Way', 'NULL', '552-555-0157', '2013-08-24', '0-1 Miles'], ['22968', '633', 'AW00022968', 'NULL', 'Logan', 'L', 'Perez', '0', '1980-10-13', 'S', 'NULL', 'M', 'logan38@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9170 Treat Blvd.', 'NULL', '556-555-0120', '2013-05-25', '5-10 Miles'], ['22969', '55', 'AW00022969', 'NULL', 'Taylor', 'E', 'Martin', '0', '1981-03-26', 'S', 'NULL', 'F', 'taylor62@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1040 Greenbush Drive', 'NULL', '918-555-0185', '2014-01-08', '0-1 Miles'], ['22970', '609', 'AW00022970', 'NULL', 'Mary', 'NULL', 'Phillips', '0', '1982-04-05', 'S', 'NULL', 'F', 'mary19@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9405 Curletto Dr.', 'NULL', '530-555-0150', '2013-02-15', '5-10 Miles'], ['22971', '49', 'AW00022971', 'NULL', 'Morgan', 'T', 'Howard', '0', '1986-05-06', 'S', 'NULL', 'F', 'morgan59@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6854 Veale Ave.', 'NULL', '592-555-0190', '2011-07-09', '0-1 Miles'], ['22972', '553', 'AW00022972', 'NULL', 'Bailey', 'A', 'James', '0', '1985-08-23', 'S', 'NULL', 'F', 'bailey6@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7768 Lilac Circle', 'NULL', '783-555-0182', '2013-05-28', '0-1 Miles'], ['22973', '36', 'AW00022973', 'NULL', 'Alan', 'NULL', 'Lin', '0', '1952-03-23', 'S', 'NULL', 'M', 'alan11@adventure-works.com', '10000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9654 Pirate Lane', 'NULL', '1 (11) 500 555-0139', '2013-12-28', '0-1 Miles'], ['22974', '33', 'AW00022974', 'NULL', 'Erika', 'S', 'Vazquez', '0', '1942-11-14', 'M', 'NULL', 'F', 'erika12@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '216 Arnold Drive', 'NULL', '1 (11) 500 555-0178', '2013-03-23', '5-10 Miles'], ['22975', '53', 'AW00022975', 'NULL', 'Courtney', 'A', 'Turner', '0', '1984-03-11', 'S', 'NULL', 'F', 'courtney2@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6131 Orangewood Court', 'NULL', '111-555-0190', '2011-07-06', '0-1 Miles'], ['22976', '59', 'AW00022976', 'NULL', 'Eric', 'NULL', 'Foster', '0', '1983-10-07', 'S', 'NULL', 'M', 'eric23@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1905 Horseshoe Circle', 'NULL', '295-555-0116', '2011-08-24', '0-1 Miles'], ['22977', '358', 'AW00022977', 'NULL', 'Ian', 'R', 'Patterson', '0', '1983-10-19', 'M', 'NULL', 'M', 'ian51@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '466 Garcia Ranch Road', 'NULL', '228-555-0183', '2013-05-27', '0-1 Miles'], ['22978', '17', 'AW00022978', 'NULL', 'Devon', 'NULL', 'Jai', '0', '1944-04-24', 'M', 'NULL', 'M', 'devon9@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1299 Band Court', 'NULL', '1 (11) 500 555-0173', '2013-12-31', '5-10 Miles'], ['22979', '302', 'AW00022979', 'NULL', 'Theodore', 'R', 'Hernandez', '0', '1983-01-19', 'S', 'NULL', 'M', 'theodore4@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7031 Horseshoe Circle', 'NULL', '346-555-0170', '2013-11-06', '0-1 Miles'], ['22980', '298', 'AW00022980', 'NULL', 'Oscar', 'NULL', 'Washington', '0', '1982-08-23', 'M', 'NULL', 'M', 'oscar21@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7923 Prospect St.', 'NULL', '606-555-0154', '2013-02-05', '5-10 Miles'], ['22981', '548', 'AW00022981', 'NULL', 'Amanda', 'NULL', 'Flores', '0', '1982-11-23', 'S', 'NULL', 'F', 'amanda33@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5093 V. Street', 'NULL', '409-555-0141', '2013-12-12', '0-1 Miles'], ['22982', '312', 'AW00022982', 'NULL', 'Madison', 'NULL', 'Miller', '0', '1982-04-03', 'M', 'NULL', 'F', 'madison6@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6140 Nightingale Drive', 'NULL', '768-555-0120', '2013-03-05', '5-10 Miles'], ['22983', '50', 'AW00022983', 'NULL', 'Maria', 'G', 'Bennett', '0', '1984-12-12', 'S', 'NULL', 'F', 'maria24@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4103 Valley Blvd.', 'NULL', '211-555-0113', '2013-07-21', '5-10 Miles'], ['22984', '609', 'AW00022984', 'NULL', 'Cameron', 'C', 'Robinson', '0', '1985-04-09', 'M', 'NULL', 'M', 'cameron36@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1511 Roxbury Drive', 'NULL', '305-555-0153', '2013-12-20', '5-10 Miles'], ['22985', '614', 'AW00022985', 'NULL', 'Hailey', 'NULL', 'Phillips', '0', '1985-03-05', 'M', 'NULL', 'F', 'hailey48@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '647 Newport Drive', 'NULL', '765-555-0162', '2013-10-01', '0-1 Miles'], ['22986', '21', 'AW00022986', 'NULL', 'Carly', 'NULL', 'Jai', '0', '1946-01-24', 'S', 'NULL', 'F', 'carly11@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7798 Longbrood Way', 'NULL', '1 (11) 500 555-0170', '2012-06-21', '5-10 Miles'], ['22987', '9', 'AW00022987', 'NULL', 'Jerome', 'F', 'Dominguez', '0', '1951-10-16', 'M', 'NULL', 'M', 'jerome11@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2568 St George Dr.', 'NULL', '1 (11) 500 555-0121', '2012-06-03', '0-1 Miles'], ['22988', '14', 'AW00022988', 'NULL', 'Patricia', 'L', 'Madan', '0', '1945-09-17', 'M', 'NULL', 'F', 'patricia11@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9046 C Street', 'NULL', '1 (11) 500 555-0122', '2012-06-17', '5-10 Miles'], ['22989', '311', 'AW00022989', 'NULL', 'Megan', 'D', 'Butler', '0', '1982-01-05', 'M', 'NULL', 'F', 'megan63@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3665 Oak Creek Ct.', 'NULL', '129-555-0170', '2013-05-16', '5-10 Miles'], ['22990', '336', 'AW00022990', 'NULL', 'Alyssa', 'C', 'Stewart', '0', '1982-06-02', 'S', 'NULL', 'F', 'alyssa24@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6323 Benedict Court', 'NULL', '789-555-0111', '2013-04-24', '1-2 Miles'], ['22991', '310', 'AW00022991', 'NULL', 'Morgan', 'J', 'Jenkins', '0', '1980-01-22', 'S', 'NULL', 'F', 'morgan76@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9636 Palisade Court', 'NULL', '542-555-0189', '2013-06-03', '5-10 Miles'], ['22992', '623', 'AW00022992', 'NULL', 'Austin', 'H', 'Yang', '0', '1979-05-21', 'S', 'NULL', 'M', 'austin24@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1097 Kulani Lane', 'NULL', '188-555-0115', '2013-05-14', '1-2 Miles'], ['22993', '355', 'AW00022993', 'NULL', 'Xavier', 'E', 'Sanchez', '0', '1977-08-19', 'S', 'NULL', 'M', 'xavier85@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7960 Shadow Creek Dr.', 'NULL', '916-555-0146', '2013-08-25', '0-1 Miles'], ['22994', '631', 'AW00022994', 'NULL', 'Chloe', 'NULL', 'Allen', '0', '1977-11-24', 'M', 'NULL', 'F', 'chloe22@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '5966 Krueger Dr.', 'NULL', '210-555-0153', '2013-08-26', '1-2 Miles'], ['22995', '52', 'AW00022995', 'NULL', 'Isabella', 'L', 'Bryant', '0', '1977-11-29', 'S', 'NULL', 'F', 'isabella28@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '4309 Cambridge Drive', 'NULL', '799-555-0198', '2011-08-26', '1-2 Miles'], ['22996', '51', 'AW00022996', 'NULL', 'Jordan', 'C', 'Henderson', '0', '1978-06-02', 'M', 'NULL', 'M', 'jordan1@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '1637 San Carlos Ave', 'NULL', '161-555-0113', '2011-08-05', '1-2 Miles'], ['22997', '609', 'AW00022997', 'NULL', 'Lucas', 'NULL', 'Williams', '0', '1974-03-22', 'M', 'NULL', 'M', 'lucas15@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '9204 Pelican Loop', 'NULL', '907-555-0167', '2013-08-18', '1-2 Miles'], ['22998', '53', 'AW00022998', 'NULL', 'Lauren', 'R', 'Washington', '0', '1979-11-23', 'M', 'NULL', 'F', 'lauren60@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '8874 Folson Drive', 'NULL', '199-555-0128', '2011-08-27', '1-2 Miles'], ['22999', '335', 'AW00022999', 'NULL', 'Jackson', 'D', 'Hill', '0', '1974-04-05', 'M', 'NULL', 'M', 'jackson43@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '2680 Woodside Way', 'NULL', '315-555-0175', '2013-08-01', '1-2 Miles'], ['23000', '542', 'AW00023000', 'NULL', 'Victoria', 'M', 'Henderson', '0', '1972-12-09', 'M', 'NULL', 'F', 'victoria52@adventure-works.com', '110000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '6358 Parkview Court', 'NULL', '848-555-0182', '2014-01-13', '10+ Miles'], ['23001', '536', 'AW00023001', 'NULL', 'Julio', 'NULL', 'Munoz', '0', '1972-07-23', 'S', 'NULL', 'M', 'julio7@adventure-works.com', '120000.00', '0', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '5626 Mt. View Drive', 'NULL', '982-555-0119', '2013-10-07', '1-2 Miles'], ['23002', '609', 'AW00023002', 'NULL', 'Arthur', 'W', 'Hernandez', '0', '1973-08-31', 'S', 'NULL', 'M', 'arthur27@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '1430 N. Civic Drive', 'NULL', '834-555-0119', '2013-04-12', '1-2 Miles'], ['23003', '546', 'AW00023003', 'NULL', 'Ashley', 'H', 'Robinson', '0', '1973-11-24', 'S', 'NULL', 'F', 'ashley19@adventure-works.com', '100000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '6526 Creed Ave', 'NULL', '794-555-0140', '2013-04-22', '1-2 Miles'], ['23004', '302', 'AW00023004', 'NULL', 'Raymond', 'NULL', 'Fernandez', '0', '1979-08-06', 'M', 'NULL', 'M', 'raymond16@adventure-works.com', '130000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '2914 St. George Dr.', 'NULL', '189-555-0163', '2013-10-30', '0-1 Miles'], ['23005', '547', 'AW00023005', 'NULL', 'Luke', 'NULL', 'Sharma', '0', '1985-05-20', 'M', 'NULL', 'M', 'luke19@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9073 String Drive', 'NULL', '777-555-0198', '2013-04-20', '1-2 Miles'], ['23006', '315', 'AW00023006', 'NULL', 'Seth', 'C', 'Lee', '0', '1984-09-22', 'M', 'NULL', 'M', 'seth21@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3720 Santa Maria', 'NULL', '773-555-0124', '2013-10-30', '5-10 Miles'], ['23007', '331', 'AW00023007', 'NULL', 'Isaac', 'NULL', 'Sanchez', '0', '1985-05-03', 'S', 'NULL', 'M', 'isaac17@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1068 N Sweetbriar Court', 'NULL', '119-555-0113', '2013-04-06', '5-10 Miles'], ['23008', '26', 'AW00023008', 'NULL', 'Sheena', 'R', 'She', '0', '1950-06-06', 'M', 'NULL', 'F', 'sheena0@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7194 Fourth St.', 'NULL', '1 (11) 500 555-0169', '2013-05-16', '5-10 Miles'], ['23009', '49', 'AW00023009', 'NULL', 'Dalton', 'NULL', 'Thomas', '0', '1983-09-13', 'M', 'NULL', 'M', 'dalton10@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1431 Rancho View Drive', '# 14', '114-555-0191', '2013-12-06', '5-10 Miles'], ['23010', '66', 'AW00023010', 'NULL', 'Seth', 'NULL', 'Cook', '0', '1983-09-13', 'S', 'NULL', 'M', 'seth83@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7352 Mt. Wilson Pl.', 'NULL', '157-555-0117', '2013-10-30', '5-10 Miles'], ['23011', '299', 'AW00023011', 'NULL', 'Isaiah', 'K', 'Rivera', '0', '1983-09-29', 'M', 'NULL', 'M', 'isaiah16@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8562 Veale Ave.', 'NULL', '689-555-0164', '2013-06-30', '5-10 Miles'], ['23012', '3', 'AW00023012', 'NULL', 'Mathew', 'A', 'Carlson', '0', '1952-03-23', 'M', 'NULL', 'M', 'mathew14@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1566 Eagle Ct.', 'NULL', '1 (11) 500 555-0184', '2013-09-07', '5-10 Miles'], ['23013', '4', 'AW00023013', 'NULL', 'Louis', 'J', 'Yang', '0', '1951-10-09', 'M', 'NULL', 'M', 'louis43@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7485 Lacassie Ave.', 'NULL', '1 (11) 500 555-0192', '2013-06-20', '1-2 Miles'], ['23014', '5', 'AW00023014', 'NULL', 'Cassandra', 'NULL', 'Mehta', '0', '1951-11-30', 'M', 'NULL', 'F', 'cassandra15@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6762 Mission Blvd', 'NULL', '1 (11) 500 555-0113', '2013-08-08', '5-10 Miles'], ['23015', '310', 'AW00023015', 'NULL', 'Juan', 'L', 'Rivera', '0', '1976-08-07', 'M', 'NULL', 'M', 'juan27@adventure-works.com', '70000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8117 Green View Court', 'NULL', '953-555-0142', '2013-08-13', '0-1 Miles'], ['23016', '299', 'AW00023016', 'NULL', 'Victoria', 'NULL', 'Powell', '0', '1976-08-01', 'M', 'NULL', 'F', 'victoria56@adventure-works.com', '70000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2086 Rotherham Dr.', 'NULL', '119-555-0147', '2013-08-05', '1-2 Miles'], ['23017', '609', 'AW00023017', 'NULL', 'Alison', 'M', 'Rai', '0', '1976-09-01', 'M', 'NULL', 'F', 'alison18@adventure-works.com', '70000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '172 Turrin Dr.', 'NULL', '893-555-0138', '2013-08-13', '1-2 Miles'], ['23018', '634', 'AW00023018', 'NULL', 'Richard', 'NULL', 'White', '0', '1976-08-30', 'M', 'NULL', 'M', 'richard53@adventure-works.com', '70000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4490 Chablis Court', 'NULL', '543-555-0113', '2013-08-22', '0-1 Miles'], ['23019', '348', 'AW00023019', 'NULL', 'Emma', 'D', 'Garcia', '0', '1976-10-11', 'M', 'NULL', 'F', 'emma15@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7259 Brock Lane', 'NULL', '191-555-0164', '2013-05-15', '1-2 Miles'], ['23020', '623', 'AW00023020', 'NULL', 'Hannah', 'NULL', 'Jones', '0', '1968-10-19', 'M', 'NULL', 'F', 'hannah4@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '282 Iowa Drive', 'NULL', '418-555-0133', '2014-01-04', '10+ Miles'], ['23021', '298', 'AW00023021', 'NULL', 'Stefanie', 'T', 'Mehta', '0', '1969-01-14', 'M', 'NULL', 'F', 'stefanie11@adventure-works.com', '100000.00', '0', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '804 Seaview Dr.', 'NULL', '547-555-0111', '2013-08-14', '2-5 Miles'], ['23022', '62', 'AW00023022', 'NULL', 'Jocelyn', 'NULL', 'Bradley', '0', '1968-02-19', 'S', 'NULL', 'F', 'jocelyn1@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3787 Browse St', 'NULL', '799-555-0197', '2013-05-24', '5-10 Miles'], ['23023', '609', 'AW00023023', 'NULL', 'Naomi', 'W', 'Vazquez', '0', '1973-11-08', 'M', 'NULL', 'F', 'naomi15@adventure-works.com', '90000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '4700 Bancroft Rd.', 'NULL', '994-555-0111', '2013-03-25', '5-10 Miles'], ['23024', '543', 'AW00023024', 'NULL', 'Emma', 'NULL', 'Davis', '0', '1967-08-14', 'M', 'NULL', 'F', 'emma4@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '6405 G St.', 'NULL', '330-555-0124', '2013-05-13', '1-2 Miles'], ['23025', '644', 'AW00023025', 'NULL', 'Richard', 'NULL', 'Richardson', '0', '1967-09-30', 'M', 'NULL', 'M', 'richard91@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '2608 Elm Rd.', 'NULL', '275-555-0195', '2013-08-28', '1-2 Miles'], ['23026', '325', 'AW00023026', 'NULL', 'Jessica', 'M', 'Rogers', '0', '1973-08-08', 'S', 'NULL', 'F', 'jessica3@adventure-works.com', '120000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '4025 Cherokee Drive', 'NULL', '107-555-0187', '2013-08-20', '5-10 Miles'], ['23027', '338', 'AW00023027', 'NULL', 'Fernando', 'J', 'Griffin', '0', '1967-09-30', 'S', 'NULL', 'M', 'fernando62@adventure-works.com', '130000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '9440 First Ave.', 'NULL', '459-555-0159', '2013-08-10', '0-1 Miles'], ['23028', '352', 'AW00023028', 'NULL', 'Anna', 'D', 'Taylor', '0', '1967-08-12', 'M', 'NULL', 'F', 'anna69@adventure-works.com', '130000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '7759 Azalea Avenue', 'NULL', '645-555-0147', '2013-08-24', '2-5 Miles'], ['23029', '609', 'AW00023029', 'NULL', 'Ian', 'R', 'Ross', '0', '1972-04-12', 'M', 'NULL', 'M', 'ian44@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '1707 Ravenwood Dr.', 'NULL', '842-555-0145', '2013-04-03', '1-2 Miles'], ['23030', '548', 'AW00023030', 'NULL', 'Aidan', 'NULL', 'Jenkins', '0', '1966-12-08', 'M', 'NULL', 'M', 'aidan7@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3023 Adria Drive', 'NULL', '162-555-0134', '2013-08-30', '1-2 Miles'], ['23031', '638', 'AW00023031', 'NULL', 'Brooke', 'M', 'Morgan', '0', '1972-10-29', 'S', 'NULL', 'F', 'brooke20@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5473 Olive Hill', 'NULL', '290-555-0113', '2013-08-16', '5-10 Miles'], ['23032', '334', 'AW00023032', 'NULL', 'Jesse', 'NULL', 'Parker', '0', '1966-09-09', 'M', 'NULL', 'M', 'jesse23@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '145 W. Watson Court', 'NULL', '783-555-0148', '2013-08-18', '2-5 Miles'], ['23033', '334', 'AW00023033', 'NULL', 'Alex', 'J', 'Turner', '0', '1972-04-17', 'M', 'NULL', 'M', 'alex33@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '9973 Mcnutt Ave', 'NULL', '668-555-0160', '2013-08-18', '2-5 Miles'], ['23034', '338', 'AW00023034', 'NULL', 'Melanie', 'A', 'Cooper', '0', '1967-02-08', 'S', 'NULL', 'F', 'melanie34@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '4488 Stonewood Drive', 'NULL', '279-555-0140', '2013-08-21', '2-5 Miles'], ['23035', '345', 'AW00023035', 'NULL', 'Maria', 'NULL', 'Howard', '0', '1972-09-07', 'M', 'NULL', 'F', 'maria14@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '6920 Merriewood Drive', 'NULL', '987-555-0181', '2013-08-14', '0-1 Miles'], ['23036', '358', 'AW00023036', 'NULL', 'Caleb', 'H', 'Green', '0', '1966-08-31', 'S', 'NULL', 'M', 'caleb44@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '9768 Glenellen Court', 'NULL', '359-555-0148', '2013-08-16', '0-1 Miles'], ['23037', '637', 'AW00023037', 'NULL', 'Lucas', 'B', 'Wood', '0', '1960-12-18', 'S', 'NULL', 'M', 'lucas51@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6654 Folson Drive', 'NULL', '826-555-0195', '2014-01-21', '5-10 Miles'], ['23038', '634', 'AW00023038', 'NULL', 'Sydney', 'NULL', 'Reed', '0', '1961-05-26', 'S', 'NULL', 'F', 'sydney4@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '2003 Pinecrest Dr.', 'NULL', '117-555-0193', '2013-05-13', '1-2 Miles'], ['23039', '310', 'AW00023039', 'NULL', 'Wyatt', 'NULL', 'Scott', '0', '1960-12-30', 'M', 'NULL', 'M', 'wyatt33@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '9707 Coldwater Drive', 'NULL', '400-555-0140', '2013-05-16', '1-2 Miles'], ['23040', '352', 'AW00023040', 'NULL', 'Seth', 'A', 'Morgan', '0', '1960-09-11', 'M', 'NULL', 'M', 'seth84@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '6942 Olivera Road', 'NULL', '875-555-0161', '2013-05-24', '1-2 Miles'], ['23041', '337', 'AW00023041', 'NULL', 'Natalie', 'NULL', 'Garcia', '0', '1961-04-25', 'S', 'NULL', 'F', 'natalie84@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '160 Kentucky Drive', 'NULL', '651-555-0128', '2013-08-11', '5-10 Miles'], ['23042', '300', 'AW00023042', 'NULL', 'Riley', 'M', 'Blue', '0', '1960-12-23', 'S', 'NULL', 'F', 'riley3@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '2302 Meadowbrook Dr', 'NULL', '802-555-0111', '2013-08-12', '5-10 Miles'], ['23043', '642', 'AW00023043', 'NULL', 'Katherine', 'L', 'Moore', '0', '1961-02-01', 'M', 'NULL', 'F', 'katherine78@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '1354 Helene Court', 'NULL', '130-555-0199', '2013-12-20', '1-2 Miles'], ['23044', '539', 'AW00023044', 'NULL', 'Aidan', 'B', 'Patterson', '0', '1960-02-01', 'M', 'NULL', 'M', 'aidan11@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2422 Norse Drive', 'NULL', '307-555-0173', '2013-04-09', '5-10 Miles'], ['23045', '641', 'AW00023045', 'NULL', 'Gabriel', 'C', 'Patterson', '0', '1965-01-12', 'M', 'NULL', 'M', 'gabriel7@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7788 Olive St', 'NULL', '115-555-0124', '2013-06-15', '1-2 Miles'], ['23046', '536', 'AW00023046', 'NULL', 'Pamela', 'NULL', 'Malhotra', '0', '1941-02-03', 'M', 'NULL', 'F', 'pamela8@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '49 Monzeneda Way', 'NULL', '761-555-0185', '2013-02-16', '5-10 Miles'], ['23047', '307', 'AW00023047', 'NULL', 'Valerie', 'NULL', 'Xu', '0', '1941-03-31', 'M', 'NULL', 'F', 'valerie14@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4632 Pleasant Hill Rd', 'NULL', '133-555-0156', '2013-08-11', '1-2 Miles'], ['23048', '59', 'AW00023048', 'NULL', 'Isabella', 'NULL', 'Hughes', '0', '1942-04-25', 'M', 'NULL', 'F', 'isabella21@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '932 Acardia Pl.', 'NULL', '113-555-0199', '2013-05-01', '5-10 Miles'], ['23049', '536', 'AW00023049', 'NULL', 'Gina', 'J', 'Moreno', '0', '1941-12-15', 'S', 'NULL', 'F', 'gina7@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '6121 Monzeneda Way', 'NULL', '984-555-0148', '2013-03-02', '1-2 Miles'], ['23050', '548', 'AW00023050', 'NULL', 'Jack', 'P', 'Hall', '0', '1942-02-09', 'M', 'NULL', 'M', 'jack57@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7978 San Gabriel Dr.', 'NULL', '941-555-0119', '2013-02-04', '5-10 Miles'], ['23051', '552', 'AW00023051', 'NULL', 'Jesse', 'NULL', 'Green', '0', '1942-02-18', 'M', 'NULL', 'M', 'jesse40@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1814 Angi Lane', 'NULL', '491-555-0161', '2013-03-18', '5-10 Miles'], ['23052', '343', 'AW00023052', 'NULL', 'Steven', 'L', 'Stewart', '0', '1941-11-13', 'M', 'NULL', 'M', 'steven32@adventure-works.com', '130000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '8566 Beatrice Rd.', 'NULL', '155-555-0117', '2013-08-04', '0-1 Miles'], ['23053', '623', 'AW00023053', 'NULL', 'Anna', 'NULL', 'Bailey', '0', '1971-11-13', 'M', 'NULL', 'F', 'anna11@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '9104 Mt. Sequoia Ct.', 'NULL', '880-555-0113', '2013-10-28', '5-10 Miles'], ['23054', '627', 'AW00023054', 'NULL', 'David', 'A', 'Moore', '0', '1966-03-13', 'M', 'NULL', 'M', 'david66@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '8569 Glenellen Court', 'NULL', '810-555-0130', '2013-07-14', '5-10 Miles'], ['23055', '547', 'AW00023055', 'NULL', 'Seth', 'NULL', 'Diaz', '0', '1971-08-05', 'M', 'NULL', 'M', 'seth70@adventure-works.com', '100000.00', '0', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '6111 Joan Ave.', 'NULL', '420-555-0171', '2013-08-20', '5-10 Miles'], ['23056', '331', 'AW00023056', 'NULL', 'Alyssa', 'W', 'Perry', '0', '1965-11-11', 'M', 'NULL', 'F', 'alyssa54@adventure-works.com', '120000.00', '1', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '521 Red Leaf Way', 'NULL', '454-555-0144', '2013-08-16', '5-10 Miles'], ['23057', '64', 'AW00023057', 'NULL', 'Caitlin', 'T', 'Richardson', '0', '1959-08-25', 'M', 'NULL', 'F', 'caitlin7@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9471 Tobi Drive', 'NULL', '238-555-0129', '2011-08-03', '1-2 Miles'], ['23058', '302', 'AW00023058', 'NULL', 'Michelle', 'A', 'Rivera', '0', '1959-03-15', 'S', 'NULL', 'F', 'michelle17@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6802 Spring Hill Road', 'NULL', '674-555-0137', '2013-07-31', '5-10 Miles'], ['23059', '552', 'AW00023059', 'NULL', 'Spencer', 'NULL', 'Price', '0', '1959-02-08', 'M', 'NULL', 'M', 'spencer1@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1709 P St.', 'NULL', '403-555-0146', '2013-08-10', '5-10 Miles'], ['23060', '352', 'AW00023060', 'NULL', 'Isabella', 'C', 'Long', '0', '1957-12-04', 'M', 'NULL', 'F', 'isabella20@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3068 All Ways', 'NULL', '248-555-0133', '2013-05-31', '5-10 Miles'], ['23061', '343', 'AW00023061', 'NULL', 'Jeremiah', 'NULL', 'Sanders', '0', '1963-12-23', 'M', 'NULL', 'M', 'jeremiah40@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3290 Lakewood Court', 'NULL', '752-555-0160', '2013-03-10', '5-10 Miles'], ['23062', '543', 'AW00023062', 'NULL', 'Natalie', 'NULL', 'Reed', '0', '1943-03-10', 'M', 'NULL', 'F', 'natalie4@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1023 Hawkins Street', 'NULL', '833-555-0176', '2013-10-13', '1-2 Miles'], ['23063', '339', 'AW00023063', 'NULL', 'Jennifer', 'P', 'Thompson', '0', '1942-10-14', 'M', 'NULL', 'F', 'jennifer43@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8782 Grenola Dr.', 'NULL', '678-555-0173', '2013-12-16', '1-2 Miles'], ['23064', '609', 'AW00023064', 'NULL', 'Alexander', 'S', 'Rodriguez', '0', '1942-11-14', 'S', 'NULL', 'M', 'alexander8@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '216 Arnold Drive', 'NULL', '550-555-0130', '2013-04-11', '10+ Miles'], ['23065', '609', 'AW00023065', 'NULL', 'Derek', 'NULL', 'Nath', '0', '1942-11-18', 'M', 'NULL', 'M', 'derek16@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1300 Zartop Street', 'NULL', '892-555-0114', '2013-06-24', '10+ Miles'], ['23066', '298', 'AW00023066', 'NULL', 'Austin', 'M', 'Lal', '0', '1953-08-10', 'M', 'NULL', 'M', 'austin26@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9214 Birch Park Rd', 'NULL', '541-555-0141', '2013-05-03', '1-2 Miles'], ['23067', '302', 'AW00023067', 'NULL', 'Kelli', 'M', 'Pal', '0', '1943-08-04', 'M', 'NULL', 'F', 'kelli35@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7450 Olivera Rd', 'NULL', '957-555-0193', '2013-05-31', '10+ Miles'], ['23068', '307', 'AW00023068', 'NULL', 'Ryan', 'R', 'Shan', '0', '1945-02-08', 'M', 'NULL', 'M', 'ryan34@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5630 Icicle Circle', 'NULL', '487-555-0198', '2013-11-11', '10+ Miles'], ['23069', '299', 'AW00023069', 'NULL', 'Anna', 'R', 'Gray', '0', '1946-04-27', 'M', 'NULL', 'F', 'anna19@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '346 Sunshine', 'NULL', '657-555-0197', '2013-02-14', '1-2 Miles'], ['23070', '69', 'AW00023070', 'NULL', 'Natalie', 'A', 'Hall', '0', '1946-05-04', 'M', 'NULL', 'F', 'natalie90@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '9975 Rose Dr.', 'NULL', '846-555-0148', '2013-02-03', '1-2 Miles'], ['23071', '311', 'AW00023071', 'NULL', 'Haley', 'NULL', 'Gonzales', '0', '1951-06-05', 'M', 'NULL', 'F', 'haley36@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '9950 Edward Ave', 'NULL', '870-555-0130', '2013-06-08', '1-2 Miles'], ['23072', '609', 'AW00023072', 'NULL', 'Toni', 'NULL', 'Srini', '0', '1945-10-17', 'M', 'NULL', 'F', 'toni8@adventure-works.com', '80000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '482 ViewPoint Court', 'NULL', '574-555-0150', '2013-04-21', '5-10 Miles'], ['23073', '633', 'AW00023073', 'NULL', 'Christian', 'NULL', 'Griffin', '0', '1946-04-17', 'M', 'NULL', 'M', 'christian8@adventure-works.com', '80000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2103 Baldwin Dr', 'NULL', '585-555-0172', '2013-08-16', '1-2 Miles'], ['23074', '62', 'AW00023074', 'NULL', 'Megan', 'N', 'Flores', '0', '1946-12-13', 'S', 'NULL', 'F', 'megan61@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '2129 Acacia Drive', 'NULL', '347-555-0187', '2011-08-18', '1-2 Miles'], ['23075', '298', 'AW00023075', 'NULL', 'Rebekah', 'NULL', 'Sandberg', '0', '1946-10-17', 'M', 'NULL', 'F', 'rebekah40@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8650 Mt. Hamilton Dr.', '# 112', '607-555-0145', '2013-05-05', '10+ Miles'], ['23076', '300', 'AW00023076', 'NULL', 'Adrian', 'E', 'Brooks', '0', '1946-09-06', 'M', 'NULL', 'M', 'adrian3@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4827 Seawind Dr.', 'NULL', '540-555-0198', '2013-12-25', '1-2 Miles'], ['23077', '14', 'AW00023077', 'NULL', 'Marvin', 'A', 'Hernandez', '0', '1952-04-18', 'M', 'NULL', 'M', 'marvin4@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1019 Book Road', 'NULL', '1 (11) 500 555-0112', '2013-03-23', '5-10 Miles'], ['23078', '29', 'AW00023078', 'NULL', 'Julio', 'J', 'Hernandez', '0', '1958-06-13', 'M', 'NULL', 'M', 'julio3@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6804 Alovera Road', 'NULL', '1 (11) 500 555-0148', '2013-07-07', '5-10 Miles'], ['23079', '40', 'AW00023079', 'Ms.', 'Justine', 'J.', 'Ryan', '0', '1953-05-10', 'S', 'NULL', 'F', 'justine0@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2342 Tahoe Place', 'NULL', '498-555-0100', '2013-07-07', '5-10 Miles'], ['23080', '335', 'AW00023080', 'NULL', 'Jocelyn', 'NULL', 'Barnes', '0', '1983-09-06', 'S', 'NULL', 'F', 'jocelyn3@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1905 July Loop', 'NULL', '137-555-0153', '2013-05-16', '5-10 Miles'], ['23081', '355', 'AW00023081', 'NULL', 'Brandon', 'NULL', 'Powell', '0', '1983-10-01', 'M', 'NULL', 'M', 'brandon6@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5551 Orinda Court', 'NULL', '258-555-0193', '2013-08-03', '5-10 Miles'], ['23082', '372', 'AW00023082', 'NULL', 'Jonathan', 'NULL', 'Williams', '0', '1983-12-02', 'M', 'NULL', 'M', 'jonathan63@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2518 Kirkwood Dr.', 'NULL', '905-555-0112', '2013-08-07', '5-10 Miles'], ['23083', '43', 'AW00023083', 'NULL', 'Samuel', 'D', 'Smith', '0', '1982-10-05', 'S', 'NULL', 'M', 'samuel57@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5860 Alamo Way', 'NULL', '132-555-0116', '2013-08-04', '5-10 Miles'], ['23084', '50', 'AW00023084', 'NULL', 'Christian', 'L', 'Shan', '0', '1983-04-27', 'S', 'NULL', 'M', 'christian17@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '1000 Bidweld Street', 'NULL', '240-555-0110', '2013-06-19', '5-10 Miles'], ['23085', '30', 'AW00023085', 'NULL', 'Ross', 'L', 'Subram', '0', '1959-06-17', 'M', 'NULL', 'M', 'ross13@adventure-works.com', '20000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4008 Charlotte Court', 'NULL', '1 (11) 500 555-0178', '2013-10-17', '5-10 Miles'], ['23086', '38', 'AW00023086', 'NULL', 'Tracy', 'W', 'Lal', '0', '1954-03-09', 'M', 'NULL', 'F', 'tracy7@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9830 Santa Ana Dr.', 'NULL', '1 (11) 500 555-0175', '2013-03-24', '5-10 Miles'], ['23087', '27', 'AW00023087', 'NULL', 'Clifford', 'NULL', 'Martinez', '0', '1954-06-07', 'M', 'NULL', 'M', 'clifford16@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7725 Camel Pl.', 'NULL', '1 (11) 500 555-0157', '2013-08-28', '5-10 Miles'], ['23088', '609', 'AW00023088', 'NULL', 'Wesley', 'L', 'Hu', '0', '1982-12-13', 'S', 'NULL', 'M', 'wesley20@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '4051 Athene Drive', 'NULL', '858-555-0160', '2013-02-08', '5-10 Miles'], ['23089', '618', 'AW00023089', 'NULL', 'Lucas', 'NULL', 'Walker', '0', '1983-05-22', 'M', 'NULL', 'M', 'lucas37@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3395 Farm Bureau Rd', 'NULL', '174-555-0185', '2013-03-11', '5-10 Miles'], ['23090', '626', 'AW00023090', 'NULL', 'Christopher', 'M', 'Lee', '0', '1983-04-09', 'S', 'NULL', 'M', 'christopher22@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9568 Gold Crest Ct.', 'NULL', '129-555-0117', '2013-08-22', '1-2 Miles'], ['23091', '331', 'AW00023091', 'NULL', 'Richard', 'NULL', 'Peterson', '0', '1982-08-06', 'S', 'NULL', 'M', 'richard86@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1538 Golden Meadow', 'NULL', '822-555-0135', '2013-11-24', '1-2 Miles'], ['23092', '343', 'AW00023092', 'NULL', 'Gabrielle', 'M', 'Brooks', '0', '1983-04-23', 'S', 'NULL', 'F', 'gabrielle19@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2342 Peachwillow', 'NULL', '820-555-0158', '2013-06-25', '0-1 Miles'], ['23093', '359', 'AW00023093', 'NULL', 'Nathan', 'R', 'Parker', '0', '1982-09-04', 'M', 'NULL', 'M', 'nathan30@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6270 Pinecreek Way', 'NULL', '313-555-0165', '2014-01-06', '5-10 Miles'], ['23094', '36', 'AW00023094', 'NULL', 'Carolyn', 'NULL', 'Gill', '0', '1955-06-25', 'M', 'NULL', 'F', 'carolyn34@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2406 Kane Circle', 'NULL', '1 (11) 500 555-0151', '2013-04-27', '5-10 Miles'], ['23095', '30', 'AW00023095', 'NULL', 'Gerald', 'NULL', 'Patel', '0', '1956-05-21', 'M', 'NULL', 'M', 'gerald32@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1803 Potomac Dr.', 'NULL', '1 (11) 500 555-0118', '2013-06-18', '5-10 Miles'], ['23096', '11', 'AW00023096', 'NULL', 'Ashlee', 'N', 'Chande', '0', '1955-11-23', 'M', 'NULL', 'F', 'ashlee0@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'P.O. Box No. 2513', 'NULL', '1 (11) 500 555-0114', '2013-04-29', '5-10 Miles'], ['23097', '38', 'AW00023097', 'NULL', 'Tony', 'NULL', 'Natsuhara', '0', '1956-03-06', 'S', 'NULL', 'M', 'tony21@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2268 Cobblestone Ct', 'NULL', '1 (11) 500 555-0143', '2012-06-16', '1-2 Miles'], ['23098', '2', 'AW00023098', 'NULL', 'Pedro', 'E', 'Rubio', '0', '1961-01-12', 'S', 'NULL', 'M', 'pedro41@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5206 Damascus Loop', 'NULL', '1 (11) 500 555-0117', '2012-06-01', '1-2 Miles'], ['23099', '18', 'AW00023099', 'NULL', 'Kristi', 'D', 'Suarez', '0', '1957-05-04', 'S', 'NULL', 'F', 'kristi15@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7900 Poncho St.', 'NULL', '1 (11) 500 555-0156', '2012-06-28', '1-2 Miles'], ['23100', '20', 'AW00023100', 'NULL', 'Christy', 'NULL', 'Raje', '0', '1957-11-15', 'M', 'NULL', 'F', 'christy31@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6694 Trasher Road', 'NULL', '1 (11) 500 555-0112', '2012-06-26', '5-10 Miles'], ['23101', '2', 'AW00023101', 'NULL', 'Barbara', 'W', 'Lal', '0', '1958-06-17', 'M', 'NULL', 'F', 'barbara40@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8713 Live Oak Avenue', 'NULL', '1 (11) 500 555-0176', '2012-06-16', '5-10 Miles'], ['23102', '18', 'AW00023102', 'NULL', 'Barbara', 'NULL', 'Zeng', '0', '1958-01-03', 'M', 'NULL', 'F', 'barbara31@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1176 Oily Road', 'NULL', '1 (11) 500 555-0114', '2012-06-01', '5-10 Miles'], ['23103', '4', 'AW00023103', 'NULL', 'Dwayne', 'T', 'Moreno', '0', '1975-02-05', 'M', 'NULL', 'M', 'dwayne5@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1371 Rogers Ave', 'NULL', '1 (11) 500 555-0183', '2013-05-17', '1-2 Miles'], ['23104', '20', 'AW00023104', 'NULL', 'Isabelle', 'W', 'Long', '0', '1964-12-03', 'M', 'NULL', 'F', 'isabelle8@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1821 Corrinne Court', 'NULL', '1 (11) 500 555-0121', '2012-06-27', '5-10 Miles'], ['23105', '26', 'AW00023105', 'NULL', 'Karl', 'M', 'Andersen', '0', '1965-02-10', 'S', 'NULL', 'M', 'karl14@adventure-works.com', '40000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '133 Westwood Way', 'NULL', '1 (11) 500 555-0162', '2012-06-05', '5-10 Miles'], ['23106', '19', 'AW00023106', 'NULL', 'Kathryn', 'L', 'Yuan', '0', '1965-09-13', 'M', 'NULL', 'F', 'kathryn6@adventure-works.com', '70000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8399 Garaventa Dr.', 'NULL', '1 (11) 500 555-0169', '2012-06-15', '5-10 Miles'], ['23107', '6', 'AW00023107', 'NULL', 'Michele', 'NULL', 'Kumar', '0', '1960-05-08', 'M', 'NULL', 'F', 'michele8@adventure-works.com', '70000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1710 View Dr', 'NULL', '1 (11) 500 555-0116', '2012-06-27', '5-10 Miles'], ['23108', '616', 'AW00023108', 'NULL', 'Savannah', 'L', 'Wright', '0', '1981-06-17', 'S', 'NULL', 'F', 'savannah43@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6091 Mountaire Parkway', 'NULL', '302-555-0114', '2013-08-14', '5-10 Miles'], ['23109', '553', 'AW00023109', 'NULL', 'Lauren', 'E', 'Hughes', '0', '1981-05-30', 'S', 'NULL', 'F', 'lauren59@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '502 Alexander Pl.', 'NULL', '478-555-0174', '2013-02-17', '5-10 Miles'], ['23110', '325', 'AW00023110', 'NULL', 'Mackenzie', 'NULL', 'Gonzalez', '0', '1981-03-25', 'S', 'NULL', 'F', 'mackenzie30@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2878 San Miguel Circle', 'NULL', '896-555-0123', '2013-05-26', '1-2 Miles'], ['23111', '336', 'AW00023111', 'NULL', 'Sara', 'NULL', 'Wright', '0', '1980-07-16', 'S', 'NULL', 'F', 'sara47@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6732 Mill Road', 'NULL', '585-555-0175', '2013-05-28', '1-2 Miles'], ['23112', '314', 'AW00023112', 'NULL', 'James', 'C', 'Butler', '0', '1980-05-30', 'S', 'NULL', 'M', 'james30@adventure-works.com', '50000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9039 North Spoonwood Court', 'NULL', '901-555-0171', '2013-05-09', '1-2 Miles'], ['23113', '64', 'AW00023113', 'NULL', 'Elijah', 'E', 'Powell', '0', '1979-04-08', 'S', 'NULL', 'M', 'elijah12@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7573 Star Dr', '#5188', '154-555-0176', '2011-08-19', '5-10 Miles'], ['23114', '50', 'AW00023114', 'NULL', 'Caroline', 'D', 'Washington', '0', '1979-04-17', 'S', 'NULL', 'F', 'caroline14@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8752 Longview Rd', 'NULL', '107-555-0115', '2011-08-10', '5-10 Miles'], ['23115', '307', 'AW00023115', 'NULL', 'Stephanie', 'NULL', 'Nicholls', '0', '1982-01-14', 'S', 'NULL', 'F', 'stephanie56@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '528 West Way', 'NULL', '416-555-0113', '2013-03-02', '5-10 Miles'], ['23116', '24', 'AW00023116', 'NULL', 'Jerome', 'NULL', 'Vazquez', '0', '1960-09-18', 'S', 'NULL', 'M', 'jerome13@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9652 Steven Drive', 'NULL', '1 (11) 500 555-0153', '2012-07-28', '1-2 Miles'], ['23117', '4', 'AW00023117', 'NULL', 'Bruce', 'NULL', 'Sanz', '0', '1966-02-21', 'M', 'NULL', 'M', 'bruce41@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1723 Richard Pl.', 'NULL', '1 (11) 500 555-0131', '2012-07-15', '5-10 Miles'], ['23118', '37', 'AW00023118', 'NULL', 'Monique', 'R', 'Moreno', '0', '1967-02-06', 'M', 'NULL', 'F', 'monique2@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1874 Virginia Hills Dr.', 'NULL', '1 (11) 500 555-0112', '2012-07-04', '5-10 Miles'], ['23119', '6', 'AW00023119', 'NULL', 'Gilbert', 'NULL', 'Zhao', '0', '1962-09-08', 'S', 'NULL', 'M', 'gilbert8@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '7827 11th', 'NULL', '1 (11) 500 555-0145', '2012-07-29', '5-10 Miles'], ['23120', '29', 'AW00023120', 'NULL', 'Javier', 'NULL', 'Browning', '0', '1963-06-14', 'S', 'NULL', 'M', 'javier10@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '8501 Boatwright Ln.', 'NULL', '1 (11) 500 555-0141', '2012-07-03', '1-2 Miles'], ['23121', '36', 'AW00023121', 'NULL', 'Danny', 'NULL', 'Ramos', '0', '1962-09-04', 'M', 'NULL', 'M', 'danny18@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8702 Nightingale Drive', 'NULL', '1 (11) 500 555-0160', '2012-07-03', '5-10 Miles'], ['23122', '39', 'AW00023122', 'NULL', 'Colleen', 'NULL', 'Zhou', '0', '1965-01-20', 'S', 'NULL', 'F', 'colleen9@adventure-works.com', '110000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '3396 Castle Rock Road', 'NULL', '1 (11) 500 555-0175', '2013-07-30', '0-1 Miles'], ['23123', '4', 'AW00023123', 'NULL', 'Zoe', 'NULL', 'Kelly', '0', '1965-03-01', 'S', 'NULL', 'F', 'zoe2@adventure-works.com', '110000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '209 Mobile Lane', 'NULL', '1 (11) 500 555-0117', '2013-11-03', '0-1 Miles'], ['23124', '536', 'AW00023124', 'NULL', 'Cameron', 'T', 'Wang', '0', '1978-07-15', 'S', 'NULL', 'M', 'cameron20@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '6730 Green Leaf Drive', 'NULL', '602-555-0169', '2014-01-13', '2-5 Miles'], ['23125', '616', 'AW00023125', 'NULL', 'Madeline', 'NULL', 'Scott', '0', '1979-05-21', 'S', 'NULL', 'F', 'madeline13@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '515 Bayview Ct.', 'NULL', '807-555-0123', '2013-08-01', '0-1 Miles'], ['23126', '300', 'AW00023126', 'NULL', 'Carolyn', 'NULL', 'Van', '0', '1979-12-05', 'M', 'NULL', 'F', 'carolyn4@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '5012 Bayshore Rd.', 'NULL', '357-555-0191', '2013-12-10', '1-2 Miles'], ['23127', '302', 'AW00023127', 'NULL', 'Haley', 'M', 'Hughes', '0', '1980-03-08', 'M', 'NULL', 'F', 'haley30@adventure-works.com', '60000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '95 RiverRock Dr.', 'NULL', '547-555-0132', '2013-05-11', '1-2 Miles'], ['23128', '19', 'AW00023128', 'NULL', 'Dylan', 'J', 'Jai', '0', '1970-11-23', 'M', 'NULL', 'M', 'dylan31@adventure-works.com', '110000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '2687 Apollo Way', '# 213', '1 (11) 500 555-0180', '2013-06-27', '2-5 Miles'], ['23129', '17', 'AW00023129', 'NULL', 'Misty', 'R', 'Ashe', '0', '1965-04-02', 'M', 'NULL', 'F', 'misty24@adventure-works.com', '120000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '2702 North Ridge Dr.', 'NULL', '1 (11) 500 555-0192', '2013-05-06', '2-5 Miles'], ['23130', '314', 'AW00023130', 'NULL', 'Lauren', 'T', 'Russell', '0', '1977-07-04', 'S', 'NULL', 'F', 'lauren66@adventure-works.com', '120000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '5669 Ironwood Way', 'NULL', '161-555-0118', '2013-02-16', '0-1 Miles'], ['23131', '634', 'AW00023131', 'NULL', 'Caitlin', 'J', 'Peterson', '0', '1962-08-02', 'M', 'NULL', 'F', 'caitlin4@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4220 Magnolia Ave', 'NULL', '195-555-0150', '2013-10-01', '5-10 Miles'], ['23132', '368', 'AW00023132', 'NULL', 'Anthony', 'M', 'Lee', '0', '1963-03-11', 'M', 'NULL', 'M', 'anthony8@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9780 Ridgeview Dr.', 'NULL', '479-555-0112', '2013-03-17', '1-2 Miles'], ['23133', '337', 'AW00023133', 'NULL', 'Alexis', 'C', 'White', '0', '1963-06-10', 'M', 'NULL', 'F', 'alexis11@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8523 Rose Drive', 'NULL', '451-555-0113', '2013-08-31', '5-10 Miles'], ['23134', '71', 'AW00023134', 'NULL', 'Alyssa', 'C', 'Robinson', '0', '1962-09-29', 'M', 'NULL', 'F', 'alyssa18@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3839 Northgate Road', 'NULL', '333-555-0186', '2013-11-09', '5-10 Miles'], ['23135', '299', 'AW00023135', 'NULL', 'Dylan', 'D', 'Clark', '0', '1962-08-31', 'M', 'NULL', 'M', 'dylan49@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '2730 Dewing Lane', 'NULL', '991-555-0143', '2013-08-27', '5-10 Miles'], ['23136', '311', 'AW00023136', 'NULL', 'Stephanie', 'J', 'Peterson', '0', '1962-10-19', 'S', 'NULL', 'F', 'stephanie20@adventure-works.com', '80000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '0', '5300 East 88th Street', 'NULL', '813-555-0173', '2013-09-06', '0-1 Miles'], ['23137', '62', 'AW00023137', 'NULL', 'Chloe', 'C', 'Sanders', '0', '1968-10-19', 'M', 'NULL', 'F', 'chloe65@adventure-works.com', '80000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '2320 Wee Donegal', 'NULL', '466-555-0127', '2011-08-11', '0-1 Miles'], ['23138', '300', 'AW00023138', 'NULL', 'Angela', 'NULL', 'Peterson', '0', '1963-02-23', 'S', 'NULL', 'F', 'angela31@adventure-works.com', '90000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '2140 Ambush Dr.', 'NULL', '492-555-0153', '2013-09-22', '2-5 Miles'], ['23139', '307', 'AW00023139', 'NULL', 'Christian', 'NULL', 'Yang', '0', '1961-12-14', 'S', 'NULL', 'M', 'christian13@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '8435 Kenmore', 'NULL', '660-555-0176', '2013-06-06', '1-2 Miles'], ['23140', '612', 'AW00023140', 'NULL', 'Tyler', 'A', 'Lee', '0', '1973-02-14', 'M', 'NULL', 'M', 'tyler22@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1544 Honey Court', 'NULL', '569-555-0131', '2013-02-16', '5-10 Miles'], ['23141', '552', 'AW00023141', 'NULL', 'Katherine', 'M', 'Long', '0', '1962-04-04', 'M', 'NULL', 'F', 'katherine35@adventure-works.com', '70000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '7012 Silverado Drive', 'NULL', '718-555-0170', '2013-09-13', '5-10 Miles'], ['23142', '536', 'AW00023142', 'NULL', 'Cara', 'NULL', 'Wu', '0', '1961-12-29', 'S', 'NULL', 'F', 'cara3@adventure-works.com', '70000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '415 Courthouse Drive', 'NULL', '833-555-0143', '2013-09-13', '0-1 Miles'], ['23143', '618', 'AW00023143', 'NULL', 'Jada', 'S', 'Phillips', '0', '1977-09-22', 'M', 'NULL', 'F', 'jada18@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9462 Rambling Rose Drive', 'Unit A', '845-555-0183', '2013-06-12', '0-1 Miles'], ['23144', '627', 'AW00023144', 'NULL', 'Zachary', 'A', 'Alexander', '0', '1977-10-30', 'M', 'NULL', 'M', 'zachary17@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6400 Yosemite Circle', 'NULL', '373-555-0180', '2013-06-05', '0-1 Miles'], ['23145', '311', 'AW00023145', 'NULL', 'Nichole', 'NULL', 'Xie', '0', '1983-09-21', 'M', 'NULL', 'F', 'nichole3@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9166 Panoramic Ave.', 'NULL', '861-555-0190', '2013-06-26', '2-5 Miles'], ['23146', '374', 'AW00023146', 'NULL', 'Sarah', 'NULL', 'Clark', '0', '1978-02-15', 'S', 'NULL', 'F', 'sarah21@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8840 Leonard Dr.', 'NULL', '549-555-0158', '2013-09-23', '2-5 Miles'], ['23147', '345', 'AW00023147', 'NULL', 'Wyatt', 'P', 'Smith', '0', '1981-01-05', 'M', 'NULL', 'M', 'wyatt0@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5256 Chickpea Ct.', 'NULL', '561-555-0113', '2013-11-14', '0-1 Miles'], ['23148', '648', 'AW00023148', 'NULL', 'Nathan', 'L', 'Ross', '0', '1976-01-24', 'M', 'NULL', 'M', 'nathan0@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '316 Rambling Rose Ave', 'NULL', '171-555-0176', '2013-06-18', '2-5 Miles'], ['23149', '311', 'AW00023149', 'NULL', 'Brandi', 'M', 'Rubio', '0', '1976-06-25', 'M', 'NULL', 'F', 'brandi20@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6557 Jalalon Place', 'NULL', '871-555-0113', '2013-08-30', '0-1 Miles'], ['23150', '339', 'AW00023150', 'NULL', 'Gabriella', 'NULL', 'Allen', '0', '1975-12-19', 'M', 'NULL', 'F', 'gabriella46@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5117 C Street', 'NULL', '189-555-0124', '2013-12-06', '0-1 Miles'], ['23151', '545', 'AW00023151', 'NULL', 'Michael', 'A', 'Brown', '0', '1976-01-05', 'M', 'NULL', 'M', 'michael36@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7230 Berrellesa Street', 'NULL', '941-555-0135', '2013-06-19', '2-5 Miles'], ['23152', '548', 'AW00023152', 'NULL', 'Michelle', 'NULL', 'Howard', '0', '1975-09-02', 'M', 'NULL', 'F', 'michelle12@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4440 Keywood Ct', 'NULL', '665-555-0143', '2013-11-06', '0-1 Miles'], ['23153', '312', 'AW00023153', 'NULL', 'Jenna', 'M', 'Hill', '0', '1974-08-15', 'M', 'NULL', 'F', 'jenna12@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9416 Shadow Falls Drive', 'NULL', '161-555-0182', '2013-03-21', '0-1 Miles'], ['23154', '644', 'AW00023154', 'NULL', 'Connor', 'E', 'Phillips', '0', '1980-09-23', 'M', 'NULL', 'M', 'connor35@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1261 Deerfield Dr.', 'NULL', '104-555-0115', '2013-06-14', '2-5 Miles'], ['23155', '368', 'AW00023155', 'NULL', 'Victoria', 'N', 'Hall', '0', '1980-04-30', 'M', 'NULL', 'F', 'victoria23@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5494 Roslyn Dr.', 'NULL', '801-555-0169', '2013-06-10', '2-5 Miles'], ['23156', '548', 'AW00023156', 'NULL', 'Samantha', 'J', 'Barnes', '0', '1980-06-03', 'M', 'NULL', 'F', 'samantha28@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4810 Veronica Ct.', 'NULL', '413-555-0191', '2013-06-26', '2-5 Miles'], ['23157', '536', 'AW00023157', 'NULL', 'Valerie', 'C', 'Gao', '0', '1976-11-07', 'M', 'NULL', 'F', 'valerie17@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7459 Oliveria Road', 'NULL', '738-555-0132', '2013-08-15', '2-5 Miles'], ['23158', '627', 'AW00023158', 'NULL', 'Ana', 'L', 'Patterson', '0', '1977-02-07', 'M', 'NULL', 'F', 'ana10@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '2728 River Ash Court', 'NULL', '184-555-0120', '2013-06-24', '0-1 Miles'], ['23159', '300', 'AW00023159', 'NULL', 'Dalton', 'NULL', 'Phillips', '0', '1976-07-01', 'M', 'NULL', 'M', 'dalton40@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5697 Alovera Road', 'NULL', '636-555-0191', '2013-09-24', '2-5 Miles'], ['23160', '302', 'AW00023160', 'NULL', 'Aimee', 'NULL', 'Huang', '0', '1982-01-09', 'M', 'NULL', 'F', 'aimee5@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8452 Green Street', 'NULL', '403-555-0189', '2013-09-17', '2-5 Miles'], ['23161', '339', 'AW00023161', 'NULL', 'Samuel', 'C', 'Scott', '0', '1976-11-07', 'M', 'NULL', 'M', 'samuel46@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7459 Oliveria Road', 'NULL', '302-555-0110', '2013-08-31', '2-5 Miles'], ['23162', '355', 'AW00023162', 'NULL', 'Sarah', 'NULL', 'Flores', '0', '1977-03-05', 'S', 'NULL', 'F', 'sarah37@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9428 Redrock Dr.', 'NULL', '818-555-0169', '2013-09-13', '2-5 Miles'], ['23163', '374', 'AW00023163', 'NULL', 'Madison', 'A', 'Ross', '0', '1977-01-19', 'M', 'NULL', 'F', 'madison39@adventure-works.com', '80000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7379 Rain Drop Circle', 'NULL', '349-555-0182', '2013-09-17', '0-1 Miles'], ['23164', '53', 'AW00023164', 'NULL', 'Kyle', 'NULL', 'Bryant', '0', '1975-06-03', 'S', 'NULL', 'M', 'kyle13@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '6899 Jacqueline Way', 'NULL', '578-555-0154', '2011-08-22', '0-1 Miles'], ['23165', '385', 'AW00023165', 'NULL', 'Natalie', 'M', 'Mitchell', '0', '1980-03-31', 'M', 'NULL', 'F', 'natalie54@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '237 Rock Oak Road', 'NULL', '418-555-0153', '2013-06-13', '2-5 Miles'], ['23166', '326', 'AW00023166', 'NULL', 'Cody', 'NULL', 'Ward', '0', '1979-01-05', 'S', 'NULL', 'M', 'cody4@adventure-works.com', '40000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '3537 Pheasant Circle', 'NULL', '736-555-0194', '2013-06-18', '10+ Miles'], ['23167', '627', 'AW00023167', 'NULL', 'Hailey', 'C', 'Jenkins', '0', '1974-01-03', 'S', 'NULL', 'F', 'hailey28@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7562 Daylight Place', 'NULL', '730-555-0181', '2013-09-22', '2-5 Miles'], ['23168', '552', 'AW00023168', 'NULL', 'Mya', 'J', 'Hayes', '0', '1973-09-13', 'M', 'NULL', 'F', 'mya1@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5375 Blue Ridge', 'NULL', '625-555-0177', '2013-09-02', '2-5 Miles'], ['23169', '609', 'AW00023169', 'NULL', 'Corey', 'T', 'Andersen', '0', '1979-05-04', 'S', 'NULL', 'M', 'corey11@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5725 Glazier Drive', 'NULL', '183-555-0160', '2013-09-22', '2-5 Miles'], ['23170', '301', 'AW00023170', 'NULL', 'Aaron', 'NULL', 'Jai', '0', '1974-03-14', 'S', 'NULL', 'M', 'aaron32@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1683 Colfax Street', 'NULL', '385-555-0145', '2013-09-03', '0-1 Miles'], ['23171', '312', 'AW00023171', 'NULL', 'Ethan', 'NULL', 'Griffin', '0', '1978-12-24', 'M', 'NULL', 'M', 'ethan17@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '8991 Temple Court', 'NULL', '669-555-0149', '2013-05-07', '0-1 Miles'], ['23172', '50', 'AW00023172', 'NULL', 'Alexandra', 'C', 'Thomas', '0', '1981-08-30', 'M', 'NULL', 'F', 'alexandra74@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5841 Westover Dr.', 'NULL', '401-555-0167', '2011-08-03', '2-5 Miles'], ['23173', '627', 'AW00023173', 'NULL', 'Nathan', 'NULL', 'Rodriguez', '0', '1981-09-07', 'S', 'NULL', 'M', 'nathan56@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '1705 Danesta Dr.', 'NULL', '610-555-0135', '2013-06-01', '0-1 Miles'], ['23174', '300', 'AW00023174', 'NULL', 'Gloria', 'A', 'Gonzales', '0', '1975-10-11', 'S', 'NULL', 'F', 'gloria24@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '7262 Pepperidge Way', 'NULL', '540-555-0172', '2013-09-03', '0-1 Miles'], ['23175', '355', 'AW00023175', 'NULL', 'Melanie', 'NULL', 'Flores', '0', '1976-06-11', 'M', 'NULL', 'F', 'melanie28@adventure-works.com', '80000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8914 Jam Way', 'NULL', '157-555-0168', '2013-09-05', '0-1 Miles'], ['23176', '358', 'AW00023176', 'NULL', 'Jesse', 'A', 'Ward', '0', '1972-10-29', 'M', 'NULL', 'M', 'jesse12@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6966 Eaker Way', 'NULL', '579-555-0186', '2013-06-29', '2-5 Miles'], ['23177', '542', 'AW00023177', 'NULL', 'Savannah', 'NULL', 'Richardson', '0', '1978-06-04', 'S', 'NULL', 'F', 'savannah8@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '153 Kenston Dr', 'NULL', '115-555-0196', '2013-06-11', '0-1 Miles'], ['23178', '632', 'AW00023178', 'NULL', 'Dalton', 'NULL', 'Morris', '0', '1972-12-20', 'S', 'NULL', 'M', 'dalton90@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1771 St. Germain Lane', 'NULL', '623-555-0135', '2013-06-21', '0-1 Miles'], ['23179', '632', 'AW00023179', 'NULL', 'Jordan', 'NULL', 'Phillips', '0', '1971-08-22', 'M', 'NULL', 'M', 'jordan60@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2796 Sudan Loop', 'NULL', '871-555-0170', '2013-05-30', '2-5 Miles'], ['23180', '627', 'AW00023180', 'NULL', 'Olivia', 'R', 'Cook', '0', '1971-12-02', 'S', 'NULL', 'F', 'olivia29@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '8358 St. Helena Drive', 'NULL', '193-555-0175', '2013-06-29', '0-1 Miles'], ['23181', '609', 'AW00023181', 'NULL', 'Evan', 'NULL', 'Evans', '0', '1977-09-09', 'S', 'NULL', 'M', 'evan24@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4555 Hackney Lane', 'NULL', '111-555-0168', '2013-07-19', '2-5 Miles'], ['23182', '316', 'AW00023182', 'NULL', 'Savannah', 'NULL', 'Rivera', '0', '1977-08-22', 'M', 'NULL', 'F', 'savannah16@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '5689 Greenwood Place', 'NULL', '804-555-0112', '2014-01-09', '0-1 Miles'], ['23183', '348', 'AW00023183', 'NULL', 'Megan', 'E', 'Davis', '0', '1972-04-14', 'S', 'NULL', 'F', 'megan8@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4998 Tahoe Place', 'NULL', '124-555-0158', '2013-07-04', '2-5 Miles'], ['23184', '339', 'AW00023184', 'NULL', 'Hailey', 'L', 'Carter', '0', '1977-09-09', 'S', 'NULL', 'F', 'hailey51@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', 'Rykestr 2605', 'NULL', '302-555-0198', '2013-05-28', '0-1 Miles'], ['23185', '337', 'AW00023185', 'NULL', 'Fernando', 'NULL', 'Edwards', '0', '1972-01-29', 'M', 'NULL', 'M', 'fernando42@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '302 Camelback Ct.', 'NULL', '382-555-0125', '2013-09-24', '2-5 Miles'], ['23186', '338', 'AW00023186', 'NULL', 'Jordan', 'NULL', 'Young', '0', '1977-12-01', 'M', 'NULL', 'M', 'jordan72@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8342 Mt. Trinity Court', 'NULL', '994-555-0148', '2013-09-28', '2-5 Miles'], ['23187', '611', 'AW00023187', 'NULL', 'Andy', 'C', 'Munoz', '0', '1975-05-10', 'M', 'NULL', 'M', 'andy11@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '872 Patterson Blvd.', 'NULL', '181-555-0143', '2013-09-18', '0-1 Miles'], ['23188', '632', 'AW00023188', 'NULL', 'Austin', 'M', 'Jai', '0', '1980-02-16', 'S', 'NULL', 'M', 'austin29@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '8065 Shakespeare Drive', 'NULL', '578-555-0160', '2013-02-26', '2-5 Miles'], ['23189', '374', 'AW00023189', 'NULL', 'Megan', 'I', 'Moore', '0', '1974-08-25', 'M', 'NULL', 'F', 'megan11@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '4612 Merriewood Drive', 'NULL', '838-555-0114', '2013-09-01', '0-1 Miles'], ['23190', '298', 'AW00023190', 'NULL', 'Nathaniel', 'NULL', 'Ramirez', '0', '1926-09-07', 'S', 'NULL', 'M', 'nathaniel8@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3592 Del Monte Court', 'NULL', '694-555-0175', '2013-11-26', '0-1 Miles'], ['23191', '612', 'AW00023191', 'NULL', 'Gilbert', 'NULL', 'Raji', '0', '1976-11-07', 'S', 'NULL', 'M', 'gilbert41@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1710 Bouncing Road', 'NULL', '502-555-0176', '2013-07-15', '2-5 Miles'], ['23192', '352', 'AW00023192', 'NULL', 'Emily', 'E', 'Garcia', '0', '1970-10-06', 'M', 'NULL', 'F', 'emily17@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '8180 Loveridge Circle', 'NULL', '300-555-0122', '2013-09-05', '0-1 Miles'], ['23193', '607', 'AW00023193', 'NULL', 'Alexis', 'NULL', 'Flores', '0', '1971-03-06', 'M', 'NULL', 'F', 'alexis35@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3936 Diablo View Road', 'NULL', '920-555-0173', '2013-06-25', '2-5 Miles'], ['23194', '314', 'AW00023194', 'NULL', 'Shelby', 'M', 'Cook', '0', '1976-05-10', 'M', 'NULL', 'F', 'shelby21@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8132 Twincreek Ct', 'NULL', '415-555-0121', '2013-11-05', '0-1 Miles'], ['23195', '547', 'AW00023195', 'NULL', 'Xavier', 'D', 'Mohamed', '0', '1971-02-08', 'S', 'NULL', 'M', 'xavier86@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1984 Village Pl.', 'NULL', '827-555-0137', '2013-07-14', '2-5 Miles'], ['23196', '68', 'AW00023196', 'NULL', 'Carlos', 'NULL', 'Roberts', '0', '1982-05-22', 'S', 'NULL', 'M', 'carlos31@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1948 Marcia Dr.', 'NULL', '691-555-0112', '2013-06-06', '0-1 Miles'], ['23197', '338', 'AW00023197', 'NULL', 'Cole', 'W', 'Cook', '0', '1982-05-22', 'M', 'NULL', 'M', 'cole22@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7165 Foothill Way', 'NULL', '757-555-0155', '2013-07-30', '2-5 Miles'], ['23198', '536', 'AW00023198', 'NULL', 'Jacqueline', 'L', 'Sanders', '0', '1971-03-09', 'S', 'NULL', 'F', 'jacqueline27@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '457 Longbrook Way', 'NULL', '526-555-0114', '2013-04-01', '0-1 Miles'], ['23199', '644', 'AW00023199', 'NULL', 'Brandon', 'NULL', 'Hayes', '0', '1982-05-21', 'M', 'NULL', 'M', 'brandon19@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1828, avenue de l´Europe', 'NULL', '872-555-0124', '2013-07-16', '2-5 Miles'], ['23200', '618', 'AW00023200', 'NULL', 'Grace', 'C', 'Rodriguez', '0', '1971-02-08', 'M', 'NULL', 'F', 'grace19@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6984 Wardlow Lane', 'NULL', '158-555-0136', '2013-06-06', '0-1 Miles'], ['23201', '336', 'AW00023201', 'NULL', 'Alyssa', 'L', 'Butler', '0', '1976-07-05', 'S', 'NULL', 'F', 'alyssa60@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1796 Westbury Dr.', 'NULL', '253-555-0112', '2013-08-13', '0-1 Miles'], ['23202', '609', 'AW00023202', 'NULL', 'Terrance', 'G', 'Chandra', '0', '1971-05-17', 'M', 'NULL', 'M', 'terrance2@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6721 Baldwin Dr', 'NULL', '299-555-0171', '2013-11-04', '10+ Miles'], ['23203', '635', 'AW00023203', 'NULL', 'Dalton', 'NULL', 'Jenkins', '0', '1970-09-30', 'S', 'NULL', 'M', 'dalton52@adventure-works.com', '50000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '7779 Mt. Hood Circle', 'NULL', '556-555-0131', '2013-10-24', '0-1 Miles'], ['23204', '641', 'AW00023204', 'NULL', 'Katherine', 'C', 'Mitchell', '0', '1970-01-19', 'S', 'NULL', 'F', 'katherine59@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3014 Roanwood Way', 'NULL', '301-555-0157', '2013-07-27', '0-1 Miles'], ['23205', '301', 'AW00023205', 'NULL', 'Katherine', 'NULL', 'Sanders', '0', '1975-08-22', 'S', 'NULL', 'F', 'katherine24@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5205 Sunview Terrace', 'NULL', '942-555-0165', '2013-05-09', '2-5 Miles'], ['23206', '383', 'AW00023206', 'NULL', 'Jackson', 'E', 'Lal', '0', '1980-10-10', 'S', 'NULL', 'M', 'jackson2@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3146 Cougar Way', 'NULL', '336-555-0171', '2013-08-04', '2-5 Miles'], ['23207', '383', 'AW00023207', 'NULL', 'Dalton', 'B', 'Baker', '0', '1970-01-10', 'M', 'NULL', 'M', 'dalton32@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '570 Guerrero', 'NULL', '305-555-0198', '2013-08-07', '10+ Miles'], ['23208', '70', 'AW00023208', 'NULL', 'Janet', 'S', 'Watson', '0', '1935-07-03', 'S', 'NULL', 'F', 'janet28@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '3847 Larch Ct', 'NULL', '579-555-0139', '2013-08-01', '2-5 Miles'], ['23209', '62', 'AW00023209', 'NULL', 'Lucas', 'A', 'Lewis', '0', '1975-06-01', 'S', 'NULL', 'M', 'lucas35@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5531 Fremont Street', 'NULL', '810-555-0171', '2011-08-10', '2-5 Miles'], ['23210', '311', 'AW00023210', 'NULL', 'Timothy', 'K', 'Gray', '0', '1969-05-22', 'M', 'NULL', 'M', 'timothy7@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '861 Meadowvale Court', 'NULL', '540-555-0165', '2013-10-22', '2-5 Miles'], ['23211', '536', 'AW00023211', 'NULL', 'Rebekah', 'E', 'Kovár', '0', '1968-11-10', 'M', 'NULL', 'F', 'rebekah4@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '6345 Fox Way', 'NULL', '541-555-0114', '2013-10-13', '2-5 Miles'], ['23212', '322', 'AW00023212', 'NULL', 'James', 'W', 'Jones', '0', '1979-04-13', 'S', 'NULL', 'M', 'james78@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1141 Hale Court', 'NULL', '145-555-0141', '2013-11-23', '0-1 Miles'], ['23213', '337', 'AW00023213', 'NULL', 'Noah', 'NULL', 'Green', '0', '1973-08-14', 'S', 'NULL', 'M', 'noah40@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1825 Village Pl.', 'NULL', '335-555-0173', '2013-10-22', '2-5 Miles'], ['23214', '335', 'AW00023214', 'NULL', 'Kaylee', 'W', 'James', '0', '1974-11-17', 'M', 'NULL', 'F', 'kaylee5@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '6781 San Jose Ave', 'NULL', '863-555-0157', '2013-10-19', '2-5 Miles'], ['23215', '358', 'AW00023215', 'NULL', 'Juan', 'C', 'Richardson', '0', '1974-10-13', 'M', 'NULL', 'M', 'juan19@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '1754 D Mt. Hood Circle', 'NULL', '823-555-0147', '2013-09-23', '0-1 Miles'], ['23216', '385', 'AW00023216', 'NULL', 'Kevin', 'C', 'Hall', '0', '1968-09-03', 'S', 'NULL', 'M', 'kevin59@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '3879 Longview Rd.', 'NULL', '626-555-0123', '2013-07-28', '0-1 Miles'], ['23217', '352', 'AW00023217', 'NULL', 'Michelle', 'C', 'Morgan', '0', '1968-08-19', 'S', 'NULL', 'F', 'michelle22@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5617 Spice Terrace', 'NULL', '507-555-0140', '2013-07-03', '2-5 Miles'], ['23218', '121', 'AW00023218', 'NULL', 'Alisha', 'NULL', 'Gao', '0', '1983-11-22', 'S', 'NULL', 'F', 'alisha15@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Hüttenstr 1295', 'NULL', '1 (11) 500 555-0172', '2013-12-15', '2-5 Miles'], ['23219', '234', 'AW00023219', 'Mrs.', 'Alyssa', 'NULL', 'West', '0', '1979-07-26', 'S', 'NULL', 'F', 'alyssa59@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '301 Sandy Ln.', 'NULL', '1 (11) 500 555-0193', '2013-04-24', '1-2 Miles'], ['23220', '242', 'AW00023220', 'NULL', 'Roy', 'P', 'Malhotra', '0', '1978-12-24', 'S', 'NULL', 'M', 'roy5@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '4341 Ceemar Court', 'NULL', '1 (11) 500 555-0160', '2013-03-26', '1-2 Miles'], ['23221', '173', 'AW00023221', 'NULL', 'Leonard', 'C', 'Rai', '0', '1983-05-25', 'S', 'NULL', 'M', 'leonard19@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Postfach 66 00 77', 'NULL', '1 (11) 500 555-0187', '2013-07-13', '1-2 Miles'], ['23222', '184', 'AW00023222', 'NULL', 'Kristen', 'A', 'Wu', '0', '1984-03-20', 'S', 'NULL', 'F', 'kristen6@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '131, boulevard Beau Marchais', 'NULL', '1 (11) 500 555-0194', '2013-09-29', '2-5 Miles'], ['23223', '237', 'AW00023223', 'NULL', 'Angel', 'A', 'Howard', '0', '1984-03-20', 'M', 'NULL', 'M', 'angel11@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5334 Mcneil Pl.', 'NULL', '1 (11) 500 555-0111', '2013-02-15', '1-2 Miles'], ['23224', '243', 'AW00023224', 'NULL', 'Jonathan', 'NULL', 'Scott', '0', '1978-07-22', 'M', 'NULL', 'M', 'jonathan44@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '584 Shenandoah Dr.', 'NULL', '1 (11) 500 555-0125', '2013-02-02', '1-2 Miles'], ['23225', '272', 'AW00023225', 'NULL', 'Heidi', 'R', 'Patel', '0', '1979-03-02', 'S', 'NULL', 'F', 'heidi5@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8947 St. George Dr.', 'NULL', '1 (11) 500 555-0131', '2013-02-08', '1-2 Miles'], ['23226', '127', 'AW00023226', 'NULL', 'Leonard', 'M', 'Xie', '0', '1983-09-13', 'S', 'NULL', 'M', 'leonard4@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Conesweg 1', 'NULL', '1 (11) 500 555-0174', '2013-07-15', '2-5 Miles'], ['23227', '207', 'AW00023227', 'NULL', 'Anne', 'NULL', 'Alonso', '0', '1978-06-22', 'S', 'NULL', 'F', 'anne9@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '8022, rue Lauriston', 'NULL', '1 (11) 500 555-0144', '2013-09-30', '2-5 Miles'], ['23228', '123', 'AW00023228', 'NULL', 'Candice', 'NULL', 'Guo', '0', '1977-03-25', 'S', 'NULL', 'F', 'candice1@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Auf den Kuhlen Straße 79', 'NULL', '1 (11) 500 555-0166', '2013-03-31', '0-1 Miles'], ['23229', '155', 'AW00023229', 'NULL', 'Deborah', 'W', 'Raje', '0', '1982-10-07', 'S', 'NULL', 'F', 'deborah18@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Hüttenstr 9005', 'NULL', '1 (11) 500 555-0157', '2013-10-08', '1-2 Miles'], ['23230', '273', 'AW00023230', 'NULL', 'Mya', 'M', 'Foster', '0', '1976-08-30', 'S', 'NULL', 'F', 'mya16@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '4167 Whitehall Drive', 'NULL', '1 (11) 500 555-0116', '2013-03-27', '2-5 Miles'], ['23231', '184', 'AW00023231', 'NULL', 'Dylan', 'H', 'Moore', '0', '1976-09-01', 'S', 'NULL', 'M', 'dylan35@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '7, place de Brazaville', 'NULL', '1 (11) 500 555-0166', '2013-10-09', '2-5 Miles'], ['23232', '252', 'AW00023232', 'NULL', 'Frank', 'NULL', 'Serrano', '0', '1976-08-15', 'S', 'NULL', 'M', 'frank24@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6745 Salem St', 'NULL', '1 (11) 500 555-0155', '2013-04-06', '2-5 Miles'], ['23233', '134', 'AW00023233', 'NULL', 'Bradley', 'NULL', 'Sharma', '0', '1977-05-14', 'S', 'NULL', 'M', 'bradley12@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Am Gallberg 987', 'NULL', '1 (11) 500 555-0172', '2013-12-26', '1-2 Miles'], ['23234', '150', 'AW00023234', 'NULL', 'Brent', 'R', 'Lu', '0', '1977-03-31', 'S', 'NULL', 'M', 'brent11@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Celler Weg 9492', 'NULL', '1 (11) 500 555-0124', '2012-12-30', '1-2 Miles'], ['23235', '246', 'AW00023235', 'NULL', 'Cedric', 'NULL', 'Pal', '0', '1976-12-15', 'S', 'NULL', 'M', 'cedric32@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7499 Yolanda Circle', 'NULL', '1 (11) 500 555-0180', '2013-02-04', '1-2 Miles'], ['23236', '279', 'AW00023236', 'NULL', 'Nichole', 'NULL', 'Kumar', '0', '1976-07-01', 'S', 'NULL', 'F', 'nichole7@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5697 Alovera Road', 'NULL', '1 (11) 500 555-0167', '2013-08-28', '1-2 Miles'], ['23237', '133', 'AW00023237', 'NULL', 'Caleb', 'C', 'Young', '0', '1976-06-25', 'S', 'NULL', 'M', 'caleb46@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Helsenbergbogen 2', 'NULL', '1 (11) 500 555-0192', '2013-02-22', '1-2 Miles'], ['23238', '301', 'AW00023238', 'NULL', 'Thomas', 'A', 'Lee', '0', '1981-02-20', 'S', 'NULL', 'M', 'thomas80@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3475 Deercreek Ln.', 'NULL', '808-555-0120', '2013-07-08', '1-2 Miles'], ['23239', '299', 'AW00023239', 'NULL', 'Curtis', 'O', 'Wu', '0', '1979-11-16', 'S', 'NULL', 'M', 'curtis6@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1956 Sequoia Dr.', 'NULL', '500-555-0136', '2013-07-14', '1-2 Miles'], ['23240', '611', 'AW00023240', 'NULL', 'Phillip', 'NULL', 'Chapman', '0', '1979-12-23', 'S', 'NULL', 'M', 'phillip3@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9038 Mt. View Avenue', 'NULL', '632-555-0118', '2013-09-26', '0-1 Miles'], ['23241', '611', 'AW00023241', 'NULL', 'Armando', 'NULL', 'Torres', '0', '1980-04-18', 'S', 'NULL', 'M', 'armando12@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3346 Larkwood Ct.', 'NULL', '214-555-0171', '2013-06-13', '0-1 Miles'], ['23242', '611', 'AW00023242', 'NULL', 'Andrew', 'J', 'Garcia', '0', '1980-04-02', 'S', 'NULL', 'M', 'andrew23@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4598 Manila Avenue', 'NULL', '959-555-0198', '2013-07-19', '1-2 Miles'], ['23243', '548', 'AW00023243', 'NULL', 'Jasmine', 'K', 'Rogers', '0', '1936-04-18', 'M', 'NULL', 'F', 'jasmine23@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6441 Roberta Avenue', 'NULL', '226-555-0120', '2014-01-04', '0-1 Miles'], ['23244', '64', 'AW00023244', 'NULL', 'Alexandra', 'E', 'Wagner', '0', '1971-12-05', 'S', 'NULL', 'F', 'alexandra16@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '9312 Corte Del Sol', 'NULL', '649-555-0121', '2013-05-13', '0-1 Miles'], ['23245', '68', 'AW00023245', 'NULL', 'Morgan', 'E', 'James', '0', '1977-09-13', 'S', 'NULL', 'F', 'morgan65@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '7535 Roanoke Drive', 'NULL', '302-555-0112', '2013-06-22', '0-1 Miles'], ['23246', '607', 'AW00023246', 'NULL', 'Renee', 'L', 'Gill', '0', '1972-02-01', 'S', 'NULL', 'F', 'renee13@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '6040 Lislin Ct', 'NULL', '680-555-0146', '2013-08-16', '0-1 Miles'], ['23247', '300', 'AW00023247', 'NULL', 'Alexander', 'NULL', 'Garcia', '0', '1971-11-18', 'S', 'NULL', 'M', 'alexander20@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '4914 Clayton Rd.', 'NULL', '764-555-0134', '2013-11-11', '0-1 Miles'], ['23248', '635', 'AW00023248', 'NULL', 'Bailey', 'D', 'Peterson', '0', '1958-10-23', 'M', 'NULL', 'F', 'bailey3@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '3965 Stony Hill Circle', 'NULL', '618-555-0112', '2013-09-18', '1-2 Miles'], ['23249', '611', 'AW00023249', 'NULL', 'Tasha', 'NULL', 'Nara', '0', '1964-08-13', 'S', 'NULL', 'F', 'tasha17@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '5454 Old Mt. View Drive', 'NULL', '955-555-0114', '2013-02-03', '1-2 Miles'], ['23250', '626', 'AW00023250', 'NULL', 'Ashley', 'D', 'Lee', '0', '1958-10-12', 'M', 'NULL', 'F', 'ashley23@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '9597 Kirker Pass', 'NULL', '163-555-0198', '2013-09-24', '1-2 Miles'], ['23251', '637', 'AW00023251', 'NULL', 'Evan', 'C', 'Scott', '0', '1959-02-03', 'M', 'NULL', 'M', 'evan40@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '1386 Calle Verde', 'NULL', '242-555-0127', '2013-03-17', '0-1 Miles'], ['23252', '348', 'AW00023252', 'NULL', 'Alexia', 'NULL', 'Wood', '0', '1958-12-18', 'S', 'NULL', 'F', 'alexia2@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '3869 Creed Ave', 'NULL', '754-555-0159', '2013-02-17', '0-1 Miles'], ['23253', '64', 'AW00023253', 'NULL', 'Brooke', 'H', 'Bell', '0', '1959-01-18', 'S', 'NULL', 'F', 'brooke12@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '5396 Hacienda', 'NULL', '820-555-0152', '2013-07-09', '1-2 Miles'], ['23254', '307', 'AW00023254', 'NULL', 'Jack', 'A', 'Gonzalez', '0', '1959-03-24', 'S', 'NULL', 'M', 'jack44@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '7199 Natalie Drive', 'NULL', '761-555-0148', '2013-02-23', '1-2 Miles'], ['23255', '51', 'AW00023255', 'NULL', 'Xavier', 'R', 'Johnson', '0', '1971-05-03', 'S', 'NULL', 'M', 'xavier1@adventure-works.com', '20000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '2403 Riverwood Circle', 'NULL', '146-555-0117', '2013-02-22', '0-1 Miles'], ['23256', '298', 'AW00023256', 'NULL', 'Mario', 'P', 'Chande', '0', '1960-02-01', 'S', 'NULL', 'M', 'mario13@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '1', '3243 Juniper Dr.', 'NULL', '587-555-0114', '2013-09-20', '5-10 Miles'], ['23257', '322', 'AW00023257', 'NULL', 'Charles', 'F', 'Stewart', '0', '1959-11-23', 'M', 'NULL', 'M', 'charles70@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9680 Huston Road', 'NULL', '455-555-0134', '2013-07-13', '1-2 Miles'], ['23258', '374', 'AW00023258', 'NULL', 'Megan', 'S', 'Watson', '0', '1960-07-15', 'S', 'NULL', 'F', 'megan46@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '2', '8624 Pepperidge Way', 'NULL', '644-555-0167', '2013-06-22', '1-2 Miles'], ['23259', '632', 'AW00023259', 'NULL', 'John', 'NULL', 'Taylor', '0', '1961-04-10', 'M', 'NULL', 'M', 'john46@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '2', '8067 Sun View Terr.', 'NULL', '988-555-0156', '2013-11-10', '1-2 Miles'], ['23260', '536', 'AW00023260', 'NULL', 'Edwin', 'NULL', 'Goel', '0', '1960-08-07', 'M', 'NULL', 'M', 'edwin42@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5816 Camacho', 'NULL', '766-555-0115', '2013-10-23', '1-2 Miles'], ['23261', '618', 'AW00023261', 'NULL', 'Jada', 'NULL', 'Peterson', '0', '1960-10-16', 'S', 'NULL', 'F', 'jada2@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '2', '201 Bush Avenue', 'NULL', '682-555-0187', '2013-07-10', '1-2 Miles'], ['23262', '539', 'AW00023262', 'NULL', 'Sydney', 'NULL', 'Kelly', '0', '1960-09-18', 'S', 'NULL', 'F', 'sydney21@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9652 Steven Drive', 'NULL', '484-555-0136', '2013-10-13', '0-1 Miles'], ['23263', '612', 'AW00023263', 'NULL', 'Angel', 'NULL', 'Lopez', '0', '1966-12-23', 'S', 'NULL', 'M', 'angel35@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6393 Tuolumne Way', 'NULL', '375-555-0192', '2013-08-15', '0-1 Miles'], ['23264', '609', 'AW00023264', 'NULL', 'Warren', 'NULL', 'Hu', '0', '1966-09-30', 'M', 'NULL', 'M', 'warren33@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3657 Greystone Dr.', 'NULL', '301-555-0111', '2013-07-21', '1-2 Miles'], ['23265', '616', 'AW00023265', 'NULL', 'Savannah', 'NULL', 'James', '0', '1960-12-03', 'M', 'NULL', 'F', 'savannah6@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1614 Green St', 'NULL', '797-555-0116', '2013-07-04', '1-2 Miles'], ['23266', '631', 'AW00023266', 'NULL', 'Jessica', 'NULL', 'Watson', '0', '1961-05-26', 'M', 'NULL', 'F', 'jessica21@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4176 Alexander Pl', 'NULL', '141-555-0141', '2013-07-13', '1-2 Miles'], ['23267', '49', 'AW00023267', 'NULL', 'Juan', 'NULL', 'James', '0', '1966-04-09', 'M', 'NULL', 'M', 'juan9@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9221 Dutch Slough Rd.', 'NULL', '734-555-0118', '2011-08-24', '1-2 Miles'], ['23268', '352', 'AW00023268', 'NULL', 'Katelyn', 'E', 'Morris', '0', '1961-06-23', 'M', 'NULL', 'F', 'katelyn18@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '6155 Buckthorn Court', 'NULL', '740-555-0170', '2013-07-21', '0-1 Miles'], ['23269', '316', 'AW00023269', 'NULL', 'Taylor', 'E', 'Griffin', '0', '1961-12-21', 'M', 'NULL', 'F', 'taylor45@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8036 Summit View Dr.', 'NULL', '134-555-0165', '2013-07-27', '1-2 Miles'], ['23270', '314', 'AW00023270', 'NULL', 'Anna', 'R', 'Anderson', '0', '1973-03-12', 'M', 'NULL', 'F', 'anna70@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7800 Olivera Rd.', 'NULL', '344-555-0112', '2013-08-02', '1-2 Miles'], ['23271', '300', 'AW00023271', 'NULL', 'Alexandra', 'R', 'Clark', '0', '1963-02-23', 'M', 'NULL', 'F', 'alexandra83@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7128 Paris Lane', 'NULL', '154-555-0177', '2013-08-08', '0-1 Miles'], ['23272', '337', 'AW00023272', 'NULL', 'Tristan', 'E', 'Hayes', '0', '1968-05-08', 'M', 'NULL', 'M', 'tristan22@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1568 Skyline Dr.', 'NULL', '101-555-0173', '2013-03-22', '1-2 Miles'], ['23273', '642', 'AW00023273', 'NULL', 'Benjamin', 'C', 'Long', '0', '1962-12-04', 'M', 'NULL', 'M', 'benjamin10@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1185 Laguna St', 'NULL', '255-555-0162', '2014-01-27', '1-2 Miles'], ['23274', '637', 'AW00023274', 'NULL', 'Ethan', 'C', 'Jackson', '0', '1968-10-12', 'M', 'NULL', 'M', 'ethan45@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3575 Chisholm Way', 'NULL', '576-555-0139', '2013-02-27', '1-2 Miles'], ['23275', '338', 'AW00023275', 'NULL', 'Miguel', 'S', 'Jackson', '0', '1962-12-03', 'M', 'NULL', 'M', 'miguel11@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4720 Black Pine Lane', 'NULL', '445-555-0139', '2013-11-06', '1-2 Miles'], ['23276', '298', 'AW00023276', 'NULL', 'Vincent', 'A', 'Zhou', '0', '1963-04-07', 'M', 'NULL', 'M', 'vincent8@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6322 Springwood Way', 'NULL', '316-555-0117', '2013-07-11', '1-2 Miles'], ['23277', '355', 'AW00023277', 'NULL', 'Isaiah', 'E', 'Torres', '0', '1962-08-24', 'M', 'NULL', 'M', 'isaiah3@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5165 Halfmoon Court', 'NULL', '622-555-0119', '2013-02-04', '1-2 Miles'], ['23278', '312', 'AW00023278', 'NULL', 'Chloe', 'F', 'Flores', '0', '1962-10-10', 'S', 'NULL', 'F', 'chloe79@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7620 Del Vista', 'NULL', '185-555-0196', '2013-06-14', '0-1 Miles'], ['23279', '62', 'AW00023279', 'NULL', 'Edward', 'H', 'Johnson', '0', '1962-12-17', 'S', 'NULL', 'M', 'edward23@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8964 Sanford St', 'NULL', '285-555-0134', '2013-10-28', '0-1 Miles'], ['23280', '546', 'AW00023280', 'NULL', 'Hannah', 'A', 'Alexander', '0', '1968-11-05', 'M', 'NULL', 'F', 'hannah40@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8240 Leonard Dr.', 'NULL', '511-555-0157', '2013-05-07', '1-2 Miles'], ['23281', '66', 'AW00023281', 'NULL', 'Megan', 'NULL', 'Harris', '0', '1963-02-22', 'M', 'NULL', 'F', 'megan16@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5039 Keywood Ct.', 'NULL', '751-555-0114', '2011-09-28', '1-2 Miles'], ['23282', '545', 'AW00023282', 'NULL', 'Ariana', 'NULL', 'James', '0', '1963-06-01', 'M', 'NULL', 'F', 'ariana7@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '1909 N Jackson Way', 'NULL', '695-555-0129', '2013-05-01', '0-1 Miles'], ['23283', '62', 'AW00023283', 'NULL', 'Haley', 'W', 'Torres', '0', '1969-12-20', 'S', 'NULL', 'F', 'haley14@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9275 Keller Ridge Dr.', 'NULL', '175-555-0194', '2011-09-13', '1-2 Miles'], ['23284', '53', 'AW00023284', 'NULL', 'Wyatt', 'M', 'Coleman', '0', '1980-10-14', 'S', 'NULL', 'M', 'wyatt57@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '4496 Stroer Lane', 'NULL', '518-555-0197', '2013-07-23', '0-1 Miles'], ['23285', '611', 'AW00023285', 'NULL', 'Latoya', 'D', 'Luo', '0', '1964-03-04', 'S', 'NULL', 'F', 'latoya5@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '1276 Carlisle Way', 'NULL', '835-555-0145', '2014-01-17', '0-1 Miles'], ['23286', '355', 'AW00023286', 'NULL', 'Taylor', 'G', 'Bell', '0', '1969-01-06', 'M', 'NULL', 'F', 'taylor7@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8892 Oak Grove Road', 'NULL', '394-555-0112', '2013-07-17', '1-2 Miles'], ['23287', '326', 'AW00023287', 'NULL', 'Juan', 'N', 'Kelly', '0', '1965-03-03', 'S', 'NULL', 'M', 'juan12@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '4018 Fountain Road', 'NULL', '152-555-0189', '2013-08-01', '1-2 Miles'], ['23288', '348', 'AW00023288', 'NULL', 'Eduardo', 'NULL', 'Evans', '0', '1970-03-07', 'S', 'NULL', 'M', 'eduardo42@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4236 Malibu Place', 'NULL', '816-555-0191', '2013-08-02', '1-2 Miles'], ['23289', '553', 'AW00023289', 'NULL', 'Justin', 'A', 'Robinson', '0', '1965-05-15', 'M', 'NULL', 'M', 'justin46@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8664 Lakeview Place', 'NULL', '412-555-0193', '2013-02-13', '1-2 Miles'], ['23290', '49', 'AW00023290', 'NULL', 'Angelica', 'L', 'Bennett', '0', '1970-05-02', 'M', 'NULL', 'F', 'angelica0@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5578 Burning Barn Dr', 'NULL', '868-555-0191', '2014-01-11', '1-2 Miles'], ['23291', '545', 'AW00023291', 'NULL', 'Timothy', 'NULL', 'Evans', '0', '1965-06-18', 'M', 'NULL', 'M', 'timothy25@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '323 Choctaw Court', 'NULL', '639-555-0117', '2014-01-22', '1-2 Miles'], ['23292', '623', 'AW00023292', 'NULL', 'Jose', 'J', 'Russell', '0', '1970-11-09', 'S', 'NULL', 'M', 'jose14@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '6692 Bluefish Lane', 'NULL', '792-555-0115', '2013-07-30', '0-1 Miles'], ['23293', '385', 'AW00023293', 'NULL', 'Kaylee', 'NULL', 'Peterson', '0', '1964-09-12', 'S', 'NULL', 'F', 'kaylee3@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '7597 Orchard View Ave', 'NULL', '692-555-0146', '2013-09-01', '0-1 Miles'], ['23294', '609', 'AW00023294', 'NULL', 'Suzanne', 'R', 'Chen', '0', '1964-10-14', 'M', 'NULL', 'F', 'suzanne3@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8212 String Dr', 'NULL', '570-555-0140', '2013-06-01', '1-2 Miles'], ['23295', '298', 'AW00023295', 'NULL', 'Jaime', 'M', 'Torres', '0', '1965-02-12', 'S', 'NULL', 'F', 'jaime13@adventure-works.com', '60000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '8213 Driving Dr', 'NULL', '364-555-0113', '2013-09-13', '0-1 Miles'], ['23296', '298', 'AW00023296', 'NULL', 'Molly', 'C', 'Mehta', '0', '1978-06-14', 'S', 'NULL', 'F', 'molly13@adventure-works.com', '40000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3986 Liana Lane', 'NULL', '156-555-0191', '2013-08-22', '1-2 Miles'], ['23297', '300', 'AW00023297', 'NULL', 'Tyrone', 'C', 'Gomez', '0', '1977-07-06', 'S', 'NULL', 'M', 'tyrone0@adventure-works.com', '40000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '4215 Arleda Lane', 'NULL', '365-555-0193', '2013-09-03', '0-1 Miles'], ['23298', '623', 'AW00023298', 'NULL', 'Robert', 'L', 'Martinez', '0', '1979-04-13', 'S', 'NULL', 'M', 'robert77@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '9856 Gonzalez Ct.', 'NULL', '302-555-0121', '2013-09-16', '0-1 Miles'], ['23299', '609', 'AW00023299', 'NULL', 'Kristy', 'E', 'Jimenez', '0', '1979-05-17', 'M', 'NULL', 'F', 'kristy6@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '1143 Julpum Loop', 'NULL', '168-555-0112', '2013-02-26', '1-2 Miles'], ['23300', '642', 'AW00023300', 'NULL', 'Julia', 'L', 'Henderson', '0', '1974-02-01', 'S', 'NULL', 'F', 'julia71@adventure-works.com', '100000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '3342 Sea Point Way', 'NULL', '193-555-0199', '2013-04-18', '1-2 Miles'], ['23301', '301', 'AW00023301', 'NULL', 'Noah', 'A', 'Anderson', '0', '1974-01-23', 'M', 'NULL', 'M', 'noah50@adventure-works.com', '120000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '4164 Whitehall Drive', 'NULL', '247-555-0120', '2013-12-16', '2-5 Miles'], ['23302', '632', 'AW00023302', 'NULL', 'Fernando', 'R', 'Walker', '0', '1984-12-13', 'S', 'NULL', 'M', 'fernando21@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2265 Park Glen Court', 'NULL', '218-555-0189', '2013-08-18', '1-2 Miles'], ['23303', '547', 'AW00023303', 'NULL', 'Connor', 'C', 'Lal', '0', '1984-07-10', 'M', 'NULL', 'M', 'connor24@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6513 Beauer Lane', 'NULL', '816-555-0151', '2013-10-24', '5-10 Miles'], ['23304', '325', 'AW00023304', 'NULL', 'Jordan', 'M', 'Simmons', '0', '1984-09-15', 'S', 'NULL', 'M', 'jordan12@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5267 Mt. Tri-state Court', 'NULL', '143-555-0141', '2013-09-29', '5-10 Miles'], ['23305', '25', 'AW00023305', 'NULL', 'Robyn', 'P', 'Dominguez', '0', '1950-03-10', 'M', 'NULL', 'F', 'robyn10@adventure-works.com', '10000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9988 Belmont', 'NULL', '1 (11) 500 555-0189', '2013-05-04', '5-10 Miles'], ['23306', '43', 'AW00023306', 'NULL', 'Byron', 'NULL', 'Ortega', '0', '1984-04-24', 'S', 'NULL', 'M', 'byron16@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9123 James Donlon Blvd', 'NULL', '853-555-0167', '2011-09-07', '1-2 Miles'], ['23307', '9', 'AW00023307', 'NULL', 'Meredith', 'A', 'Ramos', '0', '1952-11-29', 'M', 'NULL', 'F', 'meredith41@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4947 Noah Court', 'NULL', '1 (11) 500 555-0198', '2013-05-11', '5-10 Miles'], ['23308', '19', 'AW00023308', 'NULL', 'Madison', 'R', 'Perry', '0', '1956-11-04', 'M', 'NULL', 'F', 'madison43@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9943 Northwood Drive', 'NULL', '1 (11) 500 555-0129', '2013-12-08', '1-2 Miles'], ['23309', '17', 'AW00023309', 'NULL', 'Latoya', 'M', 'Chande', '0', '1952-01-14', 'M', 'NULL', 'F', 'latoya13@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7760 Woodbury Pl.', 'NULL', '1 (11) 500 555-0153', '2013-03-11', '5-10 Miles'], ['23310', '32', 'AW00023310', 'NULL', 'Sydney', 'NULL', 'Wood', '0', '1957-08-11', 'M', 'NULL', 'F', 'sydney24@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '3971 Confir Court', 'NULL', '1 (11) 500 555-0141', '2012-07-20', '1-2 Miles'], ['23311', '29', 'AW00023311', 'NULL', 'Veronica', 'C', 'Gonzalez', '0', '1952-01-09', 'M', 'NULL', 'F', 'veronica20@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8518 Bayberry Dr.', 'NULL', '1 (11) 500 555-0162', '2012-07-05', '5-10 Miles'], ['23312', '25', 'AW00023312', 'NULL', 'Sheena', 'NULL', 'Lal', '0', '1952-10-31', 'S', 'NULL', 'F', 'sheena7@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5333 D St.', 'NULL', '1 (11) 500 555-0194', '2013-09-06', '1-2 Miles'], ['23313', '10', 'AW00023313', 'NULL', 'Corey', 'H', 'Lal', '0', '1953-06-11', 'M', 'NULL', 'M', 'corey8@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9161 Viking Drive', 'NULL', '1 (11) 500 555-0194', '2012-07-12', '5-10 Miles'], ['23314', '38', 'AW00023314', 'NULL', 'Alfredo', 'C', 'Munoz', '0', '1969-12-18', 'M', 'NULL', 'M', 'alfredo8@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7188 Viewpoint Ct', 'NULL', '1 (11) 500 555-0126', '2012-07-09', '1-2 Miles'], ['23315', '38', 'AW00023315', 'NULL', 'Carmen', 'R', 'Chandra', '0', '1952-12-20', 'M', 'NULL', 'F', 'carmen6@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '8537 Bayview Circle', 'NULL', '1 (11) 500 555-0190', '2013-10-27', '5-10 Miles'], ['23316', '20', 'AW00023316', 'NULL', 'Billy', 'NULL', 'Blanco', '0', '1953-02-02', 'S', 'NULL', 'M', 'billy16@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3658 Belmont', 'NULL', '1 (11) 500 555-0111', '2012-07-09', '1-2 Miles'], ['23317', '31', 'AW00023317', 'NULL', 'Beth', 'K', 'Martin', '0', '1954-05-14', 'M', 'NULL', 'F', 'beth2@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3229 Pembroke Dr.', 'NULL', '1 (11) 500 555-0164', '2013-09-20', '5-10 Miles'], ['23318', '335', 'AW00023318', 'NULL', 'Patrick', 'A', 'Morgan', '0', '1984-04-01', 'S', 'NULL', 'M', 'patrick18@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3391 Paso Del Rio Court', 'NULL', '730-555-0119', '2013-08-03', '5-10 Miles'], ['23319', '368', 'AW00023319', 'NULL', 'Luis', 'NULL', 'Green', '0', '1984-04-10', 'M', 'NULL', 'M', 'luis47@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2119 Chisholm Way', 'NULL', '492-555-0160', '2013-10-12', '5-10 Miles'], ['23320', '18', 'AW00023320', 'NULL', 'Kendra', 'J', 'Gomez', '0', '1954-12-15', 'M', 'NULL', 'F', 'kendra1@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4008 Tosca Way', 'NULL', '1 (11) 500 555-0183', '2012-07-21', '5-10 Miles'], ['23321', '35', 'AW00023321', 'NULL', 'Karl', 'NULL', 'Xu', '0', '1955-12-24', 'M', 'NULL', 'M', 'karl5@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '8093 Landing Court', 'NULL', '1 (11) 500 555-0178', '2012-07-30', '1-2 Miles'], ['23322', '31', 'AW00023322', 'NULL', 'Wesley', 'NULL', 'Li', '0', '1961-06-17', 'M', 'NULL', 'M', 'wesley3@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3114 Arlington Way', 'NULL', '1 (11) 500 555-0125', '2012-07-22', '5-10 Miles'], ['23323', '16', 'AW00023323', 'NULL', 'Alfredo', 'T', 'Alonso', '0', '1956-03-26', 'M', 'NULL', 'M', 'alfredo9@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4385 Claudia Dr.', 'NULL', '1 (11) 500 555-0113', '2012-07-25', '1-2 Miles'], ['23324', '37', 'AW00023324', 'NULL', 'Deborah', 'NULL', 'Deng', '0', '1957-01-06', 'M', 'NULL', 'F', 'deborah5@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9005 Garland Drive', 'NULL', '1 (11) 500 555-0163', '2012-07-10', '1-2 Miles'], ['23325', '34', 'AW00023325', 'NULL', 'Tiffany', 'E', 'Zimmerman', '0', '1956-08-21', 'M', 'NULL', 'F', 'tiffany20@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4701 Mt. Dell Drive', 'NULL', '1 (11) 500 555-0124', '2012-07-25', '5-10 Miles'], ['23326', '298', 'AW00023326', 'NULL', 'Tiffany', 'K', 'Ye', '0', '1986-01-19', 'S', 'NULL', 'F', 'tiffany9@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9069 Muir Road', 'NULL', '175-555-0153', '2013-08-18', '5-10 Miles'], ['23327', '314', 'AW00023327', 'NULL', 'Madison', 'NULL', 'Moore', '0', '1985-12-01', 'S', 'NULL', 'F', 'madison8@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '841 Meadowbrook', 'NULL', '230-555-0155', '2013-10-03', '1-2 Miles'], ['23328', '316', 'AW00023328', 'NULL', 'Julian', 'L', 'Butler', '0', '1985-10-02', 'M', 'NULL', 'M', 'julian16@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2312 Richard Ave.', 'NULL', '111-555-0173', '2013-08-26', '5-10 Miles'], ['23329', '9', 'AW00023329', 'NULL', 'Sharon', 'NULL', 'Raji', '0', '1958-05-12', 'M', 'NULL', 'F', 'sharon26@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '3', '3598 Wildberry Court', 'NULL', '1 (11) 500 555-0116', '2013-08-23', '5-10 Miles'], ['23330', '34', 'AW00023330', 'NULL', 'Julian', 'C', 'Washington', '0', '1959-05-02', 'S', 'NULL', 'M', 'julian15@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2272 Camelot Court', 'NULL', '1 (11) 500 555-0141', '2013-06-15', '1-2 Miles'], ['23331', '32', 'AW00023331', 'NULL', 'Jeremiah', 'NULL', 'Gray', '0', '1966-08-09', 'M', 'NULL', 'M', 'jeremiah42@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8291 Chelsea', 'NULL', '1 (11) 500 555-0157', '2012-07-27', '5-10 Miles'], ['23332', '21', 'AW00023332', 'NULL', 'Martin', 'l', 'Garcia', '0', '1966-02-21', 'S', 'NULL', 'M', 'martin19@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '880 Hackamore Lane', 'NULL', '1 (11) 500 555-0121', '2012-06-30', '5-10 Miles'], ['23333', '536', 'AW00023333', 'NULL', 'Steve', 'I', 'Sun', '0', '1981-03-12', 'M', 'NULL', 'M', 'steve16@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7511 Cooper Dr.', 'NULL', '630-555-0128', '2013-07-12', '1-2 Miles'], ['23334', '627', 'AW00023334', 'NULL', 'Brandon', 'NULL', 'Wilson', '0', '1980-12-17', 'S', 'NULL', 'M', 'brandon46@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5034 Live Oak Ave.', 'NULL', '468-555-0188', '2013-07-31', '1-2 Miles'], ['23335', '642', 'AW00023335', 'NULL', 'James', 'NULL', 'Robinson', '0', '1980-08-20', 'S', 'NULL', 'M', 'james91@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3628 Terra Granda', 'NULL', '136-555-0190', '2013-10-19', '5-10 Miles'], ['23336', '310', 'AW00023336', 'NULL', 'Jocelyn', 'M', 'Bryant', '0', '1981-05-18', 'M', 'NULL', 'F', 'jocelyn17@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8716 San Remo Ct', 'NULL', '527-555-0196', '2013-03-12', '5-10 Miles'], ['23337', '385', 'AW00023337', 'NULL', 'Isaiah', 'J', 'Green', '0', '1981-05-06', 'M', 'NULL', 'M', 'isaiah40@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8782 Palisade Court', 'NULL', '615-555-0196', '2013-09-28', '5-10 Miles'], ['23338', '329', 'AW00023338', 'NULL', 'Lucas', 'C', 'Jenkins', '0', '1984-12-09', 'M', 'NULL', 'M', 'lucas56@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2423 Brookview Dr.', 'NULL', '708-555-0164', '2013-08-17', '5-10 Miles'], ['23339', '612', 'AW00023339', 'NULL', 'Zoe', 'NULL', 'Reed', '0', '1979-03-25', 'S', 'NULL', 'F', 'zoe19@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7670 Terrapin Court', 'NULL', '150-555-0117', '2013-08-09', '5-10 Miles'], ['23340', '312', 'AW00023340', 'NULL', 'Mackenzie', 'I', 'Collins', '0', '1979-01-31', 'M', 'NULL', 'F', 'mackenzie24@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1164 Bell Drive', 'NULL', '479-555-0195', '2013-10-01', '5-10 Miles'], ['23341', '611', 'AW00023341', 'NULL', 'Kelvin', 'NULL', 'Chen', '0', '1979-01-05', 'S', 'NULL', 'M', 'kelvin22@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '329 Poplar Street', 'NULL', '967-555-0139', '2013-10-08', '0-1 Miles'], ['23342', '307', 'AW00023342', 'NULL', 'Cristina', 'M', 'She', '0', '1978-10-09', 'S', 'NULL', 'F', 'cristina0@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '719 Sycamore Drive', 'NULL', '329-555-0150', '2013-10-08', '5-10 Miles'], ['23343', '35', 'AW00023343', 'NULL', 'Bruce', 'E', 'Rubio', '0', '1962-10-20', 'S', 'NULL', 'M', 'bruce42@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3178 Fieldbrook Pl.', 'NULL', '1 (11) 500 555-0180', '2012-07-30', '5-10 Miles'], ['23344', '23', 'AW00023344', 'NULL', 'Sharon', 'A', 'Xu', '0', '1963-05-31', 'S', 'NULL', 'F', 'sharon11@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7764 Juliet Court', 'NULL', '1 (11) 500 555-0187', '2012-07-02', '1-2 Miles'], ['23345', '11', 'AW00023345', 'NULL', 'Mario', 'T', 'Lal', '0', '1963-12-19', 'S', 'NULL', 'M', 'mario6@adventure-works.com', '100000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '8068 Villageoaks Dr.', 'NULL', '1 (11) 500 555-0142', '2013-07-24', '10+ Miles'], ['23346', '14', 'AW00023346', 'NULL', 'Carly', 'L', 'Raji', '0', '1965-02-19', 'S', 'NULL', 'F', 'carly19@adventure-works.com', '100000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '1933 Landover Lane', 'NULL', '1 (11) 500 555-0187', '2013-04-20', '2-5 Miles'], ['23347', '24', 'AW00023347', 'NULL', 'Eddie', 'NULL', 'Carlson', '0', '1965-05-21', 'M', 'NULL', 'M', 'eddie18@adventure-works.com', '100000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '5890 Yosemite Circle', 'NULL', '1 (11) 500 555-0198', '2013-09-06', '2-5 Miles'], ['23348', '8', 'AW00023348', 'NULL', 'Tiffany', 'A', 'Chen', '0', '1964-07-22', 'S', 'NULL', 'F', 'tiffany2@adventure-works.com', '100000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '3711 Rollingwood Dr', 'NULL', '1 (11) 500 555-0115', '2012-07-22', '0-1 Miles'], ['23349', '322', 'AW00023349', 'NULL', 'Lauren', 'L', 'Johnson', '0', '1978-12-18', 'S', 'NULL', 'F', 'lauren19@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '2378 Joyce Dr.', 'NULL', '266-555-0162', '2013-09-27', '2-5 Miles'], ['23350', '43', 'AW00023350', 'NULL', 'Natalie', 'M', 'Thomas', '0', '1984-10-16', 'S', 'NULL', 'F', 'natalie78@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '6568 Damascus Loop', 'NULL', '401-555-0159', '2014-01-03', '2-5 Miles'], ['23351', '60', 'AW00023351', 'NULL', 'Lucas', 'L', 'Sanchez', '0', '1979-10-30', 'S', 'NULL', 'M', 'lucas88@adventure-works.com', '50000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '6679 Stanbridge Ct.', 'NULL', '107-555-0140', '2011-09-06', '1-2 Miles'], ['23352', '634', 'AW00023352', 'NULL', 'Kevin', 'NULL', 'Mitchell', '0', '1980-04-30', 'S', 'NULL', 'M', 'kevin49@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '4760 Clayton Road', 'NULL', '764-555-0178', '2013-08-17', '1-2 Miles'], ['23353', '642', 'AW00023353', 'NULL', 'Sophia', 'M', 'Scott', '0', '1979-08-06', 'M', 'NULL', 'F', 'sophia13@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8592 Camelback Ct.', 'NULL', '239-555-0185', '2013-09-30', '5-10 Miles'], ['23354', '298', 'AW00023354', 'NULL', 'Eddie', 'NULL', 'Gomez', '0', '1980-01-19', 'S', 'NULL', 'M', 'eddie2@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2898 Forest Way', 'NULL', '614-555-0113', '2013-02-28', '5-10 Miles'], ['23355', '299', 'AW00023355', 'NULL', 'Lance', 'NULL', 'Serrano', '0', '1980-01-15', 'S', 'NULL', 'M', 'lance16@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '3754 San Ysidro Court', 'NULL', '706-555-0151', '2013-08-07', '1-2 Miles'], ['23356', '302', 'AW00023356', 'NULL', 'Grace', 'S', 'Ward', '0', '1980-03-09', 'S', 'NULL', 'F', 'grace38@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '727 Pheasant Ct.', 'NULL', '581-555-0175', '2013-08-07', '1-2 Miles'], ['23357', '302', 'AW00023357', 'NULL', 'Micah', 'A', 'Yang', '0', '1979-11-02', 'S', 'NULL', 'M', 'micah15@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2, route de Marseille', 'NULL', '406-555-0129', '2013-04-15', '5-10 Miles'], ['23358', '310', 'AW00023358', 'NULL', 'Alberto', 'NULL', 'Alvarez', '0', '1985-04-07', 'M', 'NULL', 'M', 'alberto6@adventure-works.com', '60000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3545 RiverRock Dr.', 'NULL', '422-555-0169', '2013-08-16', '5-10 Miles'], ['23359', '315', 'AW00023359', 'NULL', 'Dalton', 'NULL', 'Alexander', '0', '1971-12-07', 'S', 'NULL', 'M', 'dalton65@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '5256 Lorie Lane', 'NULL', '585-555-0135', '2013-10-09', '0-1 Miles'], ['23360', '355', 'AW00023360', 'NULL', 'Marcus', 'E', 'Moore', '0', '1971-12-30', 'S', 'NULL', 'M', 'marcus8@adventure-works.com', '130000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '4', '5477 Limewood Place', 'NULL', '966-555-0152', '2013-03-06', '0-1 Miles'], ['23361', '301', 'AW00023361', 'NULL', 'Chloe', 'L', 'Lopez', '0', '1964-01-15', 'S', 'NULL', 'F', 'chloe19@adventure-works.com', '130000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '4', '8654 Lindell Dr.', 'NULL', '776-555-0191', '2014-01-16', '0-1 Miles'], ['23362', '59', 'AW00023362', 'NULL', 'Nicholas', 'NULL', 'Martin', '0', '1963-03-20', 'S', 'NULL', 'M', 'nicholas15@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1918 Terra Granada', 'NULL', '632-555-0140', '2013-11-07', '5-10 Miles'], ['23363', '70', 'AW00023363', 'NULL', 'David', 'NULL', 'Russell', '0', '1963-05-17', 'M', 'NULL', 'M', 'david53@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7628 Beech Ct', 'NULL', '883-555-0177', '2014-01-06', '5-10 Miles'], ['23364', '343', 'AW00023364', 'NULL', 'Natalie', 'C', 'Young', '0', '1969-12-26', 'S', 'NULL', 'F', 'natalie67@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3835 Chrisland Court', 'NULL', '441-555-0111', '2013-04-07', '2-5 Miles'], ['23365', '302', 'AW00023365', 'NULL', 'Vanessa', 'NULL', 'Flores', '0', '1970-04-22', 'S', 'NULL', 'F', 'vanessa13@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '805 Seawind Dr', 'NULL', '134-555-0140', '2013-09-06', '2-5 Miles'], ['23366', '369', 'AW00023366', 'NULL', 'Fernando', 'NULL', 'Campbell', '0', '1969-08-23', 'S', 'NULL', 'M', 'fernando40@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1197 Santa Barbara', 'NULL', '359-555-0113', '2013-04-07', '0-1 Miles'], ['23367', '618', 'AW00023367', 'NULL', 'Haley', 'A', 'Ramirez', '0', '1970-03-26', 'M', 'NULL', 'F', 'haley16@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8634 Lake Meadow Circle', 'NULL', '175-555-0136', '2013-06-16', '0-1 Miles'], ['23368', '70', 'AW00023368', 'NULL', 'Cassidy', 'L', 'Flores', '0', '1970-05-22', 'M', 'NULL', 'F', 'cassidy13@adventure-works.com', '60000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '5380 Bouncing', 'NULL', '267-555-0148', '2013-07-02', '10+ Miles'], ['23369', '335', 'AW00023369', 'NULL', 'Morgan', 'NULL', 'Washington', '0', '1980-10-13', 'S', 'NULL', 'F', 'morgan83@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4469 Dellwood Court', 'NULL', '668-555-0151', '2013-09-10', '0-1 Miles'], ['23370', '618', 'AW00023370', 'NULL', 'Mya', 'NULL', 'Alexander', '0', '1974-07-15', 'S', 'NULL', 'F', 'mya19@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '4265 Ashwood Drive', 'NULL', '790-555-0125', '2013-09-29', '0-1 Miles'], ['23371', '614', 'AW00023371', 'NULL', 'Katherine', 'L', 'Roberts', '0', '1968-08-15', 'S', 'NULL', 'F', 'katherine52@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6888 Niagara Court', 'NULL', '139-555-0113', '2013-09-05', '2-5 Miles'], ['23372', '626', 'AW00023372', 'NULL', 'Jack', 'H', 'Diaz', '0', '1968-09-05', 'M', 'NULL', 'M', 'jack22@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9850 Martindale', 'NULL', '925-555-0114', '2013-08-31', '2-5 Miles'], ['23373', '552', 'AW00023373', 'NULL', 'Gabrielle', 'NULL', 'Murphy', '0', '1968-12-12', 'S', 'NULL', 'F', 'gabrielle7@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8981 Carmel Drive', 'NULL', '492-555-0117', '2013-09-22', '2-5 Miles'], ['23374', '368', 'AW00023374', 'NULL', 'Emma', 'C', 'Gray', '0', '1968-05-12', 'M', 'NULL', 'F', 'emma42@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7090 C. Mount Hood', 'NULL', '681-555-0113', '2013-10-12', '2-5 Miles'], ['23375', '368', 'AW00023375', 'NULL', 'Christian', 'D', 'Zhang', '0', '1967-11-04', 'M', 'NULL', 'M', 'christian10@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5872 Matterhorn Court', 'NULL', '346-555-0177', '2013-10-23', '0-1 Miles'], ['23376', '62', 'AW00023376', 'NULL', 'Zachary', 'H', 'Flores', '0', '1978-12-12', 'M', 'NULL', 'M', 'zachary11@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5678 Stonyhill Circle', 'NULL', '377-555-0185', '2011-09-23', '2-5 Miles'], ['23377', '623', 'AW00023377', 'NULL', 'Samantha', 'NULL', 'Hayes', '0', '1967-11-04', 'M', 'NULL', 'F', 'samantha45@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3742 San Onofre Court', 'NULL', '368-555-0153', '2013-10-21', '0-1 Miles'], ['23378', '50', 'AW00023378', 'NULL', 'Jackson', 'D', 'Phillips', '0', '1973-02-28', 'M', 'NULL', 'M', 'jackson36@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8015 San Onofre Court', 'NULL', '167-555-0118', '2011-09-17', '2-5 Miles'], ['23379', '635', 'AW00023379', 'NULL', 'Riley', 'R', 'Richardson', '0', '1978-04-23', 'S', 'NULL', 'F', 'riley29@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '8327 Newcastle Road', 'NULL', '174-555-0164', '2013-05-27', '2-5 Miles'], ['23380', '326', 'AW00023380', 'NULL', 'Gabriel', 'B', 'Campbell', '0', '1977-12-01', 'M', 'NULL', 'M', 'gabriel37@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '1254 Sattler Dr.', 'NULL', '470-555-0181', '2013-03-26', '10+ Miles'], ['23381', '607', 'AW00023381', 'NULL', 'Bianca', 'NULL', 'Hu', '0', '1967-01-08', 'M', 'NULL', 'F', 'bianca17@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '2928 Antone Court', 'NULL', '609-555-0188', '2014-01-28', '10+ Miles'], ['23382', '385', 'AW00023382', 'NULL', 'Xavier', 'L', 'Barnes', '0', '1967-02-05', 'M', 'NULL', 'M', 'xavier44@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '995 W. 108th Street', 'NULL', '875-555-0140', '2013-08-29', '0-1 Miles'], ['23383', '307', 'AW00023383', 'NULL', 'Caleb', 'M', 'Allen', '0', '1966-12-15', 'M', 'NULL', 'M', 'caleb51@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5973 Willow Pass Road', 'NULL', '987-555-0125', '2013-09-05', '0-1 Miles'], ['23384', '302', 'AW00023384', 'NULL', 'Taylor', 'NULL', 'Wilson', '0', '1966-08-09', 'M', 'NULL', 'F', 'taylor54@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5913 Mayette Avenue', 'NULL', '106-555-0111', '2013-09-21', '2-5 Miles'], ['23385', '51', 'AW00023385', 'NULL', 'Isaac', 'M', 'Brooks', '0', '1972-01-04', 'M', 'NULL', 'M', 'isaac1@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1917 Buskirk Ave.', 'NULL', '120-555-0113', '2011-09-03', '2-5 Miles'], ['23386', '335', 'AW00023386', 'NULL', 'Jose', 'NULL', 'Smith', '0', '1971-07-21', 'S', 'NULL', 'M', 'jose70@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7557 Francine Court', 'NULL', '124-555-0196', '2013-09-23', '2-5 Miles'], ['23387', '611', 'AW00023387', 'NULL', 'Xavier', 'L', 'Perry', '0', '1965-08-08', 'S', 'NULL', 'M', 'xavier49@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7709 Thissen Court', 'NULL', '250-555-0197', '2013-06-09', '2-5 Miles'], ['23388', '316', 'AW00023388', 'NULL', 'Ana', 'NULL', 'Henderson', '0', '1966-03-27', 'S', 'NULL', 'F', 'ana5@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5464 Muy Verde Cr', 'NULL', '730-555-0116', '2013-12-06', '2-5 Miles'], ['23389', '539', 'AW00023389', 'NULL', 'Jack', 'NULL', 'Perry', '0', '1966-03-25', 'M', 'NULL', 'M', 'jack8@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1601 Crown Court', 'NULL', '123-555-0114', '2013-04-29', '0-1 Miles'], ['23390', '641', 'AW00023390', 'NULL', 'Dakota', 'NULL', 'Flores', '0', '1973-05-24', 'S', 'NULL', 'M', 'dakota10@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '3974 Central Ave.', 'NULL', '652-555-0195', '2013-09-05', '2-5 Miles'], ['23391', '299', 'AW00023391', 'NULL', 'Joanna', 'NULL', 'Moreno', '0', '1972-12-21', 'S', 'NULL', 'F', 'joanna5@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '2393 Brook Hollow Ct.', 'NULL', '256-555-0155', '2013-09-21', '2-5 Miles'], ['23392', '300', 'AW00023392', 'NULL', 'Adrienne', 'M', 'Dominguez', '0', '1978-04-17', 'S', 'NULL', 'F', 'adrienne9@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '4084 Camino Peral', 'NULL', '806-555-0198', '2013-08-29', '2-5 Miles'], ['23393', '343', 'AW00023393', 'NULL', 'Jennifer', 'M', 'Anderson', '0', '1978-04-17', 'S', 'NULL', 'F', 'jennifer38@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '4084 Camino Peral', 'NULL', '186-555-0118', '2013-09-05', '2-5 Miles'], ['23394', '368', 'AW00023394', 'NULL', 'Anna', 'K', 'Bell', '0', '1973-06-20', 'S', 'NULL', 'F', 'anna9@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '44 Balboa Court', 'NULL', '394-555-0158', '2013-09-08', '0-1 Miles'], ['23395', '383', 'AW00023395', 'NULL', 'Ryan', 'A', 'Martinez', '0', '1972-08-07', 'S', 'NULL', 'M', 'ryan53@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '3193 Nephi Court', 'NULL', '220-555-0132', '2013-09-13', '2-5 Miles'], ['23396', '65', 'AW00023396', 'NULL', 'Kaitlyn', 'NULL', 'Long', '0', '1971-10-02', 'M', 'NULL', 'F', 'kaitlyn76@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2237 Boca Raton Court', 'NULL', '357-555-0176', '2011-10-28', '2-5 Miles'], ['23397', '56', 'AW00023397', 'NULL', 'Isabelle', 'NULL', 'Bryant', '0', '1965-10-16', 'M', 'NULL', 'F', 'isabelle16@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5025 Blue Jay Drive', 'NULL', '259-555-0150', '2011-10-10', '2-5 Miles'], ['23398', '298', 'AW00023398', 'NULL', 'Karl', 'J', 'Chander', '0', '1965-08-31', 'M', 'NULL', 'M', 'karl16@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3401 Meadow Lane', 'NULL', '261-555-0150', '2013-09-18', '2-5 Miles'], ['23399', '299', 'AW00023399', 'NULL', 'Keith', 'R', 'Pal', '0', '1965-11-23', 'M', 'NULL', 'M', 'keith15@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2528 Fall Creek Road', 'NULL', '193-555-0190', '2013-08-29', '2-5 Miles'], ['23400', '348', 'AW00023400', 'NULL', 'Andrew', 'G', 'Lee', '0', '1981-08-30', 'M', 'NULL', 'M', 'andrew29@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '2115 Pasado', 'NULL', '992-555-0120', '2013-12-16', '0-1 Miles'], ['23401', '68', 'AW00023401', 'NULL', 'Evan', 'NULL', 'Brooks', '0', '1970-03-13', 'M', 'NULL', 'M', 'evan1@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '381 Marina Village Pkwy.', 'NULL', '895-555-0130', '2013-09-12', '0-1 Miles'], ['23402', '641', 'AW00023402', 'NULL', 'Melissa', 'F', 'Cox', '0', '1964-11-23', 'M', 'NULL', 'F', 'melissa32@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2634 Dalis Drive', 'NULL', '459-555-0187', '2013-02-25', '2-5 Miles'], ['23403', '611', 'AW00023403', 'NULL', 'Justin', 'NULL', 'Powell', '0', '1963-08-07', 'S', 'NULL', 'M', 'justin5@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '717 Pheasant Circle', 'NULL', '122-555-0120', '2013-09-21', '0-1 Miles'], ['23404', '633', 'AW00023404', 'NULL', 'Amanda', 'NULL', 'Peterson', '0', '1964-03-31', 'S', 'NULL', 'F', 'amanda14@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6369 Sunhill Lane', 'NULL', '802-555-0126', '2013-09-20', '2-5 Miles'], ['23405', '298', 'AW00023405', 'NULL', 'Kari', 'G', 'Madan', '0', '1975-03-06', 'S', 'NULL', 'F', 'kari8@adventure-works.com', '70000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '9209 Mendocino Drive', 'NULL', '573-555-0155', '2013-03-20', '2-5 Miles'], ['23406', '609', 'AW00023406', 'NULL', 'Frederick', 'NULL', 'Sanchez', '0', '1963-08-30', 'M', 'NULL', 'M', 'frederick17@adventure-works.com', '70000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '1739 Glenhaven Ave', 'NULL', '830-555-0158', '2013-02-16', '2-5 Miles'], ['23407', '359', 'AW00023407', 'NULL', 'Lauren', 'D', 'Garcia', '0', '1980-09-16', 'S', 'NULL', 'F', 'lauren34@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '6534 Leslie Avenue', 'NULL', '418-555-0117', '2013-10-19', '0-1 Miles'], ['23408', '18', 'AW00023408', 'NULL', 'Ivan', 'S', 'Perez', '0', '1974-09-19', 'S', 'NULL', 'M', 'ivan17@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '7125 Rollinghill Way', 'NULL', '1 (11) 500 555-0134', '2012-07-03', '0-1 Miles'], ['23409', '30', 'AW00023409', 'NULL', 'Brad', 'C', 'Raji', '0', '1975-01-07', 'S', 'NULL', 'M', 'brad22@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '2639 Anchor Court', 'NULL', '1 (11) 500 555-0143', '2012-07-05', '0-1 Miles'], ['23410', '5', 'AW00023410', 'NULL', 'Carrie', 'W', 'Alvarez', '0', '1974-11-19', 'M', 'NULL', 'F', 'carrie4@adventure-works.com', '100000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '1050 Greenhills Circle', 'NULL', '1 (11) 500 555-0122', '2012-07-23', '1-2 Miles'], ['23411', '11', 'AW00023411', 'NULL', 'Cesar', 'NULL', 'Prasad', '0', '1979-02-20', 'S', 'NULL', 'M', 'cesar8@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1197 Santa Barbara', 'NULL', '1 (11) 500 555-0197', '2012-07-01', '0-1 Miles'], ['23412', '23', 'AW00023412', 'NULL', 'Dalton', 'M', 'Coleman', '0', '1974-05-13', 'S', 'NULL', 'M', 'dalton51@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3120 Levee Rd.', 'NULL', '1 (11) 500 555-0182', '2012-07-14', '2-5 Miles'], ['23413', '22', 'AW00023413', 'NULL', 'Max', 'NULL', 'Ortega', '0', '1974-01-02', 'M', 'NULL', 'M', 'max20@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3187 Westwood Court', '#71', '1 (11) 500 555-0120', '2012-07-19', '0-1 Miles'], ['23414', '28', 'AW00023414', 'NULL', 'Damien', 'L', 'Lin', '0', '1973-11-23', 'S', 'NULL', 'M', 'damien5@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6573 Helene Court', 'NULL', '1 (11) 500 555-0134', '2012-07-03', '2-5 Miles'], ['23415', '4', 'AW00023415', 'NULL', 'Kristi', 'NULL', 'Moreno', '0', '1973-11-08', 'S', 'NULL', 'F', 'kristi2@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '8794 Gumwood', 'NULL', '1 (11) 500 555-0116', '2012-07-01', '2-5 Miles'], ['23416', '36', 'AW00023416', 'NULL', 'Kristin', 'NULL', 'Shan', '0', '1979-04-21', 'M', 'NULL', 'F', 'kristin11@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '857 San Simeon Drive', 'NULL', '1 (11) 500 555-0114', '2012-07-26', '0-1 Miles'], ['23417', '2', 'AW00023417', 'NULL', 'Emmanuel', 'NULL', 'Sai', '0', '1974-01-20', 'S', 'NULL', 'M', 'emmanuel5@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5884 Blue Ridge', 'NULL', '1 (11) 500 555-0196', '2012-07-20', '0-1 Miles'], ['23418', '15', 'AW00023418', 'NULL', 'Brittney', 'NULL', 'Wu', '0', '1978-02-10', 'M', 'NULL', 'F', 'brittney5@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2750 Alicante Court', 'NULL', '1 (11) 500 555-0123', '2012-07-04', '2-5 Miles'], ['23419', '2', 'AW00023419', 'NULL', 'Shawna', 'NULL', 'Xu', '0', '1983-10-29', 'S', 'NULL', 'F', 'shawna5@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '238 Montego', 'NULL', '1 (11) 500 555-0152', '2013-10-29', '10+ Miles'], ['23420', '31', 'AW00023420', 'NULL', 'Mario', 'NULL', 'Moyer', '0', '1975-05-27', 'S', 'NULL', 'M', 'mario15@adventure-works.com', '110000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '7198 Alvecedo', 'NULL', '1 (11) 500 555-0172', '2012-07-25', '2-5 Miles'], ['23421', '7', 'AW00023421', 'NULL', 'Willie', 'NULL', 'Yuan', '0', '1975-05-05', 'S', 'NULL', 'M', 'willie26@adventure-works.com', '110000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '8084 Sunnyvale Avenue', 'NULL', '1 (11) 500 555-0134', '2012-07-03', '5-10 Miles'], ['23422', '11', 'AW00023422', 'NULL', 'Casey', 'E', 'Alonso', '0', '1974-07-14', 'S', 'NULL', 'M', 'casey32@adventure-works.com', '120000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '5366 Terry Lynn Lane', 'NULL', '1 (11) 500 555-0186', '2012-08-21', '1-2 Miles'], ['23423', '20', 'AW00023423', 'NULL', 'Adam', 'NULL', 'Powell', '0', '1978-12-12', 'M', 'NULL', 'M', 'adam6@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '8043 Pheasant Court', 'NULL', '1 (11) 500 555-0110', '2012-08-03', '10+ Miles'], ['23424', '33', 'AW00023424', 'NULL', 'Adriana', 'NULL', 'Subram', '0', '1983-10-18', 'M', 'NULL', 'F', 'adriana14@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '6541 Central Ave.', 'NULL', '1 (11) 500 555-0116', '2013-04-18', '10+ Miles'], ['23425', '20', 'AW00023425', 'NULL', 'Rachael', 'NULL', 'Lopez', '0', '1977-10-06', 'M', 'NULL', 'F', 'rachael15@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '250 Montgomery Ave.', 'NULL', '1 (11) 500 555-0153', '2012-08-23', '0-1 Miles'], ['23426', '12', 'AW00023426', 'NULL', 'Mathew', 'NULL', 'Ferrier', '0', '1977-08-16', 'S', 'NULL', 'M', 'mathew4@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '4328 Liscome Way', 'NULL', '1 (11) 500 555-0131', '2013-10-13', '0-1 Miles'], ['23427', '18', 'AW00023427', 'NULL', 'Jay', 'A', 'Sai', '0', '1972-01-02', 'M', 'NULL', 'M', 'jay12@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '1359 Montgomery Avenue', 'NULL', '1 (11) 500 555-0173', '2013-12-04', '0-1 Miles'], ['23428', '4', 'AW00023428', 'NULL', 'Savannah', 'J', 'Bailey', '0', '1977-11-21', 'M', 'NULL', 'F', 'savannah15@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '5059 Mt. Etna', 'NULL', '1 (11) 500 555-0198', '2013-08-02', '0-1 Miles'], ['23429', '24', 'AW00023429', 'NULL', 'Jenny', 'C', 'Kumar', '0', '1972-04-03', 'S', 'NULL', 'F', 'jenny31@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '7080 Bayview Circle', 'NULL', '1 (11) 500 555-0124', '2012-08-16', '1-2 Miles'], ['23430', '20', 'AW00023430', 'NULL', 'Savannah', 'E', 'Turner', '0', '1979-02-24', 'S', 'NULL', 'F', 'savannah27@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '7736 West Hook Road', 'NULL', '1 (11) 500 555-0193', '2013-06-30', '10+ Miles'], ['23431', '20', 'AW00023431', 'NULL', 'Margaret', 'NULL', 'Guo', '0', '1973-11-08', 'M', 'NULL', 'F', 'margaret24@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '5328 William Reed Dr', 'NULL', '1 (11) 500 555-0111', '2012-07-31', '10+ Miles'], ['23432', '23', 'AW00023432', 'NULL', 'Jordan', 'NULL', 'Roberts', '0', '1974-04-09', 'S', 'NULL', 'M', 'jordan58@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1516 Nicholas Dr.', 'NULL', '1 (11) 500 555-0149', '2012-08-03', '5-10 Miles'], ['23433', '31', 'AW00023433', 'NULL', 'Pedro', 'A', 'Muñoz', '0', '1973-10-07', 'S', 'NULL', 'M', 'pedro28@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5201 Dumbarton Street', 'NULL', '1 (11) 500 555-0121', '2012-08-14', '0-1 Miles'], ['23434', '31', 'AW00023434', 'NULL', 'Katie', 'A', 'Nath', '0', '1973-08-24', 'S', 'NULL', 'F', 'katie21@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4866 Sequoia Woods Pl.', 'NULL', '1 (11) 500 555-0114', '2012-08-19', '5-10 Miles'], ['23435', '8', 'AW00023435', 'NULL', 'Rosa', 'NULL', 'Chen', '0', '1973-12-25', 'S', 'NULL', 'F', 'rosa2@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1276 Quartermaster', 'NULL', '1 (11) 500 555-0144', '2012-08-20', '0-1 Miles'], ['23436', '9', 'AW00023436', 'NULL', 'Tanya', 'NULL', 'Munoz', '0', '1979-01-13', 'S', 'NULL', 'F', 'tanya3@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1005 Tanager Court', 'NULL', '1 (11) 500 555-0111', '2012-08-11', '5-10 Miles'], ['23437', '34', 'AW00023437', 'NULL', 'Briana', 'NULL', 'Munoz', '0', '1971-04-25', 'S', 'NULL', 'F', 'briana7@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4671 Balhan Court', 'NULL', '1 (11) 500 555-0199', '2013-10-12', '5-10 Miles'], ['23438', '5', 'AW00023438', 'NULL', 'Toni', 'L', 'Vance', '0', '1976-10-20', 'S', 'NULL', 'F', 'toni3@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7720 Breaker Dr.', 'NULL', '1 (11) 500 555-0185', '2013-09-17', '5-10 Miles'], ['23439', '11', 'AW00023439', 'NULL', 'Ramon', 'NULL', 'Hu', '0', '1982-01-12', 'S', 'NULL', 'M', 'ramon18@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9237 Cordova Way', 'NULL', '1 (11) 500 555-0185', '2013-03-15', '5-10 Miles'], ['23440', '211', 'AW00023440', 'NULL', 'Nancy', 'B', 'Sai', '0', '1978-08-03', 'S', 'NULL', 'F', 'nancy9@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '76, rue de Berri', 'NULL', '1 (11) 500 555-0154', '2013-07-20', '0-1 Miles'], ['23441', '212', 'AW00023441', 'NULL', 'Rafael', 'E', 'Zhang', '0', '1978-10-29', 'S', 'NULL', 'M', 'rafael0@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '8844, rue de Longchamp', 'NULL', '1 (11) 500 555-0147', '2013-06-05', '1-2 Miles'], ['23442', '272', 'AW00023442', 'NULL', 'Todd', 'NULL', 'She', '0', '1978-11-08', 'S', 'NULL', 'M', 'todd20@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '5866 Harvard Court', 'NULL', '1 (11) 500 555-0150', '2013-03-04', '1-2 Miles'], ['23443', '186', 'AW00023443', 'NULL', 'Elijah', 'NULL', 'Jai', '0', '1978-11-12', 'S', 'NULL', 'M', 'elijah6@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '54, boulevard Tremblay', 'NULL', '1 (11) 500 555-0181', '2013-10-18', '2-5 Miles'], ['23444', '207', 'AW00023444', 'NULL', 'Aidan', 'NULL', 'Washington', '0', '1979-05-13', 'S', 'NULL', 'M', 'aidan14@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '20, rue Royale', 'NULL', '1 (11) 500 555-0148', '2013-10-06', '2-5 Miles'], ['23445', '188', 'AW00023445', 'NULL', 'Andy', 'NULL', 'Carlson', '0', '1980-05-07', 'S', 'NULL', 'M', 'andy22@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Attaché de Presse', 'NULL', '1 (11) 500 555-0155', '2013-09-13', '2-5 Miles'], ['23446', '117', 'AW00023446', 'NULL', 'Nina', 'B', 'Chander', '0', '1980-04-02', 'S', 'NULL', 'F', 'nina16@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Zur Lindung 1', 'NULL', '1 (11) 500 555-0137', '2013-05-08', '0-1 Miles'], ['23447', '119', 'AW00023447', 'NULL', 'Jermaine', 'C', 'Weber', '0', '1985-04-10', 'S', 'NULL', 'M', 'jermaine3@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Knaackstr 442', 'NULL', '1 (11) 500 555-0178', '2014-01-07', '0-1 Miles'], ['23448', '607', 'AW00023448', 'NULL', 'Abigail', 'L', 'Peterson', '0', '1962-08-16', 'M', 'NULL', 'F', 'abigail19@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3886 Valencia Place', 'NULL', '751-555-0198', '2013-11-16', '5-10 Miles'], ['23449', '69', 'AW00023449', 'NULL', 'Steven', 'L', 'Peterson', '0', '1963-03-24', 'M', 'NULL', 'M', 'steven15@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '7692 Lee Lane', 'NULL', '857-555-0144', '2013-02-13', '5-10 Miles'], ['23450', '545', 'AW00023450', 'NULL', 'Alex', 'A', 'Rogers', '0', '1968-12-09', 'S', 'NULL', 'M', 'alex23@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '9592 Maywood Lane', 'NULL', '639-555-0134', '2013-09-05', '1-2 Miles'], ['23451', '638', 'AW00023451', 'NULL', 'Taylor', 'L', 'James', '0', '1962-12-30', 'M', 'NULL', 'F', 'taylor20@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4775 Kentucky Dr.', 'Unit E', '994-555-0119', '2013-04-24', '5-10 Miles'], ['23452', '359', 'AW00023452', 'NULL', 'Eduardo', 'M', 'Watson', '0', '1962-10-21', 'M', 'NULL', 'M', 'eduardo67@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8932 Sandalwood Dr.', 'NULL', '360-555-0113', '2013-02-04', '5-10 Miles'], ['23453', '299', 'AW00023453', 'NULL', 'Maurice', 'NULL', 'Deng', '0', '1962-08-31', 'M', 'NULL', 'M', 'maurice1@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '5005 Appalachian Dr.', 'NULL', '814-555-0148', '2013-10-09', '5-10 Miles'], ['23454', '369', 'AW00023454', 'NULL', 'Ryan', 'D', 'Wang', '0', '1963-04-02', 'S', 'NULL', 'M', 'ryan28@adventure-works.com', '90000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '8834 Firestone Drive', 'NULL', '418-555-0156', '2013-10-04', '2-5 Miles'], ['23455', '62', 'AW00023455', 'NULL', 'Jonathan', 'R', 'Perez', '0', '1961-09-11', 'S', 'NULL', 'M', 'jonathan41@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4217 Fairlane Place', 'NULL', '884-555-0158', '2013-12-14', '1-2 Miles'], ['23456', '336', 'AW00023456', 'NULL', 'Aidan', 'NULL', 'Simmons', '0', '1962-03-07', 'M', 'NULL', 'M', 'aidan16@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3801 W. Cypress Road', 'NULL', '772-555-0192', '2013-05-23', '5-10 Miles'], ['23457', '300', 'AW00023457', 'NULL', 'Nicole', 'NULL', 'Rivera', '0', '1961-09-12', 'S', 'NULL', 'F', 'nicole34@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4824 Discovery Bay', 'NULL', '111-555-0166', '2013-09-07', '1-2 Miles'], ['23458', '60', 'AW00023458', 'NULL', 'Mackenzie', 'K', 'Edwards', '0', '1961-08-13', 'S', 'NULL', 'F', 'mackenzie23@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6886 Melody Drive', 'NULL', '817-555-0155', '2013-08-10', '1-2 Miles'], ['23459', '62', 'AW00023459', 'NULL', 'Mason', 'G', 'Sanders', '0', '1961-08-31', 'M', 'NULL', 'M', 'mason5@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3111 Creekridge Lane', 'NULL', '861-555-0156', '2013-09-20', '5-10 Miles'], ['23460', '607', 'AW00023460', 'NULL', 'Javier', 'W', 'Ramos', '0', '1971-06-10', 'S', 'NULL', 'M', 'javier12@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '3455 Southbrook Dr.', 'NULL', '533-555-0161', '2013-10-23', '2-5 Miles'], ['23461', '536', 'AW00023461', 'NULL', 'Rachael', 'K', 'Smith', '0', '1971-04-22', 'M', 'NULL', 'F', 'rachael8@adventure-works.com', '90000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '3494 Jamie Way', 'NULL', '360-555-0110', '2014-01-07', '2-5 Miles'], ['23462', '632', 'AW00023462', 'NULL', 'Seth', 'NULL', 'Jones', '0', '1976-08-30', 'M', 'NULL', 'M', 'seth3@adventure-works.com', '100000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '3836 Deer Meadow Way', '# 174', '513-555-0176', '2013-10-18', '2-5 Miles'], ['23463', '325', 'AW00023463', 'NULL', 'Sean', 'NULL', 'Hill', '0', '1976-04-11', 'S', 'NULL', 'M', 'sean46@adventure-works.com', '120000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '6525 Stonehedge Dr.', 'NULL', '610-555-0183', '2013-10-05', '1-2 Miles'], ['23464', '358', 'AW00023464', 'NULL', 'Devin', 'J', 'Turner', '0', '1970-12-30', 'M', 'NULL', 'M', 'devin37@adventure-works.com', '130000.00', '1', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '6374 Las Palmas', 'NULL', '859-555-0119', '2013-11-14', '0-1 Miles'], ['23465', '536', 'AW00023465', 'NULL', 'Grace', 'A', 'Russell', '0', '1969-08-05', 'S', 'NULL', 'F', 'grace66@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5420 Thornwood Drive', 'NULL', '183-555-0148', '2013-03-26', '2-5 Miles'], ['23466', '631', 'AW00023466', 'NULL', 'Alyssa', 'NULL', 'Miller', '0', '1969-11-12', 'S', 'NULL', 'F', 'alyssa5@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7333 Landana St.', 'NULL', '982-555-0157', '2013-01-31', '5-10 Miles'], ['23467', '633', 'AW00023467', 'NULL', 'Nicole', 'NULL', 'Bennett', '0', '1969-09-03', 'S', 'NULL', 'F', 'nicole49@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '6441 Via Santa Fe', 'NULL', '164-555-0145', '2014-01-18', '10+ Miles'], ['23468', '314', 'AW00023468', 'NULL', 'Sean', 'K', 'Roberts', '0', '1975-08-24', 'S', 'NULL', 'M', 'sean36@adventure-works.com', '130000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '3403 Rapallo Lane', 'NULL', '799-555-0194', '2013-12-24', '0-1 Miles'], ['23469', '326', 'AW00023469', 'NULL', 'Christina', 'C', 'Gray', '0', '1975-05-18', 'S', 'NULL', 'F', 'christina4@adventure-works.com', '130000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '5597 Mt. Palomar Pl', 'NULL', '271-555-0187', '2013-04-17', '1-2 Miles'], ['23470', '331', 'AW00023470', 'NULL', 'Samuel', 'NULL', 'Young', '0', '1970-05-10', 'S', 'NULL', 'M', 'samuel47@adventure-works.com', '130000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '8140 Willbrook Court', 'NULL', '127-555-0172', '2013-05-21', '1-2 Miles'], ['23471', '372', 'AW00023471', 'NULL', 'Jeremy', 'NULL', 'Baker', '0', '1967-04-24', 'M', 'NULL', 'M', 'jeremy11@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '1246 Newport Drive', 'NULL', '909-555-0116', '2013-10-18', '0-1 Miles'], ['23472', '348', 'AW00023472', 'NULL', 'Alyssa', 'NULL', 'Rodriguez', '0', '1962-05-15', 'M', 'NULL', 'F', 'alyssa20@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '4867 Victory Lane', 'NULL', '662-555-0130', '2013-03-08', '0-1 Miles'], ['23473', '552', 'AW00023473', 'NULL', 'Jesse', 'C', 'James', '0', '1962-03-14', 'M', 'NULL', 'M', 'jesse8@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '606 Chelsea Way', 'NULL', '312-555-0147', '2013-02-28', '0-1 Miles'], ['23474', '546', 'AW00023474', 'NULL', 'Julia', 'NULL', 'Williams', '0', '1962-02-24', 'M', 'NULL', 'F', 'julia24@adventure-works.com', '80000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8274 Shannon Lane', 'NULL', '708-555-0155', '2013-10-06', '2-5 Miles'], ['23475', '611', 'AW00023475', 'NULL', 'Richard', 'NULL', 'Martin', '0', '1945-07-11', 'M', 'NULL', 'M', 'richard55@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2354 Crown Ct', 'NULL', '132-555-0165', '2013-07-09', '5-10 Miles'], ['23476', '66', 'AW00023476', 'NULL', 'Charles', 'NULL', 'Hall', '0', '1969-05-22', 'S', 'NULL', 'M', 'charles28@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '1431 Corte Bonita', 'NULL', '362-555-0118', '2013-07-29', '0-1 Miles'], ['23477', '627', 'AW00023477', 'NULL', 'Marcus', 'NULL', 'Phillips', '0', '1974-09-10', 'M', 'NULL', 'M', 'marcus43@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '2451 Vista Del Sol', 'NULL', '278-555-0140', '2013-11-29', '10+ Miles'], ['23478', '633', 'AW00023478', 'NULL', 'Hailey', 'NULL', 'Cooper', '0', '1968-06-30', 'S', 'NULL', 'F', 'hailey9@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '594 Tossing Way', 'NULL', '569-555-0124', '2013-10-07', '2-5 Miles'], ['23479', '548', 'AW00023479', 'NULL', 'Fernando', 'NULL', 'Robinson', '0', '1974-08-12', 'S', 'NULL', 'M', 'fernando16@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '3287 Corte Poquito', '# 2', '395-555-0157', '2013-10-14', '0-1 Miles'], ['23480', '637', 'AW00023480', 'NULL', 'Sydney', 'M', 'Coleman', '0', '1974-03-22', 'S', 'NULL', 'F', 'sydney28@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '9697 Central Ave', 'NULL', '115-555-0119', '2013-11-20', '0-1 Miles'], ['23481', '300', 'AW00023481', 'NULL', 'Dustin', 'NULL', 'Xu', '0', '1968-12-12', 'S', 'NULL', 'M', 'dustin4@adventure-works.com', '100000.00', '0', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3556 High Maple Court', 'NULL', '433-555-0138', '2013-06-25', '2-5 Miles'], ['23482', '314', 'AW00023482', 'NULL', 'Zoe', 'F', 'Gray', '0', '1968-11-19', 'M', 'NULL', 'F', 'zoe5@adventure-works.com', '110000.00', '5', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '3462 Melody', 'NULL', '614-555-0177', '2013-11-26', '5-10 Miles'], ['23483', '315', 'AW00023483', 'NULL', 'David', 'NULL', 'Jai', '0', '1974-02-11', 'M', 'NULL', 'M', 'david63@adventure-works.com', '110000.00', '5', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '6560 Waterview Terrace', 'NULL', '788-555-0169', '2013-06-23', '5-10 Miles'], ['23484', '336', 'AW00023484', 'NULL', 'Jenna', 'T', 'Allen', '0', '1969-01-14', 'M', 'NULL', 'F', 'jenna22@adventure-works.com', '120000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '804 Seaview Dr.', 'NULL', '617-555-0189', '2013-11-10', '5-10 Miles'], ['23485', '53', 'AW00023485', 'NULL', 'Isabella', 'NULL', 'Lee', '0', '1967-08-09', 'M', 'NULL', 'F', 'isabella78@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1015 Lynwood Drive', 'NULL', '522-555-0110', '2013-12-30', '5-10 Miles'], ['23486', '66', 'AW00023486', 'NULL', 'Benjamin', 'F', 'Coleman', '0', '1968-05-25', 'S', 'NULL', 'M', 'benjamin7@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '539 Rolling Green Circle', 'NULL', '524-555-0163', '2011-10-16', '5-10 Miles'], ['23487', '50', 'AW00023487', 'NULL', 'Gabriel', 'NULL', 'Evans', '0', '1967-02-04', 'M', 'NULL', 'M', 'gabriel31@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '4977 Martin St.', 'NULL', '227-555-0199', '2013-11-11', '2-5 Miles'], ['23488', '52', 'AW00023488', 'NULL', 'Luis', 'NULL', 'Nelson', '0', '1966-08-11', 'M', 'NULL', 'M', 'luis42@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '6869 Shakespeare Drive', 'NULL', '176-555-0198', '2013-11-06', '5-10 Miles'], ['23489', '609', 'AW00023489', 'NULL', 'Autumn', 'NULL', 'Huang', '0', '1967-04-09', 'M', 'NULL', 'F', 'autumn5@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '1789 Birchwood Dr.', 'NULL', '454-555-0116', '2013-12-25', '1-2 Miles'], ['23490', '642', 'AW00023490', 'NULL', 'Nicholas', 'S', 'Wilson', '0', '1978-06-14', 'M', 'NULL', 'M', 'nicholas8@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '463 H Stagecoach Rd.', 'NULL', '596-555-0189', '2013-05-13', '5-10 Miles'], ['23491', '644', 'AW00023491', 'NULL', 'Miguel', 'C', 'Taylor', '0', '1983-05-19', 'S', 'NULL', 'M', 'miguel8@adventure-works.com', '100000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '5869 Heights Avenue', 'NULL', '923-555-0110', '2013-07-26', '1-2 Miles'], ['23492', '301', 'AW00023492', 'NULL', 'Jamie', 'R', 'Blanco', '0', '1967-01-14', 'S', 'NULL', 'M', 'jamie37@adventure-works.com', '110000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '8867 Terranova Drive', 'NULL', '217-555-0158', '2013-11-14', '5-10 Miles'], ['23493', '337', 'AW00023493', 'NULL', 'Thomas', 'NULL', 'Taylor', '0', '1967-02-06', 'M', 'NULL', 'M', 'thomas70@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '7026 Norman Ave.', 'NULL', '604-555-0129', '2013-11-22', '0-1 Miles'], ['23494', '54', 'AW00023494', 'NULL', 'Nicole', 'A', 'Foster', '0', '1961-05-22', 'M', 'NULL', 'F', 'nicole65@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '6695 Kathleen Drive', 'NULL', '341-555-0124', '2013-12-17', '5-10 Miles'], ['23495', '385', 'AW00023495', 'NULL', 'James', 'NULL', 'Shan', '0', '1960-11-08', 'M', 'NULL', 'M', 'james47@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '3970 Falcon Dr', 'NULL', '520-555-0123', '2013-10-12', '5-10 Miles'], ['23496', '545', 'AW00023496', 'NULL', 'Nicholas', 'L', 'Harris', '0', '1966-08-13', 'S', 'NULL', 'M', 'nicholas14@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '8967 Hamilton Ave.', 'NULL', '629-555-0160', '2013-04-10', '5-10 Miles'], ['23497', '631', 'AW00023497', 'NULL', 'Olivia', 'A', 'Bryant', '0', '1960-09-10', 'M', 'NULL', 'F', 'olivia63@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '1273 Deetmeadow Way', 'NULL', '845-555-0176', '2013-10-10', '5-10 Miles'], ['23498', '59', 'AW00023498', 'NULL', 'James', 'NULL', 'Johnson', '0', '1960-04-05', 'M', 'NULL', 'M', 'james76@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '714 Las Trampas Road', 'NULL', '639-555-0166', '2013-04-04', '5-10 Miles'], ['23499', '301', 'AW00023499', 'NULL', 'Spencer', 'P', 'Washington', '0', '1941-10-22', 'M', 'NULL', 'M', 'spencer15@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7263 Rheem Dr.', 'NULL', '863-555-0121', '2013-11-20', '5-10 Miles'], ['23500', '311', 'AW00023500', 'NULL', 'Adriana', 'NULL', 'Garcia', '0', '1941-12-04', 'M', 'NULL', 'F', 'adriana16@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8914 Elkwood Dr.', 'NULL', '118-555-0175', '2013-06-03', '5-10 Miles'], ['23501', '335', 'AW00023501', 'NULL', 'Isabelle', 'A', 'Perry', '0', '1941-12-30', 'M', 'NULL', 'F', 'isabelle7@adventure-works.com', '90000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6867 Thornhill Place', 'NULL', '225-555-0150', '2013-09-24', '5-10 Miles'], ['23502', '338', 'AW00023502', 'NULL', 'Logan', 'NULL', 'Lopez', '0', '1942-03-07', 'M', 'NULL', 'M', 'logan46@adventure-works.com', '110000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '6302 Pinewood Court', 'NULL', '317-555-0150', '2013-02-12', '5-10 Miles'], ['23503', '63', 'AW00023503', 'NULL', 'Dalton', 'NULL', 'Torres', '0', '1965-08-03', 'M', 'NULL', 'M', 'dalton75@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '6879 Winthrop St.', 'NULL', '658-555-0190', '2013-03-21', '5-10 Miles'], ['23504', '607', 'AW00023504', 'NULL', 'George', 'NULL', 'Rana', '0', '1966-06-16', 'M', 'NULL', 'M', 'george17@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '8149 Olivera Road', 'NULL', '206-555-0177', '2013-05-28', '1-2 Miles'], ['23505', '302', 'AW00023505', 'NULL', 'Connor', 'M', 'Sharma', '0', '1966-03-15', 'S', 'NULL', 'M', 'connor25@adventure-works.com', '110000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '3136 Pinewood Court', 'NULL', '895-555-0166', '2013-11-01', '2-5 Miles'], ['23506', '348', 'AW00023506', 'NULL', 'Jesse', 'NULL', 'Campbell', '0', '1966-03-11', 'S', 'NULL', 'M', 'jesse31@adventure-works.com', '150000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '4810 Center Ave.', 'NULL', '598-555-0117', '2013-11-05', '2-5 Miles'], ['23507', '361', 'AW00023507', 'NULL', 'Rachel', 'NULL', 'Henderson', '0', '1959-08-01', 'M', 'NULL', 'F', 'rachel52@adventure-works.com', '70000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '8924 Lindley Ct.', 'NULL', '244-555-0116', '2013-10-31', '5-10 Miles'], ['23508', '623', 'AW00023508', 'NULL', 'Blake', 'NULL', 'Jones', '0', '1959-10-16', 'M', 'NULL', 'M', 'blake2@adventure-works.com', '70000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '3514 Sunshine', 'NULL', '832-555-0166', '2013-11-20', '5-10 Miles'], ['23509', '545', 'AW00023509', 'NULL', 'Faith', 'O', 'Powell', '0', '1958-08-07', 'S', 'NULL', 'F', 'faith8@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '6949 Brookview Drive', 'NULL', '992-555-0129', '2013-11-01', '1-2 Miles'], ['23510', '311', 'AW00023510', 'NULL', 'Morgan', 'R', 'Cooper', '0', '1958-11-12', 'M', 'NULL', 'F', 'morgan56@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8950 Glenwood Dr.', 'NULL', '743-555-0169', '2013-09-01', '5-10 Miles'], ['23511', '65', 'AW00023511', 'NULL', 'Joshua', 'A', 'Rodriguez', '0', '1959-03-17', 'M', 'NULL', 'M', 'joshua22@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5671 Bel Air Dr.', 'NULL', '339-555-0185', '2011-10-28', '5-10 Miles'], ['23512', '631', 'AW00023512', 'NULL', 'Zachary', 'NULL', 'Henderson', '0', '1957-11-16', 'M', 'NULL', 'M', 'zachary3@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '551 Almond Ave', '#30', '818-555-0118', '2013-05-02', '5-10 Miles'], ['23513', '68', 'AW00023513', 'NULL', 'Erin', 'D', 'Kelly', '0', '1957-05-06', 'M', 'NULL', 'F', 'erin6@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1531 Birchwood', 'NULL', '889-555-0167', '2013-12-28', '5-10 Miles'], ['23514', '618', 'AW00023514', 'NULL', 'Chloe', 'NULL', 'Bell', '0', '1956-10-14', 'M', 'NULL', 'F', 'chloe52@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2050 Glazier Dr', 'NULL', '799-555-0112', '2013-09-26', '5-10 Miles'], ['23515', '355', 'AW00023515', 'NULL', 'Zachary', 'A', 'Walker', '0', '1956-12-05', 'S', 'NULL', 'M', 'zachary30@adventure-works.com', '40000.00', '4', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '8962 Broadway St.', 'NULL', '652-555-0148', '2013-09-20', '1-2 Miles'], ['23516', '326', 'AW00023516', 'NULL', 'Ashley', 'V', 'Miller', '0', '1956-11-29', 'S', 'NULL', 'F', 'ashley6@adventure-works.com', '40000.00', '4', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '9303 Court Street', 'NULL', '577-555-0170', '2013-09-26', '1-2 Miles'], ['23517', '536', 'AW00023517', 'NULL', 'Ronald', 'J', 'Martinez', '0', '1955-01-22', 'M', 'NULL', 'M', 'ronald20@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '5701 El Dorado', 'NULL', '508-555-0164', '2013-10-20', '1-2 Miles'], ['23518', '49', 'AW00023518', 'NULL', 'Katherine', 'M', 'Adams', '0', '1960-04-11', 'S', 'NULL', 'F', 'katherine63@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '7660 Willow Creek Ct.', 'NULL', '622-555-0184', '2013-12-28', '1-2 Miles'], ['23519', '312', 'AW00023519', 'NULL', 'Jacqueline', 'E', 'Long', '0', '1954-07-09', 'S', 'NULL', 'F', 'jacqueline10@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '444 Crawford', 'NULL', '377-555-0172', '2013-10-23', '1-2 Miles'], ['23520', '548', 'AW00023520', 'NULL', 'Richard', 'NULL', 'Wilson', '0', '1960-04-15', 'M', 'NULL', 'M', 'richard47@adventure-works.com', '40000.00', '4', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '7227 Frame Ln', 'NULL', '112-555-0197', '2013-09-23', '5-10 Miles'], ['23521', '35', 'AW00023521', 'NULL', 'Alexis', 'NULL', 'Gonzales', '0', '1968-10-25', 'M', 'NULL', 'F', 'alexis40@adventure-works.com', '60000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '8502 Diver Way', 'NULL', '1 (11) 500 555-0125', '2013-08-16', '10+ Miles'], ['23522', '18', 'AW00023522', 'NULL', 'Sydney', 'NULL', 'Green', '0', '1974-10-20', 'M', 'NULL', 'F', 'sydney55@adventure-works.com', '60000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '1588 Prestwick Drive', 'NULL', '1 (11) 500 555-0138', '2013-04-11', '5-10 Miles'], ['23523', '29', 'AW00023523', 'NULL', 'Steve', 'V', 'Liu', '0', '1969-02-15', 'S', 'NULL', 'M', 'steve8@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '8358 Azalea Avenue', 'NULL', '1 (11) 500 555-0135', '2012-08-16', '5-10 Miles'], ['23524', '40', 'AW00023524', 'NULL', 'Ronnie', 'NULL', 'Yang', '0', '1968-01-08', 'S', 'NULL', 'M', 'ronnie4@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2539 Artnell Ct', 'NULL', '1 (11) 500 555-0161', '2012-08-06', '5-10 Miles'], ['23525', '17', 'AW00023525', 'NULL', 'Derrick', 'P', 'Rubio', '0', '1967-10-19', 'M', 'NULL', 'M', 'derrick19@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9514 Plymouth Dr.', 'NULL', '1 (11) 500 555-0145', '2012-08-21', '5-10 Miles'], ['23526', '31', 'AW00023526', 'NULL', 'Cara', 'NULL', 'Xu', '0', '1968-04-02', 'S', 'NULL', 'F', 'cara8@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5896 Mt. Dell', 'NULL', '1 (11) 500 555-0123', '2012-08-01', '0-1 Miles'], ['23527', '37', 'AW00023527', 'NULL', 'Alison', 'A', 'Luo', '0', '1972-10-10', 'S', 'NULL', 'F', 'alison5@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9507 San Vicente Dr', 'NULL', '1 (11) 500 555-0159', '2013-05-31', '5-10 Miles'], ['23528', '2', 'AW00023528', 'NULL', 'Jaime', 'P', 'Ferrier', '0', '1967-02-19', 'M', 'NULL', 'M', 'jaime45@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8291 Woodland Drive', 'NULL', '1 (11) 500 555-0176', '2013-09-16', '5-10 Miles'], ['23529', '40', 'AW00023529', 'NULL', 'Kendra', 'S', 'Munoz', '0', '1972-07-31', 'S', 'NULL', 'F', 'kendra7@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '202 Seaview Dr.', 'NULL', '1 (11) 500 555-0145', '2012-08-19', '0-1 Miles'], ['23530', '4', 'AW00023530', 'NULL', 'Ivan', 'M', 'Prasad', '0', '1971-08-06', 'S', 'NULL', 'M', 'ivan5@adventure-works.com', '100000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '8587 Glenside Ct.', 'NULL', '1 (11) 500 555-0142', '2014-01-05', '5-10 Miles'], ['23531', '21', 'AW00023531', 'NULL', 'Alexis', 'M', 'Powell', '0', '1971-10-16', 'S', 'NULL', 'F', 'alexis31@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '8208 Alhambra Ave.', 'NULL', '1 (11) 500 555-0147', '2012-08-03', '0-1 Miles'], ['23532', '18', 'AW00023532', 'NULL', 'Brett', 'NULL', 'Martinez', '0', '1965-09-12', 'M', 'NULL', 'M', 'brett17@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '252 Hemlock Drive', 'NULL', '1 (11) 500 555-0111', '2012-08-04', '5-10 Miles'], ['23533', '13', 'AW00023533', 'NULL', 'Rafael', 'NULL', 'Nath', '0', '1965-05-14', 'S', 'NULL', 'M', 'rafael42@adventure-works.com', '90000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4596 Flora Ave', 'NULL', '1 (11) 500 555-0198', '2012-08-12', '2-5 Miles'], ['23534', '20', 'AW00023534', 'NULL', 'Ashlee', 'NULL', 'Luo', '0', '1970-09-25', 'S', 'NULL', 'F', 'ashlee13@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4855 Lavetta Way', 'NULL', '1 (11) 500 555-0164', '2012-08-24', '0-1 Miles'], ['23535', '31', 'AW00023535', 'NULL', 'Dawn', 'NULL', 'Goel', '0', '1976-08-16', 'S', 'NULL', 'F', 'dawn43@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '6642 Sandview Dr', 'NULL', '1 (11) 500 555-0118', '2013-08-13', '1-2 Miles'], ['23536', '39', 'AW00023536', 'NULL', 'Savannah', 'NULL', 'Adams', '0', '1970-11-30', 'S', 'NULL', 'F', 'savannah38@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '8825 Walters Way', 'NULL', '1 (11) 500 555-0130', '2013-06-11', '1-2 Miles'], ['23537', '18', 'AW00023537', 'NULL', 'Victor', 'T', 'Hernandez', '0', '1965-05-06', 'M', 'NULL', 'M', 'victor5@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5351 Maryland Drive', 'NULL', '1 (11) 500 555-0197', '2013-11-12', '5-10 Miles'], ['23538', '31', 'AW00023538', 'NULL', 'Carlos', 'J', 'Evans', '0', '1980-01-10', 'S', 'NULL', 'M', 'carlos26@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '1992 La Vista Ave.', 'NULL', '1 (11) 500 555-0174', '2012-08-22', '5-10 Miles'], ['23539', '37', 'AW00023539', 'NULL', 'Darren', 'NULL', 'Munoz', '0', '1968-07-03', 'S', 'NULL', 'M', 'darren29@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '5871 Detroit Ave.', 'NULL', '1 (11) 500 555-0188', '2012-08-17', '5-10 Miles'], ['23540', '23', 'AW00023540', 'NULL', 'Bruce', 'NULL', 'Lopez', '0', '1967-08-05', 'S', 'NULL', 'M', 'bruce16@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '324 Mepham Dr.', 'NULL', '1 (11) 500 555-0119', '2012-08-18', '0-1 Miles'], ['23541', '28', 'AW00023541', 'NULL', 'Dana', 'M', 'Suarez', '0', '1972-11-30', 'S', 'NULL', 'F', 'dana12@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3356 Northstar Drive', 'NULL', '1 (11) 500 555-0193', '2012-08-03', '0-1 Miles'], ['23542', '34', 'AW00023542', 'NULL', 'Justin', 'NULL', 'Martin', '0', '1972-03-06', 'S', 'NULL', 'M', 'justin42@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4428 Maureen Circle', 'NULL', '1 (11) 500 555-0111', '2012-08-18', '0-1 Miles'], ['23543', '27', 'AW00023543', 'NULL', 'Michele', 'NULL', 'Sanchez', '0', '1966-08-23', 'M', 'NULL', 'F', 'michele33@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '5952 Haven Drive', 'NULL', '1 (11) 500 555-0176', '2013-08-20', '10+ Miles'], ['23544', '32', 'AW00023544', 'NULL', 'Misty', 'A', 'Raje', '0', '1974-08-12', 'S', 'NULL', 'F', 'misty15@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4130 Skycrest Drive', 'NULL', '1 (11) 500 555-0171', '2012-08-26', '2-5 Miles'], ['23545', '18', 'AW00023545', 'NULL', 'Lacey', 'L', 'Liu', '0', '1963-05-18', 'S', 'NULL', 'F', 'lacey16@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1757 Hames Court', 'NULL', '1 (11) 500 555-0175', '2012-08-01', '0-1 Miles'], ['23546', '33', 'AW00023546', 'NULL', 'Kathryn', 'NULL', 'Jai', '0', '1976-12-04', 'M', 'NULL', 'F', 'kathryn10@adventure-works.com', '60000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1487 Franklin Canyon Road', 'NULL', '1 (11) 500 555-0120', '2012-08-19', '5-10 Miles'], ['23547', '39', 'AW00023547', 'NULL', 'Francis', 'R', 'Serrano', '0', '1958-11-16', 'S', 'NULL', 'M', 'francis14@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '7596 Valley View Road', 'NULL', '1 (11) 500 555-0180', '2012-08-17', '5-10 Miles'], ['23548', '68', 'AW00023548', 'NULL', 'Haley', 'A', 'Morris', '0', '1982-02-22', 'S', 'NULL', 'F', 'haley2@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6630 Ham Court', 'NULL', '172-555-0197', '2013-12-21', '5-10 Miles'], ['23549', '300', 'AW00023549', 'NULL', 'George', 'T', 'Sai', '0', '1982-01-23', 'S', 'NULL', 'M', 'george11@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4668 East Avenue', 'NULL', '169-555-0194', '2013-05-29', '5-10 Miles'], ['23550', '352', 'AW00023550', 'NULL', 'Jennifer', 'J', 'Cook', '0', '1981-02-09', 'M', 'NULL', 'F', 'jennifer57@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8722 East View Place', 'NULL', '173-555-0138', '2013-10-30', '5-10 Miles'], ['23551', '52', 'AW00023551', 'NULL', 'Mason', 'NULL', 'Scott', '0', '1981-11-22', 'S', 'NULL', 'M', 'mason36@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8955 Tice Valley Blvd.', 'NULL', '931-555-0157', '2013-09-19', '0-1 Miles'], ['23552', '59', 'AW00023552', 'NULL', 'Caleb', 'NULL', 'Russell', '0', '1981-09-18', 'S', 'NULL', 'M', 'caleb16@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1301 Northstar Drive', 'NULL', '230-555-0124', '2013-11-25', '5-10 Miles'], ['23553', '63', 'AW00023553', 'NULL', 'Jasmine', 'A', 'Anderson', '0', '1981-09-22', 'M', 'NULL', 'F', 'jasmine8@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5153 Hackamore Lane', 'NULL', '693-555-0191', '2013-08-26', '0-1 Miles'], ['23554', '66', 'AW00023554', 'NULL', 'Joan', 'NULL', 'Cook', '0', '1981-08-14', 'M', 'NULL', 'F', 'joan2@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9407 H Street', 'NULL', '767-555-0139', '2013-07-04', '0-1 Miles'], ['23555', '536', 'AW00023555', 'NULL', 'Andres', 'G', 'Chavez', '0', '1982-02-18', 'S', 'NULL', 'M', 'andres12@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6898 Holiday Hills', 'NULL', '234-555-0118', '2013-03-25', '5-10 Miles'], ['23556', '611', 'AW00023556', 'NULL', 'Kristi', 'NULL', 'Munoz', '0', '1981-08-20', 'S', 'NULL', 'F', 'kristi3@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '615 Maria Vega Court', 'NULL', '902-555-0129', '2013-01-28', '5-10 Miles'], ['23557', '51', 'AW00023557', 'NULL', 'Victoria', 'NULL', 'Washington', '0', '1986-04-05', 'M', 'NULL', 'F', 'victoria60@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5636 Barcelona', 'NULL', '163-555-0197', '2013-05-14', '5-10 Miles'], ['23558', '337', 'AW00023558', 'NULL', 'Dakota', 'NULL', 'Barnes', '0', '1985-02-22', 'M', 'NULL', 'M', 'dakota2@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4148 Hitchcock', 'NULL', '312-555-0125', '2013-10-12', '5-10 Miles'], ['23559', '53', 'AW00023559', 'NULL', 'Jocelyn', 'D', 'Patterson', '0', '1985-02-04', 'S', 'NULL', 'F', 'jocelyn11@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7261 Mt. Dell Drive', 'NULL', '233-555-0183', '2013-01-31', '5-10 Miles'], ['23560', '314', 'AW00023560', 'NULL', 'Jacqueline', 'NULL', 'Flores', '0', '1984-01-12', 'S', 'NULL', 'F', 'jacqueline13@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9294 Virgina Hills Drive', 'NULL', '646-555-0181', '2013-10-22', '0-1 Miles'], ['23561', '642', 'AW00023561', 'NULL', 'Jose', 'E', 'Williams', '0', '1983-11-18', 'S', 'NULL', 'M', 'jose58@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8107 Virginia Hills Dr.', 'NULL', '151-555-0149', '2013-07-03', '5-10 Miles'], ['23562', '2', 'AW00023562', 'NULL', 'Warren', 'NULL', 'Luo', '0', '1944-02-09', 'S', 'NULL', 'M', 'warren14@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6310 Jamie Way', 'NULL', '1 (11) 500 555-0114', '2013-05-29', '0-1 Miles'], ['23563', '18', 'AW00023563', 'NULL', 'Kurt', 'C', 'Chavez', '0', '1955-02-04', 'M', 'NULL', 'M', 'kurt15@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6834 Violetta', 'NULL', '1 (11) 500 555-0116', '2013-08-29', '5-10 Miles'], ['23564', '345', 'AW00023564', 'NULL', 'Jessica', 'NULL', 'Howard', '0', '1982-09-15', 'S', 'NULL', 'F', 'jessica14@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9089 San Jose Ave', 'NULL', '155-555-0141', '2013-09-15', '0-1 Miles'], ['23565', '345', 'AW00023565', 'NULL', 'Julia', 'L', 'Torres', '0', '1982-05-02', 'S', 'NULL', 'F', 'julia58@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4393 Ridge Road', 'NULL', '182-555-0111', '2013-12-27', '0-1 Miles'], ['23566', '52', 'AW00023566', 'NULL', 'Benjamin', 'NULL', 'Shan', '0', '1984-09-23', 'S', 'NULL', 'M', 'benjamin33@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3107 High St', 'NULL', '479-555-0110', '2011-10-04', '0-1 Miles'], ['23567', '53', 'AW00023567', 'NULL', 'Xavier', 'NULL', 'Green', '0', '1984-07-22', 'S', 'NULL', 'M', 'xavier28@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1080 Crestwood Circle', 'NULL', '941-555-0132', '2013-06-13', '5-10 Miles'], ['23568', '542', 'AW00023568', 'NULL', 'Paige', 'NULL', 'Diaz', '0', '1985-01-18', 'S', 'NULL', 'F', 'paige21@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5536 Court Lane', 'NULL', '618-555-0189', '2013-10-25', '0-1 Miles'], ['23569', '33', 'AW00023569', 'NULL', 'Vanessa', 'A', 'Price', '0', '1944-11-03', 'S', 'NULL', 'F', 'vanessa1@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9425 Rolando Avenue', 'NULL', '1 (11) 500 555-0125', '2013-07-19', '5-10 Miles'], ['23570', '7', 'AW00023570', 'NULL', 'Deanna', 'K', 'Romero', '0', '1945-01-30', 'M', 'NULL', 'F', 'deanna35@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '7047 Terra Granda', 'NULL', '1 (11) 500 555-0165', '2013-04-29', '0-1 Miles'], ['23571', '9', 'AW00023571', 'NULL', 'Alisha', 'P', 'Guo', '0', '1945-07-22', 'M', 'NULL', 'F', 'alisha18@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8447 Kentucky Dr.', 'NULL', '1 (11) 500 555-0174', '2012-08-16', '0-1 Miles'], ['23572', '21', 'AW00023572', 'NULL', 'Donna', 'S', 'Pal', '0', '1959-02-19', 'M', 'NULL', 'F', 'donna11@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9295 Arcadia Pl', 'NULL', '1 (11) 500 555-0163', '2012-08-21', '5-10 Miles'], ['23573', '25', 'AW00023573', 'NULL', 'Jorge', 'NULL', 'Gao', '0', '1947-11-17', 'M', 'NULL', 'M', 'jorge17@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3726 Northridge Drive', 'NULL', '1 (11) 500 555-0171', '2012-08-24', '0-1 Miles'], ['23574', '4', 'AW00023574', 'NULL', 'Ebony', 'S', 'Hernandez', '0', '1954-09-08', 'M', 'NULL', 'F', 'ebony26@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7614 Inez Ave', 'NULL', '1 (11) 500 555-0120', '2012-08-19', '5-10 Miles'], ['23575', '9', 'AW00023575', 'NULL', 'Bobby', 'NULL', 'Ray', '0', '1949-05-23', 'M', 'NULL', 'M', 'bobby7@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '7535 Hoover Court', 'NULL', '1 (11) 500 555-0110', '2012-08-03', '0-1 Miles'], ['23576', '2', 'AW00023576', 'NULL', 'Ann', 'A', 'Sara', '0', '1955-07-04', 'M', 'NULL', 'F', 'ann15@adventure-works.com', '10000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4430 Ana Cortez', 'NULL', '1 (11) 500 555-0157', '2013-05-21', '5-10 Miles'], ['23577', '542', 'AW00023577', 'NULL', 'Julia', 'NULL', 'Bennett', '0', '1981-10-19', 'M', 'NULL', 'F', 'julia67@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '548 Stony Hill Circle', 'NULL', '399-555-0167', '2013-02-27', '5-10 Miles'], ['23578', '336', 'AW00023578', 'NULL', 'Eric', 'NULL', 'Lal', '0', '1982-01-09', 'M', 'NULL', 'M', 'eric37@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4041 Jam Way', 'NULL', '657-555-0175', '2013-03-16', '5-10 Miles'], ['23579', '626', 'AW00023579', 'NULL', 'Jared', 'C', 'Richardson', '0', '1981-04-17', 'S', 'NULL', 'M', 'jared11@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5039 East 23rd St.', 'NULL', '112-555-0171', '2013-11-02', '5-10 Miles'], ['23580', '311', 'AW00023580', 'NULL', 'Ryan', 'NULL', 'Jones', '0', '1979-12-06', 'S', 'NULL', 'M', 'ryan42@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4861 66th Avenue', 'NULL', '960-555-0136', '2013-02-25', '5-10 Miles'], ['23581', '374', 'AW00023581', 'NULL', 'Jan', 'NULL', 'Hill', '0', '1980-05-03', 'S', 'NULL', 'F', 'jan13@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '555 Park Glen Court', 'NULL', '456-555-0149', '2013-08-17', '1-2 Miles'], ['23582', '355', 'AW00023582', 'NULL', 'Stephanie', 'A', 'Simmons', '0', '1984-03-19', 'M', 'NULL', 'F', 'stephanie42@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4583 Turning View', 'NULL', '284-555-0125', '2013-09-30', '5-10 Miles'], ['23583', '54', 'AW00023583', 'NULL', 'Brianna', 'M', 'Martin', '0', '1979-06-07', 'M', 'NULL', 'F', 'brianna13@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9594 Zion Avenue', 'NULL', '810-555-0119', '2011-10-27', '5-10 Miles'], ['23584', '642', 'AW00023584', 'NULL', 'Jason', 'P', 'Evans', '0', '1983-06-23', 'M', 'NULL', 'M', 'jason30@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4341 Ceemar Court', 'NULL', '446-555-0128', '2013-11-05', '0-1 Miles'], ['23585', '612', 'AW00023585', 'NULL', 'Kaitlyn', 'NULL', 'Moore', '0', '1977-12-25', 'S', 'NULL', 'F', 'kaitlyn30@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2974 Yolanda Circle', 'NULL', '873-555-0161', '2013-11-03', '0-1 Miles'], ['23586', '352', 'AW00023586', 'NULL', 'Madison', 'F', 'Coleman', '0', '1977-12-19', 'M', 'NULL', 'F', 'madison41@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '5751 Pine Creek Way', 'NULL', '132-555-0112', '2013-11-09', '1-2 Miles'], ['23587', '374', 'AW00023587', 'NULL', 'Hailey', 'R', 'Gonzalez', '0', '1977-10-03', 'S', 'NULL', 'F', 'hailey57@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '5366 Pierce Court', 'NULL', '251-555-0119', '2013-11-27', '0-1 Miles'], ['23588', '632', 'AW00023588', 'NULL', 'Ryan', 'C', 'Hughes', '0', '1973-09-15', 'M', 'NULL', 'M', 'ryan14@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '6214 Terra Drive', 'NULL', '990-555-0120', '2013-05-01', '1-2 Miles'], ['23589', '329', 'AW00023589', 'NULL', 'Amanda', 'NULL', 'Baker', '0', '1978-04-02', 'M', 'NULL', 'F', 'amanda59@adventure-works.com', '100000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1077 Willow Court', 'NULL', '991-555-0143', '2013-11-18', '1-2 Miles'], ['23590', '331', 'AW00023590', 'NULL', 'Austin', 'T', 'Brown', '0', '1972-07-09', 'S', 'NULL', 'M', 'austin43@adventure-works.com', '120000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '684 Marsh Creek Rd.', 'NULL', '849-555-0178', '2014-01-05', '1-2 Miles'], ['23591', '53', 'AW00023591', 'NULL', 'Justin', 'P', 'Henderson', '0', '1968-07-24', 'M', 'NULL', 'M', 'justin1@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '8153 S Royal Links Circle', 'NULL', '391-555-0113', '2013-03-29', '0-1 Miles'], ['23592', '59', 'AW00023592', 'NULL', 'Joseph', 'R', 'Jackson', '0', '1969-03-21', 'S', 'NULL', 'M', 'joseph18@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '4251 San Onofre Court', 'NULL', '326-555-0196', '2011-10-04', '1-2 Miles'], ['23593', '4', 'AW00023593', 'NULL', 'Krystal', 'NULL', 'Zhou', '0', '1977-01-30', 'S', 'NULL', 'F', 'krystal8@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Management', 'Gestión', 'Direction', '0', '4', '5008 Falls Ct', 'NULL', '1 (11) 500 555-0110', '2012-08-05', '10+ Miles'], ['23594', '302', 'AW00023594', 'NULL', 'Paula', 'W', 'Diaz', '0', '1964-12-03', 'S', 'NULL', 'F', 'paula5@adventure-works.com', '70000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '1821 Corrinne Court', 'NULL', '705-555-0112', '2013-06-27', '10+ Miles'], ['23595', '187', 'AW00023595', 'NULL', 'Carrie', 'NULL', 'Rubio', '0', '1962-10-20', 'S', 'NULL', 'F', 'carrie18@adventure-works.com', '110000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '16, place de la Concorde', 'NULL', '1 (11) 500 555-0177', '2013-10-29', '5-10 Miles'], ['23596', '196', 'AW00023596', 'NULL', 'Katherine', 'NULL', 'Bradley', '0', '1974-01-01', 'S', 'NULL', 'F', 'katherine28@adventure-works.com', '110000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '3366, rue Ste-Honoré', 'NULL', '1 (11) 500 555-0185', '2013-09-01', '5-10 Miles'], ['23597', '235', 'AW00023597', 'NULL', 'Meredith', 'A', 'Perez', '0', '1968-08-13', 'S', 'NULL', 'F', 'meredith21@adventure-works.com', '150000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '4660 Cape Cod Way', 'NULL', '1 (11) 500 555-0174', '2013-01-27', '0-1 Miles'], ['23598', '237', 'AW00023598', 'NULL', 'Linda', 'NULL', 'Ramos', '0', '1963-05-21', 'S', 'NULL', 'F', 'linda32@adventure-works.com', '150000.00', '2', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '6729 Mt. Washington', 'NULL', '1 (11) 500 555-0123', '2013-09-10', '5-10 Miles'], ['23599', '243', 'AW00023599', 'NULL', 'Mackenzie', 'NULL', 'Roberts', '0', '1962-10-13', 'S', 'NULL', 'F', 'mackenzie27@adventure-works.com', '150000.00', '2', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '4', '9838 Stallion Way', 'NULL', '1 (11) 500 555-0175', '2013-12-16', '0-1 Miles'], ['23600', '205', 'AW00023600', 'NULL', 'Peter', 'NULL', 'Sharma', '0', '1961-09-08', 'M', 'NULL', 'M', 'peter15@adventure-works.com', '100000.00', '2', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '114, quai Paul Doumer', 'NULL', '1 (11) 500 555-0128', '2013-03-13', '5-10 Miles'], ['23601', '126', 'AW00023601', 'NULL', 'Kari', 'A', 'Alan', '0', '1961-10-02', 'S', 'NULL', 'F', 'kari28@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '4', 'Zimmerstr 371', 'Einkaufsabteilung', '1 (11) 500 555-0191', '2013-06-24', '5-10 Miles'], ['23602', '117', 'AW00023602', 'NULL', 'Andrea', 'NULL', 'Lopez', '0', '1972-11-10', 'M', 'NULL', 'F', 'andrea43@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Postfach 11 09 00', 'NULL', '1 (11) 500 555-0111', '2013-02-15', '5-10 Miles'], ['23603', '214', 'AW00023603', 'NULL', 'Shane', 'E', 'Malhotra', '0', '1971-12-09', 'M', 'NULL', 'M', 'shane8@adventure-works.com', '90000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6169, rue Malar', 'NULL', '1 (11) 500 555-0115', '2013-12-18', '5-10 Miles'], ['23604', '144', 'AW00023604', 'NULL', 'Troy', 'J', 'Kovar', '0', '1960-11-21', 'S', 'NULL', 'M', 'troy4@adventure-works.com', '110000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', 'Carlsplatz 4630', 'NULL', '1 (11) 500 555-0123', '2013-09-26', '5-10 Miles'], ['23605', '135', 'AW00023605', 'Ms.', 'Deanna', 'N.', 'Sabella', '0', '1961-06-02', 'M', 'NULL', 'M', 'deanna2@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', 'Carlsplatz 4641', 'NULL', '529-555-0100', '2013-11-29', '0-1 Miles'], ['23606', '241', 'AW00023606', 'NULL', 'Kenneth', 'NULL', 'Raje', '0', '1960-10-08', 'M', 'NULL', 'M', 'kenneth12@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '7726 N Jackson Way', 'NULL', '1 (11) 500 555-0193', '2013-01-16', '0-1 Miles'], ['23607', '250', 'AW00023607', 'NULL', 'Wayne', 'NULL', 'She', '0', '1960-11-07', 'M', 'NULL', 'M', 'wayne1@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '4679 Cardinal Dr', 'NULL', '1 (11) 500 555-0184', '2013-01-14', '0-1 Miles'], ['23608', '255', 'AW00023608', 'NULL', 'Jessie', 'R', 'Blanco', '0', '1960-07-10', 'M', 'NULL', 'F', 'jessie34@adventure-works.com', '150000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '566 Greer Ave', 'NULL', '1 (11) 500 555-0173', '2013-02-23', '0-1 Miles'], ['23609', '216', 'AW00023609', 'NULL', 'Clarence', 'M', 'Li', '0', '1960-11-05', 'S', 'NULL', 'M', 'clarence39@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '855, rue Basse-du-Rocher', 'NULL', '1 (11) 500 555-0197', '2013-05-16', '10+ Miles'], ['23610', '221', 'AW00023610', 'NULL', 'Cory', 'NULL', 'Perez', '0', '1950-04-22', 'M', 'NULL', 'M', 'cory17@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4, rue Saint-Lazare', 'NULL', '1 (11) 500 555-0180', '2014-01-21', '2-5 Miles'], ['23611', '218', 'AW00023611', 'NULL', 'Dave', 'E', 'Natsuhara', '0', '1949-09-01', 'M', 'NULL', 'M', 'dave2@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '258, avenue du Québec', 'NULL', '1 (11) 500 555-0167', '2013-06-14', '2-5 Miles'], ['23612', '144', 'AW00023612', 'NULL', 'Rosa', 'NULL', 'Liu', '0', '1949-10-24', 'S', 'NULL', 'F', 'rosa4@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Krönerweg 96', 'NULL', '1 (11) 500 555-0162', '2013-12-12', '2-5 Miles'], ['23613', '242', 'AW00023613', 'NULL', 'Clayton', 'L', 'Lu', '0', '1949-08-21', 'M', 'NULL', 'M', 'clayton10@adventure-works.com', '130000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '5927 Mt. Hood Circle', 'NULL', '1 (11) 500 555-0193', '2013-06-24', '0-1 Miles'], ['23614', '262', 'AW00023614', 'NULL', 'Rachel', 'T', 'Cook', '0', '1951-03-09', 'S', 'NULL', 'F', 'rachel32@adventure-works.com', '130000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '8121 Larkin Dr.', 'NULL', '1 (11) 500 555-0172', '2013-05-18', '5-10 Miles'], ['23615', '275', 'AW00023615', 'NULL', 'Kendra', 'NULL', 'Suarez', '0', '1950-10-11', 'M', 'NULL', 'F', 'kendra19@adventure-works.com', '160000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '1446 Partridge Dr', 'NULL', '1 (11) 500 555-0149', '2013-10-01', '0-1 Miles'], ['23616', '175', 'AW00023616', 'NULL', 'Karen', 'A', 'Roberts', '0', '1952-01-30', 'S', 'NULL', 'F', 'karen7@adventure-works.com', '120000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', 'Bundesallee 6466', 'NULL', '1 (11) 500 555-0134', '2013-09-20', '10+ Miles'], ['23617', '242', 'AW00023617', 'NULL', 'Kara', 'NULL', 'She', '0', '1957-04-22', 'S', 'NULL', 'F', 'kara1@adventure-works.com', '130000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '9534 Ridgewood Ct.', 'NULL', '1 (11) 500 555-0193', '2013-12-07', '0-1 Miles'], ['23618', '274', 'AW00023618', 'NULL', 'Dale', 'C', 'Holt', '0', '1952-02-01', 'M', 'NULL', 'M', 'dale8@adventure-works.com', '170000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '9781 Bird Dr.', 'NULL', '1 (11) 500 555-0147', '2013-02-08', '0-1 Miles'], ['23619', '144', 'AW00023619', 'NULL', 'Ricardo', 'L', 'Tang', '0', '1964-07-11', 'M', 'NULL', 'M', 'ricardo4@adventure-works.com', '110000.00', '3', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', 'Postfach 99 01 01', 'NULL', '1 (11) 500 555-0175', '2013-09-16', '10+ Miles'], ['23620', '264', 'AW00023620', 'NULL', 'Roy', 'W', 'Arun', '0', '1959-01-11', 'M', 'NULL', 'M', 'roy7@adventure-works.com', '160000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '5295 Macalven Drive', 'NULL', '1 (11) 500 555-0140', '2013-08-19', '10+ Miles'], ['23621', '221', 'AW00023621', 'NULL', 'Felicia', 'L', 'Townsend', '0', '1963-11-07', 'M', 'NULL', 'F', 'felicia11@adventure-works.com', '70000.00', '5', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4, route de Marseille', 'NULL', '1 (11) 500 555-0179', '2013-12-17', '10+ Miles'], ['23622', '170', 'AW00023622', 'NULL', 'Darren', 'NULL', 'Moreno', '0', '1957-12-09', 'M', 'NULL', 'M', 'darren28@adventure-works.com', '110000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Am Grossen Dern 4725', 'NULL', '1 (11) 500 555-0137', '2013-06-21', '10+ Miles'], ['23623', '187', 'AW00023623', 'NULL', 'Jocelyn', 'NULL', 'Griffin', '0', '1962-08-07', 'M', 'NULL', 'F', 'jocelyn20@adventure-works.com', '80000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '5667, rue Mazagran', 'NULL', '1 (11) 500 555-0171', '2013-02-22', '2-5 Miles'], ['23624', '166', 'AW00023624', 'NULL', 'Jillian', 'NULL', 'Malhotra', '0', '1957-02-14', 'S', 'NULL', 'F', 'jillian5@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Postfach 55 99 99', 'NULL', '1 (11) 500 555-0129', '2013-05-23', '10+ Miles'], ['23625', '251', 'AW00023625', 'NULL', 'Micheal', 'NULL', 'Navarro', '0', '1957-05-01', 'M', 'NULL', 'M', 'micheal5@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '9716 Holiday Hills Drive', 'NULL', '1 (11) 500 555-0194', '2013-10-17', '10+ Miles'], ['23626', '207', 'AW00023626', 'NULL', 'Ross', 'NULL', 'Mehta', '0', '1955-09-08', 'S', 'NULL', 'M', 'ross14@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '66, rue de Fontfroide', 'NULL', '1 (11) 500 555-0121', '2013-07-24', '10+ Miles'], ['23627', '117', 'AW00023627', 'NULL', 'Adrienne', 'NULL', 'Navarro', '0', '1961-04-22', 'S', 'NULL', 'F', 'adrienne6@adventure-works.com', '100000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '4', 'Buergermeister-ulrich-str 900', 'Einkaufsabteilung', '1 (11) 500 555-0123', '2013-09-08', '5-10 Miles'], ['23628', '236', 'AW00023628', 'NULL', 'Kara', 'C', 'Shen', '0', '1956-05-08', 'S', 'NULL', 'F', 'kara3@adventure-works.com', '120000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '3', '130 Alamo Court', 'NULL', '1 (11) 500 555-0148', '2013-05-18', '10+ Miles'], ['23629', '250', 'AW00023629', 'NULL', 'Alfredo', 'M', 'Gill', '0', '1955-10-01', 'M', 'NULL', 'M', 'alfredo15@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '4475 Terra Calitina', 'NULL', '1 (11) 500 555-0188', '2013-02-07', '0-1 Miles'], ['23630', '272', 'AW00023630', 'NULL', 'Dominic', 'NULL', 'Fernandez', '0', '1961-03-24', 'S', 'NULL', 'M', 'dominic16@adventure-works.com', '160000.00', '3', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '3', '3166 Rosemarie Place', 'NULL', '1 (11) 500 555-0159', '2013-02-14', '0-1 Miles'], ['23631', '179', 'AW00023631', 'NULL', 'Colin', 'R', 'Wang', '0', '1954-09-02', 'S', 'NULL', 'M', 'colin1@adventure-works.com', '80000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '3', '663, rue de Longchamp', 'NULL', '1 (11) 500 555-0182', '2014-01-19', '5-10 Miles'], ['23632', '169', 'AW00023632', 'NULL', 'Kristen', 'R', 'Zhou', '0', '1960-08-01', 'S', 'NULL', 'F', 'kristen7@adventure-works.com', '120000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '3', 'Kulmer Straße 765', 'NULL', '1 (11) 500 555-0118', '2013-04-08', '10+ Miles'], ['23633', '160', 'AW00023633', 'NULL', 'Deborah', 'L', 'Chande', '0', '1955-05-07', 'S', 'NULL', 'F', 'deborah19@adventure-works.com', '120000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', 'Hunzinger Allee 675', 'NULL', '1 (11) 500 555-0194', '2013-11-24', '10+ Miles'], ['23634', '177', 'AW00023634', 'NULL', 'Ernest', 'L', 'Li', '0', '1960-07-17', 'M', 'NULL', 'M', 'ernest3@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', 'Pflugstr 8414', 'NULL', '1 (11) 500 555-0125', '2013-08-13', '10+ Miles'], ['23635', '258', 'AW00023635', 'NULL', 'Alvin', 'NULL', 'Luo', '0', '1954-09-24', 'M', 'NULL', 'M', 'alvin28@adventure-works.com', '160000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '2860 Mt. Tank Circle', 'NULL', '1 (11) 500 555-0113', '2013-02-04', '0-1 Miles'], ['23636', '262', 'AW00023636', 'NULL', 'Rachael', 'M', 'Gonzalez', '0', '1955-04-07', 'M', 'NULL', 'F', 'rachael17@adventure-works.com', '160000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '2473 San Rafael', 'NULL', '1 (11) 500 555-0149', '2013-02-22', '10+ Miles'], ['23637', '185', 'AW00023637', 'NULL', 'Yolanda', 'E', 'Jai', '0', '1965-04-09', 'M', 'NULL', 'F', 'yolanda10@adventure-works.com', '80000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '43, rue Jean Mermoz', 'NULL', '1 (11) 500 555-0161', '2013-09-10', '10+ Miles'], ['23638', '241', 'AW00023638', 'NULL', 'Nelson', 'NULL', 'Ruiz', '0', '1953-10-16', 'M', 'NULL', 'M', 'nelson2@adventure-works.com', '120000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '287 Firestone Drive', 'NULL', '1 (11) 500 555-0154', '2013-09-24', '10+ Miles'], ['23639', '242', 'AW00023639', 'NULL', 'Christy', 'R', 'Guo', '0', '1952-11-05', 'M', 'NULL', 'F', 'christy16@adventure-works.com', '120000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '216 Smoking Tree Court', 'NULL', '1 (11) 500 555-0148', '2013-02-26', '10+ Miles'], ['23640', '16', 'AW00023640', 'NULL', 'Bruce', 'L', 'Jiménez', '0', '1980-07-07', 'M', 'NULL', 'M', 'bruce28@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '3011 Norman Avenue', 'NULL', '1 (11) 500 555-0154', '2012-08-06', '10+ Miles'], ['23641', '26', 'AW00023641', 'NULL', 'Megan', 'NULL', 'Morris', '0', '1982-01-08', 'M', 'NULL', 'F', 'megan29@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '2893 Vera', 'NULL', '1 (11) 500 555-0170', '2013-06-07', '10+ Miles'], ['23642', '17', 'AW00023642', 'NULL', 'Anne', 'NULL', 'Gutierrez', '0', '1981-01-14', 'M', 'NULL', 'F', 'anne12@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '3376 Bynum Way', 'NULL', '1 (11) 500 555-0194', '2014-01-18', '10+ Miles'], ['23643', '11', 'AW00023643', 'NULL', 'Erica', 'K', 'Zheng', '0', '1980-05-21', 'S', 'NULL', 'F', 'erica18@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '7403 N. Broadway', 'NULL', '1 (11) 500 555-0122', '2013-05-04', '10+ Miles'], ['23644', '2', 'AW00023644', 'NULL', 'Allison', 'R', 'Young', '0', '1985-09-29', 'M', 'NULL', 'F', 'allison40@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '8397 Galveston Ct.', 'NULL', '1 (11) 500 555-0139', '2013-10-05', '10+ Miles'], ['23645', '35', 'AW00023645', 'NULL', 'Curtis', 'S', 'Zheng', '0', '1980-12-13', 'S', 'NULL', 'M', 'curtis16@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '7537 Kaski Lane', 'NULL', '1 (11) 500 555-0189', '2012-08-09', '10+ Miles'], ['23646', '26', 'AW00023646', 'NULL', 'Jamie', 'M', 'Lu', '0', '1985-04-10', 'S', 'NULL', 'F', 'jamie14@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '2807 Charlotte Court', 'NULL', '1 (11) 500 555-0111', '2013-07-03', '10+ Miles'], ['23647', '23', 'AW00023647', 'NULL', 'Wayne', 'P', 'Shen', '0', '1985-02-23', 'S', 'NULL', 'M', 'wayne3@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '225 Piedmont', 'NULL', '1 (11) 500 555-0199', '2013-09-21', '10+ Miles'], ['23648', '23', 'AW00023648', 'NULL', 'Karla', 'NULL', 'Chander', '0', '1980-01-25', 'S', 'NULL', 'F', 'karla17@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '8206 H Street', 'NULL', '1 (11) 500 555-0189', '2012-08-24', '10+ Miles'], ['23649', '16', 'AW00023649', 'NULL', 'Naomi', 'NULL', 'Ruiz', '0', '1980-04-12', 'S', 'NULL', 'F', 'naomi2@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '1160 Via Del Sol', 'NULL', '1 (11) 500 555-0117', '2012-08-14', '10+ Miles'], ['23650', '29', 'AW00023650', 'NULL', 'Carolyn', 'NULL', 'Vazquez', '0', '1979-12-05', 'M', 'NULL', 'F', 'carolyn35@adventure-works.com', '120000.00', '5', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '9761 Darnett Circle', 'NULL', '1 (11) 500 555-0156', '2013-05-27', '10+ Miles'], ['23651', '35', 'AW00023651', 'NULL', 'Marvin', 'NULL', 'Alvarez', '0', '1978-07-26', 'M', 'NULL', 'M', 'marvin5@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '731 Cape Cod Way', 'NULL', '1 (11) 500 555-0114', '2012-09-05', '10+ Miles'], ['23652', '27', 'AW00023652', 'NULL', 'Roger', 'A', 'Goel', '0', '1979-04-17', 'S', 'NULL', 'M', 'roger47@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '7818 Lorie Lane', 'NULL', '1 (11) 500 555-0115', '2012-09-27', '10+ Miles'], ['23653', '39', 'AW00023653', 'NULL', 'Devin', 'NULL', 'Campbell', '0', '1979-04-20', 'S', 'NULL', 'M', 'devin39@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '2', '4746 Clear Court', '# 45', '1 (11) 500 555-0124', '2012-09-01', '10+ Miles'], ['23654', '18', 'AW00023654', 'NULL', 'Alisha', 'NULL', 'Wu', '0', '1979-03-02', 'M', 'NULL', 'F', 'alisha7@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '6028 D St.', 'NULL', '1 (11) 500 555-0111', '2013-07-29', '10+ Miles'], ['23655', '2', 'AW00023655', 'NULL', 'Grace', 'J', 'Murphy', '0', '1978-05-21', 'S', 'NULL', 'F', 'grace31@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '5640 Indianhead Way', 'NULL', '1 (11) 500 555-0119', '2012-09-02', '10+ Miles'], ['23656', '39', 'AW00023656', 'NULL', 'Naomi', 'M', 'Ramos', '0', '1983-06-11', 'S', 'NULL', 'F', 'naomi18@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '5012 Freda Drive', 'NULL', '1 (11) 500 555-0137', '2012-09-24', '10+ Miles'], ['23657', '23', 'AW00023657', 'NULL', 'Alison', 'NULL', 'Jai', '0', '1982-10-29', 'S', 'NULL', 'F', 'alison11@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '7624 Crawford', 'NULL', '1 (11) 500 555-0188', '2013-10-15', '10+ Miles'], ['23658', '7', 'AW00023658', 'NULL', 'Ross', 'C', 'Arun', '0', '1983-11-22', 'M', 'NULL', 'M', 'ross6@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '5845 Oliveria Road', 'NULL', '1 (11) 500 555-0118', '2012-09-19', '10+ Miles'], ['23659', '33', 'AW00023659', 'NULL', 'Drew', 'NULL', 'Shan', '0', '1977-10-08', 'S', 'NULL', 'M', 'drew11@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '1284 Poppy Pl.', 'NULL', '1 (11) 500 555-0126', '2012-09-27', '10+ Miles'], ['23660', '11', 'AW00023660', 'NULL', 'Christy', 'R', 'Tang', '0', '1978-05-20', 'S', 'NULL', 'F', 'christy23@adventure-works.com', '160000.00', '2', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '8546 La Mar Ct.', 'NULL', '1 (11) 500 555-0165', '2012-09-08', '0-1 Miles'], ['23661', '13', 'AW00023661', 'NULL', 'Abigail', 'NULL', 'Washington', '0', '1977-06-25', 'S', 'NULL', 'F', 'abigail38@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '5051 Teakwood Dr', 'NULL', '1 (11) 500 555-0162', '2012-09-22', '10+ Miles'], ['23662', '9', 'AW00023662', 'NULL', 'Cynthia', 'S', 'Sanchez', '0', '1981-11-02', 'S', 'NULL', 'F', 'cynthia26@adventure-works.com', '100000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '8785 Whitehall Drive', 'NULL', '1 (11) 500 555-0114', '2012-09-12', '10+ Miles'], ['23663', '19', 'AW00023663', 'NULL', 'Neil', 'K', 'Dominguez', '0', '1981-08-31', 'M', 'NULL', 'M', 'neil12@adventure-works.com', '100000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '77, rue de Bas Marin', 'NULL', '1 (11) 500 555-0189', '2012-09-14', '10+ Miles'], ['23664', '34', 'AW00023664', 'NULL', 'Sandra', 'NULL', 'Guo', '0', '1981-11-30', 'S', 'NULL', 'F', 'sandra25@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '6318 Marclair Dr.', 'NULL', '1 (11) 500 555-0159', '2012-09-13', '10+ Miles'], ['23665', '10', 'AW00023665', 'NULL', 'Crystal', 'A', 'Yang', '0', '1976-05-08', 'S', 'NULL', 'F', 'crystal7@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '4', '127 Daylight Pl.', 'NULL', '1 (11) 500 555-0112', '2012-09-06', '10+ Miles'], ['23666', '642', 'AW00023666', 'NULL', 'Olivia', 'NULL', 'Anderson', '0', '1954-04-17', 'M', 'NULL', 'F', 'olivia9@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4392 Ahneita Dr.', 'NULL', '312-555-0162', '2013-09-28', '5-10 Miles'], ['23667', '611', 'AW00023667', 'NULL', 'Harold', 'NULL', 'Arun', '0', '1954-03-24', 'M', 'NULL', 'M', 'harold4@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5923 Hazelwood Lane', 'NULL', '290-555-0125', '2013-12-22', '5-10 Miles'], ['23668', '536', 'AW00023668', 'NULL', 'Jessica', 'A', 'Hughes', '0', '1953-01-03', 'M', 'NULL', 'F', 'jessica36@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4430 Ana Cortez', 'NULL', '502-555-0117', '2013-10-14', '5-10 Miles'], ['23669', '348', 'AW00023669', 'NULL', 'Sean', 'NULL', 'Torres', '0', '1942-10-31', 'S', 'NULL', 'M', 'sean11@adventure-works.com', '50000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5847 W. Buchanan', 'NULL', '741-555-0152', '2013-12-19', '10+ Miles'], ['23670', '548', 'AW00023670', 'NULL', 'Mya', 'D', 'Henderson', '0', '1944-06-03', 'M', 'NULL', 'F', 'mya7@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6985 Matterhorn Ct', 'NULL', '647-555-0186', '2013-01-29', '10+ Miles'], ['23671', '611', 'AW00023671', 'NULL', 'Fernando', 'L', 'Thomas', '0', '1944-08-04', 'M', 'NULL', 'M', 'fernando10@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1832 RiverRock Dr', 'NULL', '135-555-0115', '2013-09-26', '1-2 Miles'], ['23672', '633', 'AW00023672', 'NULL', 'Abigail', 'L', 'Flores', '0', '1944-10-19', 'M', 'NULL', 'F', 'abigail37@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8429 East Narrows Drive', 'NULL', '241-555-0174', '2013-06-08', '1-2 Miles'], ['23673', '55', 'AW00023673', 'NULL', 'Kayla', 'A', 'Miller', '0', '1950-03-04', 'M', 'NULL', 'F', 'kayla6@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4511 Bellwood Dr.', 'NULL', '234-555-0164', '2013-05-20', '10+ Miles'], ['23674', '316', 'AW00023674', 'NULL', 'Jeremiah', 'A', 'Walker', '0', '1944-11-06', 'M', 'NULL', 'M', 'jeremiah11@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '7227 Landing Terrace', 'NULL', '297-555-0169', '2013-12-22', '1-2 Miles'], ['23675', '609', 'AW00023675', 'NULL', 'Emmanuel', 'NULL', 'Prasad', '0', '1945-11-15', 'S', 'NULL', 'M', 'emmanuel9@adventure-works.com', '60000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4666 Lancelot Drive', 'NULL', '643-555-0140', '2013-09-19', '10+ Miles'], ['23676', '53', 'AW00023676', 'NULL', 'Brandon', 'NULL', 'Diaz', '0', '1946-04-22', 'S', 'NULL', 'M', 'brandon18@adventure-works.com', '60000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3762 Gumwood', 'NULL', '818-555-0168', '2013-02-25', '10+ Miles'], ['23677', '339', 'AW00023677', 'NULL', 'Charles', 'M', 'Lewis', '0', '1945-09-10', 'M', 'NULL', 'M', 'charles25@adventure-works.com', '60000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2973 Cardinal Drive', 'NULL', '116-555-0162', '2013-10-23', '10+ Miles'], ['23678', '336', 'AW00023678', 'NULL', 'Kelly', 'NULL', 'Diaz', '0', '1946-03-09', 'S', 'NULL', 'F', 'kelly26@adventure-works.com', '60000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4765 L St.', 'NULL', '384-555-0143', '2013-03-31', '10+ Miles'], ['23679', '59', 'AW00023679', 'NULL', 'Jacob', 'G', 'Harris', '0', '1947-05-05', 'S', 'NULL', 'M', 'jacob12@adventure-works.com', '50000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7987 Seawind Dr.', 'NULL', '518-555-0167', '2013-02-06', '10+ Miles'], ['23680', '300', 'AW00023680', 'NULL', 'Anna', 'J', 'Powell', '0', '1952-10-08', 'M', 'NULL', 'F', 'anna33@adventure-works.com', '50000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5125 Cotton Ct.', 'NULL', '221-555-0166', '2013-10-23', '1-2 Miles'], ['23681', '69', 'AW00023681', 'NULL', 'Jordan', 'NULL', 'Gonzales', '0', '1946-07-05', 'S', 'NULL', 'M', 'jordan14@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7057 Striped Maple Court', 'NULL', '332-555-0114', '2013-11-29', '10+ Miles'], ['23682', '51', 'AW00023682', 'NULL', 'Natalie', 'NULL', 'Harris', '0', '1952-05-07', 'M', 'NULL', 'F', 'natalie81@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7382 Kirker Pass', 'NULL', '497-555-0114', '2013-02-10', '10+ Miles'], ['23683', '298', 'AW00023683', 'NULL', 'Dana', 'J', 'Alonso', '0', '1947-10-30', 'M', 'NULL', 'F', 'dana24@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7034 Longbrood Way', 'NULL', '164-555-0178', '2013-10-01', '1-2 Miles'], ['23684', '326', 'AW00023684', 'NULL', 'Jasmine', 'M', 'Rodriguez', '0', '1947-07-04', 'S', 'NULL', 'F', 'jasmine17@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2803 E. Cypress Rd.', 'NULL', '147-555-0187', '2014-01-23', '10+ Miles'], ['23685', '334', 'AW00023685', 'NULL', 'Alexa', 'C', 'Reed', '0', '1948-12-22', 'S', 'NULL', 'F', 'alexa19@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '621 Brandywine Way', 'NULL', '154-555-0154', '2013-09-04', '10+ Miles'], ['23686', '331', 'AW00023686', 'NULL', 'Rachel', 'A', 'Murphy', '0', '1948-09-09', 'S', 'NULL', 'F', 'rachel35@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7226 Casa Real', 'NULL', '333-555-0170', '2013-11-28', '10+ Miles'], ['23687', '648', 'AW00023687', 'NULL', 'Melissa', 'NULL', 'Flores', '0', '1950-04-17', 'S', 'NULL', 'F', 'melissa7@adventure-works.com', '30000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2596 Sand Pointe Lane', 'NULL', '254-555-0154', '2013-07-04', '1-2 Miles'], ['23688', '347', 'AW00023688', 'NULL', 'Olivia', 'R', 'Thomas', '0', '1949-11-16', 'M', 'NULL', 'F', 'olivia10@adventure-works.com', '30000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7596 Valley View Road', 'NULL', '245-555-0149', '2013-01-12', '10+ Miles'], ['23689', '383', 'AW00023689', 'NULL', 'Kayla', 'D', 'Hall', '0', '1958-02-22', 'M', 'NULL', 'F', 'kayla23@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '7034 Carson', 'NULL', '155-555-0190', '2013-07-04', '10+ Miles'], ['23690', '314', 'AW00023690', 'NULL', 'Angel', 'A', 'James', '0', '1952-12-02', 'M', 'NULL', 'M', 'angel7@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '9670 Wildberry Court', 'NULL', '903-555-0193', '2013-02-01', '1-2 Miles'], ['23691', '609', 'AW00023691', 'NULL', 'Karen', 'F', 'Hu', '0', '1950-12-09', 'S', 'NULL', 'F', 'karen29@adventure-works.com', '20000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '3', '6360 Sand Pointe Lane', 'NULL', '415-555-0114', '2013-06-12', '10+ Miles'], ['23692', '634', 'AW00023692', 'NULL', 'Isaac', 'C', 'King', '0', '1961-10-05', 'S', 'NULL', 'M', 'isaac41@adventure-works.com', '20000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '3', '4675 Pomar Way', 'NULL', '114-555-0193', '2013-07-10', '10+ Miles'], ['23693', '360', 'AW00023693', 'NULL', 'Jacqueline', 'NULL', 'Jenkins', '0', '1951-05-09', 'S', 'NULL', 'F', 'jacqueline7@adventure-works.com', '20000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '4', '6212 Alpine Drive', 'NULL', '579-555-0186', '2013-07-13', '1-2 Miles'], ['23694', '552', 'AW00023694', 'NULL', 'Brian', 'L', 'Brooks', '0', '1950-08-20', 'M', 'NULL', 'M', 'brian13@adventure-works.com', '20000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '4', '849 Donegal Road', 'NULL', '750-555-0183', '2013-06-30', '1-2 Miles'], ['23695', '302', 'AW00023695', 'NULL', 'Elijah', 'NULL', 'Coleman', '0', '1951-02-11', 'S', 'NULL', 'M', 'elijah9@adventure-works.com', '30000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '7960 Cedar Pointe Loop', 'NULL', '810-555-0112', '2013-02-06', '1-2 Miles'], ['23696', '611', 'AW00023696', 'NULL', 'Autumn', 'P', 'Li', '0', '1951-04-25', 'S', 'NULL', 'F', 'autumn3@adventure-works.com', '30000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '5863 J St.', 'NULL', '127-555-0153', '2013-03-21', '10+ Miles'], ['23697', '539', 'AW00023697', 'NULL', 'Cody', 'NULL', 'Kelly', '0', '1951-04-03', 'M', 'NULL', 'M', 'cody2@adventure-works.com', '30000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6489 North 49th St.', 'NULL', '813-555-0126', '2013-04-14', '10+ Miles'], ['23698', '301', 'AW00023698', 'NULL', 'Melissa', 'NULL', 'Coleman', '0', '1950-11-18', 'M', 'NULL', 'F', 'melissa23@adventure-works.com', '30000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3958 Firestone', 'NULL', '190-555-0142', '2013-12-26', '1-2 Miles'], ['23699', '315', 'AW00023699', 'NULL', 'Nicholas', 'O', 'Walker', '0', '1950-10-17', 'M', 'NULL', 'M', 'nicholas3@adventure-works.com', '30000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2049 Jason Court', 'NULL', '408-555-0156', '2013-08-02', '10+ Miles'], ['23700', '543', 'AW00023700', 'NULL', 'Katelyn', 'W', 'Young', '0', '1956-05-08', 'M', 'NULL', 'F', 'katelyn41@adventure-works.com', '30000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '493 Loveridge Circle', 'NULL', '547-555-0192', '2013-12-22', '1-2 Miles'], ['23701', '347', 'AW00023701', 'NULL', 'Marissa', 'NULL', 'Barnes', '0', '1951-08-22', 'M', 'NULL', 'F', 'marissa1@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '7634 Via Alta', 'NULL', '452-555-0128', '2013-09-29', '10+ Miles'], ['23702', '312', 'AW00023702', 'NULL', 'Eduardo', 'C', 'James', '0', '1952-02-01', 'M', 'NULL', 'M', 'eduardo66@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '9781 Bermad Dr.', 'NULL', '836-555-0168', '2014-01-22', '10+ Miles'], ['23703', '310', 'AW00023703', 'NULL', 'Jacqueline', 'E', 'Sanchez', '0', '1952-03-05', 'M', 'NULL', 'F', 'jacqueline42@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '2911 Paso Del Rio Way', 'NULL', '765-555-0169', '2013-10-12', '10+ Miles'], ['23704', '334', 'AW00023704', 'NULL', 'Christopher', 'J', 'Moore', '0', '1951-07-16', 'S', 'NULL', 'M', 'christopher8@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '3792 Esperanza Drive', 'NULL', '965-555-0154', '2013-10-01', '10+ Miles'], ['23705', '316', 'AW00023705', 'NULL', 'Jeremy', 'NULL', 'Bryant', '0', '1951-10-01', 'M', 'NULL', 'M', 'jeremy30@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '8211 Leeds Ct.', 'NULL', '231-555-0123', '2013-11-16', '2-5 Miles'], ['23706', '614', 'AW00023706', 'NULL', 'Mackenzie', 'M', 'Cooper', '0', '1957-03-09', 'S', 'NULL', 'F', 'mackenzie16@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '9071 Macaroon Drive', 'NULL', '195-555-0118', '2013-10-31', '10+ Miles'], ['23707', '627', 'AW00023707', 'NULL', 'William', 'L', 'Anderson', '0', '1952-01-15', 'S', 'NULL', 'M', 'william25@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '4654 Trembath Court', 'NULL', '107-555-0149', '2013-11-19', '10+ Miles'], ['23708', '300', 'AW00023708', 'NULL', 'Victoria', 'O', 'Coleman', '0', '1951-12-30', 'M', 'NULL', 'F', 'victoria53@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '7853 Millfield Place', 'NULL', '890-555-0176', '2013-11-13', '10+ Miles'], ['23709', '315', 'AW00023709', 'NULL', 'Devin', 'NULL', 'Perry', '0', '1952-06-03', 'S', 'NULL', 'M', 'devin46@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '4917 Amaryl Dr.', 'NULL', '411-555-0124', '2013-11-28', '10+ Miles'], ['23710', '611', 'AW00023710', 'NULL', 'Anna', 'NULL', 'Sanchez', '0', '1953-02-17', 'M', 'NULL', 'F', 'anna3@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3977 Central Avenue', 'NULL', '955-555-0114', '2013-08-16', '10+ Miles'], ['23711', '638', 'AW00023711', 'NULL', 'Fernando', 'W', 'Diaz', '0', '1953-03-16', 'S', 'NULL', 'M', 'fernando63@adventure-works.com', '70000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '4354 Northwood Dr.', 'NULL', '258-555-0117', '2013-02-21', '10+ Miles'], ['23712', '343', 'AW00023712', 'NULL', 'Riley', 'J', 'Murphy', '0', '1952-12-06', 'S', 'NULL', 'F', 'riley34@adventure-works.com', '70000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '1682 Candle Drive', 'NULL', '419-555-0139', '2013-08-14', '10+ Miles'], ['23713', '374', 'AW00023713', 'NULL', 'Arianna', 'C', 'Butler', '0', '1953-02-16', 'M', 'NULL', 'F', 'arianna12@adventure-works.com', '70000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '8527 Rock Oak Road', 'NULL', '712-555-0168', '2013-12-19', '10+ Miles'], ['23714', '548', 'AW00023714', 'NULL', 'Joseph', 'T', 'Williams', '0', '1952-10-15', 'M', 'NULL', 'M', 'joseph8@adventure-works.com', '70000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '7842 Ygnacio Valley Road', 'NULL', '247-555-0112', '2013-03-06', '2-5 Miles'], ['23715', '641', 'AW00023715', 'NULL', 'Isabel', 'NULL', 'Flores', '0', '1952-08-17', 'S', 'NULL', 'F', 'isabel12@adventure-works.com', '70000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '9521 Sun View Terr', 'NULL', '897-555-0123', '2013-11-17', '2-5 Miles'], ['23716', '60', 'AW00023716', 'NULL', 'Kyle', 'NULL', 'Wright', '0', '1953-02-08', 'M', 'NULL', 'M', 'kyle47@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '9161 Medina Dr.', 'NULL', '344-555-0147', '2013-04-16', '10+ Miles'], ['23717', '634', 'AW00023717', 'NULL', 'Aidan', 'A', 'Griffin', '0', '1953-09-14', 'M', 'NULL', 'M', 'aidan22@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '3720 Maine Ave.', 'NULL', '820-555-0132', '2013-05-26', '10+ Miles'], ['23718', '302', 'AW00023718', 'NULL', 'Nelson', 'NULL', 'Blanco', '0', '1959-09-23', 'M', 'NULL', 'M', 'nelson14@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3121 Spar Court', 'NULL', '752-555-0174', '2013-10-18', '2-5 Miles'], ['23719', '63', 'AW00023719', 'NULL', 'Marcus', 'E', 'James', '0', '1954-08-27', 'M', 'NULL', 'M', 'marcus73@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1318 Ramer Ct.', 'NULL', '149-555-0163', '2014-01-13', '10+ Miles'], ['23720', '553', 'AW00023720', 'NULL', 'Anna', 'K', 'Davis', '0', '1954-11-21', 'M', 'NULL', 'F', 'anna66@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5196 Camino Ricardo', 'NULL', '119-555-0114', '2013-11-22', '10+ Miles'], ['23721', '315', 'AW00023721', 'NULL', 'John', 'M', 'Clark', '0', '1955-01-20', 'M', 'NULL', 'M', 'john43@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '0', '5301 Northwood Drive', 'NULL', '668-555-0134', '2013-10-17', '2-5 Miles'], ['23722', '325', 'AW00023722', 'NULL', 'Andrea', 'NULL', 'Perez', '0', '1954-10-11', 'M', 'NULL', 'F', 'andrea34@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '6385 Holiday Hill Dr.', 'NULL', '123-555-0145', '2013-03-19', '10+ Miles'], ['23723', '336', 'AW00023723', 'NULL', 'Jose', 'NULL', 'Phillips', '0', '1954-12-07', 'M', 'NULL', 'M', 'jose43@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '3859 Zand', 'NULL', '822-555-0125', '2013-10-04', '2-5 Miles'], ['23724', '372', 'AW00023724', 'NULL', 'Gabrielle', 'NULL', 'Hughes', '0', '1954-09-13', 'S', 'NULL', 'F', 'gabrielle34@adventure-works.com', '70000.00', '5', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '593 Willow Pass Road', 'NULL', '162-555-0165', '2013-11-17', '10+ Miles'], ['23725', '71', 'AW00023725', 'NULL', 'Dennis', 'L', 'Ware', '0', '1956-04-02', 'M', 'NULL', 'M', 'dennis0@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '9905 North 29th St.', 'NULL', '401-555-0138', '2011-10-01', '2-5 Miles'], ['23726', '612', 'AW00023726', 'NULL', 'Darrell', 'K', 'Xie', '0', '1955-12-11', 'M', 'NULL', 'M', 'darrell13@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '6050 Camino Ricardo', 'NULL', '723-555-0161', '2013-10-25', '2-5 Miles'], ['23727', '310', 'AW00023727', 'NULL', 'Bruce', 'NULL', 'Serrano', '0', '1955-08-30', 'M', 'NULL', 'M', 'bruce37@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '5762 Glenmount Drive', 'NULL', '180-555-0137', '2013-06-26', '2-5 Miles'], ['23728', '315', 'AW00023728', 'NULL', 'Paige', 'NULL', 'Kelly', '0', '1955-08-20', 'S', 'NULL', 'F', 'paige25@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6658 Virginia Lane', 'NULL', '728-555-0111', '2013-04-10', '10+ Miles'], ['23729', '347', 'AW00023729', 'NULL', 'Marcus', 'D', 'Allen', '0', '1956-03-01', 'M', 'NULL', 'M', 'marcus26@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '4333 Coastal Blvd.', 'NULL', '177-555-0119', '2013-02-03', '1-2 Miles'], ['23730', '50', 'AW00023730', 'NULL', 'Morgan', 'NULL', 'Rodriguez', '0', '1956-09-10', 'M', 'NULL', 'F', 'morgan41@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5495 Glendale Circle', 'NULL', '162-555-0126', '2011-10-15', '2-5 Miles'], ['23731', '54', 'AW00023731', 'NULL', 'Jose', 'NULL', 'Thompson', '0', '1962-11-14', 'M', 'NULL', 'M', 'jose77@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '935 Rheem Drive', 'NULL', '989-555-0126', '2011-10-15', '2-5 Miles'], ['23732', '609', 'AW00023732', 'NULL', 'Xavier', 'NULL', 'Wood', '0', '1956-08-09', 'S', 'NULL', 'M', 'xavier43@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4118 Hillsborough Dr.', 'NULL', '130-555-0154', '2013-04-05', '10+ Miles'], ['23733', '611', 'AW00023733', 'NULL', 'Natasha', 'G', 'Gomez', '0', '1968-02-16', 'M', 'NULL', 'F', 'natasha1@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5823 Danielle Court', 'NULL', '260-555-0126', '2013-10-08', '2-5 Miles'], ['23734', '548', 'AW00023734', 'NULL', 'Melanie', 'R', 'Wood', '0', '1956-12-13', 'M', 'NULL', 'F', 'melanie17@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '9555 Holiday Hills Drive', 'NULL', '170-555-0185', '2013-07-14', '2-5 Miles'], ['23735', '548', 'AW00023735', 'NULL', 'Amanda', 'NULL', 'Washington', '0', '1956-12-29', 'M', 'NULL', 'F', 'amanda34@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '1207 Concerto Circle', 'NULL', '957-555-0113', '2013-03-02', '2-5 Miles'], ['23736', '644', 'AW00023736', 'NULL', 'Sydney', 'M', 'Rivera', '0', '1957-06-08', 'M', 'NULL', 'F', 'sydney10@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6102 Corte Poquito', 'NULL', '141-555-0150', '2013-05-04', '10+ Miles'], ['23737', '300', 'AW00023737', 'NULL', 'Elena', 'NULL', 'Velez Amezaga', '0', '1956-09-10', 'M', 'NULL', 'F', 'elena0@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9613 Camino Royale', 'NULL', '545-555-0171', '2013-08-12', '10+ Miles'], ['23738', '383', 'AW00023738', 'NULL', 'Julian', 'H', 'Bennett', '0', '1963-10-07', 'S', 'NULL', 'M', 'julian2@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '7405 Jacqueline Drive', 'NULL', '127-555-0166', '2013-10-16', '10+ Miles'], ['23739', '299', 'AW00023739', 'NULL', 'Virginia', 'S', 'Kapoor', '0', '1958-04-18', 'M', 'NULL', 'F', 'virginia2@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '9406 Lincoln Dr', 'NULL', '533-555-0112', '2013-10-30', '2-5 Miles'], ['23740', '355', 'AW00023740', 'NULL', 'Noah', 'NULL', 'Jackson', '0', '1963-11-11', 'M', 'NULL', 'M', 'noah52@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3951 Calle Verde Drive', 'NULL', '765-555-0191', '2013-08-03', '10+ Miles'], ['23741', '611', 'AW00023741', 'NULL', 'Dana', 'NULL', 'Romero', '0', '1958-05-02', 'S', 'NULL', 'F', 'dana1@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7511 Azores Circle', 'NULL', '665-555-0132', '2013-10-19', '10+ Miles'], ['23742', '331', 'AW00023742', 'NULL', 'Morgan', 'C', 'Cox', '0', '1959-01-01', 'M', 'NULL', 'F', 'morgan58@adventure-works.com', '60000.00', '3', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6814 Gatewood Court', 'NULL', '557-555-0158', '2013-10-07', '10+ Miles'], ['23743', '258', 'AW00023743', 'NULL', 'Terrence', 'L', 'Xu', '0', '1985-07-05', 'S', 'NULL', 'M', 'terrence5@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '3884 Bates Court', 'NULL', '1 (11) 500 555-0114', '2013-02-24', '1-2 Miles'], ['23744', '180', 'AW00023744', 'NULL', 'Barry', 'A', 'Prasad', '0', '1985-10-21', 'S', 'NULL', 'M', 'barry10@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '82, rue Henri Gagnon', 'NULL', '1 (11) 500 555-0111', '2013-10-21', '1-2 Miles'], ['23745', '197', 'AW00023745', 'NULL', 'Dana', 'M', 'Vazquez', '0', '1986-01-30', 'S', 'NULL', 'F', 'dana7@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '40, rue Georges-Clémenceau', 'NULL', '1 (11) 500 555-0152', '2013-04-30', '1-2 Miles'], ['23746', '200', 'AW00023746', 'Mr.', 'Lane', 'NULL', 'Sacksteder', '0', '1986-04-15', 'S', 'NULL', 'F', 'lane1@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '70, rue Georges-Clémenceau', 'NULL', '114-555-0100', '2013-09-30', '0-1 Miles'], ['23747', '235', 'AW00023747', 'NULL', 'Theodore', 'NULL', 'Romero', '0', '1986-05-22', 'S', 'NULL', 'M', 'theodore9@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '8011 McNutt Ave', 'NULL', '1 (11) 500 555-0199', '2013-04-25', '1-2 Miles'], ['23748', '211', 'AW00023748', 'NULL', 'Yolanda', 'NULL', 'Pal', '0', '1983-08-16', 'S', 'NULL', 'F', 'yolanda11@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '19, avenue de la Gare', 'NULL', '1 (11) 500 555-0110', '2013-10-07', '2-5 Miles'], ['23749', '204', 'AW00023749', 'NULL', 'Brandi', 'NULL', 'Ashe', '0', '1983-11-07', 'S', 'NULL', 'F', 'brandi5@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '38, rue de l´Esplanade', 'NULL', '1 (11) 500 555-0111', '2013-09-19', '1-2 Miles'], ['23750', '246', 'AW00023750', 'NULL', 'Tanya', 'NULL', 'Serrano', '0', '1979-08-23', 'M', 'NULL', 'F', 'tanya13@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3238 Laguna Circle', 'NULL', '1 (11) 500 555-0145', '2013-02-07', '0-1 Miles'], ['23751', '259', 'AW00023751', 'NULL', 'Lacey', 'L', 'Lal', '0', '1980-03-20', 'M', 'NULL', 'F', 'lacey43@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4195 Sea Point Way', 'NULL', '1 (11) 500 555-0195', '2013-03-11', '1-2 Miles'], ['23752', '267', 'AW00023752', 'NULL', 'Devin', 'A', 'Torres', '0', '1980-06-03', 'M', 'NULL', 'M', 'devin71@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1753 Camby Rd.', 'NULL', '1 (11) 500 555-0188', '2013-04-06', '1-2 Miles'], ['23753', '239', 'AW00023753', 'NULL', 'Arthur', 'D', 'Sara', '0', '1978-09-10', 'S', 'NULL', 'M', 'arthur12@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '495 Saddlehill Lane', 'NULL', '1 (11) 500 555-0168', '2013-04-24', '2-5 Miles'], ['23754', '217', 'AW00023754', 'NULL', 'Cassie', 'NULL', 'Goel', '0', '1977-08-12', 'S', 'NULL', 'F', 'cassie18@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '343, avenue Reille', 'NULL', '1 (11) 500 555-0186', '2013-10-21', '1-2 Miles'], ['23755', '131', 'AW00023755', 'NULL', 'Louis', 'K', 'Wu', '0', '1983-05-06', 'S', 'NULL', 'M', 'louis45@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Knaackstr 442', 'NULL', '1 (11) 500 555-0160', '2013-08-16', '1-2 Miles'], ['23756', '211', 'AW00023756', 'NULL', 'Omar', 'M', 'Jai', '0', '1978-06-07', 'S', 'NULL', 'M', 'omar31@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '1, rue Pierre-Demoulin', 'NULL', '1 (11) 500 555-0142', '2013-04-01', '1-2 Miles'], ['23757', '171', 'AW00023757', 'NULL', 'James', 'NULL', 'Roberts', '0', '1977-11-08', 'S', 'NULL', 'M', 'james53@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Parise Straße 75', 'NULL', '1 (11) 500 555-0135', '2013-04-29', '0-1 Miles'], ['23758', '201', 'AW00023758', 'NULL', 'Virginia', 'NULL', 'Malhotra', '0', '1978-11-22', 'M', 'NULL', 'F', 'virginia6@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '82, route de Marseille', 'NULL', '1 (11) 500 555-0162', '2013-02-14', '0-1 Miles'], ['23759', '146', 'AW00023759', 'NULL', 'Clinton', 'NULL', 'Alonso', '0', '1979-06-16', 'M', 'NULL', 'M', 'clinton5@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Hüttenstr 8095', 'NULL', '1 (11) 500 555-0165', '2013-01-21', '0-1 Miles'], ['23760', '233', 'AW00023760', 'NULL', 'Nina', 'NULL', 'Sharma', '0', '1979-03-04', 'M', 'NULL', 'F', 'nina10@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7355 San Benito', 'NULL', '1 (11) 500 555-0132', '2013-04-14', '0-1 Miles'], ['23761', '208', 'AW00023761', 'NULL', 'Tonya', 'P', 'Pal', '0', '1978-01-16', 'M', 'NULL', 'F', 'tonya11@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '671, place du Tertre', 'NULL', '1 (11) 500 555-0116', '2013-06-22', '1-2 Miles'], ['23762', '275', 'AW00023762', 'NULL', 'Ruben', 'L', 'Ramos', '0', '1983-09-17', 'S', 'NULL', 'M', 'ruben40@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1228 Francine Court', 'NULL', '1 (11) 500 555-0112', '2013-04-21', '2-5 Miles'], ['23763', '217', 'AW00023763', 'NULL', 'Micheal', 'NULL', 'Romero', '0', '1978-01-10', 'M', 'NULL', 'M', 'micheal4@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2, rue de l´Esplanade', 'NULL', '1 (11) 500 555-0111', '2013-03-21', '1-2 Miles'], ['23764', '115', 'AW00023764', 'NULL', 'Alisha', 'L', 'Liu', '0', '1983-03-10', 'S', 'NULL', 'F', 'alisha4@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Winter der Böck 5085', 'NULL', '1 (11) 500 555-0150', '2013-02-21', '1-2 Miles'], ['23765', '171', 'AW00023765', 'NULL', 'Kelly', 'W', 'Price', '0', '1977-08-30', 'S', 'NULL', 'F', 'kelly4@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Moritzstr 46', 'NULL', '1 (11) 500 555-0148', '2013-03-24', '1-2 Miles'], ['23766', '161', 'AW00023766', 'NULL', 'Cassandra', 'A', 'Martinez', '0', '1977-10-30', 'S', 'NULL', 'F', 'cassandra19@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Königstr 426', 'NULL', '1 (11) 500 555-0144', '2013-07-31', '0-1 Miles'], ['23767', '269', 'AW00023767', 'NULL', 'Arianna', 'K', 'Bennett', '0', '1977-01-22', 'S', 'NULL', 'F', 'arianna1@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '3228 Pembroke Dr', 'NULL', '1 (11) 500 555-0151', '2014-01-17', '0-1 Miles'], ['23768', '267', 'AW00023768', 'NULL', 'Joshua', 'A', 'Garcia', '0', '1977-01-23', 'S', 'NULL', 'M', 'joshua18@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '9943 Stonehedge Dr.', 'NULL', '1 (11) 500 555-0187', '2014-01-01', '1-2 Miles'], ['23769', '242', 'AW00023769', 'NULL', 'Natasha', 'NULL', 'Dominguez', '0', '1976-07-03', 'S', 'NULL', 'F', 'natasha12@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '8721 Nahua', 'NULL', '1 (11) 500 555-0181', '2013-03-14', '1-2 Miles'], ['23770', '258', 'AW00023770', 'NULL', 'Jamie', 'NULL', 'Carlson', '0', '1976-11-08', 'S', 'NULL', 'M', 'jamie40@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '8191 Scenic Ct.', 'NULL', '1 (11) 500 555-0163', '2013-02-21', '0-1 Miles'], ['23771', '225', 'AW00023771', 'NULL', 'Julio', 'E', 'Gomez', '0', '1976-08-03', 'S', 'NULL', 'M', 'julio0@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '38, rue Villedo', 'NULL', '1 (11) 500 555-0192', '2013-05-13', '0-1 Miles'], ['23772', '152', 'AW00023772', 'NULL', 'Cory', 'NULL', 'Raman', '0', '1976-07-05', 'M', 'NULL', 'M', 'cory10@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Postfach 55 44 99', 'NULL', '1 (11) 500 555-0199', '2013-07-15', '0-1 Miles'], ['23773', '179', 'AW00023773', 'NULL', 'Jon', 'NULL', 'Cai', '0', '1976-07-05', 'M', 'NULL', 'M', 'jon41@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '1812, avenue de l´Europe', 'NULL', '1 (11) 500 555-0180', '2013-03-31', '1-2 Miles'], ['23774', '237', 'AW00023774', 'NULL', 'Reginald', 'M', 'Harrison', '0', '1976-10-28', 'S', 'NULL', 'M', 'reginald18@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '1160 Bella Avenue', 'NULL', '1 (11) 500 555-0112', '2013-04-05', '2-5 Miles'], ['23775', '263', 'AW00023775', 'NULL', 'Cedric', 'H', 'Shan', '0', '1975-09-02', 'S', 'NULL', 'M', 'cedric31@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3753 Shenandoah Drive', 'NULL', '1 (11) 500 555-0165', '2013-04-18', '1-2 Miles'], ['23776', '177', 'AW00023776', 'NULL', 'Cristina', 'L', 'Yuan', '0', '1975-10-20', 'S', 'NULL', 'F', 'cristina6@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Postfach 44 11 11', 'NULL', '1 (11) 500 555-0185', '2013-03-17', '1-2 Miles'], ['23777', '260', 'AW00023777', 'NULL', 'Candice', 'J', 'Zhang', '0', '1975-12-05', 'S', 'NULL', 'F', 'candice8@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4810 Veronica Ct.', 'NULL', '1 (11) 500 555-0196', '2013-05-01', '1-2 Miles'], ['23778', '215', 'AW00023778', 'NULL', 'Louis', 'L', 'Huang', '0', '1977-04-02', 'M', 'NULL', 'M', 'louis44@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '7, rue des Vendangeurs', 'NULL', '1 (11) 500 555-0189', '2013-10-23', '1-2 Miles'], ['23779', '253', 'AW00023779', 'NULL', 'Deanna', 'NULL', 'Dominguez', '0', '1977-04-17', 'S', 'NULL', 'F', 'deanna39@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9505 Hargate Court', 'NULL', '1 (11) 500 555-0164', '2013-05-27', '0-1 Miles'], ['23780', '189', 'AW00023780', 'NULL', 'Mason', 'NULL', 'Stewart', '0', '1975-10-06', 'S', 'NULL', 'M', 'mason24@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6, rue Lafayette', 'NULL', '1 (11) 500 555-0166', '2013-03-28', '0-1 Miles'], ['23781', '361', 'AW00023781', 'NULL', 'Jordyn', 'NULL', 'Ross', '0', '1980-12-29', 'S', 'NULL', 'F', 'jordyn3@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4224 Greenview Court', 'NULL', '817-555-0136', '2013-10-15', '1-2 Miles'], ['23782', '632', 'AW00023782', 'NULL', 'Edward', 'L', 'Bryant', '0', '1980-12-18', 'S', 'NULL', 'M', 'edward66@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3134 Rose Ann Dr.', 'NULL', '186-555-0198', '2013-09-25', '0-1 Miles'], ['23783', '51', 'AW00023783', 'NULL', 'Zachary', 'W', 'Smith', '0', '1936-10-05', 'M', 'NULL', 'M', 'zachary40@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4399 Mary Drive', 'NULL', '917-555-0152', '2013-03-03', '2-5 Miles'], ['23784', '536', 'AW00023784', 'NULL', 'Preston', 'NULL', 'Arun', '0', '1977-10-20', 'S', 'NULL', 'M', 'preston5@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '2119 Little Dr', 'NULL', '386-555-0178', '2013-02-06', '0-1 Miles'], ['23785', '634', 'AW00023785', 'NULL', 'Taylor', 'M', 'Harris', '0', '1972-02-12', 'S', 'NULL', 'F', 'taylor61@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '6126 North Sixth Street', 'NULL', '508-555-0146', '2013-02-03', '0-1 Miles'], ['23786', '609', 'AW00023786', 'NULL', 'Carrie', 'L', 'Serrano', '0', '1959-09-12', 'M', 'NULL', 'F', 'carrie15@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '6316 Damascus Loop', 'NULL', '416-555-0138', '2013-07-10', '1-2 Miles'], ['23787', '299', 'AW00023787', 'NULL', 'Adrian', 'P', 'Ward', '0', '1960-02-01', 'S', 'NULL', 'M', 'adrian5@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '1', '3243 Juniper Dr.', 'NULL', '731-555-0128', '2013-03-25', '5-10 Miles'], ['23788', '301', 'AW00023788', 'NULL', 'Michael', 'NULL', 'Smith', '0', '1960-02-22', 'M', 'NULL', 'M', 'michael33@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3928 San Francisco', 'NULL', '821-555-0113', '2013-08-22', '2-5 Miles'], ['23789', '311', 'AW00023789', 'NULL', 'Ryan', 'A', 'Walker', '0', '1959-09-05', 'M', 'NULL', 'M', 'ryan59@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4255 Alpine Rd.', 'NULL', '586-555-0134', '2013-09-24', '2-5 Miles'], ['23790', '543', 'AW00023790', 'NULL', 'Isabella', 'NULL', 'Williams', '0', '1960-11-19', 'M', 'NULL', 'F', 'isabella59@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2291 Kreuger Drive', 'NULL', '543-555-0167', '2013-07-07', '1-2 Miles'], ['23791', '644', 'AW00023791', 'NULL', 'Aaron', 'NULL', 'Griffin', '0', '1961-04-12', 'S', 'NULL', 'M', 'aaron20@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '828 Pinewood Court', 'NULL', '306-555-0143', '2013-06-30', '1-2 Miles'], ['23792', '612', 'AW00023792', 'NULL', 'Jessie', 'L', 'Wu', '0', '1960-09-10', 'S', 'NULL', 'M', 'jessie12@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3422 Meadowvale Court', 'NULL', '170-555-0112', '2013-07-16', '1-2 Miles'], ['23793', '612', 'AW00023793', 'NULL', 'Ryan', 'NULL', 'Kumar', '0', '1960-10-08', 'S', 'NULL', 'M', 'ryan32@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '1', '7726 N Jackson Way', 'NULL', '394-555-0182', '2013-04-16', '10+ Miles'], ['23794', '314', 'AW00023794', 'NULL', 'Abigail', 'B', 'Powell', '0', '1960-09-13', 'M', 'NULL', 'F', 'abigail33@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9537 Ridgewood Drive', 'NULL', '131-555-0151', '2013-10-02', '2-5 Miles'], ['23795', '312', 'AW00023795', 'NULL', 'Lauren', 'L', 'Moore', '0', '1961-04-15', 'S', 'NULL', 'F', 'lauren26@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '1', '7972 Rolling Green Circle', 'NULL', '574-555-0176', '2013-03-19', '10+ Miles'], ['23796', '355', 'AW00023796', 'NULL', 'Miguel', 'D', 'Young', '0', '1971-10-03', 'S', 'NULL', 'M', 'miguel25@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '1', '3457 Bel Air Drive', 'NULL', '123-555-0179', '2013-07-05', '10+ Miles'], ['23797', '337', 'AW00023797', 'NULL', 'Nathan', 'NULL', 'Perez', '0', '1961-08-30', 'S', 'NULL', 'M', 'nathan40@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3576 Frigate Ct.', 'NULL', '512-555-0167', '2013-04-12', '0-1 Miles'], ['23798', '54', 'AW00023798', 'NULL', 'Julia', 'NULL', 'Kelly', '0', '1962-03-12', 'M', 'NULL', 'F', 'julia64@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7770 Brodia Court', 'NULL', '753-555-0112', '2013-03-18', '1-2 Miles'], ['23799', '298', 'AW00023799', 'NULL', 'Carolyn', 'S', 'Chandra', '0', '1962-08-14', 'M', 'NULL', 'F', 'carolyn3@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6427 Powell Drive', 'NULL', '589-555-0167', '2013-12-12', '0-1 Miles'], ['23800', '331', 'AW00023800', 'NULL', 'Kaylee', 'NULL', 'Cox', '0', '1963-04-08', 'M', 'NULL', 'F', 'kaylee8@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6110 J Ave', 'NULL', '420-555-0197', '2013-10-06', '1-2 Miles'], ['23801', '548', 'AW00023801', 'NULL', 'Taylor', 'NULL', 'Wood', '0', '1962-09-05', 'M', 'NULL', 'F', 'taylor27@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1825 Corte Del Prado', 'NULL', '787-555-0124', '2013-02-15', '0-1 Miles'], ['23802', '548', 'AW00023802', 'NULL', 'Emily', 'S', 'Diaz', '0', '1968-11-19', 'M', 'NULL', 'F', 'emily47@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7305 Terry Lynn Lane', 'NULL', '340-555-0113', '2013-12-03', '1-2 Miles'], ['23803', '62', 'AW00023803', 'NULL', 'Bernard', 'NULL', 'Thames', '0', '1962-11-14', 'M', 'NULL', 'M', 'bernard1@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6115 Sierra Drive', 'NULL', '144-555-0180', '2013-06-05', '0-1 Miles'], ['23804', '611', 'AW00023804', 'NULL', 'Kristen', 'A', 'Ma', '0', '1969-07-03', 'M', 'NULL', 'F', 'kristen14@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8537 Partridge Dr.', 'NULL', '942-555-0170', '2013-03-24', '1-2 Miles'], ['23805', '542', 'AW00023805', 'NULL', 'Luke', 'NULL', 'Hayes', '0', '1963-12-22', 'M', 'NULL', 'M', 'luke12@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3947 Vista Valley Rd', 'NULL', '879-555-0197', '2013-09-25', '1-2 Miles'], ['23806', '52', 'AW00023806', 'NULL', 'Olivia', 'NULL', 'Foster', '0', '1964-02-16', 'M', 'NULL', 'F', 'olivia61@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '246 Weatherly Way', 'NULL', '308-555-0132', '2011-10-27', '1-2 Miles'], ['23807', '314', 'AW00023807', 'NULL', 'Carson', 'NULL', 'Hughes', '0', '1963-08-10', 'M', 'NULL', 'M', 'carson10@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9108 Mcelroy', 'NULL', '450-555-0163', '2013-10-26', '1-2 Miles'], ['23808', '336', 'AW00023808', 'NULL', 'Spencer', 'NULL', 'Perry', '0', '1980-04-30', 'M', 'NULL', 'M', 'spencer9@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6836 Somerset Pl.', 'NULL', '671-555-0133', '2013-06-20', '0-1 Miles'], ['23809', '343', 'AW00023809', 'NULL', 'Danielle', 'NULL', 'Sanchez', '0', '1963-10-21', 'M', 'NULL', 'F', 'danielle27@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3223 White Dr.', 'NULL', '978-555-0121', '2013-09-12', '0-1 Miles'], ['23810', '331', 'AW00023810', 'NULL', 'Sarah', 'M', 'Lee', '0', '1964-03-08', 'M', 'NULL', 'F', 'sarah24@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '6490 Haviland Place', 'NULL', '623-555-0113', '2013-05-22', '0-1 Miles'], ['23811', '361', 'AW00023811', 'NULL', 'Ethan', 'L', 'Powell', '0', '1969-12-31', 'S', 'NULL', 'M', 'ethan5@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9482 Rosebrook Ct.', 'NULL', '681-555-0186', '2013-10-25', '1-2 Miles'], ['23812', '359', 'AW00023812', 'NULL', 'Cameron', 'W', 'Butler', '0', '1970-09-15', 'S', 'NULL', 'M', 'cameron9@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '5756 Mehaffey Way', 'NULL', '829-555-0110', '2013-10-02', '0-1 Miles'], ['23813', '355', 'AW00023813', 'NULL', 'Hannah', 'E', 'Bennett', '0', '1965-01-03', 'S', 'NULL', 'F', 'hannah24@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3500 Woodcrest Dr.', 'NULL', '352-555-0138', '2013-10-16', '1-2 Miles'], ['23814', '374', 'AW00023814', 'NULL', 'Angela', 'NULL', 'Foster', '0', '1965-01-20', 'M', 'NULL', 'F', 'angela19@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '3396 Castle Rock Road', 'NULL', '296-555-0164', '2013-09-10', '0-1 Miles'], ['23815', '358', 'AW00023815', 'NULL', 'Julia', 'M', 'Ward', '0', '1965-05-25', 'S', 'NULL', 'F', 'julia57@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '6316 Parkway Drive', 'NULL', '508-555-0120', '2013-10-04', '1-2 Miles'], ['23816', '312', 'AW00023816', 'NULL', 'Natalie', 'NULL', 'Johnson', '0', '1964-12-22', 'S', 'NULL', 'F', 'natalie69@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '9905 Scenic Drive', 'NULL', '183-555-0196', '2013-10-01', '1-2 Miles'], ['23817', '543', 'AW00023817', 'NULL', 'Kaitlyn', 'M', 'Murphy', '0', '1965-02-12', 'M', 'NULL', 'F', 'kaitlyn53@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '8213 Dianda Dr', 'NULL', '248-555-0168', '2013-06-22', '0-1 Miles'], ['23818', '307', 'AW00023818', 'NULL', 'Cassidy', 'C', 'Gonzales', '0', '1983-11-13', 'M', 'NULL', 'F', 'cassidy18@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4312 Wintergreen Court', 'NULL', '929-555-0162', '2013-10-06', '1-2 Miles'], ['23819', '68', 'AW00023819', 'NULL', 'Vanessa', 'NULL', 'Washington', '0', '1984-04-10', 'M', 'NULL', 'F', 'vanessa14@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5210 Lillian Dr', 'NULL', '101-555-0122', '2011-10-14', '1-2 Miles'], ['23820', '536', 'AW00023820', 'NULL', 'Isabelle', 'NULL', 'Diaz', '0', '1979-01-31', 'M', 'NULL', 'F', 'isabelle20@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6179 Norris Court', '# 9', '597-555-0171', '2013-12-15', '1-2 Miles'], ['23821', '614', 'AW00023821', 'NULL', 'Jordan', 'NULL', 'Lal', '0', '1978-11-20', 'S', 'NULL', 'M', 'jordan25@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2572 Hill Dr', '# 2', '611-555-0154', '2013-11-17', '1-2 Miles'], ['23822', '547', 'AW00023822', 'NULL', 'Sierra', 'M', 'Campbell', '0', '1979-03-02', 'M', 'NULL', 'F', 'sierra6@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4877 Banana Court', 'NULL', '177-555-0172', '2013-05-05', '0-1 Miles'], ['23823', '298', 'AW00023823', 'NULL', 'Samuel', 'K', 'Davis', '0', '1984-05-14', 'M', 'NULL', 'M', 'samuel63@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '307 Almondtree Circle', 'NULL', '653-555-0118', '2013-05-18', '0-1 Miles'], ['23824', '315', 'AW00023824', 'NULL', 'Edward', 'NULL', 'Carter', '0', '1984-10-09', 'M', 'NULL', 'M', 'edward12@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '771 Northridge Drive', '# 495', '143-555-0165', '2013-02-06', '1-2 Miles'], ['23825', '325', 'AW00023825', 'NULL', 'Katherine', 'R', 'Coleman', '0', '1978-08-19', 'M', 'NULL', 'F', 'katherine31@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8120 E Lane', 'NULL', '204-555-0163', '2013-10-17', '0-1 Miles'], ['23826', '337', 'AW00023826', 'NULL', 'Dalton', 'M', 'Ross', '0', '1984-09-17', 'S', 'NULL', 'M', 'dalton49@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5002 Starflower Dr.', 'NULL', '149-555-0166', '2013-04-11', '1-2 Miles'], ['23827', '69', 'AW00023827', 'NULL', 'Wyatt', 'NULL', 'Hall', '0', '1983-09-21', 'S', 'NULL', 'M', 'wyatt25@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8252 Northridge Drive', 'NULL', '101-555-0134', '2013-12-04', '1-2 Miles'], ['23828', '311', 'AW00023828', 'NULL', 'Carolyn', 'S', 'Carlson', '0', '1977-04-18', 'M', 'NULL', 'F', 'carolyn39@adventure-works.com', '70000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3783 Terra Calitina', 'NULL', '944-555-0119', '2013-11-12', '0-1 Miles'], ['23829', '51', 'AW00023829', 'NULL', 'Anthony', 'G', 'Rodriguez', '0', '1978-05-23', 'M', 'NULL', 'M', 'anthony6@adventure-works.com', '50000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8539 Glazier Dr.', 'NULL', '439-555-0185', '2011-10-06', '1-2 Miles'], ['23830', '53', 'AW00023830', 'NULL', 'Cameron', 'NULL', 'White', '0', '1978-03-05', 'M', 'NULL', 'M', 'cameron31@adventure-works.com', '50000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6096 Pheasant Circle', 'NULL', '297-555-0143', '2011-10-13', '1-2 Miles'], ['23831', '536', 'AW00023831', 'NULL', 'Colleen', 'NULL', 'Jai', '0', '1977-08-07', 'M', 'NULL', 'F', 'colleen35@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9424 Oakgrove', 'NULL', '639-555-0119', '2013-02-01', '0-1 Miles'], ['23832', '609', 'AW00023832', 'NULL', 'Alexandra', 'B', 'Ramirez', '0', '1978-03-19', 'M', 'NULL', 'F', 'alexandra18@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1876 La Costa Ct.', 'NULL', '862-555-0162', '2013-11-02', '2-5 Miles'], ['23833', '618', 'AW00023833', 'NULL', 'Kevin', 'J', 'Gonzales', '0', '1983-02-07', 'M', 'NULL', 'M', 'kevin19@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4833 Heather Pl', 'NULL', '625-555-0186', '2013-11-27', '0-1 Miles'], ['23834', '635', 'AW00023834', 'NULL', 'Ethan', 'H', 'Long', '0', '1977-12-04', 'S', 'NULL', 'M', 'ethan6@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6104 North Civic Drive', 'NULL', '910-555-0185', '2013-11-09', '2-5 Miles'], ['23835', '326', 'AW00023835', 'NULL', 'Marcus', 'NULL', 'Jackson', '0', '1983-08-08', 'M', 'NULL', 'M', 'marcus12@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '8040 Hill Ct', 'NULL', '397-555-0155', '2013-11-06', '0-1 Miles'], ['23836', '336', 'AW00023836', 'NULL', 'Chloe', 'NULL', 'Carter', '0', '1977-08-03', 'S', 'NULL', 'F', 'chloe7@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7294 Kathleen Drive', 'NULL', '514-555-0188', '2013-11-20', '2-5 Miles'], ['23837', '311', 'AW00023837', 'NULL', 'Jonathan', 'E', 'Li', '0', '1981-10-11', 'M', 'NULL', 'M', 'jonathan25@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '240 Rapallo Lane', 'NULL', '873-555-0185', '2013-11-17', '0-1 Miles'], ['23838', '312', 'AW00023838', 'NULL', 'Ariana', 'M', 'Ready', '0', '1976-02-19', 'M', 'NULL', 'F', 'ariana18@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2411 Hazelnut Lane', 'NULL', '126-555-0118', '2013-11-20', '2-5 Miles'], ['23839', '310', 'AW00023839', 'NULL', 'Savannah', 'L', 'Howard', '0', '1981-06-22', 'M', 'NULL', 'F', 'savannah10@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7761 Azoras Cir', 'NULL', '978-555-0168', '2013-04-15', '0-1 Miles'], ['23840', '307', 'AW00023840', 'NULL', 'Mason', 'NULL', 'Ward', '0', '1981-12-02', 'M', 'NULL', 'M', 'mason12@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5430 Park Glen Ct.', 'NULL', '240-555-0147', '2013-11-22', '2-5 Miles'], ['23841', '385', 'AW00023841', 'NULL', 'Sydney', 'NULL', 'Phillips', '0', '1981-03-09', 'M', 'NULL', 'F', 'sydney48@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4919 Ham Court', 'NULL', '108-555-0165', '2013-11-22', '2-5 Miles'], ['23842', '51', 'AW00023842', 'NULL', 'Connor', 'NULL', 'Bryant', '0', '1976-03-25', 'M', 'NULL', 'M', 'connor12@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2495 Rachele Road', 'NULL', '182-555-0167', '2011-10-11', '0-1 Miles'], ['23843', '338', 'AW00023843', 'NULL', 'Marcus', 'D', 'Patterson', '0', '1976-03-19', 'M', 'NULL', 'M', 'marcus60@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '6660 Acardia Pl.', 'NULL', '394-555-0114', '2013-11-18', '0-1 Miles'], ['23844', '632', 'AW00023844', 'NULL', 'Alexandra', 'M', 'Gonzales', '0', '1974-10-29', 'S', 'NULL', 'F', 'alexandra38@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1160 Bella Avenue', 'NULL', '378-555-0171', '2013-11-24', '2-5 Miles'], ['23845', '355', 'AW00023845', 'NULL', 'Madeline', 'NULL', 'Turner', '0', '1975-02-11', 'S', 'NULL', 'F', 'madeline4@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '6732 Arcadia Pl.', '#e', '632-555-0134', '2013-11-16', '0-1 Miles'], ['23846', '68', 'AW00023846', 'NULL', 'Aidan', 'L', 'Diaz', '0', '1974-12-18', 'M', 'NULL', 'M', 'aidan23@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7178 B Avenue I', 'NULL', '342-555-0173', '2011-10-26', '2-5 Miles'], ['23847', '536', 'AW00023847', 'NULL', 'Chad', 'J', 'Sharma', '0', '1974-08-29', 'S', 'NULL', 'M', 'chad11@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '7086 C Wharton Way', 'NULL', '782-555-0118', '2013-11-02', '0-1 Miles'], ['23848', '300', 'AW00023848', 'NULL', 'Pamela', 'NULL', 'Sai', '0', '1974-12-03', 'M', 'NULL', 'F', 'pamela9@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1372 Quartermaster', 'NULL', '437-555-0199', '2013-11-01', '2-5 Miles'], ['23849', '627', 'AW00023849', 'NULL', 'Alexis', 'NULL', 'Simmons', '0', '1976-07-03', 'S', 'NULL', 'F', 'alexis38@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '3803 Frayne Lane', 'NULL', '399-555-0195', '2013-11-09', '0-1 Miles'], ['23850', '627', 'AW00023850', 'NULL', 'Anna', 'J', 'Hall', '0', '1977-05-19', 'M', 'NULL', 'F', 'anna61@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7932 Cataline Avenue', 'NULL', '329-555-0123', '2013-11-12', '2-5 Miles'], ['23851', '552', 'AW00023851', 'NULL', 'Mariah', 'K', 'Rogers', '0', '1976-10-12', 'S', 'NULL', 'F', 'mariah42@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '2579 The Trees Dr.', 'NULL', '491-555-0125', '2013-11-02', '0-1 Miles'], ['23852', '299', 'AW00023852', 'NULL', 'Desiree', 'M', 'Torres', '0', '1976-10-17', 'S', 'NULL', 'F', 'desiree8@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '4321 West I St', 'NULL', '445-555-0133', '2013-11-13', '0-1 Miles'], ['23853', '638', 'AW00023853', 'NULL', 'Isaac', 'S', 'Perez', '0', '1975-06-21', 'M', 'NULL', 'M', 'isaac26@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3479 Broadmoor Dr.', 'NULL', '983-555-0153', '2013-11-17', '2-5 Miles'], ['23854', '343', 'AW00023854', 'NULL', 'Megan', 'S', 'Torres', '0', '1974-12-12', 'M', 'NULL', 'F', 'megan41@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9693 Mellowood Street', 'NULL', '193-555-0162', '2013-11-10', '2-5 Miles'], ['23855', '316', 'AW00023855', 'NULL', 'Carlos', 'NULL', 'Watson', '0', '1974-08-08', 'M', 'NULL', 'M', 'carlos2@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1532 Marlene Dr.', 'NULL', '488-555-0122', '2013-11-20', '2-5 Miles'], ['23856', '638', 'AW00023856', 'NULL', 'Sarah', 'NULL', 'Taylor', '0', '1975-03-04', 'S', 'NULL', 'F', 'sarah11@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '8026 Sudan Loop', 'NULL', '653-555-0178', '2013-11-01', '0-1 Miles'], ['23857', '543', 'AW00023857', 'NULL', 'Alexandra', 'L', 'Anderson', '0', '1975-06-24', 'S', 'NULL', 'F', 'alexandra73@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9218 Gold Crest Ct.', 'NULL', '133-555-0133', '2013-11-14', '2-5 Miles'], ['23858', '59', 'AW00023858', 'NULL', 'Jonathan', 'NULL', 'Powell', '0', '1974-03-04', 'M', 'NULL', 'M', 'jonathan8@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2728 Clown Court', 'NULL', '366-555-0165', '2011-10-01', '2-5 Miles'], ['23859', '69', 'AW00023859', 'NULL', 'Megan', 'A', 'Anderson', '0', '1979-11-16', 'M', 'NULL', 'F', 'megan13@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2475 Maureen Ln.', 'NULL', '180-555-0173', '2011-10-20', '2-5 Miles'], ['23860', '632', 'AW00023860', 'NULL', 'Eric', 'S', 'Long', '0', '1973-09-04', 'M', 'NULL', 'M', 'eric18@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5109 Fawn Glen Circle', 'NULL', '815-555-0195', '2013-11-05', '2-5 Miles'], ['23861', '536', 'AW00023861', 'NULL', 'Keith', 'C', 'Anand', '0', '1973-12-14', 'M', 'NULL', 'M', 'keith26@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3581 Rising Dawn Way', 'NULL', '173-555-0173', '2013-02-16', '2-5 Miles'], ['23862', '311', 'AW00023862', 'NULL', 'Rebekah', 'B', 'Kapoor', '0', '1978-12-12', 'M', 'NULL', 'F', 'rebekah1@adventure-works.com', '40000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6306 El Dorado Way', 'NULL', '228-555-0123', '2013-03-31', '10+ Miles'], ['23863', '322', 'AW00023863', 'NULL', 'Christian', 'NULL', 'Williams', '0', '1972-10-05', 'S', 'NULL', 'M', 'christian32@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '376 Amador Valley Blvd.', 'NULL', '559-555-0188', '2013-06-10', '0-1 Miles'], ['23864', '352', 'AW00023864', 'NULL', 'Chloe', 'J', 'Jackson', '0', '1978-06-12', 'S', 'NULL', 'F', 'chloe44@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4399 Chickpea Ct.', 'NULL', '664-555-0143', '2013-07-29', '0-1 Miles'], ['23865', '43', 'AW00023865', 'NULL', 'Lori', 'L', 'Sanz', '0', '1975-10-18', 'S', 'NULL', 'F', 'lori20@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7120 Panoramic Drive', 'NULL', '371-555-0174', '2011-11-01', '2-5 Miles'], ['23866', '49', 'AW00023866', 'NULL', 'Xavier', 'NULL', 'Flores', '0', '1975-11-03', 'M', 'NULL', 'M', 'xavier52@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '60 Reliz Valley Road', 'NULL', '802-555-0166', '2011-11-13', '2-5 Miles'], ['23867', '66', 'AW00023867', 'NULL', 'Sarah', 'M', 'Henderson', '0', '1976-03-22', 'S', 'NULL', 'F', 'sarah30@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5710 Encino Drive', 'NULL', '715-555-0180', '2011-11-14', '2-5 Miles'], ['23868', '69', 'AW00023868', 'Ms.', 'Abigail', 'C', 'Coleman', '0', '1976-01-05', 'S', 'NULL', 'F', 'abigail74@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '9996 Asilomaar Dr.', 'NULL', '464-555-0173', '2011-11-15', '0-1 Miles'], ['23869', '607', 'AW00023869', 'NULL', 'Wayne', 'C', 'Nara', '0', '1975-09-12', 'M', 'NULL', 'M', 'wayne19@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1798 Westbury Dr.', 'NULL', '958-555-0183', '2013-03-10', '2-5 Miles'], ['23870', '548', 'AW00023870', 'NULL', 'Elijah', 'M', 'Henderson', '0', '1975-12-13', 'M', 'NULL', 'M', 'elijah8@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '8682 Etcheverry Dr', 'NULL', '684-555-0119', '2013-12-21', '0-1 Miles'], ['23871', '552', 'AW00023871', 'NULL', 'Bailey', 'G', 'Richardson', '0', '1975-11-29', 'S', 'NULL', 'F', 'bailey7@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '6561 Dalis Drive', 'NULL', '458-555-0131', '2013-12-10', '0-1 Miles'], ['23872', '553', 'AW00023872', 'NULL', 'Matthew', 'NULL', 'Garcia', '0', '1975-09-19', 'M', 'NULL', 'M', 'matthew21@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '332 Laguna Niguel', 'NULL', '355-555-0196', '2013-12-19', '2-5 Miles'], ['23873', '372', 'AW00023873', 'NULL', 'Nicole', 'A', 'Miller', '0', '1976-04-15', 'M', 'NULL', 'F', 'nicole6@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6088 Mt. Hood Circle', 'NULL', '646-555-0129', '2013-12-07', '0-1 Miles'], ['23874', '536', 'AW00023874', 'NULL', 'Abigail', 'J', 'Cook', '0', '1978-04-10', 'S', 'NULL', 'F', 'abigail7@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6703 Corte Poquito', 'NULL', '378-555-0119', '2013-10-30', '2-5 Miles'], ['23875', '642', 'AW00023875', 'NULL', 'Sean', 'NULL', 'Green', '0', '1971-11-17', 'M', 'NULL', 'M', 'sean48@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9029 Mt. Trinity Court', 'NULL', '480-555-0114', '2013-11-24', '2-5 Miles'], ['23876', '361', 'AW00023876', 'NULL', 'David', 'M', 'Henderson', '0', '1971-12-12', 'M', 'NULL', 'M', 'david37@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3355 Alier Drive', 'NULL', '138-555-0151', '2013-10-03', '2-5 Miles'], ['23877', '359', 'AW00023877', 'NULL', 'Katherine', 'T', 'Morris', '0', '1971-11-18', 'M', 'NULL', 'F', 'katherine4@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '5679 Attic Lane', 'Unit A', '515-555-0120', '2013-11-29', '0-1 Miles'], ['23878', '360', 'AW00023878', 'NULL', 'Chloe', 'L', 'Wood', '0', '1977-08-03', 'S', 'NULL', 'F', 'chloe68@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5097 Waterfall Way', 'NULL', '291-555-0118', '2013-12-07', '2-5 Miles'], ['23879', '60', 'AW00023879', 'NULL', 'Amber', 'L', 'Gonzalez', '0', '1971-08-22', 'M', 'NULL', 'F', 'amber8@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '9286 Military East', 'NULL', '728-555-0176', '2013-03-29', '0-1 Miles'], ['23880', '337', 'AW00023880', 'NULL', 'Noah', 'L', 'Patterson', '0', '1971-07-25', 'S', 'NULL', 'M', 'noah7@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1077 Laurel Drive', 'NULL', '982-555-0111', '2013-12-04', '2-5 Miles'], ['23881', '338', 'AW00023881', 'NULL', 'Joshua', 'M', 'Martinez', '0', '1974-12-15', 'M', 'NULL', 'M', 'joshua19@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '931 Corte De Luna', 'NULL', '610-555-0128', '2013-12-01', '0-1 Miles'], ['23882', '343', 'AW00023882', 'NULL', 'Alexia', 'F', 'Butler', '0', '1974-10-07', 'S', 'NULL', 'F', 'alexia12@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5711 Shady Lane', 'NULL', '680-555-0114', '2013-12-11', '0-1 Miles'], ['23883', '348', 'AW00023883', 'NULL', 'Jackson', 'L', 'Russell', '0', '1980-11-18', 'M', 'NULL', 'M', 'jackson22@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '6969 Eaker Way', 'NULL', '525-555-0193', '2013-12-24', '0-1 Miles'], ['23884', '368', 'AW00023884', 'NULL', 'Ethan', 'NULL', 'Ross', '0', '1974-09-20', 'M', 'NULL', 'M', 'ethan0@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9095 Ironwood Drive', 'NULL', '435-555-0118', '2013-12-28', '0-1 Miles'], ['23885', '372', 'AW00023885', 'NULL', 'Angela', 'A', 'Morris', '0', '1974-12-04', 'M', 'NULL', 'F', 'angela44@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2234 String Dr.', 'NULL', '499-555-0113', '2013-12-22', '0-1 Miles'], ['23886', '383', 'AW00023886', 'NULL', 'Sean', 'NULL', 'Stewart', '0', '1975-06-15', 'M', 'NULL', 'M', 'sean34@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8180 Saclan Terr.', 'NULL', '433-555-0151', '2013-12-04', '0-1 Miles'], ['23887', '609', 'AW00023887', 'NULL', 'Mason', 'A', 'Carter', '0', '1971-03-01', 'S', 'NULL', 'M', 'mason31@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1660 Bonifacio St.', 'NULL', '326-555-0114', '2013-12-03', '2-5 Miles'], ['23888', '385', 'AW00023888', 'NULL', 'Edward', 'R', 'Clark', '0', '1976-08-06', 'M', 'NULL', 'M', 'edward41@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2480 Stillwater Court', 'NULL', '147-555-0173', '2013-03-06', '0-1 Miles'], ['23889', '644', 'AW00023889', 'NULL', 'Sean', 'M', 'Carter', '0', '1970-10-25', 'S', 'NULL', 'M', 'sean42@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9817 Frisbie Court', 'NULL', '614-555-0197', '2013-12-22', '0-1 Miles'], ['23890', '311', 'AW00023890', 'NULL', 'Haley', 'NULL', 'Cox', '0', '1970-10-31', 'M', 'NULL', 'F', 'haley11@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4535 Walnut Blvd.', 'NULL', '232-555-0117', '2013-08-25', '0-1 Miles'], ['23891', '545', 'AW00023891', 'NULL', 'Jack', 'NULL', 'Jenkins', '0', '1976-09-30', 'M', 'NULL', 'M', 'jack7@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5695 Laurel Drive', 'NULL', '154-555-0141', '2013-06-06', '2-5 Miles'], ['23892', '52', 'AW00023892', 'NULL', 'Olivia', 'NULL', 'Bailey', '0', '1982-02-10', 'M', 'NULL', 'F', 'olivia32@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '414 Joseph Ave', 'NULL', '260-555-0173', '2013-06-05', '2-5 Miles'], ['23893', '53', 'AW00023893', 'NULL', 'Zachary', 'J', 'Clark', '0', '1970-08-29', 'M', 'NULL', 'M', 'zachary50@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '7041 Notre Dame Avenue', 'NULL', '146-555-0164', '2013-06-17', '10+ Miles'], ['23894', '618', 'AW00023894', 'NULL', 'Bryan', 'NULL', 'Ramirez', '0', '1971-01-19', 'M', 'NULL', 'M', 'bryan9@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '601 Jason Ct.', 'NULL', '122-555-0145', '2013-03-17', '10+ Miles'], ['23895', '539', 'AW00023895', 'NULL', 'Nicole', 'NULL', 'Powell', '0', '1970-10-12', 'S', 'NULL', 'F', 'nicole57@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1569 Norse Drive', 'NULL', '492-555-0140', '2013-12-07', '2-5 Miles'], ['23896', '631', 'AW00023896', 'NULL', 'Megan', 'NULL', 'Peterson', '0', '1970-01-18', 'S', 'NULL', 'F', 'megan42@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5553 Kahrs Avenue', 'NULL', '140-555-0111', '2013-12-15', '0-1 Miles'], ['23897', '142', 'AW00023897', 'NULL', 'Katrina', 'NULL', 'Chapman', '0', '1978-03-08', 'S', 'NULL', 'F', 'katrina14@adventure-works.com', '10000.00', '3', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Auf Der Steige 10', 'NULL', '1 (11) 500 555-0128', '2013-03-14', '0-1 Miles'], ['23898', '156', 'AW00023898', 'NULL', 'Shawna', 'E', 'Rai', '0', '1972-08-05', 'S', 'NULL', 'F', 'shawna17@adventure-works.com', '10000.00', '4', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Residenz Straße 944', 'NULL', '1 (11) 500 555-0172', '2013-07-14', '0-1 Miles'], ['23899', '186', 'AW00023899', 'NULL', 'Lindsey', 'W', 'Nath', '0', '1984-01-20', 'S', 'NULL', 'F', 'lindsey18@adventure-works.com', '10000.00', '4', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '00, rue Saint-Lazare', 'NULL', '1 (11) 500 555-0155', '2013-10-27', '0-1 Miles'], ['23900', '118', 'AW00023900', 'NULL', 'Rafael', 'A', 'Yang', '0', '1983-10-05', 'S', 'NULL', 'M', 'rafael5@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Hauptstr 2929', 'NULL', '1 (11) 500 555-0193', '2013-08-22', '1-2 Miles'], ['23901', '219', 'AW00023901', 'NULL', 'Max', 'S', 'Gutierrez', '0', '1973-01-13', 'M', 'NULL', 'M', 'max11@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '88, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0130', '2013-10-01', '2-5 Miles'], ['23902', '163', 'AW00023902', 'NULL', 'Julie', 'NULL', 'Kumar', '0', '1984-01-20', 'M', 'NULL', 'F', 'julie12@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Rotthäuser Weg 99', 'NULL', '1 (11) 500 555-0113', '2013-08-15', '2-5 Miles'], ['23903', '121', 'AW00023903', 'NULL', 'Harold', 'D', 'Subram', '0', '1973-03-30', 'M', 'NULL', 'M', 'harold10@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Auf den Kuhlen Straße 122', 'NULL', '1 (11) 500 555-0144', '2013-08-06', '2-5 Miles'], ['23904', '238', 'AW00023904', 'NULL', 'Haley', 'F', 'Washington', '0', '1973-03-20', 'S', 'NULL', 'F', 'haley32@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7386 Greenview Court', 'NULL', '1 (11) 500 555-0120', '2013-04-19', '1-2 Miles'], ['23905', '117', 'AW00023905', 'NULL', 'Jose', 'NULL', 'Zhang', '0', '1972-11-29', 'S', 'NULL', 'M', 'jose18@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Im Himmelsweg 89', 'NULL', '1 (11) 500 555-0159', '2013-08-20', '0-1 Miles'], ['23906', '159', 'AW00023906', 'NULL', 'Alan', 'J', 'Ma', '0', '1978-10-18', 'S', 'NULL', 'M', 'alan19@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Westheimer Straße 345', 'NULL', '1 (11) 500 555-0115', '2013-04-10', '0-1 Miles'], ['23907', '247', 'AW00023907', 'NULL', 'Hector', 'NULL', 'Navarro', '0', '1973-01-05', 'S', 'NULL', 'M', 'hector8@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '4305 Geriola Court', 'NULL', '1 (11) 500 555-0170', '2013-05-05', '0-1 Miles'], ['23908', '215', 'AW00023908', 'NULL', 'Max', 'J', 'Sanz', '0', '1977-11-14', 'S', 'NULL', 'M', 'max18@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '1', '111, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0148', '2013-11-27', '0-1 Miles'], ['23909', '196', 'AW00023909', 'NULL', 'Todd', 'C', 'Lin', '0', '1972-04-04', 'M', 'NULL', 'M', 'todd8@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '36, avenue de Malakoff', 'NULL', '1 (11) 500 555-0116', '2013-11-12', '1-2 Miles'], ['23910', '121', 'AW00023910', 'NULL', 'Gabriel', 'A', 'Perry', '0', '1971-03-04', 'S', 'NULL', 'M', 'gabriel4@adventure-works.com', '10000.00', '4', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Celler Weg 321', 'NULL', '1 (11) 500 555-0111', '2013-04-07', '0-1 Miles'], ['23911', '187', 'AW00023911', 'NULL', 'Priscilla', 'E', 'Sharma', '0', '1981-10-11', 'S', 'NULL', 'F', 'priscilla9@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '17, rue de l´Avenir', 'NULL', '1 (11) 500 555-0186', '2013-09-08', '0-1 Miles'], ['23912', '133', 'AW00023912', 'NULL', 'Arthur', 'NULL', 'Sanchez', '0', '1971-01-11', 'S', 'NULL', 'M', 'arthur21@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Pappelallee 229', 'NULL', '1 (11) 500 555-0114', '2013-11-02', '0-1 Miles'], ['23913', '207', 'AW00023913', 'NULL', 'Riley', 'J', 'Cooper', '0', '1970-11-09', 'S', 'NULL', 'F', 'riley28@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '611bis, rue des Peupliers', 'NULL', '1 (11) 500 555-0174', '2013-12-30', '0-1 Miles'], ['23914', '154', 'AW00023914', 'NULL', 'Tonya', 'L', 'Sharma', '0', '1975-09-21', 'M', 'NULL', 'F', 'tonya9@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Lützowplatz 5538', 'NULL', '1 (11) 500 555-0178', '2013-09-05', '0-1 Miles'], ['23915', '123', 'AW00023915', 'NULL', 'Lawrence', 'W', 'Serrano', '0', '1975-02-16', 'M', 'NULL', 'M', 'lawrence15@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Knaackstr 695', 'NULL', '1 (11) 500 555-0171', '2013-11-30', '0-1 Miles'], ['23916', '145', 'AW00023916', 'NULL', 'Ruben', 'L', 'Serrano', '0', '1974-06-04', 'M', 'NULL', 'M', 'ruben39@adventure-works.com', '10000.00', '4', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Wasserstr 123', 'NULL', '1 (11) 500 555-0110', '2013-08-30', '0-1 Miles'], ['23917', '147', 'AW00023917', 'NULL', 'Carrie', 'NULL', 'Carlson', '0', '1968-10-25', 'M', 'NULL', 'F', 'carrie16@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Conesweg 489', 'NULL', '1 (11) 500 555-0111', '2013-08-08', '0-1 Miles'], ['23918', '190', 'AW00023918', 'NULL', 'Kendra', 'NULL', 'Navarro', '0', '1974-03-04', 'S', 'NULL', 'F', 'kendra10@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '25, route de Marseille', 'NULL', '1 (11) 500 555-0155', '2013-03-19', '0-1 Miles'], ['23919', '189', 'AW00023919', 'NULL', 'Jordan', 'NULL', 'Parker', '0', '1938-01-13', 'M', 'NULL', 'F', 'jordan36@adventure-works.com', '10000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '1001bis, boulevard Saint Germain', 'NULL', '1 (11) 500 555-0160', '2013-07-01', '0-1 Miles'], ['23920', '200', 'AW00023920', 'NULL', 'Arthur', 'NULL', 'Ruiz', '0', '1972-01-24', 'S', 'NULL', 'M', 'arthur25@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '22, rue des Rosiers', 'NULL', '1 (11) 500 555-0119', '2013-04-19', '0-1 Miles'], ['23921', '117', 'AW00023921', 'NULL', 'Charles', 'NULL', 'Lee', '0', '1971-08-06', 'S', 'NULL', 'M', 'charles26@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', 'Essener Straße 1', 'NULL', '1 (11) 500 555-0193', '2013-04-11', '0-1 Miles'], ['23922', '171', 'AW00023922', 'NULL', 'Cody', 'NULL', 'Richardson', '0', '1972-01-15', 'M', 'NULL', 'M', 'cody10@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', 'Winter der Böck 2550', 'NULL', '1 (11) 500 555-0114', '2013-04-29', '0-1 Miles'], ['23923', '236', 'AW00023923', 'NULL', 'Alejandro', 'B', 'Sun', '0', '1977-11-08', 'S', 'NULL', 'M', 'alejandro16@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '2146 Mt. Etna', 'NULL', '1 (11) 500 555-0157', '2013-06-16', '0-1 Miles'], ['23924', '237', 'AW00023924', 'NULL', 'Amber', 'L', 'Wright', '0', '1972-06-11', 'S', 'NULL', 'F', 'amber20@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '5277 Birch Bark Dr.', 'NULL', '1 (11) 500 555-0116', '2013-06-04', '0-1 Miles'], ['23925', '150', 'AW00023925', 'NULL', 'Marie', 'NULL', 'Torres', '0', '1970-12-22', 'M', 'NULL', 'F', 'marie35@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', 'Wertheimer Straße 277', 'NULL', '1 (11) 500 555-0171', '2013-05-02', '0-1 Miles'], ['23926', '178', 'AW00023926', 'NULL', 'Lydia', 'NULL', 'Weber', '0', '1970-10-06', 'M', 'NULL', 'F', 'lydia3@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Zimmerstr 461', 'NULL', '1 (11) 500 555-0187', '2013-06-29', '0-1 Miles'], ['23927', '220', 'AW00023927', 'NULL', 'Seth', 'NULL', 'Collins', '0', '1969-11-09', 'S', 'NULL', 'M', 'seth47@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '212, rue Marbeuf', 'NULL', '1 (11) 500 555-0185', '2013-08-17', '0-1 Miles'], ['23928', '183', 'AW00023928', 'NULL', 'Jaclyn', 'NULL', 'Ye', '0', '1969-10-05', 'M', 'NULL', 'F', 'jaclyn10@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '22, rue Saint Denis', 'NULL', '1 (11) 500 555-0153', '2013-04-07', '0-1 Miles'], ['23929', '222', 'AW00023929', 'NULL', 'Kristin', 'J', 'Xie', '0', '1969-11-06', 'M', 'NULL', 'F', 'kristin5@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '112, avenue du Québec', 'NULL', '1 (11) 500 555-0158', '2013-09-18', '0-1 Miles'], ['23930', '239', 'AW00023930', 'NULL', 'Meagan', 'W', 'Arun', '0', '1975-10-10', 'M', 'NULL', 'F', 'meagan7@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5376 Sahara Drive', 'NULL', '1 (11) 500 555-0191', '2013-06-11', '0-1 Miles'], ['23931', '186', 'AW00023931', 'NULL', 'Reginald', 'N', 'Ruiz', '0', '1968-11-29', 'M', 'NULL', 'M', 'reginald10@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '408, rue Montcalm', 'NULL', '1 (11) 500 555-0186', '2014-01-22', '0-1 Miles'], ['23932', '213', 'AW00023932', 'NULL', 'Carrie', 'NULL', 'Jiménez', '0', '1969-03-31', 'M', 'NULL', 'F', 'carrie5@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '70, allée des Princes', 'NULL', '1 (11) 500 555-0139', '2013-11-27', '0-1 Miles'], ['23933', '127', 'AW00023933', 'NULL', 'Sabrina', 'A', 'Carlson', '0', '1969-01-31', 'S', 'NULL', 'F', 'sabrina12@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Potsdamer Straße 539', 'NULL', '1 (11) 500 555-0155', '2013-08-09', '0-1 Miles'], ['23934', '180', 'AW00023934', 'NULL', 'Bonnie', 'D', 'Andersen', '0', '1983-10-14', 'S', 'NULL', 'F', 'bonnie19@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '27, rue de la Comédie', 'NULL', '1 (11) 500 555-0118', '2014-01-25', '1-2 Miles'], ['23935', '262', 'AW00023935', 'NULL', 'Alexis', 'J', 'Barnes', '0', '1981-10-21', 'S', 'NULL', 'F', 'alexis25@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '4363 Cancroft Road', 'NULL', '1 (11) 500 555-0134', '2013-07-09', '0-1 Miles'], ['23936', '220', 'AW00023936', 'NULL', 'Monique', 'A', 'Vazquez', '0', '1984-08-15', 'M', 'NULL', 'F', 'monique11@adventure-works.com', '20000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '2, rue Lafayette', 'NULL', '1 (11) 500 555-0129', '2013-06-01', '0-1 Miles'], ['23937', '143', 'AW00023937', 'NULL', 'Eddie', 'C', 'Ruiz', '0', '1984-09-22', 'M', 'NULL', 'M', 'eddie3@adventure-works.com', '20000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Am Grossen Dern 4583', 'NULL', '1 (11) 500 555-0147', '2013-02-19', '0-1 Miles'], ['23938', '231', 'AW00023938', 'NULL', 'Harold', 'A', 'Madan', '0', '1969-03-31', 'M', 'NULL', 'M', 'harold5@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1358 Palmer Rd', 'NULL', '1 (11) 500 555-0163', '2013-06-11', '0-1 Miles'], ['23939', '180', 'AW00023939', 'NULL', 'Jodi', 'N', 'Nara', '0', '1967-12-21', 'M', 'NULL', 'F', 'jodi17@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '802, rue Descartes', 'NULL', '1 (11) 500 555-0134', '2013-04-06', '0-1 Miles'], ['23940', '240', 'AW00023940', 'NULL', 'Dominic', 'A', 'Perez', '0', '1968-01-11', 'M', 'NULL', 'M', 'dominic22@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5085 Radar Ct.', 'NULL', '1 (11) 500 555-0119', '2013-06-21', '0-1 Miles'], ['23941', '127', 'AW00023941', 'NULL', 'Eduardo', 'NULL', 'Anderson', '0', '1984-05-19', 'M', 'NULL', 'M', 'eduardo8@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Charlottenstr 358', 'NULL', '1 (11) 500 555-0171', '2013-01-28', '0-1 Miles'], ['23942', '121', 'AW00023942', 'NULL', 'Rafael', 'J', 'Goel', '0', '1984-05-12', 'M', 'NULL', 'M', 'rafael43@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Postfach 8 44 99', 'NULL', '1 (11) 500 555-0153', '2013-06-11', '0-1 Miles'], ['23943', '246', 'AW00023943', 'NULL', 'Cindy', 'L', 'Subram', '0', '1983-09-21', 'M', 'NULL', 'F', 'cindy13@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6900 Bellord Ct.', 'NULL', '1 (11) 500 555-0188', '2013-11-28', '0-1 Miles'], ['23944', '269', 'AW00023944', 'NULL', 'Jenny', 'S', 'Wu', '0', '1983-07-08', 'S', 'NULL', 'F', 'jenny9@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '3', '2598 Breck Court', 'NULL', '1 (11) 500 555-0118', '2013-04-02', '0-1 Miles'], ['23945', '278', 'AW00023945', 'NULL', 'Nicolas', 'NULL', 'Black', '0', '1984-02-20', 'M', 'NULL', 'M', 'nicolas18@adventure-works.com', '30000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3952 Morello Ave.', 'NULL', '1 (11) 500 555-0120', '2013-10-09', '0-1 Miles'], ['23946', '171', 'AW00023946', 'NULL', 'Kelli', 'NULL', 'Luo', '0', '1983-05-02', 'S', 'NULL', 'F', 'kelli29@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Räuscherweg 6875', 'NULL', '1 (11) 500 555-0165', '2013-10-20', '2-5 Miles'], ['23947', '160', 'AW00023947', 'NULL', 'Autumn', 'NULL', 'Liang', '0', '1982-10-06', 'M', 'NULL', 'F', 'autumn16@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Karl Liebknecht str 577', 'NULL', '1 (11) 500 555-0180', '2013-11-26', '0-1 Miles'], ['23948', '234', 'AW00023948', 'NULL', 'Katelyn', 'NULL', 'Rivera', '0', '1981-08-26', 'S', 'NULL', 'F', 'katelyn16@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '1030 Ambush Dr.', 'NULL', '1 (11) 500 555-0163', '2013-11-15', '2-5 Miles'], ['23949', '216', 'AW00023949', 'NULL', 'Kelvin', 'R', 'Deng', '0', '1981-10-05', 'S', 'NULL', 'M', 'kelvin43@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '2, allée des Princes', 'NULL', '1 (11) 500 555-0114', '2013-04-23', '2-5 Miles'], ['23950', '225', 'AW00023950', 'NULL', 'Roger', 'L', 'Zhou', '0', '1980-11-08', 'M', 'NULL', 'M', 'roger13@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '83, avenue des Champs-Elysées', 'NULL', '1 (11) 500 555-0197', '2013-09-20', '0-1 Miles'], ['23951', '211', 'AW00023951', 'NULL', 'Lindsay', 'T', 'Becker', '0', '1981-02-15', 'S', 'NULL', 'F', 'lindsay20@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '34873, rue de Varenne', 'NULL', '1 (11) 500 555-0141', '2013-10-23', '0-1 Miles'], ['23952', '174', 'AW00023952', 'NULL', 'Nelson', 'T', 'Dominguez', '0', '1981-03-12', 'S', 'NULL', 'M', 'nelson11@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Parkstr 4246', 'NULL', '1 (11) 500 555-0115', '2013-08-31', '5-10 Miles'], ['23953', '152', 'AW00023953', 'NULL', 'Shane', 'S', 'Mehta', '0', '1982-05-09', 'S', 'NULL', 'M', 'shane17@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Pflugstr 1585', 'Leiter der Abteilung', '1 (11) 500 555-0138', '2013-05-03', '2-5 Miles'], ['23954', '250', 'AW00023954', 'NULL', 'Jonathon', 'F', 'Serrano', '0', '1982-01-04', 'S', 'NULL', 'M', 'jonathon12@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '396 North Ridge Dr.', 'NULL', '1 (11) 500 555-0156', '2013-04-08', '0-1 Miles'], ['23955', '190', 'AW00023955', 'NULL', 'Lucas', 'C', 'Cook', '0', '1981-01-07', 'S', 'NULL', 'M', 'lucas84@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '2, route de Marseille', 'NULL', '1 (11) 500 555-0125', '2013-12-18', '5-10 Miles'], ['23956', '121', 'AW00023956', 'NULL', 'Morgan', 'NULL', 'Coleman', '0', '1980-08-26', 'M', 'NULL', 'F', 'morgan75@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Erlenweg 2', 'NULL', '1 (11) 500 555-0196', '2013-07-11', '2-5 Miles'], ['23957', '158', 'AW00023957', 'NULL', 'Louis', 'NULL', 'Zheng', '0', '1979-12-05', 'M', 'NULL', 'M', 'louis14@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Zeiter Weg 9922', 'NULL', '1 (11) 500 555-0128', '2013-10-27', '0-1 Miles'], ['23958', '213', 'AW00023958', 'NULL', 'Amy', 'NULL', 'Lin', '0', '1981-04-15', 'S', 'NULL', 'F', 'amy15@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '10, place Beaubernard', 'NULL', '1 (11) 500 555-0129', '2013-11-19', '2-5 Miles'], ['23959', '155', 'AW00023959', 'NULL', 'Amber', 'NULL', 'Parker', '0', '1980-11-29', 'S', 'NULL', 'F', 'amber7@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Platz des Landtags 433', 'NULL', '1 (11) 500 555-0198', '2013-02-24', '0-1 Miles'], ['23960', '131', 'AW00023960', 'NULL', 'Eugene', 'NULL', 'Zheng', '0', '1981-06-05', 'S', 'NULL', 'M', 'eugene24@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Welt Platz 1', 'Verkaufsabteilung', '1 (11) 500 555-0169', '2013-08-15', '2-5 Miles'], ['23961', '175', 'AW00023961', 'NULL', 'Karen', 'NULL', 'Huang', '0', '1980-12-19', 'S', 'NULL', 'F', 'karen15@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Galeriestr 6266', 'NULL', '1 (11) 500 555-0122', '2013-08-27', '2-5 Miles'], ['23962', '212', 'AW00023962', 'NULL', 'Sandra', 'NULL', 'Yang', '0', '1984-11-12', 'M', 'NULL', 'F', 'sandra11@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '75, rue de Cambrai', 'NULL', '1 (11) 500 555-0180', '2013-01-28', '1-2 Miles'], ['23963', '220', 'AW00023963', 'NULL', 'Gerald', 'E', 'Jimenez', '0', '1984-03-07', 'M', 'NULL', 'M', 'gerald13@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '46, rue des Pyrenees', 'NULL', '1 (11) 500 555-0133', '2013-08-20', '0-1 Miles'], ['23964', '208', 'AW00023964', 'NULL', 'Arturo', 'NULL', 'Nara', '0', '1940-03-21', 'S', 'NULL', 'M', 'arturo42@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '99, rue Villedo', 'NULL', '1 (11) 500 555-0173', '2013-02-25', '0-1 Miles'], ['23965', '167', 'AW00023965', 'NULL', 'Dustin', 'NULL', 'Shan', '0', '1968-01-23', 'S', 'NULL', 'M', 'dustin10@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Postfach 22 99 99', 'NULL', '1 (11) 500 555-0163', '2013-04-30', '0-1 Miles'], ['23966', '242', 'AW00023966', 'NULL', 'Grant', 'R', 'Sharma', '0', '1967-08-31', 'M', 'NULL', 'M', 'grant11@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '2831 Viking Drive', 'NULL', '1 (11) 500 555-0168', '2013-03-30', '0-1 Miles'], ['23967', '261', 'AW00023967', 'NULL', 'Veronica', 'D', 'Suri', '0', '1967-08-09', 'S', 'NULL', 'F', 'veronica0@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7740 Lacassie Ave', 'NULL', '1 (11) 500 555-0129', '2013-07-07', '0-1 Miles'], ['23968', '262', 'AW00023968', 'NULL', 'Caleb', 'F', 'Baker', '0', '1978-06-04', 'M', 'NULL', 'M', 'caleb37@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '5878 Arcadia Pl.', 'NULL', '1 (11) 500 555-0130', '2013-09-20', '0-1 Miles'], ['23969', '220', 'AW00023969', 'NULL', 'Cole', 'NULL', 'Sanders', '0', '1972-01-02', 'S', 'NULL', 'M', 'cole4@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '7, rue des Vendangeurs', 'NULL', '1 (11) 500 555-0116', '2013-07-14', '0-1 Miles'], ['23970', '199', 'AW00023970', 'NULL', 'Rebekah', 'NULL', 'Fernandez', '0', '1967-04-14', 'S', 'NULL', 'F', 'rebekah15@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '55, boulevard Tremblay', 'NULL', '1 (11) 500 555-0195', '2013-10-28', '0-1 Miles'], ['23971', '229', 'AW00023971', 'NULL', 'Lindsey', 'W', 'Jai', '0', '1972-08-29', 'S', 'NULL', 'F', 'lindsey12@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '5875 Providence Dr.', 'NULL', '1 (11) 500 555-0114', '2013-12-07', '0-1 Miles'], ['23972', '182', 'AW00023972', 'NULL', 'Clarence', 'J', 'Liang', '0', '1966-11-01', 'S', 'NULL', 'M', 'clarence9@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '9904 C. Mt. Hood', 'NULL', '1 (11) 500 555-0194', '2013-10-25', '0-1 Miles'], ['23973', '196', 'AW00023973', 'NULL', 'Zachary', 'A', 'Long', '0', '1941-09-06', 'S', 'NULL', 'M', 'zachary8@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '1, rue de Maubeuge', 'NULL', '1 (11) 500 555-0199', '2013-11-25', '0-1 Miles'], ['23974', '183', 'AW00023974', 'NULL', 'Susan', 'L', 'Huang', '0', '1963-10-20', 'S', 'NULL', 'F', 'susan15@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '778, rue Marbeuf', 'NULL', '1 (11) 500 555-0123', '2013-12-22', '0-1 Miles'], ['23975', '128', 'AW00023975', 'NULL', 'Frank', 'NULL', 'Blanco', '0', '1975-04-19', 'S', 'NULL', 'M', 'frank23@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Wolfgangstraße 1', 'NULL', '1 (11) 500 555-0128', '2013-11-22', '0-1 Miles'], ['23976', '246', 'AW00023976', 'NULL', 'Rachael', 'J', 'Arun', '0', '1963-09-18', 'S', 'NULL', 'F', 'rachael6@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '8836 First Ave.', 'NULL', '1 (11) 500 555-0165', '2013-03-30', '0-1 Miles'], ['23977', '184', 'AW00023977', 'NULL', 'Gail', 'NULL', 'Butler', '0', '1963-08-24', 'S', 'NULL', 'F', 'gail4@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '6, avenue de l´Europe', 'NULL', '1 (11) 500 555-0191', '2013-08-02', '0-1 Miles'], ['23978', '268', 'AW00023978', 'NULL', 'Philip', 'NULL', 'Ortega', '0', '1979-09-06', 'M', 'NULL', 'M', 'philip21@adventure-works.com', '10000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '5684 Fitzuren', 'NULL', '1 (11) 500 555-0155', '2014-01-05', '0-1 Miles'], ['23979', '157', 'AW00023979', 'NULL', 'Damien', 'A', 'Chen', '0', '1967-02-17', 'S', 'NULL', 'M', 'damien1@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Parkstr 4852', 'NULL', '1 (11) 500 555-0131', '2013-06-15', '0-1 Miles'], ['23980', '190', 'AW00023980', 'NULL', 'Sergio', 'C', 'Garcia', '0', '1961-12-04', 'S', 'NULL', 'M', 'sergio15@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '283, rue Villedo', 'NULL', '1 (11) 500 555-0139', '2013-09-24', '0-1 Miles'], ['23981', '206', 'AW00023981', 'NULL', 'Cesar', 'NULL', 'Martinez', '0', '1961-05-17', 'M', 'NULL', 'M', 'cesar17@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '297, place Beaubernard', 'NULL', '1 (11) 500 555-0126', '2013-02-24', '1-2 Miles'], ['23982', '155', 'AW00023982', 'NULL', 'Adam', 'H', 'Diaz', '0', '1959-08-10', 'S', 'NULL', 'M', 'adam18@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Hansaallee 5589', 'NULL', '1 (11) 500 555-0113', '2013-08-06', '0-1 Miles'], ['23983', '236', 'AW00023983', 'NULL', 'Taylor', 'NULL', 'Reed', '0', '1960-05-21', 'S', 'NULL', 'F', 'taylor4@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '1242 Ridgewood Ct.', 'NULL', '1 (11) 500 555-0186', '2013-05-19', '0-1 Miles'], ['23984', '257', 'AW00023984', 'NULL', 'Kelsey', 'M', 'Kennedy', '0', '1959-10-13', 'S', 'NULL', 'F', 'kelsey7@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '7660 Willow Creek Ct.', 'NULL', '1 (11) 500 555-0140', '2013-05-04', '0-1 Miles'], ['23985', '241', 'AW00023985', 'NULL', 'Janet', 'J', 'Torres', '0', '1948-02-14', 'M', 'NULL', 'F', 'janet17@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '467 Moccasin Ct.', 'NULL', '1 (11) 500 555-0177', '2013-08-26', '0-1 Miles'], ['23986', '251', 'AW00023986', 'NULL', 'Tanya', 'L', 'Torres', '0', '1951-04-18', 'M', 'NULL', 'F', 'tanya8@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6512 Bola Raton Court', 'NULL', '1 (11) 500 555-0114', '2013-05-16', '0-1 Miles'], ['23987', '236', 'AW00023987', 'NULL', 'Dawn', 'NULL', 'Sharma', '0', '1947-04-02', 'M', 'NULL', 'F', 'dawn33@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2015 Sunset Circle', 'NULL', '1 (11) 500 555-0147', '2013-05-24', '0-1 Miles'], ['23988', '275', 'AW00023988', 'NULL', 'Cesar', 'W', 'Sánchez', '0', '1946-12-17', 'M', 'NULL', 'M', 'cesar20@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9443 Oaxaca', 'NULL', '1 (11) 500 555-0110', '2013-06-05', '0-1 Miles'], ['23989', '240', 'AW00023989', 'NULL', 'Damien', 'E', 'Beck', '0', '1958-08-22', 'S', 'NULL', 'M', 'damien35@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '3387 El Campo Ct.', 'NULL', '1 (11) 500 555-0163', '2013-02-11', '0-1 Miles'], ['23990', '215', 'AW00023990', 'NULL', 'Claudia', 'M', 'Huang', '0', '1954-09-30', 'S', 'NULL', 'F', 'claudia5@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '80811, rue de Varenne', 'NULL', '1 (11) 500 555-0127', '2013-11-08', '0-1 Miles'], ['23991', '211', 'AW00023991', 'NULL', 'Todd', 'NULL', 'Zhao', '0', '1948-07-23', 'M', 'NULL', 'M', 'todd9@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '191, rue Jean Mermoz', 'NULL', '1 (11) 500 555-0170', '2013-10-29', '0-1 Miles'], ['23992', '32', 'AW00023992', 'NULL', 'Bonnie', 'L', 'Chande', '0', '1985-11-12', 'S', 'NULL', 'F', 'bonnie21@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6137 Freya Way', 'NULL', '1 (11) 500 555-0157', '2012-09-24', '0-1 Miles'], ['23993', '13', 'AW00023993', 'NULL', 'Rachael', 'M', 'Fernandez', '0', '1985-11-02', 'S', 'NULL', 'F', 'rachael14@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '3904 Piedra Drive', 'NULL', '1 (11) 500 555-0127', '2012-09-17', '0-1 Miles'], ['23994', '36', 'AW00023994', 'NULL', 'Raymond', 'NULL', 'Subram', '0', '1986-04-08', 'M', 'NULL', 'M', 'raymond15@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '9052 Montgomery Avenue', 'NULL', '1 (11) 500 555-0194', '2012-09-25', '0-1 Miles'], ['23995', '36', 'AW00023995', 'NULL', 'Bradley', 'NULL', 'Carson', '0', '1985-12-01', 'S', 'NULL', 'M', 'bradley18@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '841 Meadowbrook', 'NULL', '1 (11) 500 555-0183', '2012-09-08', '0-1 Miles'], ['23996', '31', 'AW00023996', 'NULL', 'Richard', 'I', 'Lee', '0', '1984-10-16', 'S', 'NULL', 'M', 'richard16@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '7757 O Ct', 'NULL', '1 (11) 500 555-0130', '2012-09-09', '0-1 Miles'], ['23997', '29', 'AW00023997', 'NULL', 'Kristopher', 'A', 'Srini', '0', '1983-11-06', 'M', 'NULL', 'M', 'kristopher8@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '8707 Goen Road', 'NULL', '1 (11) 500 555-0111', '2013-04-17', '1-2 Miles'], ['23998', '29', 'AW00023998', 'NULL', 'Arturo', 'NULL', 'Raji', '0', '1983-11-23', 'M', 'NULL', 'M', 'arturo45@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5855 W. Cypress Road', 'NULL', '1 (11) 500 555-0192', '2012-09-04', '2-5 Miles'], ['23999', '37', 'AW00023999', 'NULL', 'Gilbert', 'NULL', 'Li', '0', '1984-02-21', 'M', 'NULL', 'M', 'gilbert2@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '3689 Sun Tree Lane', 'NULL', '1 (11) 500 555-0190', '2012-09-27', '2-5 Miles'], ['24000', '15', 'AW00024000', 'NULL', 'Randy', 'E', 'Yang', '0', '1984-03-26', 'S', 'NULL', 'M', 'randy6@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1040 Greenbush Drive', 'NULL', '1 (11) 500 555-0120', '2012-09-11', '0-1 Miles'], ['24001', '40', 'AW00024001', 'NULL', 'Arthur', 'NULL', 'Raman', '0', '1983-03-11', 'S', 'NULL', 'M', 'arthur14@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '6855 Leewood Place', 'NULL', '1 (11) 500 555-0124', '2012-09-01', '0-1 Miles'], ['24002', '25', 'AW00024002', 'NULL', 'Thomas', 'NULL', 'Harris', '0', '1982-11-24', 'M', 'NULL', 'M', 'thomas75@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '6812 Semillon Circle', 'NULL', '1 (11) 500 555-0191', '2012-09-24', '0-1 Miles'], ['24003', '15', 'AW00024003', 'NULL', 'Warren', 'A', 'Kumar', '0', '1983-06-19', 'S', 'NULL', 'M', 'warren16@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '7306 Keller Ridge', 'NULL', '1 (11) 500 555-0113', '2012-08-29', '0-1 Miles'], ['24004', '11', 'AW00024004', 'NULL', 'César', 'C', 'Raman', '0', '1981-10-30', 'M', 'NULL', 'M', 'césar11@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '4325 Polson Court', 'NULL', '1 (11) 500 555-0150', '2012-09-25', '0-1 Miles'], ['24005', '38', 'AW00024005', 'NULL', 'Julio', 'NULL', 'Jimenez', '0', '1984-11-03', 'S', 'NULL', 'M', 'julio5@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '1201 Ricardo Drive', 'NULL', '1 (11) 500 555-0121', '2012-09-01', '0-1 Miles'], ['24006', '14', 'AW00024006', 'NULL', 'Peter', 'A', 'Deng', '0', '1985-04-02', 'S', 'NULL', 'M', 'peter9@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7989 Pinehurst Court', 'NULL', '1 (11) 500 555-0135', '2012-09-07', '0-1 Miles'], ['24007', '19', 'AW00024007', 'NULL', 'Randy', 'NULL', 'Huang', '0', '1984-09-23', 'S', 'NULL', 'M', 'randy7@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '3107 High St', 'NULL', '1 (11) 500 555-0130', '2012-09-15', '0-1 Miles'], ['24008', '17', 'AW00024008', 'NULL', 'Monique', 'NULL', 'Munoz', '0', '1984-07-16', 'M', 'NULL', 'F', 'monique3@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '7036 Las Quebrados Ln.', 'NULL', '1 (11) 500 555-0152', '2012-09-12', '0-1 Miles'], ['24009', '8', 'AW00024009', 'NULL', 'Alison', 'J', 'Anand', '0', '1983-03-13', 'S', 'NULL', 'F', 'alison23@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '7952 El Verano', 'NULL', '1 (11) 500 555-0110', '2012-08-30', '0-1 Miles'], ['24010', '187', 'AW00024010', 'NULL', 'Walter', 'N', 'Alvarez', '0', '1972-08-20', 'S', 'NULL', 'M', 'walter17@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '5, avenue de la Gare', 'NULL', '1 (11) 500 555-0168', '2013-11-18', '0-1 Miles'], ['24011', '262', 'AW00024011', 'NULL', 'Morgan', 'Q', 'Thompson', '0', '1972-06-02', 'S', 'NULL', 'F', 'morgan37@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9173 Jill Ave', 'NULL', '1 (11) 500 555-0111', '2013-06-17', '0-1 Miles'], ['24012', '220', 'AW00024012', 'NULL', 'James', 'F', 'Lewis', '0', '1971-05-09', 'S', 'NULL', 'M', 'james94@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '17, rue de Varenne', 'NULL', '1 (11) 500 555-0182', '2013-10-14', '1-2 Miles'], ['24013', '194', 'AW00024013', 'NULL', 'Jay', 'L', 'Ruiz', '0', '1966-05-23', 'M', 'NULL', 'M', 'jay31@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '12, rue Montcalm', 'NULL', '1 (11) 500 555-0129', '2013-05-13', '2-5 Miles'], ['24014', '173', 'AW00024014', 'NULL', 'Geoffrey', 'NULL', 'Kovár', '0', '1965-10-10', 'M', 'NULL', 'M', 'geoffrey4@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Lützowplatz 5752', 'NULL', '1 (11) 500 555-0141', '2013-10-12', '1-2 Miles'], ['24015', '237', 'AW00024015', 'NULL', 'Jenna', 'NULL', 'Hall', '0', '1965-09-13', 'S', 'NULL', 'F', 'jenna21@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '891 Peachwillow Lane', 'NULL', '1 (11) 500 555-0175', '2013-06-13', '0-1 Miles'], ['24016', '211', 'AW00024016', 'NULL', 'Karla', 'A', 'Sharma', '0', '1964-11-18', 'S', 'NULL', 'F', 'karla10@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '91, rue Pierre-Demoulin', 'NULL', '1 (11) 500 555-0184', '2013-07-21', '2-5 Miles'], ['24017', '127', 'AW00024017', 'NULL', 'Rebekah', 'NULL', 'Lopez', '0', '1965-05-25', 'S', 'NULL', 'F', 'rebekah16@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Krönerweg 5615', 'NULL', '1 (11) 500 555-0138', '2013-09-08', '1-2 Miles'], ['24018', '147', 'AW00024018', 'NULL', 'Barbara', 'NULL', 'Gao', '0', '1964-10-21', 'S', 'NULL', 'F', 'barbara24@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Zur Lindung 4', 'NULL', '1 (11) 500 555-0122', '2013-09-13', '1-2 Miles'], ['24019', '235', 'AW00024019', 'NULL', 'Barbara', 'NULL', 'Raji', '0', '1970-10-16', 'M', 'NULL', 'F', 'barbara49@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '4563 Melinda Court', 'NULL', '1 (11) 500 555-0158', '2013-06-15', '0-1 Miles'], ['24020', '236', 'AW00024020', 'NULL', 'Francisco', 'M', 'Raman', '0', '1964-12-19', 'S', 'NULL', 'M', 'francisco13@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '7179 Montana', 'NULL', '1 (11) 500 555-0178', '2013-08-18', '2-5 Miles'], ['24021', '222', 'AW00024021', 'NULL', 'Clinton', 'F', 'Munoz', '0', '1969-05-09', 'S', 'NULL', 'M', 'clinton4@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '8, rue Pierre-Demoulin', 'NULL', '1 (11) 500 555-0184', '2013-10-16', '2-5 Miles'], ['24022', '199', 'AW00024022', 'NULL', 'Dale', 'R', 'Beck', '0', '1963-11-11', 'M', 'NULL', 'M', 'dale18@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '8, rue Lafayette', 'NULL', '1 (11) 500 555-0144', '2013-11-15', '1-2 Miles'], ['24023', '203', 'AW00024023', 'NULL', 'Bonnie', 'P', 'Nara', '0', '1963-09-18', 'S', 'NULL', 'F', 'bonnie22@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '76, rue de l´Esplanade', 'NULL', '1 (11) 500 555-0146', '2013-10-29', '0-1 Miles'], ['24024', '115', 'AW00024024', 'NULL', 'Marie', 'NULL', 'Malhotra', '0', '1975-04-19', 'M', 'NULL', 'F', 'marie9@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Pflugstr 815', 'NULL', '1 (11) 500 555-0150', '2013-09-27', '0-1 Miles'], ['24025', '132', 'AW00024025', 'NULL', 'Eugene', 'NULL', 'Zeng', '0', '1965-07-01', 'M', 'NULL', 'M', 'eugene25@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Winterfeldtstr 2529', 'NULL', '1 (11) 500 555-0119', '2013-08-29', '0-1 Miles'], ['24026', '259', 'AW00024026', 'NULL', 'Jill', 'NULL', 'Serrano', '0', '1976-09-01', 'M', 'NULL', 'F', 'jill24@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '4378 Westminster Place', 'NULL', '1 (11) 500 555-0132', '2013-06-10', '0-1 Miles'], ['24027', '159', 'AW00024027', 'NULL', 'Omar', 'L', 'Tang', '0', '1971-04-19', 'M', 'NULL', 'M', 'omar24@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Rehstr 7546', 'NULL', '1 (11) 500 555-0177', '2013-09-09', '0-1 Miles'], ['24028', '209', 'AW00024028', 'NULL', 'Adam', 'NULL', 'Hayes', '0', '1981-12-03', 'S', 'NULL', 'M', 'adam19@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '376, rue de Terre Neuve', 'NULL', '1 (11) 500 555-0119', '2013-12-23', '2-5 Miles'], ['24029', '209', 'AW00024029', 'NULL', 'Haley', 'NULL', 'Howard', '0', '1975-12-04', 'S', 'NULL', 'F', 'haley12@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '75, quai de Grenelle', 'NULL', '1 (11) 500 555-0115', '2013-12-01', '2-5 Miles'], ['24030', '271', 'AW00024030', 'NULL', 'Deb', 'R', 'Wagner', '0', '1981-03-12', 'S', 'NULL', 'F', 'deb6@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1310 Mitchelleanjen Ln.', 'NULL', '1 (11) 500 555-0193', '2013-06-26', '0-1 Miles'], ['24031', '266', 'AW00024031', 'NULL', 'Tammy', 'NULL', 'Suri', '0', '1975-10-23', 'M', 'NULL', 'F', 'tammy1@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '4601 San Ramon Road', 'NULL', '1 (11) 500 555-0113', '2013-06-02', '1-2 Miles'], ['24032', '198', 'AW00024032', 'NULL', 'Micah', 'A', 'Ma', '0', '1980-05-24', 'M', 'NULL', 'M', 'micah3@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '36, rue de Cambrai', 'NULL', '1 (11) 500 555-0152', '2013-12-22', '0-1 Miles'], ['24033', '160', 'AW00024033', 'NULL', 'Katherine', 'NULL', 'Reed', '0', '1981-05-10', 'S', 'NULL', 'F', 'katherine6@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Rykestr 2605', 'NULL', '1 (11) 500 555-0151', '2013-09-23', '0-1 Miles'], ['24034', '257', 'AW00024034', 'NULL', 'Pedro', 'NULL', 'Ruiz', '0', '1975-11-03', 'M', 'NULL', 'M', 'pedro22@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '60 Reliz Valley Road', 'NULL', '1 (11) 500 555-0172', '2013-06-17', '0-1 Miles'], ['24035', '249', 'AW00024035', 'NULL', 'Jaclyn', 'NULL', 'Wu', '0', '1924-10-05', 'S', 'NULL', 'F', 'jaclyn7@adventure-works.com', '10000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '2', '1141 Panoramic Dr.', 'NULL', '1 (11) 500 555-0133', '2013-04-06', '0-1 Miles'], ['24036', '174', 'AW00024036', 'NULL', 'Jay', 'NULL', 'Vazquez', '0', '1980-12-23', 'S', 'NULL', 'M', 'jay44@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Hüttenstr 6114', 'NULL', '1 (11) 500 555-0169', '2013-09-20', '2-5 Miles'], ['24037', '209', 'AW00024037', 'NULL', 'Ramon', 'NULL', 'Guo', '0', '1980-10-13', 'S', 'NULL', 'M', 'ramon15@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1020, quai de Grenelle', 'NULL', '1 (11) 500 555-0169', '2013-12-27', '2-5 Miles'], ['24038', '184', 'AW00024038', 'NULL', 'Evan', 'NULL', 'Turner', '0', '1980-03-03', 'S', 'NULL', 'M', 'evan29@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '40, allée des Princes', 'NULL', '1 (11) 500 555-0186', '2013-12-12', '0-1 Miles'], ['24039', '225', 'AW00024039', 'NULL', 'Cassie', 'NULL', 'Xu', '0', '1985-10-07', 'M', 'NULL', 'F', 'cassie3@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '524, rue Villedo', 'NULL', '1 (11) 500 555-0191', '2013-06-05', '0-1 Miles'], ['24040', '147', 'AW00024040', 'NULL', 'Jennifer', 'A', 'Bell', '0', '1975-03-10', 'S', 'NULL', 'F', 'jennifer59@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Postfach 99 92 92', 'NULL', '1 (11) 500 555-0193', '2013-07-07', '0-1 Miles'], ['24041', '162', 'AW00024041', 'NULL', 'Chad', 'L', 'Tang', '0', '1957-03-30', 'M', 'NULL', 'M', 'chad5@adventure-works.com', '10000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Lindenalle 6484', 'NULL', '1 (11) 500 555-0126', '2013-10-30', '0-1 Miles'], ['24042', '160', 'AW00024042', 'NULL', 'Zachary', 'NULL', 'White', '0', '1974-03-27', 'M', 'NULL', 'M', 'zachary43@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Conesweg 72', 'NULL', '1 (11) 500 555-0167', '2014-01-05', '0-1 Miles'], ['24043', '196', 'AW00024043', 'NULL', 'Charles', 'D', 'Kelly', '0', '1973-08-09', 'M', 'NULL', 'M', 'charles49@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', "11, rue de l'Espace De Schengen", 'NULL', '1 (11) 500 555-0182', '2013-12-03', '0-1 Miles'], ['24044', '252', 'AW00024044', 'NULL', 'Arturo', 'W', 'Kumar', '0', '1973-11-09', 'S', 'NULL', 'M', 'arturo32@adventure-works.com', '10000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '9497 Candelero Place', 'NULL', '1 (11) 500 555-0110', '2013-07-21', '0-1 Miles'], ['24045', '267', 'AW00024045', 'NULL', 'Shannon', 'W', 'Martin', '0', '1973-08-16', 'M', 'NULL', 'M', 'shannon22@adventure-works.com', '10000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '3221 Mt. Washington Way', 'NULL', '1 (11) 500 555-0151', '2013-10-05', '0-1 Miles'], ['24046', '147', 'AW00024046', 'NULL', 'Cristina', 'NULL', 'Chander', '0', '1974-04-22', 'S', 'NULL', 'F', 'cristina14@adventure-works.com', '10000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Berliner Platz 888', 'NULL', '1 (11) 500 555-0195', '2013-09-24', '0-1 Miles'], ['24047', '241', 'AW00024047', 'NULL', 'Clarence', 'D', 'Yuan', '0', '1973-08-09', 'S', 'NULL', 'M', 'clarence21@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '202 Southbrook Dr.', 'NULL', '1 (11) 500 555-0168', '2013-07-05', '0-1 Miles'], ['24048', '235', 'AW00024048', 'NULL', 'Gregory', 'NULL', 'Tang', '0', '1979-04-17', 'M', 'NULL', 'M', 'gregory8@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '5061 Athecton Circle', 'NULL', '1 (11) 500 555-0161', '2013-07-20', '2-5 Miles'], ['24049', '171', 'AW00024049', 'NULL', 'Byron', 'NULL', 'Gomez', '0', '1979-09-13', 'S', 'NULL', 'M', 'byron1@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Heideweg 6457', 'NULL', '1 (11) 500 555-0173', '2013-09-03', '2-5 Miles'], ['24050', '271', 'AW00024050', 'NULL', 'Clarence', 'NULL', 'Nath', '0', '1979-08-10', 'S', 'NULL', 'M', 'clarence33@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1591 Apple Court', 'NULL', '1 (11) 500 555-0166', '2013-07-21', '0-1 Miles'], ['24051', '269', 'AW00024051', 'NULL', 'Colleen', 'NULL', 'Nath', '0', '1973-12-01', 'M', 'NULL', 'F', 'colleen41@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '333 Merced Circle', 'NULL', '1 (11) 500 555-0175', '2013-07-11', '2-5 Miles'], ['24052', '134', 'AW00024052', 'NULL', 'Priscilla', 'NULL', 'Goel', '0', '1974-01-19', 'S', 'NULL', 'F', 'priscilla18@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Essener Straße 26', 'NULL', '1 (11) 500 555-0112', '2013-09-14', '0-1 Miles'], ['24053', '171', 'AW00024053', 'NULL', 'Jose', 'C', 'Allen', '0', '1973-11-09', 'M', 'NULL', 'M', 'jose82@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Hansaallee 5727', 'NULL', '1 (11) 500 555-0122', '2013-07-27', '0-1 Miles'], ['24054', '247', 'AW00024054', 'NULL', 'Gerald', 'L', 'Hernandez', '0', '1972-08-15', 'S', 'NULL', 'M', 'gerald12@adventure-works.com', '10000.00', '3', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '6888 Niagara Court', 'NULL', '1 (11) 500 555-0126', '2013-07-23', '0-1 Miles'], ['24055', '230', 'AW00024055', 'NULL', 'Louis', 'NULL', 'Goel', '0', '1978-06-12', 'S', 'NULL', 'M', 'louis35@adventure-works.com', '10000.00', '3', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '7832 Prospect St.', 'NULL', '1 (11) 500 555-0172', '2013-07-21', '0-1 Miles'], ['24056', '219', 'AW00024056', 'NULL', 'Tamara', 'M', 'Lin', '0', '1972-12-09', 'S', 'NULL', 'F', 'tamara38@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '4801, rue de Varenne', 'NULL', '1 (11) 500 555-0149', '2013-12-01', '1-2 Miles'], ['24057', '183', 'AW00024057', 'NULL', 'Ricky', 'NULL', 'Alvarez', '0', '1983-10-19', 'M', 'NULL', 'M', 'ricky4@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '434, impasse Ste-Madeleine', 'NULL', '1 (11) 500 555-0175', '2013-12-07', '2-5 Miles'], ['24058', '279', 'AW00024058', 'NULL', 'Alvin', 'NULL', 'Lal', '0', '1978-05-20', 'S', 'NULL', 'M', 'alvin31@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '6161 Teakwood Dr.', 'NULL', '1 (11) 500 555-0168', '2013-08-23', '0-1 Miles'], ['24059', '171', 'AW00024059', 'NULL', 'Tabitha', 'NULL', 'Navarro', '0', '1972-10-19', 'S', 'NULL', 'F', 'tabitha30@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Rotthäuser Weg 606', 'NULL', '1 (11) 500 555-0186', '2013-09-03', '0-1 Miles'], ['24060', '131', 'AW00024060', 'NULL', 'Bonnie', 'A', 'Deng', '0', '1978-01-29', 'S', 'NULL', 'F', 'bonnie6@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Räuscherweg 193', 'NULL', '1 (11) 500 555-0118', '2013-09-18', '0-1 Miles'], ['24061', '201', 'AW00024061', 'NULL', 'Kelvin', 'NULL', 'Luo', '0', '1971-09-10', 'M', 'NULL', 'M', 'kelvin3@adventure-works.com', '10000.00', '4', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '838, rue de Berri', 'NULL', '1 (11) 500 555-0155', '2013-01-05', '0-1 Miles'], ['24062', '225', 'AW00024062', 'NULL', 'Crystal', 'L', 'Cai', '0', '1972-02-05', 'M', 'NULL', 'F', 'crystal0@adventure-works.com', '10000.00', '5', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '76bis, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0189', '2013-08-05', '0-1 Miles'], ['24063', '203', 'AW00024063', 'NULL', 'Micheal', 'NULL', 'Suarez', '0', '1977-11-03', 'S', 'NULL', 'M', 'micheal15@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '44, rue Saint Denis', 'NULL', '1 (11) 500 555-0182', '2013-01-29', '2-5 Miles'], ['24064', '246', 'AW00024064', 'NULL', 'Stanley', 'R', 'Fernandez', '0', '1972-04-04', 'M', 'NULL', 'M', 'stanley17@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '7611 Kim Court', 'NULL', '1 (11) 500 555-0156', '2013-02-18', '0-1 Miles'], ['24065', '258', 'AW00024065', 'NULL', 'Lori', 'NULL', 'Gutierrez', '0', '1983-01-10', 'S', 'NULL', 'F', 'lori13@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '879 Panoramic Ave', 'NULL', '1 (11) 500 555-0122', '2013-08-21', '0-1 Miles'], ['24066', '155', 'AW00024066', 'NULL', 'Brittney', 'C', 'West', '0', '1978-07-15', 'M', 'NULL', 'F', 'brittney1@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Wolfgangstraße 18', 'NULL', '1 (11) 500 555-0148', '2013-10-08', '0-1 Miles'], ['24067', '131', 'AW00024067', 'NULL', 'Carolyn', 'V', 'Raman', '0', '1972-12-17', 'S', 'NULL', 'F', 'carolyn11@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Zur Lindung 10', 'NULL', '1 (11) 500 555-0129', '2013-09-30', '0-1 Miles'], ['24068', '162', 'AW00024068', 'NULL', 'Edwin', 'R', 'Yang', '0', '1972-08-14', 'M', 'NULL', 'M', 'edwin5@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Westheimer Straße 2611', 'NULL', '1 (11) 500 555-0119', '2013-10-25', '0-1 Miles'], ['24069', '258', 'AW00024069', 'NULL', 'Jessie', 'NULL', 'Chen', '0', '1978-04-23', 'M', 'NULL', 'M', 'jessie8@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1065 Almond St.', 'NULL', '1 (11) 500 555-0192', '2013-07-25', '0-1 Miles'], ['24070', '224', 'AW00024070', 'NULL', 'Cameron', 'M', 'Shan', '0', '1933-02-17', 'S', 'NULL', 'M', 'cameron27@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '739, route de Marseille', 'NULL', '1 (11) 500 555-0138', '2013-10-08', '2-5 Miles'], ['24071', '250', 'AW00024071', 'NULL', 'Victor', 'N', 'Suarez', '0', '1977-02-22', 'M', 'NULL', 'M', 'victor19@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3014 Stanford Street', 'NULL', '1 (11) 500 555-0122', '2013-05-21', '0-1 Miles'], ['24072', '178', 'AW00024072', 'NULL', 'Randy', 'R', 'He', '0', '1971-09-03', 'M', 'NULL', 'M', 'randy21@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', 'Auf Der Steige 1111', 'NULL', '1 (11) 500 555-0167', '2013-05-30', '0-1 Miles'], ['24073', '241', 'AW00024073', 'NULL', 'Grace', 'NULL', 'Taylor', '0', '1970-11-23', 'M', 'NULL', 'F', 'grace8@adventure-works.com', '10000.00', '5', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '9293 Clear View Circle', 'NULL', '1 (11) 500 555-0198', '2013-09-17', '0-1 Miles'], ['24074', '162', 'AW00024074', 'NULL', 'Grace', 'J', 'Alexander', '0', '1976-07-05', 'S', 'NULL', 'F', 'grace65@adventure-works.com', '10000.00', '4', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Höhenstr 2462', 'NULL', '1 (11) 500 555-0119', '2013-09-18', '0-1 Miles'], ['24075', '191', 'AW00024075', 'Mr.', 'Peter', 'NULL', 'Saddow', '0', '1982-03-12', 'M', 'NULL', 'F', 'peter5@adventure-works.com', '10000.00', '4', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '15, avenue de la Gare', 'NULL', '132-555-0100', '2013-10-21', '0-1 Miles'], ['24076', '195', 'AW00024076', 'NULL', 'Casey', 'I', 'Hernandez', '0', '1976-10-13', 'M', 'NULL', 'M', 'casey27@adventure-works.com', '10000.00', '4', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '401, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0142', '2013-10-08', '0-1 Miles'], ['24077', '159', 'AW00024077', 'NULL', 'Tony', 'H', 'Rai', '0', '1976-03-15', 'M', 'NULL', 'M', 'tony20@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Klara Straße 8422', 'NULL', '1 (11) 500 555-0168', '2013-09-12', '0-1 Miles'], ['24078', '174', 'AW00024078', 'NULL', 'Neil', 'NULL', 'Martin', '0', '1981-12-15', 'M', 'NULL', 'M', 'neil1@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', 'Rehstr 6446', 'NULL', '1 (11) 500 555-0119', '2013-04-08', '0-1 Miles'], ['24079', '242', 'AW00024079', 'NULL', 'Andre', 'D', 'Raman', '0', '1970-04-04', 'M', 'NULL', 'M', 'andre12@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '3039 Eagle Way', 'NULL', '1 (11) 500 555-0161', '2013-05-21', '0-1 Miles'], ['24080', '153', 'AW00024080', 'NULL', 'Billy', 'P', 'Serrano', '0', '1980-10-14', 'M', 'NULL', 'M', 'billy17@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Nollendorfplatz 1851', 'NULL', '1 (11) 500 555-0118', '2013-07-28', '0-1 Miles'], ['24081', '184', 'AW00024081', 'NULL', 'Alexis', 'B', 'Hughes', '0', '1934-08-01', 'M', 'NULL', 'F', 'alexis34@adventure-works.com', '10000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '4201, rue Lauriston', 'NULL', '1 (11) 500 555-0168', '2013-09-07', '0-1 Miles'], ['24082', '212', 'AW00024082', 'NULL', 'Regina', 'A', 'Rodriguez', '0', '1975-12-10', 'M', 'NULL', 'F', 'regina18@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '56, avenue de l´Europe', 'NULL', '1 (11) 500 555-0119', '2013-09-03', '0-1 Miles'], ['24083', '211', 'AW00024083', 'NULL', 'Max', 'J', 'Moreno', '0', '1980-07-08', 'M', 'NULL', 'M', 'max7@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '8401 Carson Street', '#e', '1 (11) 500 555-0111', '2013-02-15', '0-1 Miles'], ['24084', '208', 'AW00024084', 'NULL', 'Jonathon', 'NULL', 'Jimenez', '0', '1970-05-22', 'M', 'NULL', 'M', 'jonathon2@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '55, rue du Puits Dixme', 'NULL', '1 (11) 500 555-0113', '2013-03-08', '0-1 Miles'], ['24085', '238', 'AW00024085', 'NULL', 'Autumn', 'W', 'Gao', '0', '1970-06-19', 'M', 'NULL', 'F', 'autumn14@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8463 Monument Blvd.', 'NULL', '1 (11) 500 555-0119', '2013-03-09', '0-1 Miles'], ['24086', '147', 'AW00024086', 'NULL', 'Dakota', 'T', 'Gonzales', '0', '1975-10-04', 'M', 'NULL', 'M', 'dakota13@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Wasserstr 22', 'NULL', '1 (11) 500 555-0164', '2013-09-25', '0-1 Miles'], ['24087', '160', 'AW00024087', 'NULL', 'Hannah', 'C', 'Wilson', '0', '1975-09-07', 'S', 'NULL', 'F', 'hannah7@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Wallstr 254', 'NULL', '1 (11) 500 555-0145', '2013-11-26', '0-1 Miles'], ['24088', '177', 'AW00024088', 'NULL', 'Damien', 'NULL', 'He', '0', '1968-10-13', 'M', 'NULL', 'M', 'damien14@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Hellweg 4244', 'NULL', '1 (11) 500 555-0141', '2013-05-14', '0-1 Miles'], ['24089', '215', 'AW00024089', 'NULL', 'Dustin', 'NULL', 'Yuan', '0', '1983-04-06', 'M', 'NULL', 'M', 'dustin6@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '68011, rue Malar', 'NULL', '1 (11) 500 555-0192', '2013-05-30', '0-1 Miles'], ['24090', '215', 'AW00024090', 'NULL', 'Cassandra', 'NULL', 'Perez', '0', '1971-10-04', 'S', 'NULL', 'F', 'cassandra22@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '29, rue Surcouf', 'NULL', '1 (11) 500 555-0137', '2013-06-05', '0-1 Miles'], ['24091', '170', 'AW00024091', 'NULL', 'Dwayne', 'F', 'Munoz', '0', '1971-12-31', 'M', 'NULL', 'M', 'dwayne6@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', 'Klara Straße 2465', 'NULL', '1 (11) 500 555-0177', '2013-11-25', '0-1 Miles'], ['24092', '162', 'AW00024092', 'NULL', 'Jillian', 'NULL', 'Gonzalez', '0', '1972-05-25', 'M', 'NULL', 'F', 'jillian19@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', 'Lützowplatz 4248', 'NULL', '1 (11) 500 555-0157', '2013-11-01', '0-1 Miles'], ['24093', '267', 'AW00024093', 'NULL', 'Claudia', 'F', 'He', '0', '1977-03-11', 'S', 'NULL', 'F', 'claudia16@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '867 La Orinda Place', 'NULL', '1 (11) 500 555-0189', '2013-02-02', '0-1 Miles'], ['24094', '235', 'AW00024094', 'NULL', 'Julio', 'J', 'Diaz', '0', '1967-12-18', 'S', 'NULL', 'M', 'julio2@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3566 Matterhorn Ct', 'NULL', '1 (11) 500 555-0137', '2013-01-29', '2-5 Miles'], ['24095', '209', 'AW00024095', 'NULL', 'Julie', 'J', 'Andersen', '0', '1973-03-15', 'S', 'NULL', 'F', 'julie18@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '1, rue de Courtaboeuf', 'NULL', '1 (11) 500 555-0114', '2013-06-25', '2-5 Miles'], ['24096', '206', 'AW00024096', 'NULL', 'Diana', 'NULL', 'Vazquez', '0', '1940-03-21', 'M', 'NULL', 'F', 'diana14@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '88, rue de l´Esplanade', 'NULL', '1 (11) 500 555-0116', '2013-05-23', '2-5 Miles'], ['24097', '140', 'AW00024097', 'NULL', 'Francisco', 'NULL', 'Fernandez', '0', '1939-10-30', 'M', 'NULL', 'M', 'francisco17@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Postfach 98 01 09', 'NULL', '1 (11) 500 555-0149', '2013-12-31', '2-5 Miles'], ['24098', '127', 'AW00024098', 'NULL', 'Olivia', 'E', 'Howard', '0', '1982-01-12', 'S', 'NULL', 'F', 'olivia37@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Zeiter Weg 9563', 'NULL', '1 (11) 500 555-0139', '2013-10-14', '0-1 Miles'], ['24099', '117', 'AW00024099', 'NULL', 'Sarah', 'D', 'Smith', '0', '1971-03-18', 'M', 'NULL', 'F', 'sarah2@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Lindenalle 1384', 'NULL', '1 (11) 500 555-0180', '2013-09-30', '0-1 Miles'], ['24100', '247', 'AW00024100', 'NULL', 'Jenny', 'C', 'He', '0', '1970-09-24', 'M', 'NULL', 'F', 'jenny20@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3623 Barquentine Court', 'NULL', '1 (11) 500 555-0144', '2013-07-04', '0-1 Miles'], ['24101', '273', 'AW00024101', 'NULL', 'Kaitlyn', 'H', 'Anderson', '0', '1970-09-30', 'M', 'NULL', 'F', 'kaitlyn32@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7419 Donaleen Ct.', 'NULL', '1 (11) 500 555-0171', '2013-07-11', '0-1 Miles'], ['24102', '149', 'AW00024102', 'NULL', 'Andy', 'R', 'Torres', '0', '1975-04-12', 'M', 'NULL', 'M', 'andy16@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', 'Hauptstr 2929', 'NULL', '1 (11) 500 555-0149', '2013-01-25', '0-1 Miles'], ['24103', '159', 'AW00024103', 'NULL', 'Billy', 'M', 'Dominguez', '0', '1970-01-30', 'M', 'NULL', 'M', 'billy14@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Kampstr 9859', 'NULL', '1 (11) 500 555-0172', '2013-02-17', '0-1 Miles'], ['24104', '267', 'AW00024104', 'NULL', 'Robyn', 'NULL', 'Ortega', '0', '1970-01-01', 'M', 'NULL', 'F', 'robyn18@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7852 Ban Bridge Pl.', 'NULL', '1 (11) 500 555-0142', '2013-08-27', '0-1 Miles'], ['24105', '209', 'AW00024105', 'NULL', 'Carolyn', 'NULL', 'Sanchez', '0', '1979-10-18', 'M', 'NULL', 'F', 'carolyn20@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '24, rue de Maubeuge', 'NULL', '1 (11) 500 555-0124', '2013-03-16', '0-1 Miles'], ['24106', '190', 'AW00024106', 'NULL', 'Kelvin', 'NULL', 'Shan', '0', '1969-05-30', 'S', 'NULL', 'M', 'kelvin7@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '0', '1402, rue Lauriston', 'NULL', '1 (11) 500 555-0117', '2013-09-07', '0-1 Miles'], ['24107', '117', 'AW00024107', 'NULL', 'Jonathan', 'NULL', 'Jenkins', '0', '1974-04-01', 'M', 'NULL', 'M', 'jonathan6@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Unter Linden 9', 'NULL', '1 (11) 500 555-0110', '2013-11-02', '0-1 Miles'], ['24108', '168', 'AW00024108', 'NULL', 'Tonya', 'B', 'Lal', '0', '1982-08-16', 'S', 'NULL', 'F', 'tonya8@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Heiderweg 4982', 'NULL', '1 (11) 500 555-0124', '2013-04-26', '2-5 Miles'], ['24109', '203', 'AW00024109', 'NULL', 'Eddie', 'A', 'Suarez', '0', '1982-12-16', 'S', 'NULL', 'M', 'eddie19@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '844, rue Basse-du-Rocher', 'NULL', '1 (11) 500 555-0115', '2013-04-13', '2-5 Miles'], ['24110', '221', 'AW00024110', 'NULL', 'Kaylee', 'S', 'Brooks', '0', '1984-08-10', 'S', 'NULL', 'F', 'kaylee0@adventure-works.com', '20000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '402, rue de Bas Marin', 'NULL', '1 (11) 500 555-0175', '2013-03-19', '0-1 Miles'], ['24111', '221', 'AW00024111', 'NULL', 'Cameron', 'NULL', 'Long', '0', '1983-07-15', 'S', 'NULL', 'M', 'cameron4@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '77, avenue du Président-Kennedy', 'NULL', '1 (11) 500 555-0161', '2013-08-15', '2-5 Miles'], ['24112', '271', 'AW00024112', 'NULL', 'Mary', 'NULL', 'Foster', '0', '1969-04-21', 'M', 'NULL', 'F', 'mary41@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8364 Encinal Place', 'NULL', '1 (11) 500 555-0169', '2013-10-12', '0-1 Miles'], ['24113', '209', 'AW00024113', 'NULL', 'Stephanie', 'NULL', 'Green', '0', '1967-12-06', 'S', 'NULL', 'F', 'stephanie59@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '22, quai Paul Doumer', 'NULL', '1 (11) 500 555-0140', '2013-03-15', '2-5 Miles'], ['24114', '269', 'AW00024114', 'NULL', 'Kristin', 'C', 'Yuan', '0', '1978-10-21', 'M', 'NULL', 'F', 'kristin9@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '1247 Violet Ct', 'NULL', '1 (11) 500 555-0139', '2013-07-31', '0-1 Miles'], ['24115', '268', 'AW00024115', 'NULL', 'Gary', 'R', 'Carlson', '0', '1967-09-07', 'M', 'NULL', 'M', 'gary29@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '273 Oak Street', 'NULL', '1 (11) 500 555-0114', '2013-10-08', '0-1 Miles'], ['24116', '196', 'AW00024116', 'NULL', 'Pedro', 'NULL', 'Martinez', '0', '1968-05-26', 'M', 'NULL', 'M', 'pedro17@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '10, rue Lafayette', 'NULL', '1 (11) 500 555-0151', '2013-06-13', '0-1 Miles'], ['24117', '152', 'AW00024117', 'NULL', 'Shannon', 'NULL', 'Gill', '0', '1983-09-17', 'M', 'NULL', 'M', 'shannon35@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Wasserstr 35', 'NULL', '1 (11) 500 555-0188', '2013-09-21', '0-1 Miles'], ['24118', '217', 'AW00024118', 'NULL', 'Donna', 'NULL', 'Chande', '0', '1982-09-13', 'M', 'NULL', 'F', 'donna13@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '34, rue Lauriston', 'NULL', '1 (11) 500 555-0167', '2014-01-25', '0-1 Miles'], ['24119', '206', 'AW00024119', 'NULL', 'Emmanuel', 'A', 'Kapoor', '0', '1982-09-09', 'S', 'NULL', 'M', 'emmanuel1@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '70, allée des Princes', 'NULL', '1 (11) 500 555-0118', '2013-09-12', '2-5 Miles'], ['24120', '133', 'AW00024120', 'NULL', 'Kaitlyn', 'NULL', 'Allen', '0', '1982-11-15', 'S', 'NULL', 'F', 'kaitlyn22@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Dunckerstr 48523', 'NULL', '1 (11) 500 555-0183', '2013-03-25', '2-5 Miles'], ['24121', '173', 'AW00024121', 'NULL', 'Valerie', 'R', 'Liu', '0', '1982-09-09', 'S', 'NULL', 'F', 'valerie5@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Conesweg 270', 'NULL', '1 (11) 500 555-0171', '2013-10-20', '0-1 Miles'], ['24122', '210', 'AW00024122', 'NULL', 'Michele', 'G', 'Blanco', '0', '1981-12-16', 'S', 'NULL', 'F', 'michele49@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '24, rue Lauriston', 'NULL', '1 (11) 500 555-0177', '2013-09-26', '1-2 Miles'], ['24123', '221', 'AW00024123', 'NULL', 'Heather', 'NULL', 'Hu', '0', '1981-10-31', 'S', 'NULL', 'F', 'heather19@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '77, quai de l´ Iton', 'NULL', '1 (11) 500 555-0193', '2013-07-07', '1-2 Miles'], ['24124', '222', 'AW00024124', 'NULL', 'Erik', 'A', 'Vazquez', '0', '1981-11-01', 'S', 'NULL', 'M', 'erik15@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '10, route de Marseille', 'NULL', '1 (11) 500 555-0118', '2013-12-29', '5-10 Miles'], ['24125', '204', 'AW00024125', 'NULL', 'Tiffany', 'NULL', 'Xu', '0', '1981-11-17', 'S', 'NULL', 'F', 'tiffany12@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '8868, avenue de Villiers', 'NULL', '1 (11) 500 555-0126', '2013-10-19', '5-10 Miles'], ['24126', '213', 'AW00024126', 'NULL', 'Pedro', 'NULL', 'Mehta', '0', '1982-06-03', 'S', 'NULL', 'M', 'pedro14@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '24, avenue du Port', 'NULL', '1 (11) 500 555-0116', '2013-08-18', '2-5 Miles'], ['24127', '175', 'AW00024127', 'NULL', 'James', 'R', 'Washington', '0', '1981-10-18', 'S', 'NULL', 'M', 'james29@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Buergermeister-ulrich-str 6411', 'NULL', '1 (11) 500 555-0181', '2013-10-15', '0-1 Miles'], ['24128', '161', 'AW00024128', 'NULL', 'Kimberly', 'P', 'Ramirez', '0', '1982-03-09', 'S', 'NULL', 'F', 'kimberly10@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Wertheimer Straße 266', 'NULL', '1 (11) 500 555-0188', '2013-07-24', '2-5 Miles'], ['24129', '131', 'AW00024129', 'NULL', 'Jamie', 'A', 'Gutierrez', '0', '1979-10-05', 'S', 'NULL', 'M', 'jamie33@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Viktoria-Luise-Platz 422', 'NULL', '1 (11) 500 555-0114', '2013-07-29', '0-1 Miles'], ['24130', '151', 'AW00024130', 'NULL', 'Tanya', 'C', 'Navarro', '0', '1984-12-30', 'M', 'NULL', 'F', 'tanya6@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Roßstr 7752', 'NULL', '1 (11) 500 555-0110', '2013-06-09', '0-1 Miles'], ['24131', '225', 'AW00024131', 'NULL', 'Felicia', 'S', 'Rubio', '0', '1979-11-29', 'M', 'NULL', 'F', 'felicia19@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '26, place de la Concorde', 'NULL', '1 (11) 500 555-0120', '2014-01-25', '0-1 Miles'], ['24132', '276', 'AW00024132', 'NULL', 'Devon', 'L', 'Tang', '0', '1980-06-25', 'S', 'NULL', 'M', 'devon3@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '730 Keller Ridge Dr', 'NULL', '1 (11) 500 555-0139', '2013-10-15', '0-1 Miles'], ['24133', '198', 'AW00024133', 'NULL', 'Carla', 'NULL', 'Patel', '0', '1979-12-30', 'S', 'NULL', 'F', 'carla6@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Attaché de Presse', 'NULL', '1 (11) 500 555-0136', '2013-05-12', '1-2 Miles'], ['24134', '196', 'AW00024134', 'NULL', 'Edgar', 'NULL', 'Kapoor', '0', '1979-11-09', 'S', 'NULL', 'M', 'edgar1@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '515, rue Léo Delibes', 'NULL', '1 (11) 500 555-0184', '2013-12-17', '0-1 Miles'], ['24135', '217', 'AW00024135', 'NULL', 'Martin', 'D', 'Martinez', '0', '1981-03-01', 'S', 'NULL', 'M', 'martin22@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '34, place de Brazaville', 'NULL', '1 (11) 500 555-0180', '2013-03-28', '2-5 Miles'], ['24136', '188', 'AW00024136', 'NULL', 'Alisha', 'E', 'Hu', '0', '1980-12-29', 'S', 'NULL', 'F', 'alisha21@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '69, rue Royale', 'NULL', '1 (11) 500 555-0175', '2013-04-02', '2-5 Miles'], ['24137', '173', 'AW00024137', 'NULL', 'Tara', 'NULL', 'Sharma', '0', '1981-06-14', 'S', 'NULL', 'F', 'tara9@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Kalkweg 900', 'NULL', '1 (11) 500 555-0156', '2013-05-30', '2-5 Miles'], ['24138', '269', 'AW00024138', 'NULL', 'Kristy', 'NULL', 'Gutierrez', '0', '1980-11-02', 'M', 'NULL', 'F', 'kristy10@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9473 Camino Solano', 'NULL', '1 (11) 500 555-0116', '2013-10-22', '0-1 Miles'], ['24139', '131', 'AW00024139', 'NULL', 'Andrew', 'W', 'Williams', '0', '1978-11-24', 'M', 'NULL', 'M', 'andrew11@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Carlsplatz 4229', 'NULL', '1 (11) 500 555-0197', '2013-11-09', '1-2 Miles'], ['24140', '203', 'AW00024140', 'NULL', 'Alvin', 'NULL', 'Lin', '0', '1981-07-22', 'S', 'NULL', 'M', 'alvin8@adventure-works.com', '10000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '83, rue de Fontfroide', 'NULL', '1 (11) 500 555-0121', '2013-04-28', '0-1 Miles'], ['24141', '199', 'AW00024141', 'NULL', 'Misty', 'E', 'Nath', '0', '1968-03-20', 'S', 'NULL', 'F', 'misty20@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '344, rue de Bas Marin', 'NULL', '1 (11) 500 555-0146', '2013-02-09', '0-1 Miles'], ['24142', '209', 'AW00024142', 'NULL', 'Christian', 'C', 'Davis', '0', '1967-12-25', 'M', 'NULL', 'M', 'christian36@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '34, place de Fontenoy', 'NULL', '1 (11) 500 555-0114', '2013-10-17', '0-1 Miles'], ['24143', '127', 'AW00024143', 'NULL', 'Stanley', 'A', 'Mehta', '0', '1968-02-06', 'M', 'NULL', 'M', 'stanley15@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Am Karlshof 6883', 'NULL', '1 (11) 500 555-0111', '2013-12-25', '0-1 Miles'], ['24144', '254', 'AW00024144', 'NULL', 'Gerald', 'NULL', 'Sanchez', '0', '1979-04-02', 'M', 'NULL', 'M', 'gerald6@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1293 F Street', 'NULL', '1 (11) 500 555-0110', '2013-10-14', '0-1 Miles'], ['24145', '275', 'AW00024145', 'NULL', 'Cheryl', 'J', 'Serrano', '0', '1967-07-20', 'S', 'NULL', 'F', 'cheryl19@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6614 College Blvd', 'NULL', '1 (11) 500 555-0126', '2014-01-02', '0-1 Miles'], ['24146', '183', 'AW00024146', 'NULL', 'Craig', 'NULL', 'Suarez', '0', '1967-01-03', 'S', 'NULL', 'M', 'craig18@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9, avenue de Norvege', 'NULL', '1 (11) 500 555-0155', '2013-04-27', '0-1 Miles'], ['24147', '176', 'AW00024147', 'NULL', 'Kathleen', 'NULL', 'Hernandez', '0', '1941-04-16', 'M', 'NULL', 'F', 'kathleen5@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Höhenstr 6466', 'NULL', '1 (11) 500 555-0116', '2013-12-19', '0-1 Miles'], ['24148', '142', 'AW00024148', 'NULL', 'Brittney', 'K', 'Zhou', '0', '1961-10-18', 'S', 'NULL', 'F', 'brittney7@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Königsteiner Straße 550', 'NULL', '1 (11) 500 555-0182', '2013-04-03', '0-1 Miles'], ['24149', '223', 'AW00024149', 'NULL', 'Richard', 'NULL', 'Simmons', '0', '1962-03-08', 'M', 'NULL', 'M', 'richard70@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '2, rue de l´Avenir', 'NULL', '1 (11) 500 555-0119', '2013-09-14', '1-2 Miles'], ['24150', '155', 'AW00024150', 'NULL', 'Jack', 'NULL', 'Campbell', '0', '1966-03-20', 'M', 'NULL', 'M', 'jack42@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Erlenweg 5194', 'NULL', '1 (11) 500 555-0113', '2013-10-21', '1-2 Miles'], ['24151', '277', 'AW00024151', 'NULL', 'Jon', 'NULL', 'Shan', '0', '1961-02-18', 'S', 'NULL', 'M', 'jon6@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '2050 B Avenue I', 'NULL', '1 (11) 500 555-0180', '2013-08-30', '0-1 Miles'], ['24152', '234', 'AW00024152', 'NULL', 'Casey', 'A', 'Rubio', '0', '1943-11-22', 'S', 'NULL', 'M', 'casey45@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '8818 Gentrytown Dr.', 'NULL', '1 (11) 500 555-0125', '2013-11-23', '0-1 Miles'], ['24153', '209', 'AW00024153', 'NULL', 'Seth', 'J', 'Jenkins', '0', '1947-05-28', 'S', 'NULL', 'M', 'seth54@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1, rue Lamarck', 'NULL', '1 (11) 500 555-0131', '2013-04-14', '0-1 Miles'], ['24154', '279', 'AW00024154', 'NULL', 'Orlando', 'NULL', 'Ramos', '0', '1947-01-20', 'S', 'NULL', 'M', 'orlando17@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '6739 Walnut Ave', 'NULL', '1 (11) 500 555-0193', '2013-03-31', '0-1 Miles'], ['24155', '151', 'AW00024155', 'NULL', 'Tracy', 'NULL', 'Raje', '0', '1947-09-06', 'M', 'NULL', 'F', 'tracy13@adventure-works.com', '20000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Pflugstr 2565', 'NULL', '1 (11) 500 555-0152', '2013-10-23', '0-1 Miles'], ['24156', '178', 'AW00024156', 'NULL', 'Wesley', 'NULL', 'Zhou', '0', '1947-12-08', 'M', 'NULL', 'M', 'wesley9@adventure-works.com', '20000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Karl Liebknecht str 422', 'NULL', '1 (11) 500 555-0175', '2013-09-26', '0-1 Miles'], ['24157', '226', 'AW00024157', 'NULL', 'Marie', 'L', 'Subram', '0', '1954-09-30', 'M', 'NULL', 'F', 'marie14@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '16, avenue de Malakoff', 'NULL', '1 (11) 500 555-0194', '2013-05-24', '0-1 Miles'], ['24158', '187', 'AW00024158', 'NULL', 'Omar', 'NULL', 'Deng', '0', '1949-02-11', 'S', 'NULL', 'M', 'omar23@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '95, rue de Terre Neuve', 'NULL', '1 (11) 500 555-0138', '2013-05-16', '0-1 Miles'], ['24159', '20', 'AW00024159', 'NULL', 'Christine', 'J', 'Luo', '0', '1985-07-05', 'M', 'NULL', 'F', 'christine3@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '463 Creekside Drive', 'NULL', '1 (11) 500 555-0157', '2012-09-25', '0-1 Miles'], ['24160', '8', 'AW00024160', 'NULL', 'Carl', 'P', 'Yuan', '0', '1986-05-03', 'S', 'NULL', 'M', 'carl6@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '6631 Highland Dr.', 'NULL', '1 (11) 500 555-0194', '2012-09-26', '1-2 Miles'], ['24161', '4', 'AW00024161', 'NULL', 'Luke', 'NULL', 'Kumar', '0', '1985-08-03', 'M', 'NULL', 'M', 'luke17@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '4882 Darlene Drive', 'NULL', '1 (11) 500 555-0117', '2012-10-22', '2-5 Miles'], ['24162', '7', 'AW00024162', 'NULL', 'Grant', 'S', 'Raje', '0', '1986-01-14', 'M', 'NULL', 'M', 'grant16@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '296 Peachwillow St.', 'NULL', '1 (11) 500 555-0174', '2012-10-12', '0-1 Miles'], ['24163', '33', 'AW00024163', 'NULL', 'Micah', 'M', 'Guo', '0', '1985-08-27', 'S', 'NULL', 'M', 'micah5@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '86 Sierra Ridge', 'NULL', '1 (11) 500 555-0153', '2012-10-03', '0-1 Miles'], ['24164', '28', 'AW00024164', 'NULL', 'Teresa', 'D', 'Gomez', '0', '1983-05-13', 'S', 'NULL', 'F', 'teresa2@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '6258 Stinson', 'NULL', '1 (11) 500 555-0120', '2012-10-16', '0-1 Miles'], ['24165', '19', 'AW00024165', 'NULL', 'Gilbert', 'NULL', 'Gao', '0', '1982-10-21', 'S', 'NULL', 'M', 'gilbert12@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '4519 Lydia Lane', 'NULL', '1 (11) 500 555-0179', '2012-10-24', '0-1 Miles'], ['24166', '13', 'AW00024166', 'NULL', 'Renee', 'NULL', 'Alonso', '0', '1982-11-20', 'S', 'NULL', 'F', 'renee7@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '929 Birchbark Place', 'NULL', '1 (11) 500 555-0180', '2012-10-14', '0-1 Miles'], ['24167', '36', 'AW00024167', 'NULL', 'Lacey', 'NULL', 'Zhu', '0', '1983-04-05', 'S', 'NULL', 'F', 'lacey26@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '887 Redwood Road', 'NULL', '1 (11) 500 555-0120', '2012-10-04', '0-1 Miles'], ['24168', '39', 'AW00024168', 'NULL', 'Manuel', 'NULL', 'Srini', '0', '1982-11-15', 'M', 'NULL', 'M', 'manuel7@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '3392 El Dorado', 'NULL', '1 (11) 500 555-0157', '2012-10-26', '0-1 Miles'], ['24169', '29', 'AW00024169', 'NULL', 'Lydia', 'NULL', 'Martinez', '0', '1982-01-06', 'S', 'NULL', 'F', 'lydia16@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '9585 Carob Way', 'NULL', '1 (11) 500 555-0129', '2012-10-15', '1-2 Miles'], ['24170', '29', 'AW00024170', 'NULL', 'Jaime', 'NULL', 'Hernandez', '0', '1982-04-23', 'S', 'NULL', 'F', 'jaime4@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '6325 Entrada Circle', 'NULL', '1 (11) 500 555-0126', '2012-10-08', '2-5 Miles'], ['24171', '29', 'AW00024171', 'NULL', 'Jarrod', 'NULL', 'Chandra', '0', '1984-11-11', 'S', 'NULL', 'M', 'jarrod2@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '9816 Ban Bridge Pl.', 'NULL', '1 (11) 500 555-0164', '2012-10-09', '1-2 Miles'], ['24172', '36', 'AW00024172', 'NULL', 'Jessie', 'A', 'Hernandez', '0', '1985-03-26', 'M', 'NULL', 'F', 'jessie1@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '9824 San Rafael', 'NULL', '1 (11) 500 555-0173', '2012-10-14', '2-5 Miles'], ['24173', '26', 'AW00024173', 'NULL', 'Lacey', 'NULL', 'Wang', '0', '1984-07-22', 'S', 'NULL', 'F', 'lacey13@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1080 Crestwood Circle', 'NULL', '1 (11) 500 555-0132', '2012-10-05', '0-1 Miles'], ['24174', '40', 'AW00024174', 'NULL', 'Keith', 'A', 'Chander', '0', '1984-11-22', 'M', 'NULL', 'M', 'keith19@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5465 Janin Pl.', 'NULL', '1 (11) 500 555-0146', '2012-10-16', '0-1 Miles'], ['24175', '26', 'AW00024175', 'NULL', 'Lacey', 'NULL', 'Luo', '0', '1983-09-05', 'S', 'NULL', 'F', 'lacey40@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '163 St. John Lane', 'NULL', '1 (11) 500 555-0138', '2012-10-14', '0-1 Miles'], ['24176', '22', 'AW00024176', 'NULL', 'Marie', 'C', 'Jimenez', '0', '1983-10-18', 'M', 'NULL', 'F', 'marie29@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '833 Sepueveda Court', 'NULL', '1 (11) 500 555-0138', '2012-10-21', '0-1 Miles'], ['24177', '4', 'AW00024177', 'NULL', 'Gina', 'F', 'Gill', '0', '1982-08-04', 'S', 'NULL', 'F', 'gina14@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9589 Eastgate Avenue', 'NULL', '1 (11) 500 555-0194', '2012-09-29', '0-1 Miles'], ['24178', '31', 'AW00024178', 'NULL', 'Clifford', 'M', 'Sara', '0', '1983-04-09', 'S', 'NULL', 'M', 'clifford10@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '9568 Gold Crest Ct.', 'NULL', '1 (11) 500 555-0123', '2012-10-26', '0-1 Miles'], ['24179', '6', 'AW00024179', 'NULL', 'Robyn', 'R', 'Blanco', '0', '1982-09-04', 'M', 'NULL', 'F', 'robyn12@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '6270 Pinecreek Way', 'NULL', '1 (11) 500 555-0113', '2012-10-22', '0-1 Miles'], ['24180', '138', 'AW00024180', 'NULL', 'Arturo', 'T', 'Jai', '0', '1948-10-13', 'S', 'NULL', 'M', 'arturo36@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Zeiter Weg 9963', 'NULL', '1 (11) 500 555-0144', '2013-09-17', '1-2 Miles'], ['24181', '154', 'AW00024181', 'NULL', 'Edwin', 'NULL', 'Nath', '0', '1949-04-14', 'M', 'NULL', 'M', 'edwin41@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Husemann Straße 9514', 'NULL', '1 (11) 500 555-0199', '2013-03-07', '0-1 Miles'], ['24182', '175', 'AW00024182', 'NULL', 'Nancy', 'L', 'Lopez', '0', '1948-11-29', 'M', 'NULL', 'F', 'nancy20@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Rykestr 2614', 'NULL', '1 (11) 500 555-0147', '2013-10-01', '0-1 Miles'], ['24183', '219', 'AW00024183', 'NULL', 'Ruth', 'NULL', 'Perez', '0', '1967-02-23', 'S', 'NULL', 'F', 'ruth25@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '16, rue de Linois', 'NULL', '1 (11) 500 555-0167', '2013-05-29', '0-1 Miles'], ['24184', '262', 'AW00024184', 'NULL', 'Alexandra', 'A', 'Jackson', '0', '1967-03-24', 'S', 'NULL', 'F', 'alexandra75@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '755 Ptarmigan Dr.', 'NULL', '1 (11) 500 555-0121', '2013-08-08', '0-1 Miles'], ['24185', '223', 'AW00024185', 'NULL', 'Tara', 'NULL', 'She', '0', '1966-05-25', 'S', 'NULL', 'F', 'tara0@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Attaché de Presse', 'NULL', '1 (11) 500 555-0115', '2014-01-05', '1-2 Miles'], ['24186', '262', 'AW00024186', 'NULL', 'Theodore', 'NULL', 'Alonso', '0', '1971-02-15', 'S', 'NULL', 'M', 'theodore8@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '832 Bellows Ct.', 'NULL', '1 (11) 500 555-0174', '2013-08-05', '0-1 Miles'], ['24187', '269', 'AW00024187', 'NULL', 'Daisy', 'P', 'Serrano', '0', '1971-02-04', 'S', 'NULL', 'F', 'daisy11@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '5253 Harris Court', 'NULL', '1 (11) 500 555-0158', '2013-08-13', '0-1 Miles'], ['24188', '236', 'AW00024188', 'NULL', 'Charles', 'NULL', 'Turner', '0', '1975-10-31', 'S', 'NULL', 'M', 'charles41@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '9040 Pierce', 'NULL', '1 (11) 500 555-0180', '2013-07-11', '2-5 Miles'], ['24189', '263', 'AW00024189', 'NULL', 'Andre', 'D', 'Suri', '0', '1965-04-30', 'M', 'NULL', 'M', 'andre0@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7430 Partridge Dr.', 'NULL', '1 (11) 500 555-0174', '2013-08-29', '0-1 Miles'], ['24190', '220', 'AW00024190', 'NULL', 'Austin', 'V', 'Chen', '0', '1975-05-01', 'S', 'NULL', 'M', 'austin22@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '71, avenue Reille', 'NULL', '1 (11) 500 555-0119', '2013-06-17', '2-5 Miles'], ['24191', '168', 'AW00024191', 'NULL', 'Marshall', 'R', 'He', '0', '1966-03-11', 'M', 'NULL', 'M', 'marshall17@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Hellweg 4924', 'NULL', '1 (11) 500 555-0158', '2013-10-10', '0-1 Miles'], ['24192', '237', 'AW00024192', 'NULL', 'Regina', 'A', 'Prasad', '0', '1965-07-03', 'S', 'NULL', 'F', 'regina8@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9224 Nob Hill Drive', 'NULL', '1 (11) 500 555-0122', '2013-09-15', '0-1 Miles'], ['24193', '245', 'AW00024193', 'NULL', 'Louis', 'J', 'Becker', '0', '1965-06-15', 'M', 'NULL', 'M', 'louis36@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '512 Palms Dr', 'NULL', '1 (11) 500 555-0142', '2013-09-20', '0-1 Miles'], ['24194', '206', 'AW00024194', 'NULL', 'Armando', 'NULL', 'Martin', '0', '1964-07-20', 'M', 'NULL', 'M', 'armando0@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Midi-Couleurs', 'NULL', '1 (11) 500 555-0154', '2013-06-25', '0-1 Miles'], ['24195', '183', 'AW00024195', 'NULL', 'Dawn', 'NULL', 'Zhao', '0', '1981-11-30', 'M', 'NULL', 'F', 'dawn12@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '8848, avenue de Villiers', 'NULL', '1 (11) 500 555-0149', '2013-05-14', '0-1 Miles'], ['24196', '180', 'AW00024196', 'NULL', 'Armando', 'J', 'Gill', '0', '1975-09-24', 'M', 'NULL', 'M', 'armando14@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '8026, rue Maillard', 'NULL', '1 (11) 500 555-0165', '2013-07-18', '0-1 Miles'], ['24197', '272', 'AW00024197', 'NULL', 'Whitney', 'T', 'Mehta', '0', '1981-03-16', 'S', 'NULL', 'F', 'whitney13@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '5826 Norman Avenue', 'NULL', '1 (11) 500 555-0158', '2013-09-26', '2-5 Miles'], ['24198', '223', 'AW00024198', 'NULL', 'Chelsea', 'O', 'Madan', '0', '1976-02-25', 'M', 'NULL', 'F', 'chelsea8@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '115, quai Paul Doumer', 'NULL', '1 (11) 500 555-0186', '2013-06-12', '0-1 Miles'], ['24199', '260', 'AW00024199', 'NULL', 'Veronica', 'J', 'Prasad', '0', '1975-11-03', 'M', 'NULL', 'F', 'veronica10@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '2956 East Altarinda Dr.', 'NULL', '1 (11) 500 555-0182', '2013-10-21', '0-1 Miles'], ['24200', '274', 'AW00024200', 'NULL', 'Grant', 'NULL', 'Jai', '0', '1981-10-19', 'S', 'NULL', 'M', 'grant13@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '3128 Morgan Territory Rd', 'NULL', '1 (11) 500 555-0128', '2013-10-28', '0-1 Miles'], ['24201', '207', 'AW00024201', 'NULL', 'Olivia', 'A', 'Gonzales', '0', '1975-01-23', 'M', 'NULL', 'F', 'olivia62@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '16, rue Surcouf', 'NULL', '1 (11) 500 555-0156', '2013-07-12', '0-1 Miles'], ['24202', '271', 'AW00024202', 'NULL', 'Tamara', 'L', 'Black', '0', '1975-04-19', 'S', 'NULL', 'F', 'tamara30@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '215 Denkinger Court', 'NULL', '1 (11) 500 555-0196', '2013-08-29', '0-1 Miles'], ['24203', '192', 'AW00024203', 'NULL', 'Keith', 'W', 'Xie', '0', '1975-03-12', 'S', 'NULL', 'M', 'keith5@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '15, rue Basse-du-Rocher', 'NULL', '1 (11) 500 555-0148', '2013-08-14', '0-1 Miles'], ['24204', '150', 'AW00024204', 'NULL', 'Darren', 'NULL', 'Gonzalez', '0', '1980-07-08', 'S', 'NULL', 'M', 'darren19@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Zeiter Weg 7765', 'NULL', '1 (11) 500 555-0174', '2013-10-23', '0-1 Miles'], ['24205', '117', 'AW00024205', 'NULL', 'Katherine', 'NULL', 'Anderson', '0', '1975-06-19', 'S', 'NULL', 'F', 'katherine80@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Bundesallee 11', 'Verkaufsabteilung', '1 (11) 500 555-0172', '2013-10-02', '0-1 Miles'], ['24206', '168', 'AW00024206', 'NULL', 'Marie', 'NULL', 'Munoz', '0', '1980-02-20', 'M', 'NULL', 'F', 'marie31@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Kapellstr 4924', 'NULL', '1 (11) 500 555-0110', '2013-02-17', '0-1 Miles'], ['24207', '271', 'AW00024207', 'NULL', 'Stacey', 'NULL', 'Guo', '0', '1974-01-02', 'M', 'NULL', 'F', 'stacey19@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '2678 Village Pl', 'NULL', '1 (11) 500 555-0188', '2013-12-15', '0-1 Miles'], ['24208', '196', 'AW00024208', 'NULL', 'Sabrina', 'S', 'Diaz', '0', '1974-08-31', 'S', 'NULL', 'F', 'sabrina0@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '25, rue de Cambrai', 'NULL', '1 (11) 500 555-0190', '2013-08-28', '0-1 Miles'], ['24209', '179', 'AW00024209', 'NULL', 'Chelsea', 'NULL', 'Jordan', '0', '1975-05-10', 'M', 'NULL', 'F', 'chelsea1@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6935, rue Malar', 'NULL', '1 (11) 500 555-0172', '2013-08-04', '0-1 Miles'], ['24210', '168', 'AW00024210', 'NULL', 'Ricardo', 'NULL', 'Shan', '0', '1974-12-14', 'S', 'NULL', 'M', 'ricardo10@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Potsdamer Straße 929', 'NULL', '1 (11) 500 555-0196', '2013-03-25', '0-1 Miles'], ['24211', '265', 'AW00024211', 'NULL', 'Sharon', 'A', 'Shan', '0', '1974-07-18', 'S', 'NULL', 'F', 'sharon17@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '5850 Westwood Dr', 'NULL', '1 (11) 500 555-0145', '2013-10-15', '0-1 Miles'], ['24212', '270', 'AW00024212', 'NULL', 'Tony', 'NULL', 'Raje', '0', '1958-03-25', 'S', 'NULL', 'M', 'tony16@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '9395 Asilomaar Dr', 'NULL', '1 (11) 500 555-0187', '2013-09-07', '0-1 Miles'], ['24213', '266', 'AW00024213', 'NULL', 'Martin', 'NULL', 'Rana', '0', '1957-03-10', 'S', 'NULL', 'M', 'martin16@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '9494 Candelero Dr.', 'NULL', '1 (11) 500 555-0144', '2013-09-19', '0-1 Miles'], ['24214', '160', 'AW00024214', 'NULL', 'Michele', 'K', 'Romero', '0', '1956-12-31', 'S', 'NULL', 'F', 'michele42@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Moritzstr 45', 'NULL', '1 (11) 500 555-0176', '2013-10-09', '2-5 Miles'], ['24215', '150', 'AW00024215', 'NULL', 'Lisa', 'NULL', 'Xu', '0', '1964-07-11', 'M', 'NULL', 'F', 'lisa16@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Höhenstr 7477', 'NULL', '1 (11) 500 555-0111', '2013-12-15', '0-1 Miles'], ['24216', '266', 'AW00024216', 'NULL', 'Tara', 'NULL', 'Black', '0', '1958-08-06', 'S', 'NULL', 'F', 'tara21@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '2197 Clayton Road', 'NULL', '1 (11) 500 555-0116', '2013-12-07', '0-1 Miles'], ['24217', '236', 'AW00024217', 'NULL', 'Lauren', 'NULL', 'Morgan', '0', '1973-10-24', 'S', 'NULL', 'F', 'lauren4@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '3594 Vista Del Sol', 'NULL', '1 (11) 500 555-0184', '2013-09-06', '0-1 Miles'], ['24218', '261', 'AW00024218', 'NULL', 'Bryant', 'NULL', 'Lopez', '0', '1973-10-24', 'S', 'NULL', 'M', 'bryant16@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '3594 Vista Del Sol', 'NULL', '1 (11) 500 555-0144', '2013-05-05', '1-2 Miles'], ['24219', '183', 'AW00024219', 'NULL', 'Tina', 'J', 'Lopez', '0', '1973-12-15', 'M', 'NULL', 'F', 'tina18@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6, avenue des Laurentides', 'NULL', '1 (11) 500 555-0177', '2013-08-01', '1-2 Miles'], ['24220', '60', 'AW00024220', 'NULL', 'Hunter', 'NULL', 'Edwards', '0', '1974-04-08', 'M', 'NULL', 'M', 'hunter30@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7332 Blue Jay Drive', 'NULL', '871-555-0181', '2013-09-23', '0-1 Miles'], ['24221', '301', 'AW00024221', 'NULL', 'Heidi', 'NULL', 'Perez', '0', '1973-09-07', 'S', 'NULL', 'F', 'heidi24@adventure-works.com', '130000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '6110 Price Lane', 'NULL', '904-555-0191', '2013-12-05', '0-1 Miles'], ['24222', '543', 'AW00024222', 'NULL', 'Sierra', 'L', 'Green', '0', '1985-02-19', 'S', 'NULL', 'F', 'sierra13@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1679 Bay View Drive', 'NULL', '317-555-0135', '2013-10-03', '5-10 Miles'], ['24223', '545', 'AW00024223', 'NULL', 'Abigail', 'NULL', 'Alexander', '0', '1984-10-23', 'S', 'NULL', 'F', 'abigail44@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5225 Harbor View Dr', 'NULL', '142-555-0123', '2013-04-06', '5-10 Miles'], ['24224', '637', 'AW00024224', 'NULL', 'Nicole', 'L', 'Perry', '0', '1985-04-15', 'S', 'NULL', 'F', 'nicole56@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6401 Cook Street', 'NULL', '168-555-0179', '2013-12-13', '1-2 Miles'], ['24225', '299', 'AW00024225', 'NULL', 'Jeffery', 'NULL', 'Yang', '0', '1985-04-04', 'S', 'NULL', 'M', 'jeffery5@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '197 Adobe Dr', 'NULL', '994-555-0154', '2013-08-04', '5-10 Miles'], ['24226', '315', 'AW00024226', 'NULL', 'Brian', 'L', 'Morris', '0', '1984-09-22', 'S', 'NULL', 'M', 'brian30@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '835 Ofarrell Dr.', 'NULL', '759-555-0173', '2013-08-12', '1-2 Miles'], ['24227', '316', 'AW00024227', 'NULL', 'Sara', 'A', 'Phillips', '0', '1984-12-11', 'S', 'NULL', 'F', 'sara31@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4803 Panoramic Ave.', 'NULL', '807-555-0167', '2013-07-27', '1-2 Miles'], ['24228', '13', 'AW00024228', 'NULL', 'Terry', 'NULL', 'Xu', '0', '1950-04-10', 'S', 'NULL', 'M', 'terry8@adventure-works.com', '20000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5634 Haviland Place', 'NULL', '1 (11) 500 555-0114', '2013-11-11', '1-2 Miles'], ['24229', '37', 'AW00024229', 'NULL', 'Pedro', 'H', 'Kapoor', '0', '1949-12-02', 'M', 'NULL', 'M', 'pedro1@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9837 Larkwood Ct', 'NULL', '1 (11) 500 555-0118', '2013-05-23', '5-10 Miles'], ['24230', '16', 'AW00024230', 'NULL', 'Andres', 'C', 'Sharma', '0', '1955-06-16', 'M', 'NULL', 'M', 'andres6@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4110 Hanson Lane', 'NULL', '1 (11) 500 555-0117', '2013-08-19', '5-10 Miles'], ['24231', '361', 'AW00024231', 'NULL', 'Makayla', 'NULL', 'Cox', '0', '1985-04-16', 'S', 'NULL', 'F', 'makayla9@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '30 Rolling Green Circle', 'NULL', '392-555-0143', '2013-12-25', '5-10 Miles'], ['24232', '383', 'AW00024232', 'NULL', 'Ryan', 'NULL', 'Johnson', '0', '1984-08-16', 'S', 'NULL', 'M', 'ryan40@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7251 Millfield Place', 'NULL', '584-555-0116', '2013-12-18', '5-10 Miles'], ['24233', '383', 'AW00024233', 'NULL', 'Jada', 'L', 'Parker', '0', '1984-11-20', 'S', 'NULL', 'F', 'jada20@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7070 Grasswood Ct.', 'NULL', '477-555-0175', '2013-11-30', '5-10 Miles'], ['24234', '383', 'AW00024234', 'NULL', 'Eduardo', 'W', 'Martinez', '0', '1985-04-14', 'S', 'NULL', 'M', 'eduardo16@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5697 Jacqueline Way', 'NULL', '954-555-0173', '2013-12-11', '5-10 Miles'], ['24235', '51', 'AW00024235', 'NULL', 'Jill', 'NULL', 'Martinez', '0', '1984-02-20', 'S', 'NULL', 'F', 'jill7@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3952 Morello Ave.', 'NULL', '885-555-0112', '2011-11-09', '1-2 Miles'], ['24236', '614', 'AW00024236', 'NULL', 'Isabella', 'NULL', 'Nelson', '0', '1984-05-08', 'S', 'NULL', 'F', 'isabella39@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4760 Brown Dr.', 'NULL', '715-555-0147', '2013-05-04', '5-10 Miles'], ['24237', '623', 'AW00024237', 'NULL', 'Chloe', 'NULL', 'Henderson', '0', '1983-10-04', 'S', 'NULL', 'F', 'chloe71@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6165 Silverwood Drive', 'NULL', '903-555-0123', '2013-12-15', '1-2 Miles'], ['24238', '299', 'AW00024238', 'NULL', 'Sean', 'T', 'Richardson', '0', '1984-03-06', 'M', 'NULL', 'M', 'sean17@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9277 Claycord Ave.', 'NULL', '726-555-0144', '2013-12-19', '5-10 Miles'], ['24239', '329', 'AW00024239', 'NULL', 'Miguel', 'L', 'Hernandez', '0', '1984-05-26', 'M', 'NULL', 'M', 'miguel26@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8370 Birchwood Dr', 'NULL', '145-555-0139', '2013-12-02', '5-10 Miles'], ['24240', '10', 'AW00024240', 'NULL', 'Edwin', 'NULL', 'Hu', '0', '1950-10-07', 'M', 'NULL', 'M', 'edwin21@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7910 Mary Dr.', 'NULL', '1 (11) 500 555-0131', '2013-12-19', '5-10 Miles'], ['24241', '11', 'AW00024241', 'NULL', 'Colin', 'D', 'Zhao', '0', '1951-08-06', 'S', 'NULL', 'M', 'colin11@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7948 Sony Hill Circle', 'NULL', '1 (11) 500 555-0195', '2012-10-04', '1-2 Miles'], ['24242', '25', 'AW00024242', 'NULL', 'Amy', 'NULL', 'Zeng', '0', '1951-10-04', 'M', 'NULL', 'F', 'amy29@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9446 Camelback Ct.', 'NULL', '1 (11) 500 555-0159', '2012-10-14', '1-2 Miles'], ['24243', '37', 'AW00024243', 'NULL', 'Karen', 'NULL', 'Lin', '0', '1957-07-04', 'M', 'NULL', 'F', 'karen17@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '8741 Clyde Street', 'NULL', '1 (11) 500 555-0123', '2013-06-15', '5-10 Miles'], ['24244', '30', 'AW00024244', 'NULL', 'Anne', 'NULL', 'Serrano', '0', '1952-04-10', 'M', 'NULL', 'F', 'anne18@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5379 Treasure Island Way', 'NULL', '1 (11) 500 555-0160', '2012-10-15', '5-10 Miles'], ['24245', '21', 'AW00024245', 'NULL', 'Omar', 'NULL', 'Liang', '0', '1952-08-31', 'M', 'NULL', 'M', 'omar16@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4717 Carpetta Circle', 'NULL', '1 (11) 500 555-0141', '2013-12-18', '1-2 Miles'], ['24246', '3', 'AW00024246', 'NULL', 'Victor', 'D', 'Ramos', '0', '1953-03-20', 'M', 'NULL', 'M', 'victor17@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3925 Boyd', 'NULL', '1 (11) 500 555-0164', '2013-05-09', '1-2 Miles'], ['24247', '29', 'AW00024247', 'NULL', 'George', 'NULL', 'Sara', '0', '1952-12-21', 'M', 'NULL', 'M', 'george16@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5564 Marsh Elder', 'NULL', '1 (11) 500 555-0191', '2012-10-24', '5-10 Miles'], ['24248', '36', 'AW00024248', 'NULL', 'Jake', 'NULL', 'Lin', '0', '1958-10-01', 'S', 'NULL', 'M', 'jake8@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3567 Sierra Street', 'NULL', '1 (11) 500 555-0155', '2012-10-05', '1-2 Miles'], ['24249', '13', 'AW00024249', 'NULL', 'Jesse', 'D', 'Howard', '0', '1952-09-14', 'S', 'NULL', 'M', 'jesse11@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9409 Cedar Point Loop', 'NULL', '1 (11) 500 555-0117', '2012-10-04', '1-2 Miles'], ['24250', '14', 'AW00024250', 'NULL', 'Carmen', 'E', 'Suri', '0', '1953-01-18', 'M', 'NULL', 'F', 'carmen4@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9657 Wiget Lane', 'NULL', '1 (11) 500 555-0118', '2012-10-20', '5-10 Miles'], ['24251', '17', 'AW00024251', 'NULL', 'Jay', 'M', 'Browning', '0', '1952-07-31', 'S', 'NULL', 'M', 'jay45@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '4001 Camino Solano', 'NULL', '1 (11) 500 555-0168', '2012-10-15', '1-2 Miles'], ['24252', '19', 'AW00024252', 'NULL', 'Jaclyn', 'NULL', 'Xu', '0', '1953-05-21', 'M', 'NULL', 'F', 'jaclyn13@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6719 Santa Teresa Dr', 'NULL', '1 (11) 500 555-0174', '2012-10-15', '1-2 Miles'], ['24253', '25', 'AW00024253', 'NULL', 'Fernando', 'K', 'Wood', '0', '1954-05-14', 'M', 'NULL', 'M', 'fernando46@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3229 Pembroke Dr.', 'NULL', '1 (11) 500 555-0194', '2013-10-09', '5-10 Miles'], ['24254', '359', 'AW00024254', 'NULL', 'Emily', 'NULL', 'Washington', '0', '1984-02-12', 'S', 'NULL', 'F', 'emily38@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1908 Stanford Street', 'NULL', '908-555-0122', '2013-12-26', '0-1 Miles'], ['24255', '49', 'AW00024255', 'NULL', 'Chloe', 'J', 'Lee', '0', '1983-03-12', 'S', 'NULL', 'F', 'chloe31@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9342 Temple Drive', 'NULL', '769-555-0122', '2013-12-30', '5-10 Miles'], ['24256', '54', 'AW00024256', 'NULL', 'Kayla', 'NULL', 'Barnes', '0', '1983-01-22', 'S', 'NULL', 'F', 'kayla27@adventure-works.com', '40000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '8965 Rheem Blvd.', 'NULL', '714-555-0162', '2013-03-25', '1-2 Miles'], ['24257', '18', 'AW00024257', 'Mr.', 'Alan', 'NULL', 'Shen', '0', '1959-01-08', 'M', 'NULL', 'M', 'alan3@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9826 Olive Ave.', 'NULL', '484-555-0100', '2012-10-25', '1-2 Miles'], ['24258', '68', 'AW00024258', 'NULL', 'Hailey', 'NULL', 'Edwards', '0', '1982-10-08', 'S', 'NULL', 'F', 'hailey44@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '1979 Driving Drive', 'NULL', '210-555-0193', '2013-11-27', '1-2 Miles'], ['24259', '611', 'AW00024259', 'NULL', 'Gavin', 'J', 'Price', '0', '1983-01-31', 'S', 'NULL', 'M', 'gavin0@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '3168 Limewood Pl.', 'NULL', '977-555-0116', '2014-01-08', '5-10 Miles'], ['24260', '638', 'AW00024260', 'NULL', 'Blake', 'D', 'Perry', '0', '1982-09-06', 'S', 'NULL', 'M', 'blake55@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2651 Ancona Ct.', 'NULL', '966-555-0193', '2013-12-07', '5-10 Miles'], ['24261', '311', 'AW00024261', 'NULL', 'Emma', 'E', 'Jones', '0', '1982-12-13', 'S', 'NULL', 'F', 'emma2@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5123 Gumwood', 'NULL', '291-555-0163', '2013-07-12', '5-10 Miles'], ['24262', '331', 'AW00024262', 'NULL', 'Daniel', 'NULL', 'Thomas', '0', '1982-09-13', 'M', 'NULL', 'M', 'daniel11@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5776 Newton Way', 'NULL', '477-555-0199', '2013-06-24', '1-2 Miles'], ['24263', '331', 'AW00024263', 'NULL', 'Brooke', 'P', 'Brooks', '0', '1983-02-12', 'M', 'NULL', 'F', 'brooke1@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1994 South Villa Way', 'NULL', '496-555-0117', '2013-07-12', '5-10 Miles'], ['24264', '345', 'AW00024264', 'NULL', 'Richard', 'A', 'Long', '0', '1983-04-27', 'S', 'NULL', 'M', 'richard64@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9997 Montgomery Ave.', 'NULL', '823-555-0147', '2013-10-13', '0-1 Miles'], ['24265', '347', 'AW00024265', 'NULL', 'Seth', 'NULL', 'McDonald', '0', '1983-03-13', 'M', 'NULL', 'M', 'seth29@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5175 Reisling Court', 'NULL', '322-555-0183', '2013-07-21', '0-1 Miles'], ['24266', '9', 'AW00024266', 'NULL', 'Melvin', 'L', 'Chander', '0', '1954-08-25', 'M', 'NULL', 'M', 'melvin14@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4804 Haynes Court', 'NULL', '1 (11) 500 555-0120', '2012-10-01', '5-10 Miles'], ['24267', '27', 'AW00024267', 'NULL', 'Jésus', 'M', 'Hernandez', '0', '1961-04-08', 'M', 'NULL', 'M', 'jésus4@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7726 Driftwood Drive', 'NULL', '1 (11) 500 555-0176', '2013-06-24', '1-2 Miles'], ['24268', '5', 'AW00024268', 'NULL', 'Meredith', 'E', 'Gill', '0', '1961-10-20', 'M', 'NULL', 'F', 'meredith37@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '3', '6034 Virgil Street', 'NULL', '1 (11) 500 555-0125', '2013-05-27', '1-2 Miles'], ['24269', '34', 'AW00024269', 'NULL', 'Todd', 'D', 'Lu', '0', '1956-03-01', 'M', 'NULL', 'M', 'todd10@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '3', '4333 Contra Costa Blvd.', 'NULL', '1 (11) 500 555-0114', '2013-09-13', '1-2 Miles'], ['24270', '2', 'AW00024270', 'NULL', 'Latasha', 'NULL', 'Ortega', '0', '1955-11-12', 'M', 'NULL', 'F', 'latasha22@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '492 Pierce Court', 'NULL', '1 (11) 500 555-0161', '2012-10-11', '5-10 Miles'], ['24271', '21', 'AW00024271', 'NULL', 'Leonard', 'J', 'Shen', '0', '1955-10-19', 'M', 'NULL', 'M', 'leonard3@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5800 Abbey Court', 'NULL', '1 (11) 500 555-0137', '2012-10-14', '1-2 Miles'], ['24272', '15', 'AW00024272', 'NULL', 'Martha', 'D', 'Wang', '0', '1962-02-12', 'M', 'NULL', 'F', 'martha1@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5927 Seaview Avenue', 'NULL', '1 (11) 500 555-0158', '2012-10-10', '5-10 Miles'], ['24273', '18', 'AW00024273', 'NULL', 'Monique', 'R', 'Sanz', '0', '1962-03-07', 'M', 'NULL', 'F', 'monique16@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4002 Willow Pass Dr.', 'NULL', '1 (11) 500 555-0127', '2012-10-10', '5-10 Miles'], ['24274', '27', 'AW00024274', 'NULL', 'Shaun', 'NULL', 'Shan', '0', '1956-08-02', 'M', 'NULL', 'M', 'shaun11@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6417 Del Rey St', 'NULL', '1 (11) 500 555-0118', '2012-10-30', '1-2 Miles'], ['24275', '352', 'AW00024275', 'NULL', 'Lucas', 'L', 'Rivera', '0', '1986-01-14', 'M', 'NULL', 'M', 'lucas80@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4613 Benedict Court', 'NULL', '444-555-0113', '2013-02-26', '1-2 Miles'], ['24276', '18', 'AW00024276', 'NULL', 'Kaitlyn', 'J', 'Nelson', '0', '1958-01-06', 'S', 'NULL', 'F', 'kaitlyn7@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '3', '6896 Camino Norte', 'NULL', '1 (11) 500 555-0110', '2013-03-08', '5-10 Miles'], ['24277', '4', 'AW00024277', 'NULL', 'Donald', 'M', 'Kovár', '0', '1957-11-02', 'S', 'NULL', 'M', 'donald6@adventure-works.com', '20000.00', '3', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '4', '4925 Mariposa Ct.', 'NULL', '1 (11) 500 555-0145', '2013-02-23', '5-10 Miles'], ['24278', '22', 'AW00024278', 'NULL', 'Cedric', 'M', 'Xu', '0', '1969-08-01', 'M', 'NULL', 'M', 'cedric11@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7539 Santa Fe Court', 'NULL', '1 (11) 500 555-0134', '2013-06-01', '1-2 Miles'], ['24279', '26', 'AW00024279', 'NULL', 'Angel', 'NULL', 'Nelson', '0', '1959-05-16', 'S', 'NULL', 'M', 'angel32@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6343 St. Paul Way', 'NULL', '1 (11) 500 555-0132', '2014-01-12', '1-2 Miles'], ['24280', '15', 'AW00024280', 'NULL', 'Peter', 'NULL', 'Shan', '0', '1960-03-30', 'S', 'NULL', 'M', 'peter16@adventure-works.com', '40000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5949 Laurel Drive', 'NULL', '1 (11) 500 555-0116', '2013-07-17', '1-2 Miles'], ['24281', '9', 'AW00024281', 'NULL', 'Marie', 'NULL', 'Suri', '0', '1965-04-09', 'S', 'NULL', 'F', 'marie4@adventure-works.com', '40000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '663 Sunset Meadows Ln.', 'NULL', '1 (11) 500 555-0189', '2012-11-25', '5-10 Miles'], ['24282', '7', 'AW00024282', 'NULL', 'Damien', 'K', 'Raji', '0', '1961-01-20', 'M', 'NULL', 'M', 'damien36@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1820 Fox Way', 'NULL', '1 (11) 500 555-0115', '2012-11-23', '5-10 Miles'], ['24283', '27', 'AW00024283', 'NULL', 'Aimee', 'H', 'Zheng', '0', '1960-09-17', 'S', 'NULL', 'F', 'aimee14@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '994 Counting Drive', 'NULL', '1 (11) 500 555-0116', '2012-11-26', '1-2 Miles'], ['24284', '69', 'AW00024284', 'NULL', 'Melissa', 'R', 'Sanders', '0', '1980-12-08', 'S', 'NULL', 'F', 'melissa26@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8360 Frisbie Court', 'NULL', '156-555-0137', '2011-10-30', '1-2 Miles'], ['24285', '612', 'AW00024285', 'NULL', 'Jesse', 'NULL', 'Cox', '0', '1981-05-18', 'S', 'NULL', 'M', 'jesse10@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3076 Salvio St.', 'NULL', '709-555-0119', '2013-07-05', '5-10 Miles'], ['24286', '307', 'AW00024286', 'NULL', 'Kelvin', 'NULL', 'Goel', '0', '1980-11-23', 'S', 'NULL', 'M', 'kelvin16@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5699 Alpha Way', 'NULL', '216-555-0121', '2013-12-18', '1-2 Miles'], ['24287', '307', 'AW00024287', 'NULL', 'John', 'J', 'Martinez', '0', '1980-11-21', 'M', 'NULL', 'M', 'john36@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1071 Stanz Grace St.', 'NULL', '411-555-0143', '2013-12-15', '5-10 Miles'], ['24288', '311', 'AW00024288', 'NULL', 'Pedro', 'NULL', 'Gomez', '0', '1980-07-04', 'M', 'NULL', 'M', 'pedro21@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6474 Helen Ave.', 'NULL', '199-555-0114', '2013-10-06', '5-10 Miles'], ['24289', '326', 'AW00024289', 'NULL', 'Robert', 'NULL', 'Gonzalez', '0', '1981-06-14', 'S', 'NULL', 'M', 'robert51@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1899 Mayhew Way', 'NULL', '962-555-0138', '2013-04-04', '5-10 Miles'], ['24290', '609', 'AW00024290', 'NULL', 'Zoe', 'L', 'Bell', '0', '1980-04-15', 'M', 'NULL', 'F', 'zoe12@adventure-works.com', '50000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1551 Logan Ct', 'NULL', '108-555-0180', '2013-07-23', '5-10 Miles'], ['24291', '609', 'AW00024291', 'NULL', 'Eduardo', 'D', 'Garcia', '0', '1979-09-08', 'S', 'NULL', 'M', 'eduardo15@adventure-works.com', '50000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3001 Mt. Etna', 'NULL', '929-555-0115', '2013-12-09', '1-2 Miles'], ['24292', '325', 'AW00024292', 'NULL', 'Mackenzie', 'NULL', 'Brooks', '0', '1979-09-03', 'M', 'NULL', 'F', 'mackenzie0@adventure-works.com', '50000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '892 Southbrook Drive', 'NULL', '960-555-0155', '2013-02-13', '5-10 Miles'], ['24293', '336', 'AW00024293', 'NULL', 'Anna', 'NULL', 'Rivera', '0', '1980-04-17', 'M', 'NULL', 'F', 'anna12@adventure-works.com', '50000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8890 Viera Avenue', 'NULL', '713-555-0187', '2013-01-28', '5-10 Miles'], ['24294', '547', 'AW00024294', 'NULL', 'Luis', 'NULL', 'Yang', '0', '1979-08-29', 'S', 'NULL', 'M', 'luis27@adventure-works.com', '50000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4594 Springer Court', 'NULL', '124-555-0182', '2013-09-12', '5-10 Miles'], ['24295', '352', 'AW00024295', 'NULL', 'Natalie', 'NULL', 'Barnes', '0', '1978-09-23', 'S', 'NULL', 'F', 'natalie25@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7650 Northridge Drive', 'NULL', '623-555-0149', '2013-12-09', '1-2 Miles'], ['24296', '322', 'AW00024296', 'NULL', 'Amanda', 'A', 'Gonzalez', '0', '1984-02-03', 'S', 'NULL', 'F', 'amanda60@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '666 Street', 'NULL', '896-555-0114', '2013-12-01', '5-10 Miles'], ['24297', '329', 'AW00024297', 'NULL', 'Victoria', 'C', 'Cox', '0', '1982-04-08', 'M', 'NULL', 'F', 'victoria37@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1654 Bonari Court', 'NULL', '772-555-0197', '2013-02-16', '5-10 Miles'], ['24298', '352', 'AW00024298', 'NULL', 'Robert', 'NULL', 'Yang', '0', '1982-04-06', 'M', 'NULL', 'M', 'robert39@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6589 Viewpoint Ct', 'NULL', '132-555-0155', '2013-03-12', '5-10 Miles'], ['24299', '315', 'AW00024299', 'NULL', 'Andrea', 'K', 'Gray', '0', '1981-12-01', 'S', 'NULL', 'F', 'andrea6@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2394 Pepper Way', 'NULL', '310-555-0113', '2013-03-14', '5-10 Miles'], ['24300', '35', 'AW00024300', 'NULL', 'Naomi', 'E', 'Gomez', '0', '1978-01-02', 'S', 'NULL', 'F', 'naomi1@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1519 Mark Twain Dr.', 'NULL', '1 (11) 500 555-0176', '2012-11-20', '5-10 Miles'], ['24301', '31', 'AW00024301', 'NULL', 'Tasha', 'L', 'Rai', '0', '1963-02-22', 'S', 'NULL', 'F', 'tasha18@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7738 Thunderbird Dr.', 'NULL', '1 (11) 500 555-0167', '2012-10-30', '5-10 Miles'], ['24302', '18', 'AW00024302', 'NULL', 'Cesar', 'J', 'Kapoor', '0', '1962-07-28', 'M', 'NULL', 'M', 'cesar1@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6387 Scenic Avenue', 'NULL', '1 (11) 500 555-0118', '2012-11-03', '5-10 Miles'], ['24303', '19', 'AW00024303', 'NULL', 'Megan', 'A', 'Diaz', '0', '1963-06-01', 'S', 'NULL', 'F', 'megan69@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8791 La Cadena', 'NULL', '1 (11) 500 555-0135', '2012-11-26', '1-2 Miles'], ['24304', '9', 'AW00024304', 'NULL', 'Beth', 'NULL', 'Serrano', '0', '1963-11-22', 'S', 'NULL', 'F', 'beth19@adventure-works.com', '100000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '2, route de Marseille', 'NULL', '1 (11) 500 555-0148', '2012-11-24', '0-1 Miles'], ['24305', '30', 'AW00024305', 'NULL', 'Warren', 'L', 'Chow', '0', '1965-04-26', 'S', 'NULL', 'M', 'warren19@adventure-works.com', '100000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '3595 May Way', 'NULL', '1 (11) 500 555-0194', '2012-11-21', '0-1 Miles'], ['24306', '16', 'AW00024306', 'NULL', 'Molly', 'W', 'Chandra', '0', '1970-04-04', 'M', 'NULL', 'F', 'molly3@adventure-works.com', '100000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '250 Geary Ct.', 'NULL', '1 (11) 500 555-0119', '2014-01-26', '2-5 Miles'], ['24307', '9', 'AW00024307', 'NULL', 'Tina', 'NULL', 'Sara', '0', '1964-08-15', 'S', 'NULL', 'F', 'tina12@adventure-works.com', '100000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '7977 Marina Road', 'NULL', '1 (11) 500 555-0127', '2012-11-26', '0-1 Miles'], ['24308', '553', 'AW00024308', 'NULL', 'Destiny', 'NULL', 'Sanders', '0', '1978-07-25', 'S', 'NULL', 'F', 'destiny47@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '2266 Bonifacio Street', 'NULL', '171-555-0117', '2013-12-26', '2-5 Miles'], ['24309', '65', 'AW00024309', 'NULL', 'Ethan', 'NULL', 'Williams', '0', '1980-02-15', 'M', 'NULL', 'M', 'ethan32@adventure-works.com', '50000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '4944 Abbey Court', 'NULL', '406-555-0156', '2011-11-20', '1-2 Miles'], ['24310', '64', 'AW00024310', 'NULL', 'Gabrielle', 'D', 'Peterson', '0', '1979-08-05', 'S', 'NULL', 'F', 'gabrielle14@adventure-works.com', '50000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '1955 Glaze Dr.', 'NULL', '117-555-0139', '2011-11-02', '1-2 Miles'], ['24311', '612', 'AW00024311', 'NULL', 'Geoffrey', 'M', 'Patel', '0', '1979-10-19', 'S', 'NULL', 'M', 'geoffrey3@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '6946 Candywood Ct.', 'NULL', '402-555-0162', '2013-12-15', '1-2 Miles'], ['24312', '616', 'AW00024312', 'NULL', 'Austin', 'T', 'Martin', '0', '1979-11-18', 'S', 'NULL', 'M', 'austin30@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5421 Morengo Ct.', 'NULL', '864-555-0155', '2013-07-26', '5-10 Miles'], ['24313', '542', 'AW00024313', 'NULL', 'Taylor', 'L', 'Brooks', '0', '1985-03-14', 'M', 'NULL', 'F', 'taylor22@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5802 Ampersand Drive', 'NULL', '611-555-0119', '2013-05-18', '5-10 Miles'], ['24314', '314', 'AW00024314', 'NULL', 'Bryan', 'NULL', 'Howard', '0', '1971-09-25', 'M', 'NULL', 'M', 'bryan12@adventure-works.com', '120000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '6592 Sun Hill Lane', 'NULL', '276-555-0188', '2013-03-17', '2-5 Miles'], ['24315', '316', 'AW00024315', 'NULL', 'Edward', 'J', 'Scott', '0', '1972-03-05', 'M', 'NULL', 'M', 'edward6@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '991 Vista Verde', 'NULL', '568-555-0121', '2013-05-16', '0-1 Miles'], ['24316', '326', 'AW00024316', 'NULL', 'Rachel', 'J', 'Diaz', '0', '1971-09-25', 'S', 'NULL', 'F', 'rachel70@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '206 Kirkwood Ct.', 'NULL', '402-555-0119', '2013-11-01', '1-2 Miles'], ['24317', '345', 'AW00024317', 'NULL', 'Devin', 'NULL', 'Thomas', '0', '1971-10-09', 'S', 'NULL', 'M', 'devin9@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '4', '8521 Knewal Rd', 'NULL', '671-555-0138', '2013-02-20', '0-1 Miles'], ['24318', '359', 'AW00024318', 'NULL', 'Luis', 'F', 'Long', '0', '1977-07-18', 'M', 'NULL', 'M', 'luis8@adventure-works.com', '130000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '132 North Park Court', 'NULL', '172-555-0113', '2013-04-25', '0-1 Miles'], ['24319', '626', 'AW00024319', 'NULL', 'Benjamin', 'NULL', 'Clark', '0', '1962-10-09', 'M', 'NULL', 'M', 'benjamin56@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5556 Poppy Place', 'NULL', '676-555-0162', '2013-11-12', '5-10 Miles'], ['24320', '536', 'AW00024320', 'NULL', 'Joshua', 'J', 'White', '0', '1963-02-10', 'S', 'NULL', 'M', 'joshua14@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6872 Thornwood Dr.', 'NULL', '259-555-0196', '2013-08-10', '5-10 Miles'], ['24321', '635', 'AW00024321', 'NULL', 'Gabriel', 'NULL', 'Scott', '0', '1980-08-05', 'S', 'NULL', 'M', 'gabriel43@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '8859 Reliz Valley Road', 'NULL', '464-555-0121', '2013-12-06', '0-1 Miles'], ['24322', '62', 'AW00024322', 'NULL', 'Alexandra', 'NULL', 'Evans', '0', '1969-08-21', 'M', 'NULL', 'F', 'alexandra44@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6114 North Park Court', '# 12', '889-555-0184', '2013-09-02', '0-1 Miles'], ['24323', '336', 'AW00024323', 'NULL', 'Janet', 'E', 'Wright', '0', '1975-07-25', 'S', 'NULL', 'F', 'janet35@adventure-works.com', '60000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '8227 Myrtle Drive', 'NULL', '518-555-0138', '2013-12-05', '5-10 Miles'], ['24324', '315', 'AW00024324', 'NULL', 'Jennifer', 'B', 'Reed', '0', '1975-10-24', 'S', 'NULL', 'F', 'jennifer56@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7227 Serafina', 'NULL', '453-555-0118', '2013-12-20', '2-5 Miles'], ['24325', '383', 'AW00024325', 'NULL', 'Jason', 'M', 'Perry', '0', '1975-12-12', 'M', 'NULL', 'M', 'jason5@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1939 Meadow Glen Way', 'NULL', '959-555-0116', '2013-12-08', '0-1 Miles'], ['24326', '553', 'AW00024326', 'NULL', 'Adam', 'NULL', 'Bryant', '0', '1975-10-13', 'M', 'NULL', 'M', 'adam15@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7362 Arguello Blvd.', 'NULL', '602-555-0178', '2013-12-17', '2-5 Miles'], ['24327', '648', 'AW00024327', 'NULL', 'Evan', 'NULL', 'Rogers', '0', '1970-04-07', 'M', 'NULL', 'M', 'evan20@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5453 James Donlon Blvd.', 'NULL', '465-555-0119', '2013-12-25', '2-5 Miles'], ['24328', '343', 'AW00024328', 'NULL', 'Melissa', 'L', 'Simmons', '0', '1975-05-04', 'S', 'NULL', 'F', 'melissa10@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1955 Sequoia Drive', 'NULL', '341-555-0151', '2013-12-17', '0-1 Miles'], ['24329', '547', 'AW00024329', 'NULL', 'Abigail', 'D', 'Cooper', '0', '1968-08-08', 'S', 'NULL', 'F', 'abigail13@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '41 Third Ave East', 'NULL', '150-555-0114', '2013-12-20', '2-5 Miles'], ['24330', '307', 'AW00024330', 'NULL', 'Jessica', 'S', 'Bennett', '0', '1974-09-22', 'S', 'NULL', 'F', 'jessica25@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '6271 Crow Street', 'NULL', '195-555-0184', '2013-12-04', '0-1 Miles'], ['24331', '329', 'AW00024331', 'NULL', 'Carson', 'NULL', 'Powell', '0', '1979-08-06', 'S', 'NULL', 'M', 'carson7@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '2914 St. George Dr.', 'NULL', '298-555-0123', '2013-12-01', '2-5 Miles'], ['24332', '53', 'AW00024332', 'NULL', 'Abigail', 'NULL', 'Thompson', '0', '1968-11-30', 'M', 'NULL', 'F', 'abigail56@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6738 Court Street', 'NULL', '792-555-0194', '2011-11-13', '2-5 Miles'], ['24333', '612', 'AW00024333', 'NULL', 'Ann', 'D', 'Prasad', '0', '1968-05-25', 'S', 'NULL', 'F', 'ann14@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6288 Relief Valley Ct.', 'NULL', '359-555-0138', '2013-12-02', '2-5 Miles'], ['24334', '347', 'AW00024334', 'NULL', 'Alexa', 'NULL', 'James', '0', '1968-03-05', 'M', 'NULL', 'F', 'alexa6@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7208 Peach Place', 'NULL', '897-555-0196', '2013-12-12', '2-5 Miles'], ['24335', '626', 'AW00024335', 'NULL', 'Richard', 'NULL', 'Wright', '0', '1973-10-23', 'S', 'NULL', 'M', 'richard22@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2844 Barcelona', 'NULL', '397-555-0164', '2013-12-04', '2-5 Miles'], ['24336', '545', 'AW00024336', 'NULL', 'Gabrielle', 'NULL', 'Wright', '0', '1967-09-06', 'S', 'NULL', 'F', 'gabrielle62@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7530 St. Francis St.', 'NULL', '521-555-0188', '2013-12-18', '2-5 Miles'], ['24337', '614', 'AW00024337', 'NULL', 'Noah', 'NULL', 'Alexander', '0', '1973-10-06', 'M', 'NULL', 'M', 'noah16@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '75 Ashford Court', 'NULL', '370-555-0172', '2013-12-16', '2-5 Miles'], ['24338', '301', 'AW00024338', 'NULL', 'Shannon', 'D', 'Zeng', '0', '1967-03-05', 'S', 'NULL', 'F', 'shannon21@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '21, rue des Rosiers', 'NULL', '116-555-0158', '2013-12-23', '10+ Miles'], ['24339', '345', 'AW00024339', 'NULL', 'Jennifer', 'J', 'Price', '0', '1967-04-09', 'S', 'NULL', 'F', 'jennifer75@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '1147 Mellowood Street', 'NULL', '944-555-0169', '2012-12-28', '2-5 Miles'], ['24340', '352', 'AW00024340', 'NULL', 'Chloe', 'K', 'Clark', '0', '1972-12-01', 'S', 'NULL', 'F', 'chloe29@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '4', '6819 Meadow Lane', 'NULL', '631-555-0127', '2013-02-24', '0-1 Miles'], ['24341', '312', 'AW00024341', 'NULL', 'Wyatt', 'M', 'Jones', '0', '1967-06-09', 'M', 'NULL', 'M', 'wyatt3@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6578 Woodhaven Ln.', 'NULL', '663-555-0190', '2013-02-24', '2-5 Miles'], ['24342', '66', 'AW00024342', 'NULL', 'Evan', 'W', 'Campbell', '0', '1966-10-22', 'M', 'NULL', 'M', 'evan31@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9585 Macarthur Ave.', 'NULL', '645-555-0133', '2011-11-06', '2-5 Miles'], ['24343', '322', 'AW00024343', 'NULL', 'Tyler', 'L', 'Harris', '0', '1976-09-01', 'M', 'NULL', 'M', 'tyler2@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8920 Corte Poquito', 'NULL', '656-555-0111', '2013-03-08', '0-1 Miles'], ['24344', '49', 'AW00024344', 'NULL', 'Wayne', 'S', 'Chander', '0', '1978-06-12', 'S', 'NULL', 'M', 'wayne18@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '8989 Adelia Court', 'NULL', '951-555-0110', '2011-11-13', '2-5 Miles'], ['24345', '552', 'AW00024345', 'NULL', 'Riley', 'S', 'Cox', '0', '1978-06-18', 'S', 'NULL', 'F', 'riley30@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '9002 Kathleen Drive', 'NULL', '842-555-0194', '2013-03-14', '0-1 Miles'], ['24346', '302', 'AW00024346', 'NULL', 'Giorgio', 'NULL', 'Veronesi', '0', '1973-03-04', 'M', 'NULL', 'F', 'giorgio0@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '9897 Bayview Cir', 'NULL', '313-555-0148', '2013-04-23', '0-1 Miles'], ['24347', '311', 'AW00024347', 'NULL', 'Tina', 'M', 'Madan', '0', '1978-12-15', 'S', 'NULL', 'F', 'tina9@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '7297 Rosalinda', 'NULL', '126-555-0115', '2013-04-06', '2-5 Miles'], ['24348', '311', 'AW00024348', 'NULL', 'Ruben', 'K', 'Gomez', '0', '1973-03-16', 'S', 'NULL', 'M', 'ruben24@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '2033 Woodbury Place', 'NULL', '930-555-0177', '2013-04-14', '0-1 Miles'], ['24349', '359', 'AW00024349', 'NULL', 'Jill', 'NULL', 'Patterson', '0', '1972-12-31', 'S', 'NULL', 'F', 'jill33@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '639 Bermad Drive', 'NULL', '492-555-0159', '2013-04-03', '2-5 Miles'], ['24350', '322', 'AW00024350', 'NULL', 'Eduardo', 'NULL', 'Simmons', '0', '1932-12-11', 'S', 'NULL', 'M', 'eduardo59@adventure-works.com', '40000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '1', '3987 Spring Water St.', 'NULL', '250-555-0134', '2013-05-03', '2-5 Miles'], ['24351', '314', 'AW00024351', 'NULL', 'Brandon', 'NULL', 'Yang', '0', '1971-02-01', 'M', 'NULL', 'M', 'brandon24@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4697 Mt. Dell', 'NULL', '780-555-0195', '2013-04-06', '0-1 Miles'], ['24352', '626', 'AW00024352', 'NULL', 'Natalie', 'NULL', 'Cox', '0', '1965-11-30', 'M', 'NULL', 'F', 'natalie13@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2518 Cashew Street', 'NULL', '171-555-0176', '2013-05-19', '2-5 Miles'], ['24353', '358', 'AW00024353', 'NULL', 'Andrea', 'NULL', 'Ramirez', '0', '1971-05-02', 'M', 'NULL', 'F', 'andrea7@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5054 Quiz Street', 'NULL', '368-555-0147', '2013-05-05', '2-5 Miles'], ['24354', '368', 'AW00024354', 'NULL', 'Bailey', 'NULL', 'Cook', '0', '1964-12-16', 'M', 'NULL', 'F', 'bailey19@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6983 Niagara Court', 'NULL', '160-555-0122', '2013-04-30', '2-5 Miles'], ['24355', '302', 'AW00024355', 'NULL', 'Jennifer', 'F', 'Johnson', '0', '1970-06-13', 'M', 'NULL', 'F', 'jennifer29@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9678 Redlands Way', 'NULL', '292-555-0191', '2013-05-15', '2-5 Miles'], ['24356', '301', 'AW00024356', 'NULL', 'Wesley', 'J', 'Zhang', '0', '1965-02-05', 'S', 'NULL', 'M', 'wesley0@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2710 Roux Court', 'NULL', '192-555-0129', '2013-12-22', '0-1 Miles'], ['24357', '300', 'AW00024357', 'NULL', 'Eric', 'N', 'Baker', '0', '1974-09-08', 'M', 'NULL', 'M', 'eric50@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6305 Waterview Place', 'NULL', '123-555-0149', '2013-05-13', '2-5 Miles'], ['24358', '361', 'AW00024358', 'NULL', 'Kevin', 'D', 'Green', '0', '1963-08-08', 'M', 'NULL', 'M', 'kevin52@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9475 Bellwood Dr.', 'NULL', '147-555-0128', '2013-05-24', '2-5 Miles'], ['24359', '383', 'AW00024359', 'NULL', 'Zachary', 'NULL', 'Shan', '0', '1969-08-01', 'S', 'NULL', 'M', 'zachary0@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7305 Humphrey Drive', 'NULL', '680-555-0111', '2013-05-05', '2-5 Miles'], ['24360', '14', 'AW00024360', 'NULL', 'Carolyn', 'C', 'Diaz', '0', '1974-01-19', 'S', 'NULL', 'F', 'carolyn25@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3014 Roanwood Way', 'NULL', '1 (11) 500 555-0125', '2012-11-04', '0-1 Miles'], ['24361', '20', 'AW00024361', 'NULL', 'Francisco', 'NULL', 'Rodriguez', '0', '1974-05-17', 'M', 'NULL', 'M', 'francisco21@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '8812 Geneva Lane', 'NULL', '1 (11) 500 555-0168', '2012-11-13', '0-1 Miles'], ['24362', '36', 'AW00024362', 'NULL', 'Marc', 'H', 'Vazquez', '0', '1974-06-05', 'S', 'NULL', 'M', 'marc18@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '8321 Marina Lakes Dr.', 'NULL', '1 (11) 500 555-0112', '2012-11-11', '0-1 Miles'], ['24363', '4', 'AW00024363', 'NULL', 'Amanda', 'NULL', 'Coleman', '0', '1975-07-26', 'M', 'NULL', 'F', 'amanda27@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '9752 Monterrey', 'NULL', '1 (11) 500 555-0178', '2014-01-22', '0-1 Miles'], ['24364', '28', 'AW00024364', 'NULL', 'Henry', 'M', 'Prasad', '0', '1975-12-13', 'M', 'NULL', 'M', 'henry10@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '8682 Etcheverry Dr', 'NULL', '1 (11) 500 555-0116', '2012-11-08', '0-1 Miles'], ['24365', '26', 'AW00024365', 'NULL', 'Mallory', 'NULL', 'Navarro', '0', '1973-10-25', 'S', 'NULL', 'F', 'mallory17@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '112, rue Marbeuf', 'NULL', '1 (11) 500 555-0122', '2012-11-14', '2-5 Miles'], ['24366', '11', 'AW00024366', 'NULL', 'Melvin', 'NULL', 'Luo', '0', '1985-08-13', 'S', 'NULL', 'M', 'melvin6@adventure-works.com', '120000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '2756 Sinclair Avenue', 'NULL', '1 (11) 500 555-0168', '2012-11-24', '2-5 Miles'], ['24367', '37', 'AW00024367', 'NULL', 'Ross', 'NULL', 'Sara', '0', '1980-02-07', 'S', 'NULL', 'M', 'ross10@adventure-works.com', '120000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '3919 Bayview Circle', 'NULL', '1 (11) 500 555-0175', '2012-11-25', '0-1 Miles'], ['24368', '37', 'AW00024368', 'NULL', 'Ebony', 'NULL', 'Prasad', '0', '1974-10-06', 'S', 'NULL', 'F', 'ebony9@adventure-works.com', '120000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '7801 Midway Ct.', 'NULL', '1 (11) 500 555-0157', '2012-11-03', '0-1 Miles'], ['24369', '5', 'AW00024369', 'NULL', 'Chelsea', 'NULL', 'Lopez', '0', '1972-12-22', 'M', 'NULL', 'F', 'chelsea18@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '9888 Steele Drive', 'NULL', '1 (11) 500 555-0168', '2013-10-28', '0-1 Miles'], ['24370', '33', 'AW00024370', 'NULL', 'Nathan', 'NULL', 'West', '0', '1972-12-22', 'M', 'NULL', 'M', 'nathan9@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '9888 Steele Drive', 'NULL', '1 (11) 500 555-0172', '2013-08-22', '0-1 Miles'], ['24371', '37', 'AW00024371', 'NULL', 'Leslie', 'E', 'Navarro', '0', '1971-09-18', 'M', 'NULL', 'F', 'leslie11@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '3450 Breck Court', 'NULL', '1 (11) 500 555-0117', '2012-11-05', '2-5 Miles'], ['24372', '32', 'AW00024372', 'NULL', 'Teresa', 'L', 'Jimenez', '0', '1971-03-21', 'S', 'NULL', 'F', 'teresa6@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4810 Hidden Oak Ct.', 'NULL', '1 (11) 500 555-0199', '2012-11-20', '2-5 Miles'], ['24373', '35', 'AW00024373', 'NULL', 'Steven', 'NULL', 'Reed', '0', '1971-02-09', 'M', 'NULL', 'M', 'steven30@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5844 Linden Land', 'NULL', '1 (11) 500 555-0191', '2013-07-30', '2-5 Miles'], ['24374', '15', 'AW00024374', 'NULL', 'Eugene', 'A', 'Ma', '0', '1971-04-12', 'S', 'NULL', 'M', 'eugene20@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1500 Polk Street', 'NULL', '1 (11) 500 555-0175', '2014-01-27', '0-1 Miles'], ['24375', '11', 'AW00024375', 'NULL', 'Pamela', 'I', 'Schmidt', '0', '1976-09-29', 'M', 'NULL', 'F', 'pamela13@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6866 Winterberry Ct.', 'NULL', '1 (11) 500 555-0111', '2013-04-08', '5-10 Miles'], ['24376', '20', 'AW00024376', 'NULL', 'Tommy', 'NULL', 'Black', '0', '1985-01-06', 'M', 'NULL', 'M', 'tommy17@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '2962 Ana Mile', 'NULL', '1 (11) 500 555-0137', '2013-12-07', '10+ Miles'], ['24377', '35', 'AW00024377', 'NULL', 'Richard', 'W', 'Wood', '0', '1979-09-21', 'S', 'NULL', 'M', 'richard58@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6509 Cedar St.', 'NULL', '1 (11) 500 555-0127', '2012-11-16', '0-1 Miles'], ['24378', '13', 'AW00024378', 'NULL', 'Brandi', 'NULL', 'Jiménez', '0', '1973-12-02', 'S', 'NULL', 'F', 'brandi6@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6377 East Avenue', 'NULL', '1 (11) 500 555-0172', '2012-11-27', '0-1 Miles'], ['24379', '20', 'AW00024379', 'NULL', 'Noah', 'A', 'Jenkins', '0', '1970-12-21', 'S', 'NULL', 'M', 'noah3@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9021 Terrace Drive', 'NULL', '1 (11) 500 555-0177', '2013-04-24', '5-10 Miles'], ['24380', '39', 'AW00024380', 'NULL', 'Maurice', 'NULL', 'Yuan', '0', '1971-04-12', 'M', 'NULL', 'M', 'maurice7@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3345 Macaroon Drive', 'NULL', '1 (11) 500 555-0110', '2013-08-07', '0-1 Miles'], ['24381', '15', 'AW00024381', 'NULL', 'Danny', 'NULL', 'Serrano', '0', '1976-05-10', 'S', 'NULL', 'M', 'danny17@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9353 N Lucile Lane', 'NULL', '1 (11) 500 555-0110', '2012-11-18', '5-10 Miles'], ['24382', '33', 'AW00024382', 'NULL', 'Patrick', 'W', 'Sanchez', '0', '1975-02-16', 'M', 'NULL', 'M', 'patrick22@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '6795 Moccasin Ct.', 'NULL', '1 (11) 500 555-0133', '2013-07-26', '0-1 Miles'], ['24383', '205', 'AW00024383', 'NULL', 'Ronald', 'NULL', 'Prasad', '0', '1979-12-23', 'M', 'NULL', 'M', 'ronald11@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '12, avenue Foch', 'NULL', '1 (11) 500 555-0162', '2013-08-14', '0-1 Miles'], ['24384', '189', 'AW00024384', 'NULL', 'Kenneth', 'G', 'Pal', '0', '1980-02-20', 'M', 'NULL', 'M', 'kenneth10@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '4, rue Georges-Clémenceau', 'NULL', '1 (11) 500 555-0180', '2013-09-27', '0-1 Miles'], ['24385', '311', 'AW00024385', 'NULL', 'Summer', 'NULL', 'Perez', '0', '1963-04-21', 'M', 'NULL', 'F', 'summer19@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '1940 Detroit Ave.', 'NULL', '648-555-0134', '2013-12-22', '5-10 Miles'], ['24386', '71', 'AW00024386', 'NULL', 'Isabella', 'NULL', 'Walker', '0', '1968-05-08', 'S', 'NULL', 'F', 'isabella79@adventure-works.com', '80000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '0', '7128 Seaview Avenue', 'NULL', '154-555-0142', '2011-12-17', '0-1 Miles'], ['24387', '298', 'AW00024387', 'NULL', 'Elijah', 'A', 'Mitchell', '0', '1963-03-26', 'M', 'NULL', 'M', 'elijah39@adventure-works.com', '80000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '0', '2878 Spring Water St.', 'NULL', '902-555-0192', '2013-12-25', '0-1 Miles'], ['24388', '626', 'AW00024388', 'NULL', 'Maria', 'NULL', 'Campbell', '0', '1963-05-22', 'M', 'NULL', 'F', 'maria50@adventure-works.com', '80000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '0', '785 Eastgate', 'NULL', '133-555-0134', '2013-12-07', '0-1 Miles'], ['24389', '548', 'AW00024389', 'NULL', 'Xavier', 'NULL', 'Carter', '0', '1961-10-31', 'S', 'NULL', 'M', 'xavier33@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3429 Fourth Street', 'NULL', '907-555-0125', '2013-02-14', '5-10 Miles'], ['24390', '609', 'AW00024390', 'NULL', 'Carolyn', 'NULL', 'Prasad', '0', '1962-02-20', 'M', 'NULL', 'F', 'carolyn9@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '77 Birchwood', 'NULL', '976-555-0118', '2013-06-21', '5-10 Miles'], ['24391', '372', 'AW00024391', 'NULL', 'Marissa', 'S', 'Washington', '0', '1961-09-24', 'M', 'NULL', 'F', 'marissa10@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2121 Sahara Drive', 'NULL', '131-555-0196', '2013-05-30', '5-10 Miles'], ['24392', '49', 'AW00024392', 'NULL', 'Molly', 'NULL', 'Prasad', '0', '1962-04-23', 'S', 'NULL', 'F', 'molly9@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '1588 Prestwick Drive', 'NULL', '169-555-0169', '2011-12-17', '1-2 Miles'], ['24393', '616', 'AW00024393', 'NULL', 'Joseph', 'L', 'Johnson', '0', '1937-12-16', 'S', 'NULL', 'M', 'joseph7@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8310 Ridge Circle', 'NULL', '110-555-0134', '2013-02-07', '5-10 Miles'], ['24394', '303', 'AW00024394', 'NULL', 'Drew', 'NULL', 'Raji', '0', '1976-01-24', 'M', 'NULL', 'M', 'drew22@adventure-works.com', '110000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '2079 MountainAire Pkwy.', 'NULL', '547-555-0132', '2013-07-01', '2-5 Miles'], ['24395', '311', 'AW00024395', 'NULL', 'Alison', 'NULL', 'Raji', '0', '1970-11-08', 'M', 'NULL', 'F', 'alison22@adventure-works.com', '110000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '9155 Wee Donegal', 'NULL', '767-555-0184', '2013-03-31', '2-5 Miles'], ['24396', '311', 'AW00024396', 'NULL', 'Robyn', 'J', 'Navarro', '0', '1970-12-02', 'M', 'NULL', 'F', 'robyn8@adventure-works.com', '120000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '3007 Hooftrail Way', 'NULL', '627-555-0191', '2013-04-26', '2-5 Miles'], ['24397', '312', 'AW00024397', 'NULL', 'Henry', 'S', 'Raman', '0', '1971-06-19', 'S', 'NULL', 'M', 'henry13@adventure-works.com', '120000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '4666 Yellowood Lane', 'NULL', '149-555-0160', '2013-03-02', '1-2 Miles'], ['24398', '345', 'AW00024398', 'NULL', 'Brandon', 'NULL', 'Davis', '0', '1970-12-01', 'M', 'NULL', 'M', 'brandon43@adventure-works.com', '130000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '8839 Seaview Dr.', 'NULL', '192-555-0164', '2013-04-18', '0-1 Miles'], ['24399', '54', 'AW00024399', 'NULL', 'Katherine', 'S', 'Sanchez', '0', '1969-07-18', 'M', 'NULL', 'F', 'katherine3@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '5639 Lee Lane', 'NULL', '713-555-0114', '2013-03-28', '2-5 Miles'], ['24400', '642', 'AW00024400', 'NULL', 'Kaitlyn', 'M', 'Parker', '0', '1969-12-07', 'M', 'NULL', 'F', 'kaitlyn6@adventure-works.com', '100000.00', '5', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '7267 Loftus Road', 'NULL', '271-555-0125', '2013-12-15', '0-1 Miles'], ['24401', '298', 'AW00024401', 'NULL', 'Douglas', 'NULL', 'Rana', '0', '1969-07-17', 'S', 'NULL', 'M', 'douglas15@adventure-works.com', '110000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '428 Silverado Dr.', 'NULL', '338-555-0118', '2013-07-30', '1-2 Miles'], ['24402', '385', 'AW00024402', 'NULL', 'Devin', 'NULL', 'Alexander', '0', '1970-01-03', 'S', 'NULL', 'M', 'devin56@adventure-works.com', '170000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '9443 Lacanda Ct.', 'NULL', '154-555-0181', '2013-12-18', '1-2 Miles'], ['24403', '347', 'AW00024403', 'NULL', 'Gabriel', 'NULL', 'Wright', '0', '1967-10-12', 'M', 'NULL', 'M', 'gabriel48@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '4288 Hacienda', 'NULL', '706-555-0185', '2013-01-06', '0-1 Miles'], ['24404', '302', 'AW00024404', 'NULL', 'Bryant', 'G', 'Chapman', '0', '1939-12-25', 'M', 'NULL', 'M', 'bryant2@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7710 Pine St', 'NULL', '816-555-0121', '2013-01-22', '0-1 Miles'], ['24405', '302', 'AW00024405', 'NULL', 'Tara', 'NULL', 'Rai', '0', '1939-10-17', 'M', 'NULL', 'F', 'tara18@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3788 Concord Place', 'NULL', '858-555-0177', '2013-01-22', '5-10 Miles'], ['24406', '307', 'AW00024406', 'NULL', 'Reginald', 'NULL', 'Vazquez', '0', '1979-09-04', 'M', 'NULL', 'M', 'reginald0@adventure-works.com', '110000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '24 Megan Dr.', 'NULL', '306-555-0130', '2013-12-20', '5-10 Miles'], ['24407', '314', 'AW00024407', 'NULL', 'Makayla', 'NULL', 'Peterson', '0', '1969-03-15', 'M', 'NULL', 'F', 'makayla5@adventure-works.com', '110000.00', '5', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '7013 Cimarron Drive', 'NULL', '206-555-0165', '2013-11-13', '5-10 Miles'], ['24408', '314', 'AW00024408', 'NULL', 'Jordan', 'L', 'Diaz', '0', '1969-01-06', 'M', 'NULL', 'M', 'jordan19@adventure-works.com', '110000.00', '5', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '7444 Cherokee Drive', 'NULL', '771-555-0133', '2013-11-27', '5-10 Miles'], ['24409', '329', 'AW00024409', 'NULL', 'Jackson', 'M', 'Hernandez', '0', '1969-03-21', 'S', 'NULL', 'M', 'jackson50@adventure-works.com', '120000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '1252 Deer Ridge Way', 'NULL', '495-555-0193', '2013-12-21', '1-2 Miles'], ['24410', '648', 'AW00024410', 'NULL', 'Sara', 'D', 'Sanders', '0', '1973-06-20', 'S', 'NULL', 'F', 'sara4@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '7888 Stanford Street', 'NULL', '945-555-0159', '2013-11-08', '1-2 Miles'], ['24411', '300', 'AW00024411', 'NULL', 'Johnathan', 'NULL', 'Sanchez', '0', '1968-05-22', 'M', 'NULL', 'M', 'johnathan19@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '490 Alan Dr.', 'NULL', '289-555-0184', '2013-03-22', '5-10 Miles'], ['24412', '312', 'AW00024412', 'NULL', 'Angelica', 'NULL', 'Patterson', '0', '1968-02-29', 'S', 'NULL', 'F', 'angelica10@adventure-works.com', '120000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '8544 Dewing Avenue', 'NULL', '845-555-0113', '2013-05-06', '1-2 Miles'], ['24413', '329', 'AW00024413', 'NULL', 'Nathan', 'A', 'Lewis', '0', '1973-02-17', 'M', 'NULL', 'M', 'nathan57@adventure-works.com', '120000.00', '1', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '596 Marfargoa Drive', 'NULL', '221-555-0175', '2013-01-12', '5-10 Miles'], ['24414', '335', 'AW00024414', 'NULL', 'Adam', 'NULL', 'Edwards', '0', '1967-11-24', 'S', 'NULL', 'M', 'adam31@adventure-works.com', '130000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '1091 Bloching Circle', 'NULL', '676-555-0134', '2013-01-20', '2-5 Miles'], ['24415', '54', 'AW00024415', 'NULL', 'Kaylee', 'A', 'Ward', '0', '1966-07-14', 'M', 'NULL', 'F', 'kaylee9@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '7390 Pinehurst Court', 'NULL', '627-555-0166', '2013-02-10', '2-5 Miles'], ['24416', '548', 'AW00024416', 'NULL', 'Oscar', 'A', 'Jenkins', '0', '1967-01-12', 'M', 'NULL', 'M', 'oscar15@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3553 Blenheim Way', 'NULL', '778-555-0161', '2013-08-29', '1-2 Miles'], ['24417', '359', 'AW00024417', 'NULL', 'Christopher', 'A', 'Harris', '0', '1967-01-17', 'S', 'NULL', 'M', 'christopher14@adventure-works.com', '130000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '1401 Via Alta', 'NULL', '267-555-0140', '2013-01-08', '2-5 Miles'], ['24418', '66', 'AW00024418', 'NULL', 'Brandon', 'V', 'Garcia', '0', '1960-12-17', 'S', 'NULL', 'M', 'brandon39@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '2731 Wiget Lane', 'NULL', '291-555-0169', '2011-12-17', '1-2 Miles'], ['24419', '299', 'AW00024419', 'NULL', 'Kaylee', 'L', 'Rivera', '0', '1966-01-24', 'M', 'NULL', 'F', 'kaylee13@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '2312 Wilson Court', 'NULL', '530-555-0180', '2013-04-27', '5-10 Miles'], ['24420', '633', 'AW00024420', 'NULL', 'Marcus', 'R', 'Price', '0', '1961-04-25', 'M', 'NULL', 'M', 'marcus49@adventure-works.com', '80000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '719 William Way', 'NULL', '561-555-0129', '2013-01-23', '5-10 Miles'], ['24421', '631', 'AW00024421', 'NULL', 'Seth', 'P', 'Kelly', '0', '1960-08-26', 'M', 'NULL', 'M', 'seth75@adventure-works.com', '90000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '1616 Kentucky Dr.', 'NULL', '152-555-0167', '2013-01-26', '10+ Miles'], ['24422', '311', 'AW00024422', 'NULL', 'Thomas', 'E', 'Lal', '0', '1941-02-28', 'M', 'NULL', 'M', 'thomas32@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7748 Rambling Rose Ave', 'NULL', '916-555-0172', '2013-04-21', '5-10 Miles'], ['24423', '338', 'AW00024423', 'NULL', 'Alyssa', 'E', 'Harris', '0', '1940-08-15', 'M', 'NULL', 'F', 'alyssa13@adventure-works.com', '130000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '2690 Frayne Ct.', 'NULL', '488-555-0138', '2013-03-28', '0-1 Miles'], ['24424', '383', 'AW00024424', 'NULL', 'Morgan', 'NULL', 'Russell', '0', '1952-07-02', 'M', 'NULL', 'F', 'morgan89@adventure-works.com', '130000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '1265 Gloria Terr.', 'NULL', '791-555-0198', '2013-03-21', '0-1 Miles'], ['24425', '611', 'AW00024425', 'NULL', 'Chloe', 'L', 'Ward', '0', '1971-02-10', 'S', 'NULL', 'F', 'chloe58@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '7176 Chatworth', 'NULL', '132-555-0183', '2013-01-04', '5-10 Miles'], ['24426', '300', 'AW00024426', 'NULL', 'Jordan', 'L', 'Russell', '0', '1966-05-23', 'M', 'NULL', 'M', 'jordan17@adventure-works.com', '110000.00', '5', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '6416 Teakwood Drive', 'NULL', '607-555-0149', '2013-10-21', '5-10 Miles'], ['24427', '309', 'AW00024427', 'NULL', 'Evelyn', 'R', 'Fernandez', '0', '1966-06-07', 'S', 'NULL', 'F', 'evelyn16@adventure-works.com', '110000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '7243 St. George Dr.', 'NULL', '507-555-0193', '2013-01-18', '2-5 Miles'], ['24428', '312', 'AW00024428', 'NULL', 'Hailey', 'NULL', 'Price', '0', '1966-01-19', 'M', 'NULL', 'F', 'hailey21@adventure-works.com', '110000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '9058 East 23rd Street', 'NULL', '128-555-0112', '2013-11-19', '2-5 Miles'], ['24429', '637', 'AW00024429', 'NULL', 'Isabelle', 'NULL', 'Hughes', '0', '1971-04-19', 'S', 'NULL', 'F', 'isabelle10@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2594 Breaker Dr', 'NULL', '374-555-0111', '2013-02-17', '1-2 Miles'], ['24430', '311', 'AW00024430', 'NULL', 'Dalton', 'NULL', 'Long', '0', '1959-07-22', 'S', 'NULL', 'M', 'dalton55@adventure-works.com', '70000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8847 Reisling Court', 'NULL', '362-555-0174', '2013-05-29', '1-2 Miles'], ['24431', '62', 'AW00024431', 'NULL', 'Abigail', 'C', 'Morgan', '0', '1959-12-11', 'M', 'NULL', 'F', 'abigail8@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1363 Mount Circle', 'NULL', '862-555-0137', '2011-12-10', '5-10 Miles'], ['24432', '358', 'AW00024432', 'NULL', 'Dalton', 'NULL', 'Reed', '0', '1959-12-11', 'M', 'NULL', 'M', 'dalton92@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6306 Manila Ave.', 'NULL', '788-555-0118', '2013-05-10', '5-10 Miles'], ['24433', '338', 'AW00024433', 'NULL', 'Luis', 'P', 'Simmons', '0', '1960-01-03', 'M', 'NULL', 'M', 'luis14@adventure-works.com', '70000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '1', '51 LaCrosse Ave', 'NULL', '652-555-0183', '2013-01-25', '1-2 Miles'], ['24434', '635', 'AW00024434', 'NULL', 'Jordan', 'L', 'Butler', '0', '1959-08-08', 'M', 'NULL', 'M', 'jordan11@adventure-works.com', '70000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '2317 Glen Road', 'NULL', '890-555-0163', '2013-01-08', '1-2 Miles'], ['24435', '536', 'AW00024435', 'NULL', 'Mariah', 'A', 'Hughes', '0', '1959-04-25', 'M', 'NULL', 'F', 'mariah16@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3153 Glaze Ct', 'NULL', '983-555-0129', '2013-04-18', '5-10 Miles'], ['24436', '326', 'AW00024436', 'NULL', 'Jennifer', 'NULL', 'Hernandez', '0', '1964-01-17', 'M', 'NULL', 'F', 'jennifer21@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6157 San Benito', 'NULL', '972-555-0197', '2013-02-25', '1-2 Miles'], ['24437', '345', 'AW00024437', 'NULL', 'Nicole', 'J', 'Blue', '0', '1969-12-31', 'S', 'NULL', 'F', 'nicole31@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '8882 Weatherly Way', 'NULL', '454-555-0153', '2013-02-21', '1-2 Miles'], ['24438', '626', 'AW00024438', 'NULL', 'Xavier', 'NULL', 'Robinson', '0', '1958-04-10', 'M', 'NULL', 'M', 'xavier16@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6594 Glen Wood Drive', 'NULL', '782-555-0117', '2014-01-16', '5-10 Miles'], ['24439', '616', 'AW00024439', 'NULL', 'Xavier', 'D', 'Watson', '0', '1962-02-08', 'M', 'NULL', 'M', 'xavier66@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1877 Minert Rd.', 'NULL', '486-555-0141', '2013-08-31', '5-10 Miles'], ['24440', '336', 'AW00024440', 'NULL', 'Jordyn', 'NULL', 'Hughes', '0', '1967-09-03', 'M', 'NULL', 'F', 'jordyn11@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9351 W Lake Drive', '# 18', '278-555-0174', '2013-04-24', '5-10 Miles'], ['24441', '648', 'AW00024441', 'NULL', 'Tristan', 'L', 'Bryant', '0', '1957-03-24', 'S', 'NULL', 'M', 'tristan18@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '5545 Goen Road', 'NULL', '269-555-0191', '2013-05-30', '1-2 Miles'], ['24442', '488', 'AW00024442', 'NULL', 'Briana', 'J', 'Gutierrez', '0', '1957-04-13', 'M', 'NULL', 'F', 'briana10@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9089 Bonari Court', 'NULL', '646-555-0142', '2013-08-25', '5-10 Miles'], ['24443', '307', 'AW00024443', 'NULL', 'Edgar', 'NULL', 'Suri', '0', '1957-02-23', 'M', 'NULL', 'M', 'edgar0@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2430 Santa Lucia', 'NULL', '370-555-0153', '2014-01-06', '5-10 Miles'], ['24444', '326', 'AW00024444', 'NULL', 'Elijah', 'P', 'Griffin', '0', '1973-07-18', 'S', 'NULL', 'M', 'elijah22@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '8214 South Lake Drive', 'NULL', '330-555-0193', '2013-06-06', '1-2 Miles'], ['24445', '383', 'AW00024445', 'NULL', 'Lauren', 'R', 'Brooks', '0', '1968-03-30', 'M', 'NULL', 'F', 'lauren44@adventure-works.com', '40000.00', '4', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '9435 Breck Court', 'NULL', '991-555-0161', '2013-05-30', '1-2 Miles'], ['24446', '299', 'AW00024446', 'NULL', 'Brianna', 'NULL', 'Robinson', '0', '1962-04-09', 'M', 'NULL', 'F', 'brianna17@adventure-works.com', '40000.00', '4', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '8994 Mt. Hamilton Dr.', 'NULL', '432-555-0196', '2013-06-16', '1-2 Miles'], ['24447', '298', 'AW00024447', 'NULL', 'Cody', 'NULL', 'Morgan', '0', '1954-12-08', 'M', 'NULL', 'M', 'cody13@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '9159 Shepberry Court', 'NULL', '158-555-0128', '2013-03-05', '5-10 Miles'], ['24448', '623', 'AW00024448', 'NULL', 'Amanda', 'J', 'Lopez', '0', '1960-04-04', 'M', 'NULL', 'F', 'amanda64@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8481 Zartop Street', 'NULL', '767-555-0150', '2013-10-05', '5-10 Miles'], ['24449', '347', 'AW00024449', 'NULL', 'Melanie', 'T', 'Simmons', '0', '1955-05-19', 'M', 'NULL', 'F', 'melanie2@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3020 Fairoaks Way', 'NULL', '406-555-0137', '2013-05-14', '5-10 Miles'], ['24450', '638', 'AW00024450', 'NULL', 'Isabel', 'NULL', 'Long', '0', '1954-12-10', 'M', 'NULL', 'F', 'isabel10@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5290 Pennsylvania Blvd', 'NULL', '281-555-0170', '2013-03-17', '5-10 Miles'], ['24451', '637', 'AW00024451', 'NULL', 'Bailey', 'NULL', 'Morgan', '0', '1955-01-20', 'M', 'NULL', 'F', 'bailey20@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '5831 Mountain View Place', 'NULL', '367-555-0120', '2013-04-13', '1-2 Miles'], ['24452', '609', 'AW00024452', 'NULL', 'Megan', 'C', 'Coleman', '0', '1954-08-13', 'M', 'NULL', 'F', 'megan56@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1362 Somerset Place', 'NULL', '436-555-0179', '2013-03-06', '5-10 Miles'], ['24453', '10', 'AW00024453', 'NULL', 'Cassie', 'J', 'Yuan', '0', '1975-03-22', 'S', 'NULL', 'F', 'cassie5@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '887 Concord Blvd.', 'NULL', '1 (11) 500 555-0119', '2013-10-19', '5-10 Miles'], ['24454', '22', 'AW00024454', 'NULL', 'Carol', 'L', 'Zhou', '0', '1970-01-15', 'S', 'NULL', 'F', 'carol27@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '8654 Lindell Dr.', 'NULL', '1 (11) 500 555-0141', '2013-06-11', '5-10 Miles'], ['24455', '33', 'AW00024455', 'NULL', 'Alejandro', 'M', 'Chander', '0', '1970-03-11', 'M', 'NULL', 'M', 'alejandro40@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '9780 Ridgeview Dr.', 'NULL', '1 (11) 500 555-0130', '2013-04-15', '10+ Miles'], ['24456', '13', 'AW00024456', 'NULL', 'Danny', 'NULL', 'Ruiz', '0', '1986-02-13', 'S', 'NULL', 'M', 'danny2@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '4661 Balboa Court', 'NULL', '1 (11) 500 555-0152', '2013-07-23', '5-10 Miles'], ['24457', '7', 'AW00024457', 'NULL', 'Meghan', 'A', 'Alonso', '0', '1974-02-22', 'S', 'NULL', 'F', 'meghan8@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '6290 Chinquapin Court', 'NULL', '1 (11) 500 555-0178', '2012-11-02', '5-10 Miles'], ['24458', '40', 'AW00024458', 'NULL', 'Frederick', 'S', 'Rodriguez', '0', '1974-06-17', 'S', 'NULL', 'M', 'frederick16@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7392 Diver Way', 'NULL', '1 (11) 500 555-0130', '2012-11-08', '5-10 Miles'], ['24459', '21', 'AW00024459', 'NULL', 'Kristin', 'C', 'Carson', '0', '1984-05-14', 'S', 'NULL', 'F', 'kristin15@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3269 Fourth St.', 'NULL', '1 (11) 500 555-0156', '2012-11-19', '0-1 Miles'], ['24460', '27', 'AW00024460', 'NULL', 'Willie', 'NULL', 'Nara', '0', '1968-05-14', 'S', 'NULL', 'M', 'willie36@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4867 Victory Lane', 'NULL', '1 (11) 500 555-0137', '2012-11-17', '0-1 Miles'], ['24461', '18', 'AW00024461', 'NULL', 'Ruth', 'D', 'Sai', '0', '1973-08-03', 'S', 'NULL', 'F', 'ruth10@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3543 Hilton Way', 'NULL', '1 (11) 500 555-0139', '2012-11-18', '5-10 Miles'], ['24462', '19', 'AW00024462', 'NULL', 'Donald', 'C', 'Fernandez', '0', '1968-02-23', 'S', 'NULL', 'M', 'donald17@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1902 E. 42nd Street', 'NULL', '1 (11) 500 555-0180', '2012-11-17', '0-1 Miles'], ['24463', '6', 'AW00024463', 'NULL', 'Kristen', 'J', 'Zheng', '0', '1935-12-16', 'M', 'NULL', 'F', 'kristen16@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '4619 Mount Orange Ct', 'NULL', '1 (11) 500 555-0129', '2012-12-07', '1-2 Miles'], ['24464', '10', 'AW00024464', 'NULL', 'Joanna', 'E', 'Torres', '0', '1972-01-01', 'S', 'NULL', 'F', 'joanna10@adventure-works.com', '100000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '2608 Southampton Road', 'NULL', '1 (11) 500 555-0111', '2013-06-14', '10+ Miles'], ['24465', '35', 'AW00024465', 'NULL', 'Tara', 'L', 'Andersen', '0', '1965-10-06', 'M', 'NULL', 'F', 'tara13@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6697 Ridge Park Drive', 'NULL', '1 (11) 500 555-0118', '2012-11-28', '5-10 Miles'], ['24466', '21', 'AW00024466', 'NULL', 'Alexa', 'A', 'Travers', '0', '1966-02-01', 'M', 'NULL', 'F', 'alexa11@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3641 W. Holly Drive', 'NULL', '1 (11) 500 555-0114', '2012-12-01', '5-10 Miles'], ['24467', '14', 'AW00024467', 'NULL', 'Susan', 'A', 'He', '0', '1965-11-24', 'S', 'NULL', 'F', 'susan29@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '5728 Thames Dr', 'NULL', '1 (11) 500 555-0197', '2012-12-08', '0-1 Miles'], ['24468', '33', 'AW00024468', 'NULL', 'Whitney', 'F', 'Patel', '0', '1971-03-31', 'S', 'NULL', 'F', 'whitney3@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4173 Signal Court', 'NULL', '1 (11) 500 555-0195', '2012-11-28', '5-10 Miles'], ['24469', '14', 'AW00024469', 'NULL', 'Roger', 'NULL', 'Andersen', '0', '1970-11-30', 'S', 'NULL', 'M', 'roger40@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '8825 Walters Way', 'NULL', '1 (11) 500 555-0128', '2013-02-16', '1-2 Miles'], ['24470', '16', 'AW00024470', 'NULL', 'Clarence', 'L', 'Lal', '0', '1970-12-09', 'M', 'NULL', 'M', 'clarence23@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '7000 Hawes Street', 'NULL', '1 (11) 500 555-0124', '2013-05-01', '1-2 Miles'], ['24471', '33', 'AW00024471', 'NULL', 'Ricardo', 'L', 'Chande', '0', '1969-12-01', 'S', 'NULL', 'M', 'ricardo15@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3994 Pinecrest Court', 'NULL', '1 (11) 500 555-0136', '2013-04-01', '5-10 Miles'], ['24472', '11', 'AW00024472', 'NULL', 'Jake', 'M', 'He', '0', '1970-04-22', 'S', 'NULL', 'M', 'jake16@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5281 Miller Avenue', 'NULL', '1 (11) 500 555-0189', '2013-12-16', '5-10 Miles'], ['24473', '19', 'AW00024473', 'NULL', 'Marco', 'K', 'Rana', '0', '1975-03-23', 'S', 'NULL', 'M', 'marco12@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1461 Dent Way', 'NULL', '1 (11) 500 555-0153', '2013-08-29', '5-10 Miles'], ['24474', '18', 'AW00024474', 'NULL', 'Rosa', 'M', 'Guo', '0', '1974-03-22', 'S', 'NULL', 'F', 'rosa17@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '9697 Central Ave', 'NULL', '1 (11) 500 555-0184', '2012-12-04', '0-1 Miles'], ['24475', '32', 'AW00024475', 'NULL', 'Gilbert', 'NULL', 'Zhou', '0', '1968-12-12', 'S', 'NULL', 'M', 'gilbert6@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '8004 Broadmoor Ave.', 'NULL', '1 (11) 500 555-0174', '2012-12-22', '0-1 Miles'], ['24476', '33', 'AW00024476', 'NULL', 'Jared', 'NULL', 'Brooks', '0', '1977-09-12', 'M', 'NULL', 'M', 'jared3@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2263 Terra Granada', 'NULL', '1 (11) 500 555-0124', '2012-11-28', '5-10 Miles'], ['24477', '29', 'AW00024477', 'NULL', 'Warren', 'R', 'Zeng', '0', '1966-08-26', 'S', 'NULL', 'M', 'warren35@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1542 Del Rey St.', 'NULL', '1 (11) 500 555-0149', '2012-12-26', '5-10 Miles'], ['24478', '4', 'AW00024478', 'NULL', 'Lindsay', 'E', 'Sharma', '0', '1972-03-01', 'S', 'NULL', 'F', 'lindsay9@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2878 Bounty Way', 'NULL', '1 (11) 500 555-0197', '2012-12-14', '5-10 Miles'], ['24479', '7', 'AW00024479', 'NULL', 'Desirée', 'E', 'Moreno', '0', '1972-01-31', 'S', 'NULL', 'F', 'desirée2@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9584 Logan Ct', 'NULL', '1 (11) 500 555-0151', '2014-01-17', '5-10 Miles'], ['24480', '36', 'AW00024480', 'NULL', 'Kelli', 'A', 'Liu', '0', '1964-02-19', 'S', 'NULL', 'F', 'kelli4@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3421 Boyd Road', 'NULL', '1 (11) 500 555-0163', '2012-12-08', '2-5 Miles'], ['24481', '23', 'AW00024481', 'NULL', 'Dennis', 'K', 'Sun', '0', '1969-07-13', 'M', 'NULL', 'M', 'dennis14@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '3697 W St.', 'NULL', '1 (11) 500 555-0168', '2012-12-11', '2-5 Miles'], ['24482', '36', 'AW00024482', 'NULL', 'Roy', 'A', 'Ramos', '0', '1969-08-12', 'M', 'NULL', 'M', 'roy37@adventure-works.com', '100000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1868 Alexander Pl', 'NULL', '1 (11) 500 555-0110', '2012-12-18', '1-2 Miles'], ['24483', '2', 'AW00024483', 'NULL', 'Arthur', 'NULL', 'Kapoor', '0', '1941-12-14', 'S', 'NULL', 'M', 'arthur3@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9794 Glenside Dr', 'NULL', '1 (11) 500 555-0151', '2013-09-16', '5-10 Miles'], ['24484', '28', 'AW00024484', 'NULL', 'Chad', 'NULL', 'Anand', '0', '1966-01-19', 'M', 'NULL', 'M', 'chad22@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4340 Ohara Ct', 'NULL', '1 (11) 500 555-0154', '2012-11-28', '5-10 Miles'], ['24485', '2', 'AW00024485', 'NULL', 'Franklin', 'NULL', 'Ma', '0', '1959-03-08', 'S', 'NULL', 'M', 'franklin15@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '3644 Rosarita', 'NULL', '1 (11) 500 555-0117', '2012-12-23', '5-10 Miles'], ['24486', '307', 'AW00024486', 'NULL', 'Rafael', 'NULL', 'Zeng', '0', '1981-02-18', 'M', 'NULL', 'M', 'rafael22@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6680 Brookdale Dr.', 'NULL', '787-555-0115', '2013-02-01', '5-10 Miles'], ['24487', '55', 'AW00024487', 'NULL', 'Samantha', 'A', 'Harris', '0', '1980-09-07', 'S', 'NULL', 'F', 'samantha15@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2595 Worth Ct.', 'NULL', '935-555-0197', '2013-08-23', '0-1 Miles'], ['24488', '68', 'AW00024488', 'NULL', 'Gavin', 'NULL', 'Gonzales', '0', '1980-08-08', 'S', 'NULL', 'M', 'gavin15@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5950 Dakota Lane', 'NULL', '586-555-0145', '2013-12-22', '0-1 Miles'], ['24489', '50', 'AW00024489', 'NULL', 'Shelby', 'NULL', 'Murphy', '0', '1981-12-06', 'S', 'NULL', 'F', 'shelby15@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1504 Conifer Court', 'NULL', '316-555-0117', '2013-04-13', '5-10 Miles'], ['24490', '611', 'AW00024490', 'NULL', 'Dwayne', 'J', 'Suarez', '0', '1985-10-04', 'M', 'NULL', 'M', 'dwayne17@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1996 Sand Pointe Lane', 'NULL', '451-555-0199', '2013-09-18', '5-10 Miles'], ['24491', '66', 'AW00024491', 'NULL', 'Kaitlyn', 'M', 'Russell', '0', '1985-11-02', 'S', 'NULL', 'F', 'kaitlyn87@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3904 Piedra Drive', 'NULL', '446-555-0155', '2011-12-17', '0-1 Miles'], ['24492', '334', 'AW00024492', 'NULL', 'Devin', 'NULL', 'Lopez', '0', '1984-10-01', 'S', 'NULL', 'M', 'devin26@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6027 Lisa Ann Street', 'NULL', '428-555-0192', '2013-03-03', '0-1 Miles'], ['24493', '55', 'AW00024493', 'NULL', 'Seth', 'NULL', 'Bennett', '0', '1984-09-24', 'S', 'NULL', 'M', 'seth49@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5938 Coachman Pl.', 'NULL', '759-555-0116', '2011-12-02', '0-1 Miles'], ['24494', '2', 'AW00024494', 'NULL', 'Rafael', 'A', 'Zhou', '0', '1942-09-02', 'M', 'NULL', 'M', 'rafael9@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5013 C Mt. Hood Ct.', 'NULL', '1 (11) 500 555-0138', '2013-01-31', '0-1 Miles'], ['24495', '25', 'AW00024495', 'NULL', 'Kellie', 'M', 'Ortega', '0', '1953-08-10', 'S', 'NULL', 'F', 'kellie19@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9214 Birch Park Rd', 'NULL', '1 (11) 500 555-0123', '2014-01-14', '0-1 Miles'], ['24496', '66', 'AW00024496', 'NULL', 'Katelyn', 'A', 'Mitchell', '0', '1983-10-07', 'S', 'NULL', 'F', 'katelyn34@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6634 Augustine Dr.', 'NULL', '570-555-0129', '2011-12-04', '0-1 Miles'], ['24497', '632', 'AW00024497', 'NULL', 'Abigail', 'NULL', 'James', '0', '1983-09-20', 'S', 'NULL', 'F', 'abigail21@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3245 Vista Oak Dr.', 'NULL', '892-555-0190', '2013-02-04', '5-10 Miles'], ['24498', '552', 'AW00024498', 'NULL', 'Angela', 'D', 'Washington', '0', '1983-10-14', 'S', 'NULL', 'F', 'angela16@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1127 Leewood Place', 'NULL', '807-555-0154', '2013-06-10', '0-1 Miles'], ['24499', '372', 'AW00024499', 'NULL', 'Olivia', 'NULL', 'Lewis', '0', '1983-06-01', 'S', 'NULL', 'F', 'olivia20@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2082 S. Bascom Ave.', 'NULL', '498-555-0181', '2013-05-21', '0-1 Miles'], ['24500', '633', 'AW00024500', 'NULL', 'Seth', 'NULL', 'Johnson', '0', '1983-05-13', 'M', 'NULL', 'M', 'seth1@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5718 N. Sixth Street', 'NULL', '177-555-0128', '2013-06-12', '0-1 Miles'], ['24501', '50', 'AW00024501', 'NULL', 'Victoria', 'V', 'Garcia', '0', '1984-10-25', 'S', 'NULL', 'F', 'victoria17@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '4039 Elkwood Dr.', 'NULL', '543-555-0198', '2011-12-27', '0-1 Miles'], ['24502', '13', 'AW00024502', 'NULL', 'Deb', 'NULL', 'Price', '0', '1946-02-09', 'M', 'NULL', 'M', 'deb7@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7952 Quartermaster', 'NULL', '1 (11) 500 555-0165', '2012-12-06', '0-1 Miles'], ['24503', '4', 'AW00024503', 'NULL', 'Laura', 'L', 'Ma', '0', '1952-05-22', 'M', 'NULL', 'F', 'laura21@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6432 Maywood Ln.', 'NULL', '1 (11) 500 555-0185', '2012-12-17', '0-1 Miles'], ['24504', '5', 'AW00024504', 'NULL', 'Eddie', 'C', 'Navarro', '0', '1947-01-31', 'M', 'NULL', 'M', 'eddie10@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '7311 Blackridge Dr.', 'NULL', '1 (11) 500 555-0169', '2012-12-12', '0-1 Miles'], ['24505', '30', 'AW00024505', 'NULL', 'Clifford', 'NULL', 'Gonzalez', '0', '1954-12-07', 'M', 'NULL', 'M', 'clifford17@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8612 Pembrook Court', 'NULL', '1 (11) 500 555-0161', '2012-12-18', '0-1 Miles'], ['24506', '38', 'AW00024506', 'NULL', 'Jaime', 'C', 'Muñoz', '0', '1948-08-19', 'M', 'NULL', 'F', 'jaime8@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '4561 Thornhill Place', 'NULL', '1 (11) 500 555-0182', '2012-12-10', '5-10 Miles'], ['24507', '614', 'AW00024507', 'NULL', 'Madison', 'NULL', 'Garcia', '0', '1982-03-07', 'S', 'NULL', 'F', 'madison17@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9425 Village Road', 'NULL', '196-555-0130', '2013-09-14', '1-2 Miles'], ['24508', '545', 'AW00024508', 'NULL', 'Alex', 'F', 'Phillips', '0', '1982-03-13', 'S', 'NULL', 'M', 'alex34@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '579 Pinnacle Dr.', 'NULL', '382-555-0119', '2013-10-16', '1-2 Miles'], ['24509', '641', 'AW00024509', 'NULL', 'Emma', 'F', 'Long', '0', '1982-05-09', 'S', 'NULL', 'F', 'emma55@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3967 High Street', 'NULL', '299-555-0163', '2013-11-07', '5-10 Miles'], ['24510', '644', 'AW00024510', 'NULL', 'Christian', 'P', 'Martinez', '0', '1982-01-08', 'M', 'NULL', 'M', 'christian53@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '470 Keller Ridge', 'NULL', '191-555-0143', '2013-10-03', '1-2 Miles'], ['24511', '553', 'AW00024511', 'NULL', 'Logan', 'NULL', 'Hall', '0', '1981-10-30', 'S', 'NULL', 'M', 'logan49@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '5160 La Vista Circle', 'NULL', '288-555-0173', '2013-08-28', '1-2 Miles'], ['24512', '302', 'AW00024512', 'NULL', 'Adrienne', 'L', 'Jiménez', '0', '1982-02-10', 'S', 'NULL', 'F', 'adrienne5@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4965 Bishop Court', 'NULL', '675-555-0149', '2013-07-13', '5-10 Miles'], ['24513', '310', 'AW00024513', 'NULL', 'Alejandro', 'NULL', 'Deng', '0', '1981-11-22', 'M', 'NULL', 'M', 'alejandro27@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4621 Candelero Dr.', 'NULL', '735-555-0140', '2013-04-11', '5-10 Miles'], ['24514', '339', 'AW00024514', 'NULL', 'Jesse', 'NULL', 'Phillips', '0', '1981-09-14', 'M', 'NULL', 'M', 'jesse30@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3143 N. Main', 'NULL', '638-555-0148', '2013-07-18', '5-10 Miles'], ['24515', '359', 'AW00024515', 'NULL', 'Ian', 'NULL', 'Jones', '0', '1981-11-16', 'S', 'NULL', 'M', 'ian4@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '274 Diane Ct', 'NULL', '583-555-0115', '2013-12-20', '5-10 Miles'], ['24516', '310', 'AW00024516', 'NULL', 'Rachel', 'K', 'Moore', '0', '1981-05-12', 'S', 'NULL', 'F', 'rachel10@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1782 Poplar Ave.', 'NULL', '552-555-0111', '2013-02-08', '5-10 Miles'], ['24517', '314', 'AW00024517', 'NULL', 'Brandon', 'NULL', 'Harris', '0', '1979-12-23', 'S', 'NULL', 'M', 'brandon34@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6369 Condor Place', 'NULL', '347-555-0181', '2013-12-29', '1-2 Miles'], ['24518', '334', 'AW00024518', 'NULL', 'Stephanie', 'NULL', 'Allen', '0', '1979-10-18', 'S', 'NULL', 'F', 'stephanie68@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3616 Gonzalez Court', 'NULL', '651-555-0132', '2013-07-07', '5-10 Miles'], ['24519', '355', 'AW00024519', 'NULL', 'Carlos', 'M', 'King', '0', '1985-06-09', 'M', 'NULL', 'M', 'carlos47@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7661 S. Rosal Ave.', 'NULL', '956-555-0112', '2013-10-06', '5-10 Miles'], ['24520', '301', 'AW00024520', 'NULL', 'Joseph', 'L', 'Wilson', '0', '1978-08-22', 'M', 'NULL', 'M', 'joseph13@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1902 Santa Cruz', 'NULL', '119-555-0178', '2013-06-28', '5-10 Miles'], ['24521', '623', 'AW00024521', 'NULL', 'Jordyn', 'NULL', 'Wood', '0', '1978-03-12', 'S', 'NULL', 'F', 'jordyn1@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '33 RiverRock Dr', 'NULL', '999-555-0183', '2013-02-16', '0-1 Miles'], ['24522', '369', 'AW00024522', 'NULL', 'Alex', 'NULL', 'Perez', '0', '1979-09-06', 'M', 'NULL', 'M', 'alex31@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '194 Barberry Court', 'NULL', '698-555-0174', '2013-02-04', '0-1 Miles'], ['24523', '310', 'AW00024523', 'NULL', 'Mariah', 'G', 'Coleman', '0', '1973-10-15', 'M', 'NULL', 'F', 'mariah10@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '9815 Marlboro Court', 'NULL', '632-555-0154', '2013-02-07', '0-1 Miles'], ['24524', '311', 'AW00024524', 'NULL', 'Megan', 'L', 'Lewis', '0', '1979-05-03', 'M', 'NULL', 'F', 'megan24@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '2199 Laverne Way', 'NULL', '153-555-0192', '2013-09-16', '1-2 Miles'], ['24525', '51', 'AW00024525', 'NULL', 'James', 'L', 'Nelson', '0', '1973-08-01', 'M', 'NULL', 'M', 'james59@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '6909 Hamilton Avenue', 'NULL', '551-555-0196', '2013-03-11', '1-2 Miles'], ['24526', '335', 'AW00024526', 'NULL', 'Julian', 'A', 'Barnes', '0', '1972-11-24', 'M', 'NULL', 'M', 'julian4@adventure-works.com', '100000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1851 Prospect St.', 'NULL', '669-555-0176', '2013-02-25', '1-2 Miles'], ['24527', '368', 'AW00024527', 'NULL', 'Gavin', 'NULL', 'Coleman', '0', '1973-01-02', 'M', 'NULL', 'M', 'gavin5@adventure-works.com', '110000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '5095 Chablis Way', 'NULL', '158-555-0176', '2013-02-27', '1-2 Miles'], ['24528', '310', 'AW00024528', 'NULL', 'Katherine', 'NULL', 'Hernandez', '0', '1973-05-12', 'S', 'NULL', 'F', 'katherine66@adventure-works.com', '110000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '8079 Prestwick Drive', 'NULL', '658-555-0194', '2013-02-04', '1-2 Miles'], ['24529', '299', 'AW00024529', 'NULL', 'Jillian', 'NULL', 'Martinez', '0', '1973-01-11', 'S', 'NULL', 'F', 'jillian18@adventure-works.com', '130000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '1383 Bola Raton Court', 'NULL', '801-555-0165', '2013-02-04', '0-1 Miles'], ['24530', '612', 'AW00024530', 'NULL', 'Franklin', 'NULL', 'She', '0', '1972-08-21', 'S', 'NULL', 'M', 'franklin19@adventure-works.com', '160000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '0', '4979 Sweeney Road', 'NULL', '180-555-0155', '2013-05-01', '2-5 Miles'], ['24531', '151', 'AW00024531', 'NULL', 'Andres', 'NULL', 'Xie', '0', '1963-09-15', 'M', 'NULL', 'M', 'andres2@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', 'Königsteiner Straße 750', 'NULL', '1 (11) 500 555-0180', '2013-07-19', '5-10 Miles'], ['24532', '176', 'AW00024532', 'NULL', 'Phillip', 'A', 'Perez', '0', '1963-09-22', 'M', 'NULL', 'M', 'phillip22@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', 'Rykestr 2614', 'NULL', '1 (11) 500 555-0119', '2013-11-03', '0-1 Miles'], ['24533', '237', 'AW00024533', 'NULL', 'Blake', 'NULL', 'Long', '0', '1969-08-23', 'S', 'NULL', 'M', 'blake57@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '0', '1761 Holbrook Dr.', 'NULL', '1 (11) 500 555-0178', '2013-12-30', '5-10 Miles'], ['24534', '258', 'AW00024534', 'NULL', 'Alisha', 'NULL', 'Luo', '0', '1964-01-24', 'M', 'NULL', 'F', 'alisha30@adventure-works.com', '150000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3208 Thors Bay Road', 'NULL', '1 (11) 500 555-0150', '2013-03-03', '0-1 Miles'], ['24535', '188', 'AW00024535', 'Mr.', 'David', 'B.', 'Shepard', '0', '1963-05-21', 'M', 'NULL', 'F', 'david23@adventure-works.com', '110000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '570, avenue des Ternes', 'NULL', '192-555-0100', '2013-07-14', '5-10 Miles'], ['24536', '133', 'AW00024536', 'NULL', 'Cynthia', 'A', 'Perez', '0', '1973-09-12', 'M', 'NULL', 'F', 'cynthia27@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Im Himmelsweg 89', 'NULL', '1 (11) 500 555-0142', '2013-06-01', '0-1 Miles'], ['24537', '254', 'AW00024537', 'NULL', 'Cynthia', 'NULL', 'Saunders', '0', '1962-12-26', 'S', 'NULL', 'F', 'cynthia15@adventure-works.com', '150000.00', '2', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '528 Walter Way', 'NULL', '1 (11) 500 555-0165', '2013-03-01', '0-1 Miles'], ['24538', '215', 'AW00024538', 'NULL', 'Latasha', 'E', 'Diaz', '0', '1967-10-18', 'S', 'NULL', 'F', 'latasha3@adventure-works.com', '100000.00', '2', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '6618, avenue de Villiers', 'NULL', '1 (11) 500 555-0152', '2013-11-26', '5-10 Miles'], ['24539', '209', 'AW00024539', 'NULL', 'Colin', 'M', 'Zheng', '0', '1962-01-15', 'S', 'NULL', 'M', 'colin20@adventure-works.com', '110000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '3, rue Georges-Clémenceau', 'NULL', '1 (11) 500 555-0176', '2013-04-21', '5-10 Miles'], ['24540', '234', 'AW00024540', 'NULL', 'Janet', 'L', 'Martin', '0', '1967-12-13', 'M', 'NULL', 'F', 'janet5@adventure-works.com', '120000.00', '3', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '5203 Virginia Lane', 'NULL', '1 (11) 500 555-0186', '2013-06-09', '5-10 Miles'], ['24541', '271', 'AW00024541', 'Ms.', 'Janet', 'NULL', 'Sheperdigian', '0', '1978-01-16', 'M', 'NULL', 'M', 'janet3@adventure-works.com', '170000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '9145 Paso Del Rio Way', 'NULL', '943-555-0100', '2013-12-18', '0-1 Miles'], ['24542', '194', 'AW00024542', 'NULL', 'Arturo', 'W', 'Liang', '0', '1966-08-07', 'S', 'NULL', 'M', 'arturo18@adventure-works.com', '100000.00', '2', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '1359, avenue de l´Europe', 'NULL', '1 (11) 500 555-0114', '2013-12-03', '10+ Miles'], ['24543', '218', 'AW00024543', 'NULL', 'Arthur', 'NULL', 'Moreno', '0', '1960-12-06', 'S', 'NULL', 'M', 'arthur30@adventure-works.com', '110000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '22, rue Jean Mermoz', 'NULL', '1 (11) 500 555-0127', '2013-06-23', '5-10 Miles'], ['24544', '123', 'AW00024544', 'NULL', 'Kellie', 'NULL', 'Romero', '0', '1961-01-14', 'S', 'NULL', 'F', 'kellie7@adventure-works.com', '110000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', 'Marienplatz 13', 'NULL', '1 (11) 500 555-0176', '2013-03-08', '5-10 Miles'], ['24545', '271', 'AW00024545', 'NULL', 'Douglas', 'NULL', 'Raman', '0', '1960-12-03', 'S', 'NULL', 'M', 'douglas16@adventure-works.com', '170000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '4', '1614 Green St', 'NULL', '1 (11) 500 555-0132', '2013-09-26', '0-1 Miles'], ['24546', '267', 'AW00024546', 'NULL', 'Adam', 'NULL', 'Hughes', '0', '1970-10-05', 'M', 'NULL', 'M', 'adam9@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '9111 Rambling Rose Ave', 'NULL', '1 (11) 500 555-0186', '2013-04-15', '2-5 Miles'], ['24547', '156', 'AW00024547', 'NULL', 'Dana', 'NULL', 'Gomez', '0', '1950-02-20', 'S', 'NULL', 'F', 'dana17@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Hauptstr 6035', 'NULL', '1 (11) 500 555-0185', '2013-06-24', '10+ Miles'], ['24548', '160', 'AW00024548', 'NULL', 'Crystal', 'NULL', 'Liu', '0', '1949-08-24', 'M', 'NULL', 'F', 'crystal6@adventure-works.com', '110000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', 'Am Kreuz 75', 'NULL', '1 (11) 500 555-0194', '2013-05-19', '10+ Miles'], ['24549', '230', 'AW00024549', 'NULL', 'Darryl', 'T', 'Li', '0', '1955-12-21', 'S', 'NULL', 'M', 'darryl3@adventure-works.com', '130000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '4261 Roseann Drive', 'NULL', '1 (11) 500 555-0191', '2013-04-25', '0-1 Miles'], ['24550', '247', 'AW00024550', 'NULL', 'Randy', 'R', 'Ma', '0', '1950-04-21', 'M', 'NULL', 'M', 'randy18@adventure-works.com', '130000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '2526 N Willow Glen Court', 'NULL', '1 (11) 500 555-0181', '2013-02-04', '5-10 Miles'], ['24551', '220', 'AW00024551', 'NULL', 'Molly', 'NULL', 'Malhotra', '0', '1951-03-19', 'M', 'NULL', 'F', 'molly5@adventure-works.com', '60000.00', '3', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '11, avenue du Président-Kennedy', 'NULL', '1 (11) 500 555-0161', '2013-02-25', '2-5 Miles'], ['24552', '222', 'AW00024552', 'NULL', 'Ross', 'M', 'Carlson', '0', '1951-03-24', 'M', 'NULL', 'M', 'ross36@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '8812, rue Surcouf', 'NULL', '1 (11) 500 555-0136', '2013-12-03', '2-5 Miles'], ['24553', '120', 'AW00024553', 'NULL', 'Michele', 'A', 'Ashe', '0', '1951-01-12', 'M', 'NULL', 'F', 'michele23@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Marketplatz 92', 'NULL', '1 (11) 500 555-0140', '2013-12-23', '10+ Miles'], ['24554', '256', 'AW00024554', 'NULL', 'Deanna', 'NULL', 'Fernandez', '0', '1950-11-24', 'M', 'NULL', 'F', 'deanna19@adventure-works.com', '130000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '8310 Atchinson Stage Ct', 'NULL', '1 (11) 500 555-0152', '2013-08-12', '0-1 Miles'], ['24555', '263', 'AW00024555', 'NULL', 'Lacey', 'A', 'Chande', '0', '1950-08-16', 'M', 'NULL', 'F', 'lacey5@adventure-works.com', '130000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '5330 Miwok Way', 'NULL', '1 (11) 500 555-0155', '2013-08-11', '0-1 Miles'], ['24556', '217', 'AW00024556', 'NULL', 'Claudia', 'NULL', 'Yang', '0', '1952-05-25', 'S', 'NULL', 'F', 'claudia4@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '44, rue Saint-Lazare', 'NULL', '1 (11) 500 555-0140', '2013-06-23', '10+ Miles'], ['24557', '275', 'AW00024557', 'NULL', 'Franklin', 'M', 'Lin', '0', '1957-03-09', 'S', 'NULL', 'M', 'franklin7@adventure-works.com', '170000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '9071 Macaroon Drive', 'NULL', '1 (11) 500 555-0182', '2013-05-29', '0-1 Miles'], ['24558', '231', 'AW00024558', 'NULL', 'Savannah', 'R', 'Brooks', '0', '1959-08-03', 'M', 'NULL', 'F', 'savannah0@adventure-works.com', '90000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8368 Lilac Circle', 'NULL', '1 (11) 500 555-0153', '2013-04-28', '10+ Miles'], ['24559', '226', 'AW00024559', 'NULL', 'Adrienne', 'NULL', 'Suarez', '0', '1958-12-03', 'M', 'NULL', 'F', 'adrienne15@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '68, impasse Notre-Dame', 'NULL', '1 (11) 500 555-0124', '2013-09-30', '2-5 Miles'], ['24560', '184', 'AW00024560', 'NULL', 'Veronica', 'NULL', 'Fernandez', '0', '1959-11-29', 'M', 'NULL', 'F', 'veronica17@adventure-works.com', '100000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '276, rue de la Comédie', 'NULL', '1 (11) 500 555-0143', '2013-12-20', '10+ Miles'], ['24561', '174', 'AW00024561', 'Ms.', 'Megan', 'NULL', 'Sherman', '0', '1960-06-08', 'S', 'NULL', 'M', 'megan2@adventure-works.com', '100000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', 'Wasserstr 64', 'NULL', '361-555-0100', '2013-02-07', '2-5 Miles'], ['24562', '147', 'AW00024562', 'NULL', 'Ricky', 'NULL', 'Rubio', '0', '1960-04-10', 'S', 'NULL', 'M', 'ricky22@adventure-works.com', '110000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Welt Platz 123', 'NULL', '1 (11) 500 555-0185', '2013-10-03', '10+ Miles'], ['24563', '133', 'AW00024563', 'NULL', 'Adriana', 'NULL', 'Rodriguez', '0', '1959-10-02', 'M', 'NULL', 'F', 'adriana20@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Auf dem Ufer 424', 'NULL', '1 (11) 500 555-0189', '2013-07-26', '0-1 Miles'], ['24564', '128', 'AW00024564', 'NULL', 'Johnny', 'L', 'Andersen', '0', '1964-05-23', 'S', 'NULL', 'M', 'johnny14@adventure-works.com', '110000.00', '3', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '0', 'Buergermeister-ulrich-str 95', 'NULL', '1 (11) 500 555-0118', '2013-10-02', '10+ Miles'], ['24565', '135', 'AW00024565', 'NULL', 'Theodore', 'J', 'Navarro', '0', '1963-06-04', 'S', 'NULL', 'M', 'theodore10@adventure-works.com', '110000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Heiderweg 4624', 'NULL', '1 (11) 500 555-0116', '2013-07-16', '10+ Miles'], ['24566', '277', 'AW00024566', 'NULL', 'Kara', 'E', 'Nara', '0', '1963-02-18', 'S', 'NULL', 'F', 'kara14@adventure-works.com', '170000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '9896 Ida Ave', 'NULL', '1 (11) 500 555-0190', '2013-11-21', '0-1 Miles'], ['24567', '199', 'AW00024567', 'NULL', 'Alison', 'W', 'Deng', '0', '1956-11-04', 'M', 'NULL', 'F', 'alison0@adventure-works.com', '80000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '425, rue Léo Delibes', 'NULL', '1 (11) 500 555-0199', '2013-03-20', '10+ Miles'], ['24568', '238', 'AW00024568', 'NULL', 'Jose', 'F', 'Mitchell', '0', '1956-07-13', 'S', 'NULL', 'M', 'jose47@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '9390 Janin Pl.', 'NULL', '1 (11) 500 555-0141', '2013-07-10', '10+ Miles'], ['24569', '262', 'AW00024569', 'NULL', 'Bob', 'S', 'Gonzalez', '0', '1962-02-08', 'M', 'NULL', 'M', 'bob10@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '7820 Blackridge Drive', 'NULL', '1 (11) 500 555-0159', '2013-05-28', '0-1 Miles'], ['24570', '220', 'AW00024570', 'NULL', 'Karen', 'NULL', 'Guo', '0', '1955-08-20', 'S', 'NULL', 'F', 'karen27@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '285, rue de Varenne', 'NULL', '1 (11) 500 555-0119', '2013-11-24', '10+ Miles'], ['24571', '211', 'AW00024571', 'NULL', 'Roberto', 'NULL', 'Navarro', '0', '1967-02-19', 'S', 'NULL', 'M', 'roberto10@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '34, avenue du Port', 'NULL', '1 (11) 500 555-0111', '2013-12-28', '10+ Miles'], ['24572', '154', 'AW00024572', 'NULL', 'Carolyn', 'A', 'Martinez', '0', '1961-05-24', 'M', 'NULL', 'F', 'carolyn17@adventure-works.com', '100000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '4', 'Viktoria-Luise-Platz 413', 'NULL', '1 (11) 500 555-0167', '2013-04-16', '10+ Miles'], ['24573', '248', 'AW00024573', 'NULL', 'Colin', 'W', 'Rai', '0', '1961-09-12', 'M', 'NULL', 'M', 'colin40@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '7936 Sterling Hill', 'NULL', '1 (11) 500 555-0123', '2013-05-20', '0-1 Miles'], ['24574', '240', 'AW00024574', 'NULL', 'Alison', 'K', 'Yuan', '0', '1954-12-02', 'S', 'NULL', 'F', 'alison6@adventure-works.com', '150000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '4', '3716 D Mt. Hood Circle', 'NULL', '1 (11) 500 555-0174', '2013-08-07', '10+ Miles'], ['24575', '241', 'AW00024575', 'NULL', 'Arturo', 'M', 'Zhu', '0', '1960-04-11', 'S', 'NULL', 'M', 'arturo15@adventure-works.com', '150000.00', '3', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '5452 Corte Gilberto', 'NULL', '1 (11) 500 555-0119', '2013-12-09', '10+ Miles'], ['24576', '243', 'AW00024576', 'NULL', 'Jake', 'L', 'Hu', '0', '1955-03-16', 'S', 'NULL', 'M', 'jake18@adventure-works.com', '150000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '3406 Raven Court', 'NULL', '1 (11) 500 555-0114', '2013-07-11', '0-1 Miles'], ['24577', '276', 'AW00024577', 'NULL', 'Gilbert', 'NULL', 'Lal', '0', '1953-08-02', 'S', 'NULL', 'M', 'gilbert29@adventure-works.com', '170000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '9634 East Avenue', 'NULL', '1 (11) 500 555-0186', '2013-05-21', '0-1 Miles'], ['24578', '223', 'AW00024578', 'NULL', 'Meredith', 'Y', 'Lopez', '0', '1958-04-03', 'S', 'NULL', 'F', 'meredith16@adventure-works.com', '90000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1005, rue des Bouchers', 'NULL', '1 (11) 500 555-0131', '2013-11-06', '5-10 Miles'], ['24579', '155', 'AW00024579', 'NULL', 'Trevor', 'G', 'Alexander', '0', '1953-02-01', 'S', 'NULL', 'M', 'trevor19@adventure-works.com', '100000.00', '3', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '0', 'Werftstr 54', 'NULL', '1 (11) 500 555-0159', '2013-12-16', '5-10 Miles'], ['24580', '161', 'AW00024580', 'NULL', 'Wesley', 'M', 'Zhao', '0', '1958-08-06', 'M', 'NULL', 'M', 'wesley10@adventure-works.com', '110000.00', '4', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '3', 'Altendorfer Straße 4', 'NULL', '1 (11) 500 555-0137', '2013-08-23', '10+ Miles'], ['24581', '262', 'AW00024581', 'NULL', 'Reginald', 'A', 'Diaz', '0', '1953-04-11', 'M', 'NULL', 'M', 'reginald11@adventure-works.com', '130000.00', '5', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '8742 Longbrood Way', 'NULL', '1 (11) 500 555-0166', '2013-10-28', '0-1 Miles'], ['24582', '276', 'AW00024582', 'NULL', 'Marie', 'A', 'Sai', '0', '1958-10-20', 'M', 'NULL', 'F', 'marie10@adventure-works.com', '160000.00', '5', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '4', '4616 Sutcliffe Pl', 'NULL', '1 (11) 500 555-0115', '2013-06-12', '10+ Miles'], ['24583', '277', 'AW00024583', 'NULL', 'Roy', 'R', 'Chandra', '0', '1953-02-09', 'S', 'NULL', 'M', 'roy2@adventure-works.com', '170000.00', '5', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '4', '5368 Pierce Ct.', 'NULL', '1 (11) 500 555-0132', '2013-06-16', '0-1 Miles'], ['24584', '14', 'AW00024584', 'NULL', 'Ronnie', 'NULL', 'Liang', '0', '1981-02-08', 'S', 'NULL', 'M', 'ronnie15@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '8426 Kendall Rd.', 'NULL', '1 (11) 500 555-0139', '2013-06-06', '2-5 Miles'], ['24585', '32', 'AW00024585', 'NULL', 'Harold', 'NULL', 'Patel', '0', '1981-02-11', 'M', 'NULL', 'M', 'harold1@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '2115 White Dr.', 'NULL', '1 (11) 500 555-0154', '2012-12-18', '10+ Miles'], ['24586', '23', 'AW00024586', 'NULL', 'Jerry', 'M', 'Luo', '0', '1981-04-18', 'S', 'NULL', 'M', 'jerry6@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '6568 Damascus Loop', 'NULL', '1 (11) 500 555-0132', '2012-12-10', '10+ Miles'], ['24587', '20', 'AW00024587', 'NULL', 'Suzanne', 'P', 'Sun', '0', '1981-03-09', 'M', 'NULL', 'F', 'suzanne14@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '7023 Stallion Way', 'NULL', '1 (11) 500 555-0157', '2012-12-22', '10+ Miles'], ['24588', '6', 'AW00024588', 'NULL', 'Kathryn', 'NULL', 'Becker', '0', '1981-08-06', 'S', 'NULL', 'F', 'kathryn18@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '9452 Mariposa Ct.', 'NULL', '1 (11) 500 555-0110', '2013-07-20', '10+ Miles'], ['24589', '22', 'AW00024589', 'NULL', 'Laura', 'T', 'Zhao', '0', '1980-12-08', 'S', 'NULL', 'F', 'laura17@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '8206 Green Valley Road', 'NULL', '1 (11) 500 555-0198', '2013-03-20', '10+ Miles'], ['24590', '19', 'AW00024590', 'NULL', 'Diana', 'L', 'Alonso', '0', '1979-07-04', 'M', 'NULL', 'F', 'diana7@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '5218 E 28th Street', 'NULL', '1 (11) 500 555-0148', '2012-12-10', '10+ Miles'], ['24591', '27', 'AW00024591', 'NULL', 'Derek', 'NULL', 'Pal', '0', '1979-11-08', 'S', 'NULL', 'M', 'derek11@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '2370 Pelican Loop', 'NULL', '1 (11) 500 555-0153', '2013-08-05', '10+ Miles'], ['24592', '29', 'AW00024592', 'NULL', 'Jay', 'NULL', 'Martinez', '0', '1981-03-31', 'S', 'NULL', 'M', 'jay24@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '1905 Clyde Street', 'NULL', '1 (11) 500 555-0118', '2012-12-12', '10+ Miles'], ['24593', '18', 'AW00024593', 'NULL', 'Destiny', 'W', 'Watson', '0', '1980-03-05', 'M', 'NULL', 'F', 'destiny44@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '7525 Sutcliffe Pl.', 'NULL', '1 (11) 500 555-0144', '2014-01-19', '10+ Miles'], ['24594', '23', 'AW00024594', 'NULL', 'Franklin', 'NULL', 'Yuan', '0', '1979-09-20', 'M', 'NULL', 'M', 'franklin25@adventure-works.com', '70000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '5691 Coldwater Drive', 'NULL', '1 (11) 500 555-0177', '2013-02-27', '10+ Miles'], ['24595', '5', 'AW00024595', 'NULL', 'Kelvin', 'NULL', 'Wu', '0', '1978-11-10', 'S', 'NULL', 'M', 'kelvin26@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '3338 Stillwater Ct.', 'NULL', '1 (11) 500 555-0191', '2013-04-04', '10+ Miles'], ['24596', '19', 'AW00024596', 'NULL', 'Heather', 'NULL', 'Zhao', '0', '1979-04-02', 'M', 'NULL', 'F', 'heather9@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '6287 Strasbourg Lane', 'NULL', '1 (11) 500 555-0164', '2012-12-05', '10+ Miles'], ['24597', '18', 'AW00024597', 'NULL', 'Lee', 'R', 'Dominguez', '0', '1980-04-16', 'S', 'NULL', 'M', 'lee11@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '2617 Melody Drive', 'NULL', '1 (11) 500 555-0138', '2012-12-07', '10+ Miles'], ['24598', '31', 'AW00024598', 'Ms.', 'Irma', 'J.', 'Sherwood', '0', '1985-08-30', 'S', 'NULL', 'M', 'irma0@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '2', '7323 Alan Drive', 'NULL', '760-555-0100', '2012-12-04', '10+ Miles'], ['24599', '37', 'AW00024599', 'NULL', 'Virginia', 'C', 'Garcia', '0', '1985-08-18', 'M', 'NULL', 'F', 'virginia17@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '8505 Fall Creek', 'NULL', '1 (11) 500 555-0153', '2013-08-13', '0-1 Miles'], ['24600', '34', 'AW00024600', 'NULL', 'Lisa', 'J', 'Li', '0', '1984-01-21', 'M', 'NULL', 'F', 'lisa6@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '3852 Northridge Dr.', 'NULL', '1 (11) 500 555-0189', '2013-09-30', '10+ Miles'], ['24601', '34', 'AW00024601', 'NULL', 'Natasha', 'M', 'Munoz', '0', '1984-03-14', 'S', 'NULL', 'F', 'natasha6@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '8704 Live Oak', 'NULL', '1 (11) 500 555-0145', '2012-12-03', '10+ Miles'], ['24602', '11', 'AW00024602', 'NULL', 'Preston', 'M', 'Garcia', '0', '1978-12-16', 'S', 'NULL', 'M', 'preston14@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '7430 Ravenwood', 'NULL', '1 (11) 500 555-0116', '2012-12-27', '10+ Miles'], ['24603', '25', 'AW00024603', 'NULL', 'Jake', 'G', 'Zhu', '0', '1978-06-24', 'S', 'NULL', 'M', 'jake12@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '3033 F St.', 'NULL', '1 (11) 500 555-0111', '2013-10-16', '10+ Miles'], ['24604', '18', 'AW00024604', 'NULL', 'Melvin', 'J', 'Rai', '0', '1977-07-08', 'M', 'NULL', 'M', 'melvin16@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '6940 Hilltop Dr', 'NULL', '1 (11) 500 555-0159', '2012-12-25', '10+ Miles'], ['24605', '27', 'AW00024605', 'NULL', 'Roger', 'P', 'Wang', '0', '1977-12-14', 'S', 'NULL', 'M', 'roger6@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '3', '5745 St. Paul Way', 'NULL', '1 (11) 500 555-0136', '2012-12-13', '10+ Miles'], ['24606', '36', 'AW00024606', 'NULL', 'Cassie', 'NULL', 'Nath', '0', '1983-09-29', 'M', 'NULL', 'F', 'cassie17@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '6600 Browse Ct.', 'NULL', '1 (11) 500 555-0197', '2012-01-21', '10+ Miles'], ['24607', '26', 'AW00024607', 'NULL', 'Kristine', 'J', 'Ruiz', '0', '1982-01-10', 'S', 'NULL', 'F', 'kristine3@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '3169 Estela', 'NULL', '1 (11) 500 555-0116', '2013-09-05', '10+ Miles'], ['24608', '24', 'AW00024608', 'NULL', 'Katrina', 'Z', 'Nara', '0', '1983-09-29', 'M', 'NULL', 'F', 'katrina15@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '5828 E. 102nd Street', 'NULL', '1 (11) 500 555-0135', '2012-01-15', '10+ Miles'], ['24609', '34', 'AW00024609', 'NULL', 'Jenny', 'H', 'Zhang', '0', '1977-10-08', 'M', 'NULL', 'F', 'jenny2@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '4', '8037 Hillridge Way', 'NULL', '1 (11) 500 555-0149', '2012-02-14', '10+ Miles'], ['24610', '3', 'AW00024610', 'NULL', 'Troy', 'E', 'Kapoor', '0', '1978-05-06', 'S', 'NULL', 'M', 'troy1@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '3529 Midway Ct', 'NULL', '1 (11) 500 555-0119', '2013-09-10', '10+ Miles'], ['24611', '28', 'AW00024611', 'NULL', 'Pedro', 'A', 'Suarez', '0', '1982-08-23', 'S', 'NULL', 'M', 'pedro39@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '3340 Clifford Court', 'NULL', '1 (11) 500 555-0147', '2012-02-03', '10+ Miles'], ['24612', '40', 'AW00024612', 'NULL', 'Devon', 'NULL', 'Chander', '0', '1975-12-03', 'S', 'NULL', 'M', 'devon13@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '4546 Vista Valley Rd', 'NULL', '1 (11) 500 555-0125', '2012-02-17', '10+ Miles'], ['24613', '36', 'AW00024613', 'NULL', 'Stacy', 'NULL', 'Serrano', '0', '1976-03-22', 'M', 'NULL', 'F', 'stacy17@adventure-works.com', '100000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '1745 Chickpea Ct', 'NULL', '1 (11) 500 555-0125', '2012-03-16', '10+ Miles'], ['24614', '37', 'AW00024614', 'NULL', 'Lindsey', 'NULL', 'Raje', '0', '1976-02-12', 'M', 'NULL', 'F', 'lindsey15@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '4', '7932 Hope Drive', 'NULL', '1 (11) 500 555-0139', '2012-03-19', '10+ Miles'], ['24615', '35', 'AW00024615', 'NULL', 'Dwayne', 'C', 'Ortega', '0', '1976-11-15', 'M', 'NULL', 'M', 'dwayne20@adventure-works.com', '110000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '8101 Little Dr.', 'NULL', '1 (11) 500 555-0153', '2012-03-29', '10+ Miles'], ['24616', '358', 'AW00024616', 'NULL', 'Zoe', 'NULL', 'Cook', '0', '1955-04-22', 'M', 'NULL', 'F', 'zoe20@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1510 American Beauty Dr.', 'NULL', '436-555-0115', '2013-08-08', '5-10 Miles'], ['24617', '612', 'AW00024617', 'NULL', 'Kelsey', 'J', 'She', '0', '1954-04-16', 'M', 'NULL', 'F', 'kelsey0@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '8286 Willow St.', 'NULL', '371-555-0137', '2013-05-03', '1-2 Miles'], ['24618', '307', 'AW00024618', 'NULL', 'Brett', 'J', 'Gonzalez', '0', '1959-12-08', 'M', 'NULL', 'M', 'brett18@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '7419 San Ramon Road', 'NULL', '669-555-0158', '2013-06-13', '5-10 Miles'], ['24619', '316', 'AW00024619', 'NULL', 'Shelby', 'N', 'Kelly', '0', '1953-08-16', 'S', 'NULL', 'F', 'shelby2@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '9995 Le Jean Way', 'NULL', '447-555-0113', '2013-03-14', '5-10 Miles'], ['24620', '322', 'AW00024620', 'NULL', 'Olivia', 'L', 'Morgan', '0', '1953-08-21', 'M', 'NULL', 'F', 'olivia30@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5927 Mt. Hood Circle', 'NULL', '147-555-0181', '2013-10-27', '5-10 Miles'], ['24621', '49', 'AW00024621', 'NULL', 'Chad', 'M', 'Shan', '0', '1948-01-31', 'M', 'NULL', 'M', 'chad12@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6643 Mt. Whitney', 'NULL', '830-555-0146', '2013-05-22', '5-10 Miles'], ['24622', '553', 'AW00024622', 'NULL', 'Blake', 'F', 'Hall', '0', '1942-12-11', 'M', 'NULL', 'M', 'blake24@adventure-works.com', '50000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '778 Kingsford Dr', 'NULL', '942-555-0159', '2013-05-23', '1-2 Miles'], ['24623', '609', 'AW00024623', 'NULL', 'Beth', 'NULL', 'Torres', '0', '1943-09-15', 'M', 'NULL', 'F', 'beth14@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9746 Gilardy Drive', 'NULL', '402-555-0128', '2014-01-13', '1-2 Miles'], ['24624', '322', 'AW00024624', 'NULL', 'Allison', 'J', 'Murphy', '0', '1943-09-24', 'M', 'NULL', 'F', 'allison14@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4535 Sun Hill Lane', 'NULL', '209-555-0125', '2013-07-13', '1-2 Miles'], ['24625', '49', 'AW00024625', 'NULL', 'Yolanda', 'A', 'Nath', '0', '1943-12-11', 'M', 'NULL', 'F', 'yolanda17@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '2467 Green St.', 'NULL', '651-555-0175', '2013-10-04', '1-2 Miles'], ['24626', '336', 'AW00024626', 'NULL', 'Seth', 'M', 'Bryant', '0', '1943-10-25', 'M', 'NULL', 'M', 'seth66@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7219 Canyon Way', 'NULL', '763-555-0188', '2013-08-16', '10+ Miles'], ['24627', '53', 'AW00024627', 'NULL', 'Eric', 'NULL', 'Edwards', '0', '1945-04-22', 'S', 'NULL', 'M', 'eric43@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7966 Oak Wood Court', 'NULL', '256-555-0143', '2013-07-14', '10+ Miles'], ['24628', '336', 'AW00024628', 'NULL', 'David', 'NULL', 'Walker', '0', '1945-02-07', 'S', 'NULL', 'M', 'david86@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1106 Pine Creek Way', 'NULL', '366-555-0183', '2013-11-12', '10+ Miles'], ['24629', '348', 'AW00024629', 'NULL', 'Seth', 'NULL', 'Perry', '0', '1945-03-12', 'M', 'NULL', 'M', 'seth55@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '2988 Wightman Lane', 'NULL', '323-555-0149', '2013-05-02', '1-2 Miles'], ['24630', '71', 'AW00024630', 'NULL', 'Brianna', 'D', 'Howard', '0', '1944-10-13', 'M', 'NULL', 'F', 'brianna38@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1707 Summerfield Drive', 'NULL', '752-555-0135', '2013-05-29', '1-2 Miles'], ['24631', '310', 'AW00024631', 'NULL', 'Hannah', 'NULL', 'Powell', '0', '1944-06-30', 'S', 'NULL', 'F', 'hannah31@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8627 Shenandoah Drive', 'NULL', '505-555-0112', '2013-11-19', '10+ Miles'], ['24632', '644', 'AW00024632', 'NULL', 'Catherine', 'K', 'James', '0', '1945-11-17', 'S', 'NULL', 'F', 'catherine7@adventure-works.com', '60000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '7341 Mt. Washington Way', 'NULL', '387-555-0145', '2013-06-28', '1-2 Miles'], ['24633', '552', 'AW00024633', 'NULL', 'Xavier', 'NULL', 'Cook', '0', '1946-03-13', 'M', 'NULL', 'M', 'xavier79@adventure-works.com', '60000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '5684 Fitzuren', 'NULL', '872-555-0163', '2013-06-04', '1-2 Miles'], ['24634', '611', 'AW00024634', 'NULL', 'Crystal', 'S', 'He', '0', '1945-10-03', 'M', 'NULL', 'F', 'crystal19@adventure-works.com', '60000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4764 East Avenue', 'NULL', '813-555-0148', '2013-10-10', '10+ Miles'], ['24635', '361', 'AW00024635', 'NULL', 'Gabrielle', 'NULL', 'Rogers', '0', '1946-04-13', 'S', 'NULL', 'F', 'gabrielle2@adventure-works.com', '60000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2012 Melody Dr', 'NULL', '954-555-0118', '2014-01-25', '10+ Miles'], ['24636', '542', 'AW00024636', 'NULL', 'Anna', 'NULL', 'Ward', '0', '1945-10-30', 'M', 'NULL', 'F', 'anna17@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9531 Tri-state Ave', 'NULL', '939-555-0166', '2013-11-19', '10+ Miles'], ['24637', '64', 'AW00024637', 'NULL', 'Nathan', 'C', 'Flores', '0', '1947-05-08', 'M', 'NULL', 'M', 'nathan8@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '9847 E. Nd Street', 'NULL', '146-555-0160', '2013-11-09', '10+ Miles'], ['24638', '348', 'AW00024638', 'NULL', 'Julia', 'I', 'Lopez', '0', '1952-10-08', 'S', 'NULL', 'F', 'julia18@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '5531 Roxbury Drive', 'NULL', '291-555-0161', '2013-11-04', '1-2 Miles'], ['24639', '50', 'AW00024639', 'NULL', 'Ian', 'L', 'Moore', '0', '1947-05-06', 'M', 'NULL', 'M', 'ian9@adventure-works.com', '50000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3432 NE 3rd Court', 'NULL', '124-555-0176', '2013-12-01', '10+ Miles'], ['24640', '300', 'AW00024640', 'NULL', 'Lisa', 'NULL', 'Yang', '0', '1947-02-19', 'S', 'NULL', 'F', 'lisa8@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '7549 Longview Rd.', 'NULL', '986-555-0135', '2013-06-18', '1-2 Miles'], ['24641', '331', 'AW00024641', 'NULL', 'Sarah', 'H', 'Powell', '0', '1954-09-16', 'M', 'NULL', 'F', 'sarah33@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '537 Center Ave.', 'NULL', '192-555-0175', '2013-06-04', '1-2 Miles'], ['24642', '552', 'AW00024642', 'NULL', 'Edward', 'NULL', 'Russell', '0', '1949-05-07', 'S', 'NULL', 'M', 'edward68@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4669 Berry Dr.', 'NULL', '358-555-0120', '2013-08-29', '10+ Miles'], ['24643', '374', 'AW00024643', 'NULL', 'Jada', 'F', 'Campbell', '0', '1949-01-23', 'S', 'NULL', 'F', 'jada19@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6973 Dublin Court', 'NULL', '293-555-0112', '2013-07-07', '10+ Miles'], ['24644', '316', 'AW00024644', 'NULL', 'Samuel', 'B', 'Johnston', '0', '1949-05-06', 'M', 'NULL', 'M', 'samuel59@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '9959 Edwards Ave.', 'NULL', '590-555-0111', '2013-05-31', '1-2 Miles'], ['24645', '612', 'AW00024645', 'NULL', 'Bryce', 'R', 'Murphy', '0', '1954-04-16', 'M', 'NULL', 'M', 'bryce14@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '5699 Mendocino Dr.', 'NULL', '759-555-0170', '2013-06-26', '1-2 Miles'], ['24646', '62', 'AW00024646', 'NULL', 'Juan', 'T', 'Murphy', '0', '1950-01-09', 'M', 'NULL', 'M', 'juan25@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8476 Eastgate Ave.', 'NULL', '906-555-0146', '2011-12-21', '10+ Miles'], ['24647', '53', 'AW00024647', 'NULL', 'Jose', 'NULL', 'Simmons', '0', '1949-10-24', 'S', 'NULL', 'M', 'jose9@adventure-works.com', '30000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '8014 N. Civic Drive', 'NULL', '235-555-0178', '2013-11-01', '1-2 Miles'], ['24648', '326', 'AW00024648', 'NULL', 'Amanda', 'J', 'King', '0', '1955-11-08', 'S', 'NULL', 'F', 'amanda62@adventure-works.com', '30000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7709 Atchinson Stage Ct.', 'NULL', '428-555-0198', '2013-05-16', '10+ Miles'], ['24649', '53', 'AW00024649', 'NULL', 'Aaron', 'L', 'Washington', '0', '1958-02-07', 'M', 'NULL', 'M', 'aaron12@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '4848 Lighthouse Way', 'NULL', '695-555-0117', '2013-06-04', '1-2 Miles'], ['24650', '336', 'AW00024650', 'NULL', 'Julia', 'NULL', 'Baker', '0', '1950-09-04', 'S', 'NULL', 'F', 'julia13@adventure-works.com', '20000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '3', '2631 Dalis Dr.', 'NULL', '126-555-0140', '2013-09-03', '1-2 Miles'], ['24651', '631', 'AW00024651', 'NULL', 'Dakota', 'NULL', 'Alexander', '0', '1950-10-05', 'S', 'NULL', 'M', 'dakota15@adventure-works.com', '20000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '3', '5966 Sepulveda Ct.', 'NULL', '118-555-0177', '2013-06-06', '10+ Miles'], ['24652', '614', 'AW00024652', 'NULL', 'Luke', 'NULL', 'Butler', '0', '1950-12-14', 'S', 'NULL', 'M', 'luke3@adventure-works.com', '20000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '4', '7578 Sierra Road', '#905', '329-555-0160', '2013-02-01', '10+ Miles'], ['24653', '626', 'AW00024653', 'NULL', 'Victoria', 'NULL', 'Barnes', '0', '1951-10-14', 'M', 'NULL', 'F', 'victoria51@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '3322 Haven Hill Drive', 'NULL', '534-555-0157', '2013-07-29', '10+ Miles'], ['24654', '329', 'AW00024654', 'NULL', 'Paige', 'NULL', 'Simmons', '0', '1952-04-11', 'S', 'NULL', 'F', 'paige14@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '4', '8486 Kipling Court', 'NULL', '181-555-0142', '2013-07-10', '2-5 Miles'], ['24655', '301', 'AW00024655', 'NULL', 'Taylor', 'NULL', 'Sanders', '0', '1952-05-15', 'M', 'NULL', 'F', 'taylor24@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '7338 Green St.', 'NULL', '595-555-0185', '2013-09-20', '10+ Miles'], ['24656', '310', 'AW00024656', 'NULL', 'Julia', 'NULL', 'Moore', '0', '1951-12-31', 'M', 'NULL', 'F', 'julia30@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '8955 Miller Dr.', 'NULL', '730-555-0181', '2013-05-20', '2-5 Miles'], ['24657', '642', 'AW00024657', 'NULL', 'Alyssa', 'F', 'Brooks', '0', '1952-12-02', 'M', 'NULL', 'F', 'alyssa44@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '907 Ameno Road', 'NULL', '226-555-0117', '2013-11-27', '10+ Miles'], ['24658', '642', 'AW00024658', 'NULL', 'Jenna', 'NULL', 'Perez', '0', '1969-05-09', 'M', 'NULL', 'F', 'jenna11@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '2367 Vancouver Way', 'NULL', '634-555-0184', '2013-05-22', '2-5 Miles'], ['24659', '66', 'AW00024659', 'NULL', 'Kaitlyn', 'M', 'Hill', '0', '1952-07-31', 'M', 'NULL', 'F', 'kaitlyn20@adventure-works.com', '70000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '4001 Camino Solano', 'NULL', '780-555-0151', '2013-09-27', '2-5 Miles'], ['24660', '383', 'AW00024660', 'NULL', 'Anna', 'NULL', 'Perry', '0', '1953-05-26', 'S', 'NULL', 'F', 'anna32@adventure-works.com', '70000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '67 Warren Street', 'NULL', '608-555-0125', '2013-02-01', '2-5 Miles'], ['24661', '50', 'AW00024661', 'NULL', 'Madison', 'NULL', 'Jones', '0', '1952-12-19', 'S', 'NULL', 'F', 'madison3@adventure-works.com', '70000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '7289 Ulfinian Way', 'NULL', '132-555-0135', '2011-12-02', '2-5 Miles'], ['24662', '372', 'AW00024662', 'NULL', 'Arianna', 'W', 'Price', '0', '1952-11-20', 'S', 'NULL', 'F', 'arianna0@adventure-works.com', '70000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '9768 Brandywine Way', 'NULL', '447-555-0154', '2013-02-13', '2-5 Miles'], ['24663', '49', 'AW00024663', 'NULL', 'Ebony', 'NULL', 'Fernandez', '0', '1953-08-17', 'S', 'NULL', 'F', 'ebony16@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6228 Palm Avenue', 'NULL', '454-555-0184', '2014-01-05', '10+ Miles'], ['24664', '51', 'AW00024664', 'NULL', 'Ian', 'M', 'Washington', '0', '1970-05-06', 'M', 'NULL', 'M', 'ian54@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4444 Buckingham Dr.', 'NULL', '135-555-0185', '2011-12-27', '2-5 Miles'], ['24665', '56', 'AW00024665', 'NULL', 'Angela', 'NULL', 'Morgan', '0', '1953-10-04', 'S', 'NULL', 'F', 'angela39@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '9235 Logan Court', 'NULL', '829-555-0126', '2013-07-31', '10+ Miles'], ['24666', '60', 'AW00024666', 'NULL', 'Hannah', 'M', 'Martinez', '0', '1953-11-08', 'M', 'NULL', 'F', 'hannah15@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '750 Cataline Avenue', 'NULL', '130-555-0114', '2011-12-14', '2-5 Miles'], ['24667', '637', 'AW00024667', 'NULL', 'Chloe', 'NULL', 'Diaz', '0', '1953-12-22', 'S', 'NULL', 'F', 'chloe87@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6062 Sudan Loop', 'NULL', '699-555-0199', '2014-01-08', '10+ Miles'], ['24668', '312', 'AW00024668', 'NULL', 'Katrina', 'B', 'Xu', '0', '1953-08-19', 'M', 'NULL', 'F', 'katrina4@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1509 American Beauty Dr.', 'NULL', '424-555-0118', '2013-07-30', '2-5 Miles'], ['24669', '361', 'AW00024669', 'NULL', 'Xavier', 'M', 'Parker', '0', '1954-03-19', 'M', 'NULL', 'M', 'xavier39@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5098 N. Civic Dr', 'NULL', '761-555-0130', '2013-02-05', '10+ Miles'], ['24670', '369', 'AW00024670', 'NULL', 'Alexandria', 'NULL', 'Ross', '0', '1953-08-30', 'S', 'NULL', 'F', 'alexandria4@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8280 Sequoia Court', '# 1699', '867-555-0177', '2013-03-26', '10+ Miles'], ['24671', '56', 'AW00024671', 'NULL', 'Christian', 'NULL', 'Perry', '0', '1960-11-10', 'M', 'NULL', 'M', 'christian22@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '716 Anchor Drive', 'NULL', '292-555-0195', '2011-12-19', '2-5 Miles'], ['24672', '642', 'AW00024672', 'NULL', 'Jeremy', 'NULL', 'Cook', '0', '1955-04-13', 'M', 'NULL', 'M', 'jeremy41@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9875 W. Holly Dr.', 'NULL', '758-555-0148', '2014-01-27', '10+ Miles'], ['24673', '345', 'AW00024673', 'NULL', 'Paige', 'NULL', 'Cox', '0', '1966-05-04', 'M', 'NULL', 'F', 'paige34@adventure-works.com', '70000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4770 Detroit Avenue', 'NULL', '156-555-0162', '2013-03-27', '1-2 Miles'], ['24674', '372', 'AW00024674', 'NULL', 'Dylan', 'D', 'Kumar', '0', '1955-02-24', 'M', 'NULL', 'M', 'dylan27@adventure-works.com', '70000.00', '5', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3796 Lindley Ct', 'NULL', '716-555-0155', '2013-03-07', '1-2 Miles'], ['24675', '383', 'AW00024675', 'NULL', 'Jackson', 'NULL', 'Nelson', '0', '1955-01-01', 'S', 'NULL', 'M', 'jackson39@adventure-works.com', '70000.00', '5', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1898 South St.', 'NULL', '884-555-0150', '2013-03-04', '10+ Miles'], ['24676', '637', 'AW00024676', 'NULL', 'Jeremy', 'NULL', 'Roberts', '0', '1955-12-09', 'M', 'NULL', 'M', 'jeremy15@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '081, boulevard du Montparnasse', 'NULL', '517-555-0176', '2013-07-06', '2-5 Miles'], ['24677', '302', 'AW00024677', 'Mr.', 'Blake', 'D', 'Lee', '0', '1961-02-11', 'M', 'NULL', 'M', 'blake22@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '9495 Limewood Place', 'NULL', '535-555-0111', '2013-05-14', '2-5 Miles'], ['24678', '312', 'AW00024678', 'NULL', 'Nathan', 'NULL', 'Long', '0', '1967-02-19', 'S', 'NULL', 'M', 'nathan5@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '4161 North Sixth Street', 'NULL', '957-555-0196', '2013-08-12', '10+ Miles'], ['24679', '347', 'AW00024679', 'NULL', 'Wyatt', 'S', 'Hernandez', '0', '1955-08-06', 'M', 'NULL', 'M', 'wyatt28@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7103 Quiet Place Drive', 'NULL', '709-555-0191', '2013-11-17', '10+ Miles'], ['24680', '359', 'AW00024680', 'NULL', 'Thomas', 'L', 'Flores', '0', '1956-03-18', 'S', 'NULL', 'M', 'thomas14@adventure-works.com', '80000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '6975 Olivera Road', 'NULL', '229-555-0184', '2013-03-21', '1-2 Miles'], ['24681', '368', 'AW00024681', 'NULL', 'Arianna', 'N', 'Murphy', '0', '1955-11-03', 'S', 'NULL', 'F', 'arianna37@adventure-works.com', '80000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '4205 Seabourne Ct', 'NULL', '236-555-0145', '2013-03-06', '1-2 Miles'], ['24682', '56', 'AW00024682', 'NULL', 'Faith', 'NULL', 'Rogers', '0', '1957-06-20', 'M', 'NULL', 'F', 'faith35@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6465 Gary Drive', 'NULL', '624-555-0111', '2013-10-24', '10+ Miles'], ['24683', '302', 'AW00024683', 'NULL', 'Shannon', 'NULL', 'Alonso', '0', '1962-05-15', 'M', 'NULL', 'M', 'shannon29@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9600 Sweeney Road', 'NULL', '838-555-0182', '2013-07-06', '2-5 Miles'], ['24684', '326', 'AW00024684', 'NULL', 'Charles', 'L', 'Martin', '0', '1956-10-18', 'M', 'NULL', 'M', 'charles18@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6177 Arleda Lane', 'NULL', '305-555-0189', '2013-07-01', '2-5 Miles'], ['24685', '336', 'AW00024685', 'NULL', 'Jordan', 'E', 'Kumar', '0', '1956-11-30', 'M', 'NULL', 'M', 'jordan24@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4240 El Campo Ct', 'NULL', '993-555-0127', '2013-07-23', '2-5 Miles'], ['24686', '359', 'AW00024686', 'NULL', 'Melissa', 'N', 'Murphy', '0', '1958-01-15', 'S', 'NULL', 'F', 'melissa37@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3605 Haynes Court', 'NULL', '797-555-0173', '2014-01-23', '10+ Miles'], ['24687', '616', 'AW00024687', 'NULL', 'Joan', 'A', 'Ross', '0', '1958-02-15', 'S', 'NULL', 'F', 'joan5@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6916 Merry Circle', 'NULL', '686-555-0131', '2013-06-09', '10+ Miles'], ['24688', '359', 'AW00024688', 'NULL', 'Ashley', 'NULL', 'Long', '0', '1964-01-31', 'M', 'NULL', 'F', 'ashley36@adventure-works.com', '60000.00', '3', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '6565 Bellwood Dr.', 'NULL', '819-555-0110', '2013-08-27', '2-5 Miles'], ['24689', '229', 'AW00024689', 'NULL', 'Sandra', 'NULL', 'Ye', '0', '1979-07-26', 'M', 'NULL', 'F', 'sandra16@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '301 Sandy Ln.', 'NULL', '1 (11) 500 555-0125', '2013-10-22', '1-2 Miles'], ['24690', '155', 'AW00024690', 'NULL', 'Christian', 'NULL', 'Long', '0', '1985-09-07', 'S', 'NULL', 'M', 'christian24@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Heidestieg Straße 8664', 'NULL', '1 (11) 500 555-0111', '2013-10-23', '1-2 Miles'], ['24691', '147', 'AW00024691', 'NULL', 'Meredith', 'G', 'Carlson', '0', '1985-11-14', 'M', 'NULL', 'F', 'meredith42@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Herzogstr 2908', 'NULL', '1 (11) 500 555-0181', '2013-05-27', '1-2 Miles'], ['24692', '147', 'AW00024692', 'NULL', 'Laura', 'W', 'He', '0', '1985-09-05', 'M', 'NULL', 'F', 'laura24@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Postfach 90 92 92', 'NULL', '1 (11) 500 555-0129', '2013-12-20', '1-2 Miles'], ['24693', '208', 'AW00024693', 'NULL', 'Alexandra', 'M', 'Rogers', '0', '1985-04-14', 'S', 'NULL', 'F', 'alexandra8@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '10570, rue Lamarck', 'NULL', '1 (11) 500 555-0143', '2013-04-12', '2-5 Miles'], ['24694', '126', 'AW00024694', 'NULL', 'Theodore', 'NULL', 'Carlson', '0', '1984-04-04', 'S', 'NULL', 'M', 'theodore19@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Charlottenstr 39878', 'NULL', '1 (11) 500 555-0146', '2013-05-08', '1-2 Miles'], ['24695', '223', 'AW00024695', 'NULL', 'Omar', 'L', 'Zhou', '0', '1984-05-01', 'S', 'NULL', 'M', 'omar8@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '4, rue de la Cavalerie', 'NULL', '1 (11) 500 555-0165', '2013-03-10', '1-2 Miles'], ['24696', '138', 'AW00024696', 'NULL', 'Tasha', 'D', 'Xie', '0', '1984-04-24', 'S', 'NULL', 'F', 'tasha3@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Hüttenstr 9005', 'NULL', '1 (11) 500 555-0167', '2013-09-01', '1-2 Miles'], ['24697', '255', 'AW00024697', 'NULL', 'Manuel', 'A', 'Rodriguez', '0', '1980-05-13', 'M', 'NULL', 'M', 'manuel17@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9549 Jomar Drive', 'NULL', '1 (11) 500 555-0127', '2013-10-08', '0-1 Miles'], ['24698', '131', 'AW00024698', 'NULL', 'Blake', 'E', 'Carter', '0', '1978-11-20', 'S', 'NULL', 'M', 'blake37@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Potsdamer Straße 939', 'NULL', '1 (11) 500 555-0155', '2013-10-04', '2-5 Miles'], ['24699', '269', 'AW00024699', 'NULL', 'Rebekah', 'NULL', 'Rubio', '0', '1978-04-12', 'S', 'NULL', 'F', 'rebekah41@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '6514 Morello Ave.', 'NULL', '1 (11) 500 555-0196', '2013-12-10', '1-2 Miles'], ['24700', '211', 'AW00024700', 'NULL', 'Gary', 'NULL', 'Alvarez', '0', '1978-09-25', 'S', 'NULL', 'M', 'gary15@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '81, route de Marseille', 'NULL', '1 (11) 500 555-0182', '2013-10-02', '2-5 Miles'], ['24701', '194', 'AW00024701', 'NULL', 'Marco', 'NULL', 'Fernandez', '0', '1984-04-10', 'M', 'NULL', 'M', 'marco16@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8810, rue des Rosiers', 'NULL', '1 (11) 500 555-0158', '2013-08-19', '1-2 Miles'], ['24702', '249', 'AW00024702', 'NULL', 'Kari', 'D', 'Ramos', '0', '1978-12-25', 'S', 'NULL', 'F', 'kari38@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '4055 Hitchcock', 'NULL', '1 (11) 500 555-0168', '2013-11-02', '0-1 Miles'], ['24703', '269', 'AW00024703', 'NULL', 'Jonathan', 'A', 'White', '0', '1978-01-05', 'M', 'NULL', 'M', 'jonathan66@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '3973 Via Cordona Ln.', 'NULL', '1 (11) 500 555-0185', '2013-04-04', '1-2 Miles'], ['24704', '172', 'AW00024704', 'NULL', 'Allen', 'NULL', 'Schmidt', '0', '1983-03-10', 'M', 'NULL', 'M', 'allen8@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Galeriestr 67', 'NULL', '1 (11) 500 555-0118', '2014-01-28', '1-2 Miles'], ['24705', '252', 'AW00024705', 'Mr.', 'Daniel', 'NULL', 'Shimshoni', '0', '1977-09-15', 'S', 'NULL', 'F', 'daniel1@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5690 Morgan Territory Rd', 'NULL', '151-555-0100', '2013-10-18', '2-5 Miles'], ['24706', '156', 'AW00024706', 'NULL', 'Virginia', 'J', 'Rana', '0', '1977-08-07', 'S', 'NULL', 'F', 'virginia13@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Postfach 11 00 99', 'NULL', '1 (11) 500 555-0122', '2013-10-25', '1-2 Miles'], ['24707', '207', 'AW00024707', 'NULL', 'Shaun', 'NULL', 'Pal', '0', '1978-02-15', 'S', 'NULL', 'M', 'shaun13@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0140', '2013-10-21', '2-5 Miles'], ['24708', '207', 'AW00024708', 'NULL', 'Corey', 'A', 'Chander', '0', '1983-07-24', 'S', 'NULL', 'M', 'corey14@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1931, boulevard Beau Marchais', 'NULL', '1 (11) 500 555-0151', '2013-11-17', '2-5 Miles'], ['24709', '184', 'AW00024709', 'NULL', 'Nancy', 'NULL', 'Prasad', '0', '1983-09-15', 'M', 'NULL', 'F', 'nancy12@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '155, avenue Foch', 'NULL', '1 (11) 500 555-0154', '2013-08-29', '0-1 Miles'], ['24710', '124', 'AW00024710', 'NULL', 'Brandy', 'NULL', 'Malhotra', '0', '1983-06-11', 'M', 'NULL', 'F', 'brandy0@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Heiderplatz 789', 'Leiter der Abteilung', '1 (11) 500 555-0121', '2013-03-13', '1-2 Miles'], ['24711', '138', 'AW00024711', 'NULL', 'Rebekah', 'L', 'Hernandez', '0', '1977-10-20', 'S', 'NULL', 'F', 'rebekah24@adventure-works.com', '40000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '8783 Detroit Ave.', 'NULL', '1 (11) 500 555-0158', '2013-03-13', '0-1 Miles'], ['24712', '233', 'AW00024712', 'NULL', 'Carly', 'R', 'Kumar', '0', '1977-10-02', 'M', 'NULL', 'F', 'carly7@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2546 Woodchuck Pl', '# 2', '1 (11) 500 555-0138', '2013-11-02', '1-2 Miles'], ['24713', '207', 'AW00024713', 'NULL', 'Jeremy', 'NULL', 'Brooks', '0', '1922-01-02', 'S', 'NULL', 'M', 'jeremy33@adventure-works.com', '10000.00', '4', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '107, rue des Bouchers', 'NULL', '1 (11) 500 555-0185', '2013-02-27', '1-2 Miles'], ['24714', '237', 'AW00024714', 'NULL', 'Whitney', 'C', 'Rodriguez', '0', '1982-09-21', 'S', 'NULL', 'F', 'whitney18@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '2513 Buskirk Avenue', 'NULL', '1 (11) 500 555-0190', '2014-01-20', '1-2 Miles'], ['24715', '223', 'AW00024715', 'NULL', 'Kelli', 'NULL', 'Nath', '0', '1976-08-31', 'S', 'NULL', 'F', 'kelli41@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '390, avenue de Malakoff', 'NULL', '1 (11) 500 555-0183', '2013-10-05', '0-1 Miles'], ['24716', '160', 'AW00024716', 'NULL', 'Colin', 'NULL', 'Liu', '0', '1977-04-15', 'M', 'NULL', 'M', 'colin4@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Postfach 2 77 77', 'NULL', '1 (11) 500 555-0159', '2013-09-29', '1-2 Miles'], ['24717', '121', 'AW00024717', 'NULL', 'Damien', 'L', 'Anand', '0', '1976-12-17', 'S', 'NULL', 'M', 'damien37@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Rehstr 4242', 'NULL', '1 (11) 500 555-0144', '2013-10-26', '2-5 Miles'], ['24718', '145', 'AW00024718', 'NULL', 'Terrence', 'NULL', 'Black', '0', '1982-06-04', 'S', 'NULL', 'M', 'terrence21@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Nonnendamm 9', 'NULL', '1 (11) 500 555-0172', '2013-04-07', '1-2 Miles'], ['24719', '132', 'AW00024719', 'NULL', 'Susan', 'K', 'Zheng', '0', '1976-10-12', 'M', 'NULL', 'F', 'susan30@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Charlottenstr 848', 'NULL', '1 (11) 500 555-0114', '2013-10-20', '0-1 Miles'], ['24720', '233', 'AW00024720', 'NULL', 'Deanna', 'K', 'Alvarez', '0', '1982-10-30', 'S', 'NULL', 'F', 'deanna30@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9126 Jamie Way', 'NULL', '1 (11) 500 555-0131', '2013-06-04', '1-2 Miles'], ['24721', '253', 'AW00024721', 'NULL', 'Mandy', 'NULL', 'Zheng', '0', '1977-05-05', 'M', 'NULL', 'F', 'mandy21@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1510 Bidwell Street', 'NULL', '1 (11) 500 555-0184', '2013-09-19', '1-2 Miles'], ['24722', '162', 'AW00024722', 'NULL', 'Hunter', 'NULL', 'Ross', '0', '1975-09-12', 'S', 'NULL', 'M', 'hunter0@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Parkstr 841', 'NULL', '1 (11) 500 555-0139', '2013-09-17', '1-2 Miles'], ['24723', '177', 'AW00024723', 'NULL', 'Shawna', 'W', 'Pal', '0', '1976-02-04', 'M', 'NULL', 'F', 'shawna13@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Postfach 8 66 22', 'NULL', '1 (11) 500 555-0151', '2013-04-23', '0-1 Miles'], ['24724', '201', 'AW00024724', 'NULL', 'Alfredo', 'J', 'Gutierrez', '0', '1976-06-12', 'M', 'NULL', 'M', 'alfredo12@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2, cours Mirabeau', 'NULL', '1 (11) 500 555-0170', '2013-09-29', '1-2 Miles'], ['24725', '542', 'AW00024725', 'NULL', 'Bailey', 'R', 'Young', '0', '1986-05-01', 'M', 'NULL', 'F', 'bailey37@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9597 Sweeney Road', 'NULL', '158-555-0122', '2013-05-05', '1-2 Miles'], ['24726', '552', 'AW00024726', 'NULL', 'Marissa', 'NULL', 'Hughes', '0', '1980-12-03', 'M', 'NULL', 'F', 'marissa8@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6913 Island Drive', 'NULL', '397-555-0181', '2013-09-02', '1-2 Miles'], ['24727', '612', 'AW00024727', 'NULL', 'Mallory', 'S', 'Jimenez', '0', '1979-08-31', 'M', 'NULL', 'F', 'mallory13@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1506 Grading Way', '#62', '319-555-0193', '2013-12-28', '1-2 Miles'], ['24728', '360', 'AW00024728', 'NULL', 'Julia', 'J', 'Diaz', '0', '1980-02-08', 'S', 'NULL', 'F', 'julia88@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '1460 Jasper Court', 'NULL', '524-555-0149', '2013-08-24', '0-1 Miles'], ['24729', '55', 'AW00024729', 'NULL', 'Chase', 'J', 'Murphy', '0', '1980-01-23', 'S', 'NULL', 'M', 'chase15@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '6473 Clayton Way', 'NULL', '445-555-0193', '2013-05-19', '0-1 Miles'], ['24730', '58', 'AW00024730', 'NULL', 'Anthony', 'M', 'Moore', '0', '1981-05-02', 'M', 'NULL', 'M', 'anthony17@adventure-works.com', '40000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9818 Northgate Road', 'NULL', '289-555-0172', '2013-05-17', '0-1 Miles'], ['24731', '62', 'AW00024731', 'NULL', 'Evan', 'R', 'Mitchell', '0', '1981-04-12', 'M', 'NULL', 'M', 'evan36@adventure-works.com', '40000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7791 Mountain View Pl.', 'NULL', '787-555-0174', '2013-12-04', '0-1 Miles'], ['24732', '546', 'AW00024732', 'NULL', 'Wyatt', 'L', 'Davis', '0', '1941-11-21', 'M', 'NULL', 'M', 'wyatt5@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1025 Yosemite Dr.', 'NULL', '809-555-0144', '2013-08-05', '2-5 Miles'], ['24733', '52', 'AW00024733', 'NULL', 'Luke', 'L', 'Flores', '0', '1971-12-21', 'S', 'NULL', 'M', 'luke1@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '5050 Riverside Drive', 'NULL', '188-555-0123', '2013-12-04', '0-1 Miles'], ['24734', '612', 'AW00024734', 'NULL', 'Jack', 'L', 'Turner', '0', '1972-04-03', 'S', 'NULL', 'M', 'jack40@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6850 Shadow Creek Dr.', 'NULL', '179-555-0174', '2013-03-17', '1-2 Miles'], ['24735', '307', 'AW00024735', 'NULL', 'Madison', 'S', 'Powell', '0', '1971-11-11', 'S', 'NULL', 'F', 'madison44@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6819 Terry Lynn Lane', 'NULL', '406-555-0174', '2013-03-14', '1-2 Miles'], ['24736', '543', 'AW00024736', 'NULL', 'Savannah', 'C', 'Ramirez', '0', '1959-07-18', 'S', 'NULL', 'F', 'savannah5@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3986 Spring Hill Road', 'NULL', '794-555-0122', '2013-05-31', '1-2 Miles'], ['24737', '633', 'AW00024737', 'NULL', 'Angela', 'NULL', 'Bailey', '0', '1960-04-10', 'S', 'NULL', 'F', 'angela42@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3847 Mt. Diablo St', 'NULL', '326-555-0119', '2013-04-02', '1-2 Miles'], ['24738', '325', 'AW00024738', 'NULL', 'Hannah', 'L', 'Davis', '0', '1965-09-13', 'M', 'NULL', 'F', 'hannah6@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8399 Garaventa Dr.', 'NULL', '122-555-0199', '2013-08-05', '1-2 Miles'], ['24739', '343', 'AW00024739', 'NULL', 'Dalton', 'NULL', 'Sanders', '0', '1959-09-10', 'M', 'NULL', 'M', 'dalton73@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1794 Portside Ct.', 'NULL', '389-555-0169', '2013-08-07', '0-1 Miles'], ['24740', '609', 'AW00024740', 'NULL', 'Shelby', 'NULL', 'Cooper', '0', '1961-01-10', 'S', 'NULL', 'F', 'shelby9@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '8974 F Mt Hood Circle', 'NULL', '440-555-0193', '2013-05-03', '1-2 Miles'], ['24741', '644', 'AW00024741', 'NULL', 'Brittany', 'NULL', 'Perry', '0', '1960-12-06', 'S', 'NULL', 'F', 'brittany6@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5923 Bonanza', 'NULL', '531-555-0115', '2013-01-29', '0-1 Miles'], ['24742', '316', 'AW00024742', 'NULL', 'Rachel', 'L', 'Ramirez', '0', '1960-09-10', 'S', 'NULL', 'F', 'rachel43@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3422 Meadowvale Court', 'NULL', '338-555-0183', '2013-03-28', '1-2 Miles'], ['24743', '641', 'AW00024743', 'NULL', 'Chloe', 'A', 'Coleman', '0', '1961-11-23', 'S', 'NULL', 'F', 'chloe72@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3989 Crestwood Circle', 'NULL', '253-555-0132', '2013-08-15', '0-1 Miles'], ['24744', '49', 'AW00024744', 'NULL', 'Brendan', 'S', 'Yuan', '0', '1961-11-12', 'M', 'NULL', 'M', 'brendan5@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3949 Eastgate Ave.', 'NULL', '429-555-0185', '2013-10-09', '1-2 Miles'], ['24745', '352', 'AW00024745', 'NULL', 'Jennifer', 'J', 'Ward', '0', '1962-04-09', 'S', 'NULL', 'F', 'jennifer66@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4992 Yorba Linda', 'NULL', '254-555-0176', '2013-07-25', '0-1 Miles'], ['24746', '52', 'AW00024746', 'NULL', 'Ian', 'T', 'Russell', '0', '1963-02-11', 'S', 'NULL', 'M', 'ian60@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9899 Scenic Ct.', 'NULL', '592-555-0154', '2013-02-03', '1-2 Miles'], ['24747', '300', 'AW00024747', 'NULL', 'Dakota', 'L', 'Powell', '0', '1963-02-22', 'S', 'NULL', 'M', 'dakota7@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7738 Thunderbird Dr.', 'NULL', '842-555-0184', '2014-01-13', '1-2 Miles'], ['24748', '50', 'AW00024748', 'NULL', 'Jose', 'NULL', 'Collins', '0', '1962-10-24', 'M', 'NULL', 'M', 'jose40@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7967 Panoramic Ave.', 'NULL', '493-555-0113', '2013-02-23', '0-1 Miles'], ['24749', '311', 'AW00024749', 'NULL', 'Marshall', 'C', 'Guo', '0', '1979-09-20', 'M', 'NULL', 'M', 'marshall16@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6340 Olivera Rd', 'NULL', '704-555-0125', '2013-09-24', '1-2 Miles'], ['24750', '352', 'AW00024750', 'NULL', 'Destiny', 'A', 'Barnes', '0', '1963-05-13', 'M', 'NULL', 'F', 'destiny51@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2519 Gill Ct.', 'NULL', '712-555-0114', '2013-10-08', '1-2 Miles'], ['24751', '616', 'AW00024751', 'NULL', 'Angela', 'J', 'Howard', '0', '1973-09-12', 'M', 'NULL', 'F', 'angela37@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1836 Westwood Lane', 'NULL', '566-555-0149', '2013-06-28', '1-2 Miles'], ['24752', '609', 'AW00024752', 'NULL', 'Cameron', 'H', 'Jackson', '0', '1964-05-01', 'S', 'NULL', 'M', 'cameron30@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3319 Pimlico Drive', 'NULL', '358-555-0181', '2013-05-22', '1-2 Miles'], ['24753', '316', 'AW00024753', 'NULL', 'Eduardo', 'O', 'Jenkins', '0', '1963-12-22', 'S', 'NULL', 'M', 'eduardo51@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '529 Eastgate', 'NULL', '846-555-0140', '2013-06-06', '1-2 Miles'], ['24754', '383', 'AW00024754', 'NULL', 'Haley', 'C', 'Rivera', '0', '1969-12-01', 'M', 'NULL', 'F', 'haley8@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5430 Ranch Dr.', 'NULL', '129-555-0131', '2013-08-11', '1-2 Miles'], ['24755', '59', 'AW00024755', 'NULL', 'Sean', 'F', 'Scott', '0', '1963-10-01', 'M', 'NULL', 'M', 'sean44@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5712 Gladstone Dr.', 'NULL', '162-555-0184', '2013-08-10', '0-1 Miles'], ['24756', '329', 'AW00024756', 'NULL', 'Carlos', 'NULL', 'Bell', '0', '1969-08-01', 'M', 'NULL', 'M', 'carlos16@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2785 Terrace Dr.', 'NULL', '119-555-0144', '2013-08-19', '1-2 Miles'], ['24757', '41', 'AW00024757', 'NULL', 'Alisha', 'G', 'She', '0', '1969-01-06', 'M', 'NULL', 'F', 'alisha24@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8892 Oak Grove Road', 'NULL', '751-555-0159', '2011-12-25', '1-2 Miles'], ['24758', '623', 'AW00024758', 'NULL', 'Gabriella', 'K', 'Adams', '0', '1970-12-07', 'M', 'NULL', 'F', 'gabriella39@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '9426 Georgia Street', 'NULL', '892-555-0196', '2013-10-06', '0-1 Miles'], ['24759', '68', 'AW00024759', 'NULL', 'Brooke', 'R', 'Stewart', '0', '1964-10-14', 'S', 'NULL', 'F', 'brooke21@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '8212 String Dr', 'NULL', '350-555-0125', '2011-12-15', '1-2 Miles'], ['24760', '553', 'AW00024760', 'NULL', 'Julian', 'L', 'Coleman', '0', '1965-02-02', 'S', 'NULL', 'M', 'julian7@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7144 Flagstone Way', 'NULL', '543-555-0181', '2013-08-12', '1-2 Miles'], ['24761', '307', 'AW00024761', 'NULL', 'Lawrence', 'NULL', 'Rubio', '0', '1964-11-21', 'S', 'NULL', 'M', 'lawrence20@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7441 Clayton Rd', 'NULL', '774-555-0140', '2013-08-27', '1-2 Miles'], ['24762', '612', 'AW00024762', 'NULL', 'Warren', 'NULL', 'Xu', '0', '1983-05-25', 'S', 'NULL', 'M', 'warren28@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9958 Ronda Ct.', 'NULL', '500-555-0168', '2013-08-15', '1-2 Miles'], ['24763', '66', 'AW00024763', 'NULL', 'Fernando', 'NULL', 'Hill', '0', '1979-04-20', 'S', 'NULL', 'M', 'fernando28@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '7391 Leslie Avenue', 'NULL', '928-555-0122', '2013-04-13', '0-1 Miles'], ['24764', '616', 'AW00024764', 'NULL', 'Abigail', 'G', 'Hughes', '0', '1979-02-01', 'M', 'NULL', 'F', 'abigail36@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3770 Viewpoint Ct', 'NULL', '419-555-0196', '2013-08-14', '1-2 Miles'], ['24765', '637', 'AW00024765', 'NULL', 'Morgan', 'A', 'Alexander', '0', '1978-08-26', 'S', 'NULL', 'F', 'morgan88@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8568 San Vincente Drive', 'NULL', '867-555-0192', '2013-10-06', '1-2 Miles'], ['24766', '642', 'AW00024766', 'NULL', 'Christian', 'A', 'White', '0', '1979-01-15', 'M', 'NULL', 'M', 'christian48@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8115 Sunview Terrace', 'NULL', '597-555-0170', '2013-07-25', '1-2 Miles'], ['24767', '644', 'AW00024767', 'NULL', 'Lauren', 'NULL', 'Jackson', '0', '1984-03-06', 'M', 'NULL', 'F', 'lauren30@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '537 Panoramic Avenue', 'NULL', '144-555-0113', '2013-08-31', '0-1 Miles'], ['24768', '310', 'AW00024768', 'NULL', 'Jordan', 'NULL', 'Ross', '0', '1979-04-13', 'M', 'NULL', 'M', 'jordan0@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '7232 Bales Court', 'NULL', '175-555-0110', '2013-04-23', '0-1 Miles'], ['24769', '310', 'AW00024769', 'NULL', 'Brendan', 'L', 'Lal', '0', '1984-07-07', 'S', 'NULL', 'M', 'brendan7@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '651 Bridgeview St', 'NULL', '660-555-0111', '2013-10-23', '1-2 Miles'], ['24770', '374', 'AW00024770', 'NULL', 'Isaac', 'A', 'Wright', '0', '1979-05-13', 'M', 'NULL', 'M', 'isaac43@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2842 Inverness Drive', 'NULL', '385-555-0162', '2013-08-02', '1-2 Miles'], ['24771', '52', 'AW00024771', 'NULL', 'Samuel', 'M', 'Harris', '0', '1983-08-16', 'M', 'NULL', 'M', 'samuel70@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3240 Turner Dr.', 'NULL', '227-555-0165', '2013-03-02', '1-2 Miles'], ['24772', '347', 'AW00024772', 'NULL', 'Greg', 'NULL', 'Russell', '0', '1983-05-19', 'M', 'NULL', 'M', 'greg7@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7964 Concord Ct', 'NULL', '329-555-0171', '2013-04-10', '1-2 Miles'], ['24773', '69', 'AW00024773', 'NULL', 'Grace', 'H', 'Stewart', '0', '1976-12-20', 'M', 'NULL', 'F', 'grace25@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6841 Curletto Dr.', 'NULL', '116-555-0186', '2013-04-16', '1-2 Miles'], ['24774', '548', 'AW00024774', 'NULL', 'Xavier', 'NULL', 'Gonzales', '0', '1976-09-18', 'S', 'NULL', 'M', 'xavier57@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4372 B Way', 'NULL', '141-555-0184', '2013-07-10', '1-2 Miles'], ['24775', '310', 'AW00024775', 'NULL', 'Alexandra', 'M', 'Alexander', '0', '1977-06-25', 'M', 'NULL', 'F', 'alexandra40@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9531 Harrison Street', 'NULL', '588-555-0133', '2014-01-27', '1-2 Miles'], ['24776', '361', 'AW00024776', 'NULL', 'Samantha', 'F', 'Perry', '0', '1977-04-03', 'M', 'NULL', 'F', 'samantha33@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '833 Boxwood', 'NULL', '504-555-0179', '2013-02-20', '1-2 Miles'], ['24777', '355', 'AW00024777', 'NULL', 'Eric', 'NULL', 'Adams', '0', '1982-01-30', 'M', 'NULL', 'M', 'eric57@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '2840 Oak Wood Court', 'NULL', '136-555-0115', '2013-02-12', '0-1 Miles'], ['24778', '52', 'AW00024778', 'NULL', 'Sean', 'T', 'Baker', '0', '1977-04-12', 'M', 'NULL', 'M', 'sean39@adventure-works.com', '70000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6132 Providence Dr.', 'NULL', '957-555-0110', '2012-01-02', '0-1 Miles'], ['24779', '627', 'AW00024779', 'NULL', 'Morgan', 'NULL', 'Lee', '0', '1976-11-03', 'M', 'NULL', 'F', 'morgan43@adventure-works.com', '70000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9686 Willbrook Court', 'NULL', '507-555-0173', '2013-03-24', '1-2 Miles'], ['24780', '631', 'AW00024780', 'NULL', 'Courtney', 'B', 'Hall', '0', '1977-01-17', 'M', 'NULL', 'F', 'courtney18@adventure-works.com', '70000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2306 El Pueblo Pl.', 'NULL', '657-555-0184', '2013-03-07', '0-1 Miles'], ['24781', '41', 'AW00024781', 'NULL', 'Carmen', 'J', 'Garcia', '0', '1983-10-19', 'M', 'NULL', 'F', 'carmen0@adventure-works.com', '50000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1936 Balance Ct', 'NULL', '960-555-0157', '2012-01-04', '1-2 Miles'], ['24782', '300', 'AW00024782', 'NULL', 'Nicole', 'R', 'Morris', '0', '1977-08-06', 'M', 'NULL', 'F', 'nicole27@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7040 Isabel Dr.', 'NULL', '755-555-0149', '2013-08-04', '2-5 Miles'], ['24783', '307', 'AW00024783', 'NULL', 'Barry', 'A', 'Raman', '0', '1978-02-01', 'M', 'NULL', 'M', 'barry13@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9808 Deerfield Dr.', 'NULL', '171-555-0112', '2013-09-17', '2-5 Miles'], ['24784', '335', 'AW00024784', 'NULL', 'Megan', 'NULL', 'Kelly', '0', '1977-11-09', 'S', 'NULL', 'F', 'megan48@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '9906 Oak Grove Road', 'NULL', '119-555-0176', '2013-04-03', '0-1 Miles'], ['24785', '623', 'AW00024785', 'NULL', 'Cody', 'A', 'Morris', '0', '1981-02-24', 'M', 'NULL', 'M', 'cody18@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5362 Ashley Way', 'NULL', '979-555-0180', '2013-09-18', '0-1 Miles'], ['24786', '60', 'AW00024786', 'NULL', 'Haley', 'M', 'Adams', '0', '1981-01-20', 'M', 'NULL', 'F', 'haley52@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8571 Mehaffey Way', 'NULL', '665-555-0117', '2012-01-16', '2-5 Miles'], ['24787', '634', 'AW00024787', 'NULL', 'Andrea', 'G', 'Watson', '0', '1976-06-23', 'M', 'NULL', 'F', 'andrea9@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3033 F St.', 'NULL', '308-555-0187', '2013-09-11', '2-5 Miles'], ['24788', '614', 'AW00024788', 'NULL', 'Ashley', 'NULL', 'Bennett', '0', '1976-03-31', 'M', 'NULL', 'F', 'ashley27@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1860 Holiday Hill Dr.', 'NULL', '675-555-0172', '2013-09-15', '0-1 Miles'], ['24789', '300', 'AW00024789', 'NULL', 'Tamara', 'M', 'Hu', '0', '1975-12-10', 'M', 'NULL', 'F', 'tamara9@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '162 Maureen Lane', 'NULL', '702-555-0159', '2013-09-27', '0-1 Miles'], ['24790', '301', 'AW00024790', 'NULL', 'Rebekah', 'J', 'Navarro', '0', '1981-08-02', 'M', 'NULL', 'F', 'rebekah30@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '88, rue de l´Esplanade', 'NULL', '152-555-0180', '2013-09-12', '2-5 Miles'], ['24791', '612', 'AW00024791', 'NULL', 'Teresa', 'F', 'Ortega', '0', '1975-11-22', 'M', 'NULL', 'F', 'teresa21@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3261 Kane Circle', 'NULL', '910-555-0119', '2013-09-17', '2-5 Miles'], ['24792', '310', 'AW00024792', 'NULL', 'Clifford', 'G', 'Malhotra', '0', '1976-04-15', 'M', 'NULL', 'M', 'clifford5@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3356 Eastgate Ave.', 'NULL', '894-555-0135', '2013-09-28', '2-5 Miles'], ['24793', '336', 'AW00024793', 'NULL', 'Cole', 'D', 'Morgan', '0', '1976-01-04', 'M', 'NULL', 'M', 'cole13@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8731 Overhill Rd.', 'NULL', '644-555-0192', '2013-10-15', '0-1 Miles'], ['24794', '552', 'AW00024794', 'NULL', 'Cody', 'NULL', 'Sanchez', '0', '1975-04-02', 'M', 'NULL', 'M', 'cody17@adventure-works.com', '60000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6211 Blenheim Way', 'NULL', '136-555-0113', '2013-10-17', '2-5 Miles'], ['24795', '539', 'AW00024795', 'NULL', 'Alexandra', 'NULL', 'Lewis', '0', '1980-11-18', 'M', 'NULL', 'F', 'alexandra85@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1828 Mt. Olivet Place', 'NULL', '835-555-0125', '2013-10-17', '2-5 Miles'], ['24796', '338', 'AW00024796', 'NULL', 'Jessica', 'C', 'Simmons', '0', '1975-05-19', 'M', 'NULL', 'F', 'jessica39@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '896 Mt. Washington Way', 'NULL', '131-555-0185', '2013-10-03', '2-5 Miles'], ['24797', '611', 'AW00024797', 'NULL', 'Dylan', 'B', 'Flores', '0', '1975-05-05', 'S', 'NULL', 'M', 'dylan11@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '1308 B St.', 'NULL', '569-555-0112', '2013-10-08', '0-1 Miles'], ['24798', '609', 'AW00024798', 'NULL', 'Lawrence', 'NULL', 'Moreno', '0', '1974-11-24', 'S', 'NULL', 'M', 'lawrence4@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6 Terra Calitina', 'NULL', '439-555-0147', '2013-10-10', '2-5 Miles'], ['24799', '308', 'AW00024799', 'NULL', 'Byron', 'NULL', 'Sanz', '0', '1975-05-05', 'S', 'NULL', 'M', 'byron14@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '463 Ahneita Dr', 'NULL', '864-555-0171', '2013-10-25', '2-5 Miles'], ['24800', '609', 'AW00024800', 'NULL', 'Eduardo', 'C', 'Young', '0', '1976-12-12', 'S', 'NULL', 'M', 'eduardo25@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '9155 Red Leaf', 'NULL', '523-555-0128', '2013-10-15', '0-1 Miles'], ['24801', '635', 'AW00024801', 'NULL', 'Chase', 'E', 'Bailey', '0', '1977-01-07', 'S', 'NULL', 'M', 'chase16@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1767 Holton Court', 'NULL', '714-555-0122', '2013-10-03', '2-5 Miles'], ['24802', '326', 'AW00024802', 'NULL', 'Timothy', 'L', 'Allen', '0', '1976-08-30', 'S', 'NULL', 'M', 'timothy41@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4508 Valley Crest Drive', 'NULL', '625-555-0121', '2013-04-02', '2-5 Miles'], ['24803', '543', 'AW00024803', 'NULL', 'Anna', 'NULL', 'Diaz', '0', '1979-09-20', 'M', 'NULL', 'F', 'anna47@adventure-works.com', '40000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '426 San Rafael', 'NULL', '580-555-0169', '2013-05-25', '10+ Miles'], ['24804', '310', 'AW00024804', 'NULL', 'Tonya', 'NULL', 'Raji', '0', '1979-09-16', 'M', 'NULL', 'F', 'tonya21@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2620 Turning View', 'NULL', '473-555-0168', '2013-04-05', '2-5 Miles'], ['24805', '49', 'AW00024805', 'NULL', 'Donna', 'E', 'Luo', '0', '1978-11-14', 'M', 'NULL', 'F', 'donna5@adventure-works.com', '40000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6312 Woodcrest Dr', 'NULL', '207-555-0146', '2013-06-27', '2-5 Miles'], ['24806', '299', 'AW00024806', 'NULL', 'Faith', 'A', 'Russell', '0', '1975-09-22', 'M', 'NULL', 'F', 'faith19@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '968 Davis Ave', 'NULL', '162-555-0121', '2013-04-02', '2-5 Miles'], ['24807', '307', 'AW00024807', 'NULL', 'Anne', 'A', 'Moreno', '0', '1975-10-23', 'M', 'NULL', 'F', 'anne7@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '2417 Pine St.', 'NULL', '298-555-0134', '2013-04-12', '0-1 Miles'], ['24808', '334', 'AW00024808', 'NULL', 'Eric', 'A', 'Perez', '0', '1975-10-23', 'M', 'NULL', 'M', 'eric45@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '2417 Pine St.', 'NULL', '732-555-0161', '2013-04-07', '0-1 Miles'], ['24809', '348', 'AW00024809', 'Ms', 'Alyssa', 'E', 'Moore', '0', '1975-09-06', 'M', 'NULL', 'F', 'alyssa7@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1779 Rose Drive', 'NULL', '993-555-0145', '2013-04-09', '2-5 Miles'], ['24810', '360', 'AW00024810', 'NULL', 'Alyssa', 'A', 'Richardson', '0', '1972-08-15', 'M', 'NULL', 'F', 'alyssa36@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1589 Mt. Tamalpais Place', 'NULL', '387-555-0174', '2013-10-26', '2-5 Miles'], ['24811', '325', 'AW00024811', 'NULL', 'Trinity', 'NULL', 'Ramirez', '0', '1973-01-08', 'S', 'NULL', 'F', 'trinity6@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4240 Lexington Road', 'NULL', '117-555-0112', '2013-10-01', '0-1 Miles'], ['24812', '307', 'AW00024812', 'NULL', 'Johnathan', 'B', 'Sai', '0', '1972-02-15', 'M', 'NULL', 'M', 'johnathan7@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1168 Escobar', 'NULL', '558-555-0139', '2013-06-03', '2-5 Miles'], ['24813', '311', 'AW00024813', 'NULL', 'Armando', 'NULL', 'Schmidt', '0', '1972-04-19', 'M', 'NULL', 'M', 'armando20@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3495 Virginia Lane', 'NULL', '249-555-0138', '2013-04-13', '2-5 Miles'], ['24814', '614', 'AW00024814', 'NULL', 'Gabriel', 'NULL', 'Washington', '0', '1971-10-30', 'S', 'NULL', 'M', 'gabriel10@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7656 Ramsey Circle', 'NULL', '101-555-0111', '2013-11-03', '2-5 Miles'], ['24815', '307', 'AW00024815', 'NULL', 'Victoria', 'NULL', 'Clark', '0', '1971-12-12', 'S', 'NULL', 'F', 'victoria18@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3398 Farm Bureau Road', 'NULL', '405-555-0111', '2013-04-09', '2-5 Miles'], ['24816', '51', 'AW00024816', 'NULL', 'Lauren', 'NULL', 'Perry', '0', '1975-05-19', 'M', 'NULL', 'F', 'lauren55@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '7938 Blue Ridge', 'NULL', '946-555-0189', '2013-06-28', '0-1 Miles'], ['24817', '66', 'AW00024817', 'NULL', 'Victoria', 'C', 'Richardson', '0', '1986-04-06', 'M', 'NULL', 'F', 'victoria36@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '413 Rishell Ct', 'NULL', '240-555-0145', '2012-01-17', '2-5 Miles'], ['24818', '612', 'AW00024818', 'NULL', 'Diane', 'NULL', 'Rubio', '0', '1974-09-15', 'M', 'NULL', 'F', 'diane26@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3725 Odin Dr.', 'NULL', '530-555-0199', '2013-04-26', '2-5 Miles'], ['24819', '618', 'AW00024819', 'NULL', 'Jack', 'T', 'Shan', '0', '1980-08-12', 'M', 'NULL', 'M', 'jack32@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2588 Wellington Ct', 'NULL', '602-555-0122', '2013-04-14', '2-5 Miles'], ['24820', '627', 'AW00024820', 'NULL', 'David', 'G', 'Clark', '0', '1980-10-08', 'M', 'NULL', 'M', 'david82@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '9010 Longview Road', 'NULL', '547-555-0188', '2013-02-04', '2-5 Miles'], ['24821', '648', 'AW00024821', 'NULL', 'Melissa', 'NULL', 'Alexander', '0', '1975-03-19', 'M', 'NULL', 'F', 'melissa14@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '7174 Ravenwood', 'NULL', '141-555-0110', '2013-07-22', '0-1 Miles'], ['24822', '310', 'AW00024822', 'NULL', 'Paige', 'L', 'Cook', '0', '1974-09-08', 'M', 'NULL', 'F', 'paige46@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '3', '612 Patricia Ave.', 'NULL', '673-555-0111', '2013-08-07', '10+ Miles'], ['24823', '310', 'AW00024823', 'NULL', 'Vincent', 'M', 'Zhao', '0', '1986-02-10', 'M', 'NULL', 'M', 'vincent10@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '3', '1105 Meadowbrook Drive', 'NULL', '262-555-0132', '2014-01-18', '10+ Miles'], ['24824', '59', 'AW00024824', 'NULL', 'Alexandria', 'M', 'Wood', '0', '1971-03-08', 'S', 'NULL', 'F', 'alexandria2@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '417 Silver Oak Pl', 'NULL', '274-555-0189', '2012-01-15', '2-5 Miles'], ['24825', '68', 'AW00024825', 'NULL', 'Zoe', 'L', 'Sanders', '0', '1976-04-15', 'M', 'NULL', 'F', 'zoe3@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4256 Ashmount Way', 'NULL', '321-555-0171', '2013-09-15', '2-5 Miles'], ['24826', '611', 'AW00024826', 'NULL', 'Richard', 'D', 'Powell', '0', '1971-02-22', 'M', 'NULL', 'M', 'richard63@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '465 Falcon Place', 'NULL', '387-555-0182', '2013-07-10', '0-1 Miles'], ['24827', '331', 'AW00024827', 'NULL', 'Alexander', 'K', 'Martinez', '0', '1970-12-08', 'M', 'NULL', 'M', 'alexander21@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '2524 Garden Ave.', 'NULL', '547-555-0197', '2013-04-07', '10+ Miles'], ['24828', '299', 'AW00024828', 'NULL', 'Brooke', 'NULL', 'Reed', '0', '1970-08-31', 'S', 'NULL', 'F', 'brooke18@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1770 Holiday Hills', 'NULL', '197-555-0110', '2013-11-17', '2-5 Miles'], ['24829', '325', 'AW00024829', 'NULL', 'Ethan', 'R', 'Patterson', '0', '1970-08-24', 'M', 'NULL', 'M', 'ethan7@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '3674 Green Valley Rd', 'NULL', '809-555-0110', '2013-02-08', '0-1 Miles'], ['24830', '612', 'AW00024830', 'NULL', 'Alexandra', 'W', 'Cox', '0', '1971-03-08', 'M', 'NULL', 'F', 'alexandra14@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '7776 Cordoba Way', 'NULL', '152-555-0147', '2013-04-13', '2-5 Miles'], ['24831', '383', 'AW00024831', 'NULL', 'Jackson', 'NULL', 'Diaz', '0', '1976-07-09', 'S', 'NULL', 'M', 'jackson23@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '1669 Warwick Dr', 'NULL', '908-555-0172', '2013-11-12', '2-5 Miles'], ['24832', '55', 'AW00024832', 'NULL', 'Morgan', 'NULL', 'Martin', '0', '1971-01-30', 'M', 'NULL', 'F', 'morgan36@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '5969 Meadowbrook Court', 'NULL', '555-555-0159', '2012-01-27', '0-1 Miles'], ['24833', '199', 'AW00024833', 'NULL', 'Deanna', 'N', 'Ruiz', '0', '1973-08-17', 'S', 'NULL', 'F', 'deanna27@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '988, quai de Grenelle', 'NULL', '1 (11) 500 555-0161', '2013-09-17', '0-1 Miles'], ['24834', '129', 'AW00024834', 'NULL', 'Bethany', 'B', 'Jai', '0', '1979-03-03', 'M', 'NULL', 'F', 'bethany14@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Postfach 99 01 01', 'NULL', '1 (11) 500 555-0172', '2013-04-27', '0-1 Miles'], ['24835', '243', 'AW00024835', 'NULL', 'Angel', 'G', 'Morgan', '0', '1979-10-24', 'S', 'NULL', 'M', 'angel13@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4576 N Ranchford Court', 'NULL', '1 (11) 500 555-0169', '2013-11-10', '0-1 Miles'], ['24836', '208', 'AW00024836', 'NULL', 'Taylor', 'H', 'Robinson', '0', '1930-12-13', 'S', 'NULL', 'F', 'taylor65@adventure-works.com', '10000.00', '4', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '8, rue de l´Avenir', 'NULL', '1 (11) 500 555-0124', '2013-10-24', '0-1 Miles'], ['24837', '147', 'AW00024837', 'NULL', 'Wyatt', 'NULL', 'Lewis', '0', '1974-05-02', 'S', 'NULL', 'M', 'wyatt22@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Auf der Krone 9249', 'NULL', '1 (11) 500 555-0132', '2013-08-17', '0-1 Miles'], ['24838', '162', 'AW00024838', 'NULL', 'Elijah', 'NULL', 'Young', '0', '1968-05-22', 'S', 'NULL', 'M', 'elijah42@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', 'Hochstr 8666', 'NULL', '1 (11) 500 555-0154', '2013-09-19', '5-10 Miles'], ['24839', '123', 'AW00024839', 'NULL', 'Tamara', 'NULL', 'Goldberg', '0', '1961-12-15', 'S', 'NULL', 'F', 'tamara29@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '4', 'Helsenbergbogen 99', 'NULL', '1 (11) 500 555-0162', '2013-01-29', '5-10 Miles'], ['24840', '236', 'AW00024840', 'NULL', 'Marco', 'NULL', 'Sai', '0', '1973-06-06', 'M', 'NULL', 'M', 'marco6@adventure-works.com', '120000.00', '3', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '4', '5985 Valmar Dr.', 'NULL', '1 (11) 500 555-0182', '2013-12-11', '5-10 Miles'], ['24841', '215', 'AW00024841', 'NULL', 'Andres', 'B', 'Jai', '0', '1966-11-01', 'M', 'NULL', 'M', 'andres8@adventure-works.com', '90000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '625, rue Basse-du-Rocher', 'NULL', '1 (11) 500 555-0169', '2013-12-17', '2-5 Miles'], ['24842', '225', 'AW00024842', 'NULL', 'Monique', 'NULL', 'Alonso', '0', '1966-05-18', 'S', 'NULL', 'F', 'monique4@adventure-works.com', '90000.00', '3', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '1', '558, rue Marbeuf', 'NULL', '1 (11) 500 555-0141', '2013-06-16', '2-5 Miles'], ['24843', '175', 'AW00024843', 'NULL', 'Bryant', 'NULL', 'Subram', '0', '1960-10-22', 'M', 'NULL', 'M', 'bryant12@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', 'Zollstr 62', 'NULL', '1 (11) 500 555-0119', '2013-09-21', '5-10 Miles'], ['24844', '186', 'AW00024844', 'NULL', 'Maria', 'A', 'Ward', '0', '1955-08-29', 'S', 'NULL', 'F', 'maria15@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '39, avenue des Laurentides', 'NULL', '1 (11) 500 555-0176', '2013-12-11', '10+ Miles'], ['24845', '184', 'AW00024845', 'NULL', 'Tyrone', 'NULL', 'Jimenez', '0', '1955-11-13', 'M', 'NULL', 'M', 'tyrone5@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2225, avenue de la Gare', 'NULL', '1 (11) 500 555-0174', '2013-10-03', '2-5 Miles'], ['24846', '142', 'AW00024846', 'NULL', 'Naomi', 'S', 'Navarro', '0', '1950-02-14', 'S', 'NULL', 'F', 'naomi10@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', 'Nonnendamm 3', 'Verkaufsabteilung', '1 (11) 500 555-0199', '2013-06-07', '2-5 Miles'], ['24847', '241', 'AW00024847', 'NULL', 'Tonya', 'NULL', 'Nath', '0', '1950-01-15', 'M', 'NULL', 'F', 'tonya18@adventure-works.com', '130000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '1873 Courtland Drive', 'NULL', '1 (11) 500 555-0187', '2013-06-17', '0-1 Miles'], ['24848', '163', 'AW00024848', 'NULL', 'Jeffery', 'M', 'Zhou', '0', '1950-11-23', 'M', 'NULL', 'M', 'jeffery9@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', 'Kappellweg 367', 'NULL', '1 (11) 500 555-0123', '2014-01-13', '10+ Miles'], ['24849', '224', 'AW00024849', 'NULL', 'Brianna', 'S', 'Ward', '0', '1952-02-06', 'M', 'NULL', 'F', 'brianna39@adventure-works.com', '100000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '6983, place du Tertre', 'NULL', '1 (11) 500 555-0128', '2013-11-04', '2-5 Miles'], ['24850', '177', 'AW00024850', 'NULL', 'Emmanuel', 'O', 'Perez', '0', '1951-12-30', 'M', 'NULL', 'M', 'emmanuel19@adventure-works.com', '120000.00', '4', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', 'Potsdamer Straße 242', 'NULL', '1 (11) 500 555-0194', '2013-09-07', '10+ Miles'], ['24851', '229', 'AW00024851', 'NULL', 'Leslie', 'NULL', 'Ortega', '0', '1951-12-06', 'M', 'NULL', 'F', 'leslie22@adventure-works.com', '130000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '1264 Eureka Lane', 'NULL', '1 (11) 500 555-0157', '2013-07-10', '0-1 Miles'], ['24852', '273', 'AW00024852', 'NULL', 'Carla', 'NULL', 'Martinez', '0', '1951-07-03', 'M', 'NULL', 'F', 'carla20@adventure-works.com', '170000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '55 St. George Dr.', 'NULL', '1 (11) 500 555-0150', '2013-06-24', '0-1 Miles'], ['24853', '279', 'AW00024853', 'NULL', 'Miguel', 'NULL', 'Long', '0', '1959-10-02', 'S', 'NULL', 'M', 'miguel56@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7056 Roble Road', 'NULL', '1 (11) 500 555-0132', '2013-08-17', '10+ Miles'], ['24854', '120', 'AW00024854', 'NULL', 'Emma', 'L', 'Jenkins', '0', '1959-09-12', 'S', 'NULL', 'F', 'emma53@adventure-works.com', '110000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Zollhof 4822', 'NULL', '1 (11) 500 555-0156', '2013-07-06', '10+ Miles'], ['24855', '133', 'AW00024855', 'NULL', 'Kaylee', 'NULL', 'Wright', '0', '1970-10-19', 'S', 'NULL', 'F', 'kaylee43@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', 'Rykestr 295', 'NULL', '1 (11) 500 555-0118', '2013-02-17', '0-1 Miles'], ['24856', '176', 'AW00024856', 'NULL', 'Candice', 'J', 'Huang', '0', '1959-08-11', 'M', 'NULL', 'F', 'candice12@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', 'Kurfürstenstr 4164', 'NULL', '1 (11) 500 555-0173', '2013-10-09', '5-10 Miles'], ['24857', '236', 'AW00024857', 'NULL', 'Anna', 'NULL', 'Henderson', '0', '1965-04-16', 'M', 'NULL', 'F', 'anna29@adventure-works.com', '130000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '5725 Oak Grove Road', 'NULL', '1 (11) 500 555-0116', '2013-06-29', '0-1 Miles'], ['24858', '243', 'AW00024858', 'NULL', 'Calvin', 'A', 'Xie', '0', '1959-11-02', 'M', 'NULL', 'M', 'calvin3@adventure-works.com', '130000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '6915 San Ramon Valley Blvd.', '#6', '1 (11) 500 555-0188', '2013-04-12', '0-1 Miles'], ['24859', '245', 'AW00024859', 'NULL', 'Cesar', 'J', 'Arun', '0', '1960-03-25', 'S', 'NULL', 'M', 'cesar5@adventure-works.com', '130000.00', '3', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '0', '9120 Springfield Drive', 'NULL', '1 (11) 500 555-0118', '2014-01-25', '5-10 Miles'], ['24860', '278', 'AW00024860', 'NULL', 'Douglas', 'NULL', 'Garcia', '0', '1960-04-10', 'S', 'NULL', 'M', 'douglas19@adventure-works.com', '170000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '2', '5795 Birch Bark Road', 'NULL', '1 (11) 500 555-0172', '2013-06-16', '0-1 Miles'], ['24861', '220', 'AW00024861', 'NULL', 'Evelyn', 'C', 'Vance', '0', '1958-10-05', 'M', 'NULL', 'F', 'evelyn4@adventure-works.com', '90000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2, route de Marseille', 'NULL', '1 (11) 500 555-0184', '2013-10-28', '2-5 Miles'], ['24862', '205', 'AW00024862', 'NULL', 'Tamara', 'NULL', 'Zhou', '0', '1958-12-11', 'M', 'NULL', 'F', 'tamara39@adventure-works.com', '100000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '2811, rue des Ecoles', 'NULL', '1 (11) 500 555-0115', '2013-06-09', '2-5 Miles'], ['24863', '179', 'AW00024863', 'NULL', 'Wesley', 'NULL', 'Sun', '0', '1958-08-11', 'S', 'NULL', 'M', 'wesley13@adventure-works.com', '100000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '211, rue Basse-du-Rocher', 'NULL', '1 (11) 500 555-0189', '2013-03-09', '2-5 Miles'], ['24864', '163', 'AW00024864', 'NULL', 'Jeffery', 'J', 'Sun', '0', '1957-08-07', 'M', 'NULL', 'M', 'jeffery13@adventure-works.com', '90000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Klara Straße 6384', 'NULL', '1 (11) 500 555-0135', '2013-07-19', '10+ Miles'], ['24865', '261', 'AW00024865', 'NULL', 'Ashley', 'NULL', 'Griffin', '0', '1969-05-22', 'S', 'NULL', 'F', 'ashley48@adventure-works.com', '160000.00', '4', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '584 Laguna St.', 'NULL', '1 (11) 500 555-0151', '2013-07-25', '10+ Miles'], ['24866', '193', 'AW00024866', 'NULL', 'Alejandro', 'J', 'Nath', '0', '1962-02-07', 'M', 'NULL', 'M', 'alejandro43@adventure-works.com', '80000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '172, avenue Foch', 'NULL', '1 (11) 500 555-0157', '2013-03-09', '10+ Miles'], ['24867', '134', 'AW00024867', 'NULL', 'Beth', 'K', 'Suarez', '0', '1956-11-13', 'S', 'NULL', 'F', 'beth21@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', 'Unter Linden 754', 'NULL', '1 (11) 500 555-0190', '2013-08-05', '10+ Miles'], ['24868', '244', 'AW00024868', 'NULL', 'Darryl', 'NULL', 'Hu', '0', '1957-03-21', 'M', 'NULL', 'M', 'darryl20@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '1172 Flamingo Dr.', 'NULL', '1 (11) 500 555-0171', '2013-07-17', '0-1 Miles'], ['24869', '257', 'AW00024869', 'Ms.', 'Misty', 'NULL', 'Shock', '0', '1956-10-09', 'M', 'NULL', 'M', 'misty0@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '5959 C Olivera Rd', 'NULL', '185-555-0100', '2013-09-23', '10+ Miles'], ['24870', '262', 'AW00024870', 'NULL', 'Taylor', 'M', 'Morgan', '0', '1956-09-10', 'M', 'NULL', 'F', 'taylor6@adventure-works.com', '150000.00', '4', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '9613 Camino Royale', 'NULL', '1 (11) 500 555-0119', '2013-07-12', '0-1 Miles'], ['24871', '226', 'AW00024871', 'NULL', 'Kelsey', 'J', 'Luo', '0', '1961-05-20', 'S', 'NULL', 'F', 'kelsey5@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '3', '935, rue Mazagran', 'NULL', '1 (11) 500 555-0115', '2013-07-14', '5-10 Miles'], ['24872', '204', 'AW00024872', 'NULL', 'Alisha', 'J', 'Raje', '0', '1961-09-29', 'S', 'NULL', 'F', 'alisha38@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '99, rue Saint Denis', 'NULL', '1 (11) 500 555-0133', '2013-03-15', '10+ Miles'], ['24873', '173', 'AW00024873', 'NULL', 'Alisha', 'W', 'Li', '0', '1955-09-30', 'S', 'NULL', 'F', 'alisha3@adventure-works.com', '110000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '2', 'Alderstr 2577', 'NULL', '1 (11) 500 555-0118', '2013-11-27', '10+ Miles'], ['24874', '219', 'AW00024874', 'NULL', 'Wendy', 'NULL', 'Moreno', '0', '1954-09-13', 'M', 'NULL', 'F', 'wendy6@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '3', '1416, place de la Concorde', 'NULL', '1 (11) 500 555-0196', '2013-10-16', '5-10 Miles'], ['24875', '141', 'AW00024875', 'NULL', 'Darryl', 'J', 'Zhang', '0', '1954-11-18', 'S', 'NULL', 'M', 'darryl0@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', 'Alderstr 8739', 'Buchhaltung', '1 (11) 500 555-0179', '2013-06-27', '10+ Miles'], ['24876', '178', 'AW00024876', 'NULL', 'Jarrod', 'A', 'Subram', '0', '1955-01-19', 'S', 'NULL', 'M', 'jarrod13@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', 'Wasserstr 64', 'NULL', '1 (11) 500 555-0147', '2013-04-20', '10+ Miles'], ['24877', '222', 'AW00024877', 'NULL', 'Mandy', 'F', 'Zhao', '0', '1953-12-03', 'M', 'NULL', 'F', 'mandy12@adventure-works.com', '80000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '65, rue Faubourg St Antoine', 'NULL', '1 (11) 500 555-0147', '2014-01-02', '10+ Miles'], ['24878', '210', 'AW00024878', 'NULL', 'Sandra', 'NULL', 'Wang', '0', '1953-10-11', 'M', 'NULL', 'F', 'sandra7@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '55, rue du Départ', 'NULL', '1 (11) 500 555-0136', '2013-05-19', '10+ Miles'], ['24879', '170', 'AW00024879', 'NULL', 'Desiree', 'NULL', 'Munoz', '0', '1953-10-09', 'M', 'NULL', 'F', 'desiree3@adventure-works.com', '90000.00', '4', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '4', 'Westheimer Straße 7606', 'Verkaufsabteilung', '1 (11) 500 555-0186', '2013-10-07', '10+ Miles'], ['24880', '233', 'AW00024880', 'NULL', 'Summer', 'D', 'Chandra', '0', '1953-09-05', 'M', 'NULL', 'F', 'summer2@adventure-works.com', '110000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '5950 Coldwater Drive', 'NULL', '1 (11) 500 555-0117', '2013-12-18', '10+ Miles'], ['24881', '268', 'AW00024881', 'NULL', 'Tasha', 'W', 'Ashe', '0', '1953-08-23', 'M', 'NULL', 'F', 'tasha22@adventure-works.com', '150000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '4397 Lakewood Court', 'NULL', '1 (11) 500 555-0116', '2013-06-12', '0-1 Miles'], ['24882', '189', 'AW00024882', 'NULL', 'Meredith', 'V', 'Srini', '0', '1953-04-26', 'M', 'NULL', 'F', 'meredith7@adventure-works.com', '90000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '91, cours Mirabeau', 'NULL', '1 (11) 500 555-0114', '2013-03-11', '5-10 Miles'], ['24883', '166', 'AW00024883', 'NULL', 'Stacey', 'B', 'Lin', '0', '1958-03-22', 'S', 'NULL', 'F', 'stacey8@adventure-works.com', '100000.00', '4', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '1', 'Klara Straße 8422', 'NULL', '1 (11) 500 555-0171', '2013-01-04', '5-10 Miles'], ['24884', '12', 'AW00024884', 'NULL', 'Michele', 'M', 'Fernandez', '0', '1981-02-15', 'M', 'NULL', 'F', 'michele29@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '9808 Virginia Circle', 'NULL', '1 (11) 500 555-0163', '2013-09-30', '10+ Miles'], ['24885', '36', 'AW00024885', 'NULL', 'Corey', 'J', 'Xie', '0', '1981-05-01', 'S', 'NULL', 'M', 'corey3@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '6277 Greenview Court', 'NULL', '1 (11) 500 555-0178', '2014-01-11', '10+ Miles'], ['24886', '19', 'AW00024886', 'NULL', 'Joy', 'D', 'Romero', '0', '1980-07-05', 'S', 'NULL', 'F', 'joy10@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '6746 River Ash Court', 'NULL', '1 (11) 500 555-0141', '2013-06-29', '10+ Miles'], ['24887', '30', 'AW00024887', 'NULL', 'Micah', 'NULL', 'Sun', '0', '1986-05-01', 'S', 'NULL', 'M', 'micah0@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '6045 Holiday Hills Dr.', 'NULL', '1 (11) 500 555-0189', '2012-03-01', '5-10 Miles'], ['24888', '35', 'AW00024888', 'NULL', 'Roy', 'NULL', 'Srini', '0', '1980-07-10', 'S', 'NULL', 'M', 'roy9@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '6093 Hilltop Road', 'NULL', '1 (11) 500 555-0117', '2012-03-11', '5-10 Miles'], ['24889', '4', 'AW00024889', 'NULL', 'Kelli', 'J', 'She', '0', '1981-06-18', 'M', 'NULL', 'F', 'kelli23@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '9323 Cowell Road', 'NULL', '1 (11) 500 555-0146', '2012-03-29', '10+ Miles'], ['24890', '36', 'AW00024890', 'NULL', 'Brenda', 'J', 'Van', '0', '1981-07-09', 'S', 'NULL', 'F', 'brenda7@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '6827 Seagull Court', 'NULL', '1 (11) 500 555-0156', '2013-02-07', '10+ Miles'], ['24891', '20', 'AW00024891', 'NULL', 'Bianca', 'NULL', 'Chen', '0', '1982-01-12', 'S', 'NULL', 'F', 'bianca2@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '1867 Sands', 'NULL', '1 (11) 500 555-0184', '2013-12-08', '10+ Miles'], ['24892', '20', 'AW00024892', 'NULL', 'Arthur', 'NULL', 'Alvarez', '0', '1980-10-21', 'S', 'NULL', 'M', 'arthur28@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '6993 Whyte Park Ave.', 'NULL', '1 (11) 500 555-0129', '2013-12-19', '10+ Miles'], ['24893', '36', 'AW00024893', 'NULL', 'Alvin', 'W', 'Chande', '0', '1979-09-23', 'S', 'NULL', 'M', 'alvin36@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '4708 Biscayne Court', 'NULL', '1 (11) 500 555-0118', '2013-05-20', '2-5 Miles'], ['24894', '18', 'AW00024894', 'NULL', 'Jaime', 'M', 'Jai', '0', '1985-04-21', 'S', 'NULL', 'M', 'jaime33@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '9059 Salvio St.', 'NULL', '1 (11) 500 555-0147', '2013-02-17', '10+ Miles'], ['24895', '2', 'AW00024895', 'NULL', 'Dalton', 'NULL', 'Henderson', '0', '1980-05-09', 'M', 'NULL', 'M', 'dalton50@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '6751 East 25th St', 'NULL', '1 (11) 500 555-0167', '2013-03-03', '10+ Miles'], ['24896', '27', 'AW00024896', 'NULL', 'Kendra', 'NULL', 'Ramos', '0', '1980-10-04', 'S', 'NULL', 'F', 'kendra17@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '4927 Virgil Street', 'NULL', '1 (11) 500 555-0176', '2013-11-18', '10+ Miles'], ['24897', '17', 'AW00024897', 'NULL', 'Glenn', 'R', 'Hu', '0', '1985-07-12', 'M', 'NULL', 'M', 'glenn21@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '6703 Milburn Dr.', 'NULL', '1 (11) 500 555-0114', '2013-07-15', '10+ Miles'], ['24898', '29', 'AW00024898', 'NULL', 'Mallory', 'R', 'Gomez', '0', '1985-06-09', 'S', 'NULL', 'F', 'mallory9@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '4037 San View Way', 'NULL', '1 (11) 500 555-0167', '2013-04-24', '10+ Miles'], ['24899', '11', 'AW00024899', 'NULL', 'Vincent', 'E', 'Zhu', '0', '1978-07-18', 'S', 'NULL', 'M', 'vincent13@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '2375 Elwood Drive', 'NULL', '1 (11) 500 555-0148', '2013-02-20', '10+ Miles'], ['24900', '11', 'AW00024900', 'NULL', 'Ebony', 'M', 'Perez', '0', '1979-08-01', 'S', 'NULL', 'F', 'ebony21@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '5932 Rainier Dr.', 'NULL', '1 (11) 500 555-0139', '2012-04-24', '10+ Miles'], ['24901', '10', 'AW00024901', 'NULL', 'Clarence', 'L', 'She', '0', '1985-04-21', 'S', 'NULL', 'M', 'clarence16@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '3', '5310 Buena Vista Ave.', 'NULL', '1 (11) 500 555-0187', '2012-04-19', '10+ Miles'], ['24902', '40', 'AW00024902', 'NULL', 'Jill', 'J', 'Murphy', '0', '1984-08-02', 'S', 'NULL', 'F', 'jill31@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '9529 Oonegal Court', 'NULL', '1 (11) 500 555-0173', '2012-04-04', '10+ Miles'], ['24903', '24', 'AW00024903', 'NULL', 'Tracy', 'B', 'Black', '0', '1978-10-07', 'S', 'NULL', 'F', 'tracy19@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '744 Piedra Dr.', 'NULL', '1 (11) 500 555-0154', '2012-04-23', '10+ Miles'], ['24904', '31', 'AW00024904', 'NULL', 'Jaclyn', 'NULL', 'Yuan', '0', '1984-10-09', 'M', 'NULL', 'F', 'jaclyn30@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '8281 Rhoda Way', 'NULL', '1 (11) 500 555-0187', '2012-04-13', '10+ Miles'], ['24905', '10', 'AW00024905', 'NULL', 'Kelsey', 'A', 'Nara', '0', '1979-04-21', 'M', 'NULL', 'F', 'kelsey15@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '8348 Holiday Hill Dr.', 'NULL', '1 (11) 500 555-0129', '2012-05-02', '10+ Miles'], ['24906', '15', 'AW00024906', 'NULL', 'Donna', 'NULL', 'Raji', '0', '1977-12-19', 'S', 'NULL', 'F', 'donna19@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '2304 La Canada', '# 13', '1 (11) 500 555-0198', '2013-04-04', '10+ Miles'], ['24907', '31', 'AW00024907', 'NULL', 'Megan', 'NULL', 'Price', '0', '1979-02-24', 'M', 'NULL', 'F', 'megan50@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '2', '4352 Olive Ave.', 'NULL', '1 (11) 500 555-0132', '2012-05-28', '10+ Miles'], ['24908', '21', 'AW00024908', 'NULL', 'Marc', 'NULL', 'Blanco', '0', '1983-05-19', 'S', 'NULL', 'M', 'marc19@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '4367 Citrus Ave.', 'NULL', '1 (11) 500 555-0117', '2012-05-15', '10+ Miles'], ['24909', '16', 'AW00024909', 'NULL', 'Grant', 'C', 'Yuan', '0', '1978-06-11', 'M', 'NULL', 'M', 'grant8@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '3', '6924 Santa Barbara', 'NULL', '1 (11) 500 555-0112', '2012-05-26', '10+ Miles'], ['24910', '15', 'AW00024910', 'NULL', 'Terrance', 'NULL', 'Madan', '0', '1978-02-10', 'M', 'NULL', 'M', 'terrance5@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '2024 Belle Dr', 'NULL', '1 (11) 500 555-0140', '2012-05-07', '10+ Miles'], ['24911', '21', 'AW00024911', 'NULL', 'Martin', 'M', 'Madan', '0', '1982-02-14', 'S', 'NULL', 'M', 'martin12@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '6152 Buckingham Dr.', 'NULL', '1 (11) 500 555-0198', '2013-07-31', '10+ Miles'], ['24912', '34', 'AW00024912', 'NULL', 'Krystal', 'A', 'Li', '0', '1978-05-27', 'S', 'NULL', 'F', 'krystal3@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '3', '9682 Concord Blvd.', 'NULL', '1 (11) 500 555-0183', '2012-06-06', '10+ Miles'], ['24913', '17', 'AW00024913', 'NULL', 'Kelsey', 'T', 'Lal', '0', '1977-02-10', 'M', 'NULL', 'F', 'kelsey8@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '2087 Plaza Del Rio', 'NULL', '1 (11) 500 555-0112', '2012-06-07', '10+ Miles'], ['24914', '37', 'AW00024914', 'NULL', 'Heather', 'M', 'Zhou', '0', '1982-12-14', 'M', 'NULL', 'F', 'heather8@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '486 Pacifica Avenue', 'NULL', '1 (11) 500 555-0126', '2012-06-25', '10+ Miles'], ['24915', '25', 'AW00024915', 'NULL', 'Stanley', 'L', 'Patel', '0', '1982-03-19', 'S', 'NULL', 'M', 'stanley3@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '1977 Sun Rise Drive', 'NULL', '1 (11) 500 555-0193', '2012-06-29', '10+ Miles'], ['24916', '24', 'AW00024916', 'NULL', 'Kara', 'NULL', 'Pal', '0', '1976-05-15', 'S', 'NULL', 'F', 'kara11@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '4986 Norse Drive', 'NULL', '1 (11) 500 555-0167', '2012-06-19', '10+ Miles'], ['24917', '28', 'AW00024917', 'NULL', 'Arthur', 'NULL', 'Gomez', '0', '1976-01-18', 'S', 'NULL', 'M', 'arthur24@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '1782 Camino Solano', 'NULL', '1 (11) 500 555-0167', '2012-06-06', '10+ Miles'], ['24918', '38', 'AW00024918', 'NULL', 'Warren', 'NULL', 'Cai', '0', '1981-02-16', 'S', 'NULL', 'M', 'warren34@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '7282 Michele Drive', 'NULL', '1 (11) 500 555-0186', '2012-06-11', '10+ Miles'], ['24919', '23', 'AW00024919', 'NULL', 'Carl', 'D', 'Shan', '0', '1976-02-22', 'M', 'NULL', 'M', 'carl10@adventure-works.com', '100000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '8741 Clark Creek Lane', 'NULL', '1 (11) 500 555-0178', '2012-06-15', '10+ Miles'], ['24920', '35', 'AW00024920', 'NULL', 'Amy', 'NULL', 'Cai', '0', '1981-10-22', 'M', 'NULL', 'F', 'amy28@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '2225 Ashford Court', 'NULL', '1 (11) 500 555-0128', '2012-06-08', '10+ Miles'], ['24921', '11', 'AW00024921', 'NULL', 'Curtis', 'D', 'He', '0', '1975-12-01', 'S', 'NULL', 'M', 'curtis15@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '4', '8196 Alexander Pl', 'NULL', '1 (11) 500 555-0173', '2012-07-10', '10+ Miles'], ['24922', '31', 'AW00024922', 'NULL', 'Naomi', 'NULL', 'Jimenez', '0', '1975-10-06', 'M', 'NULL', 'F', 'naomi5@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '4379 Lakeside Court', 'NULL', '1 (11) 500 555-0154', '2012-07-09', '10+ Miles'], ['24923', '12', 'AW00024923', 'NULL', 'Ebony', 'NULL', 'Sara', '0', '1981-03-31', 'M', 'NULL', 'F', 'ebony10@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '4', '7176 A St.', 'NULL', '1 (11) 500 555-0194', '2012-06-30', '10+ Miles'], ['24924', '31', 'AW00024924', 'NULL', 'Richard', 'G', 'Anderson', '0', '1977-01-14', 'M', 'NULL', 'M', 'richard50@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '4877 Limewood Place', 'NULL', '1 (11) 500 555-0174', '2012-07-08', '10+ Miles'], ['24925', '307', 'AW00024925', 'NULL', 'Erick', 'NULL', 'Perez', '0', '1954-05-27', 'S', 'NULL', 'M', 'erick21@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '7407 Spring Water St.', 'NULL', '673-555-0124', '2013-12-15', '1-2 Miles'], ['24926', '315', 'AW00024926', 'NULL', 'Eric', 'NULL', 'Roberts', '0', '1959-11-03', 'S', 'NULL', 'M', 'eric46@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '667 Miller Dr.', 'NULL', '916-555-0129', '2013-12-24', '1-2 Miles'], ['24927', '626', 'AW00024927', 'NULL', 'Kaitlyn', 'NULL', 'Harris', '0', '1954-01-08', 'S', 'NULL', 'F', 'kaitlyn36@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '4393 Glenhaven Ave', 'NULL', '271-555-0151', '2013-04-04', '1-2 Miles'], ['24928', '339', 'AW00024928', 'NULL', 'Timothy', 'E', 'Wright', '0', '1953-10-07', 'S', 'NULL', 'M', 'timothy43@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '1851 Pecan Pl.', 'NULL', '120-555-0164', '2013-04-13', '1-2 Miles'], ['24929', '633', 'AW00024929', 'NULL', 'Lucas', 'J', 'Bailey', '0', '1954-03-10', 'S', 'NULL', 'M', 'lucas87@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2021 Ladera Court', 'NULL', '485-555-0187', '2013-06-16', '5-10 Miles'], ['24930', '338', 'AW00024930', 'NULL', 'Abigail', 'J', 'Lewis', '0', '1953-06-09', 'M', 'NULL', 'F', 'abigail62@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '7419 San Ramon Road', 'NULL', '455-555-0152', '2013-02-12', '5-10 Miles'], ['24931', '642', 'AW00024931', 'NULL', 'Brianna', 'NULL', 'Miller', '0', '1943-01-30', 'S', 'NULL', 'F', 'brianna5@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4681 Deerfield Dr.', 'NULL', '571-555-0171', '2013-07-07', '5-10 Miles'], ['24932', '348', 'AW00024932', 'NULL', 'Richard', 'W', 'Jones', '0', '1942-09-07', 'M', 'NULL', 'M', 'richard43@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4663 High Maple Court', 'NULL', '111-555-0167', '2013-05-29', '5-10 Miles'], ['24933', '301', 'AW00024933', 'NULL', 'Regina', 'NULL', 'Sanchez', '0', '1948-05-21', 'S', 'NULL', 'F', 'regina19@adventure-works.com', '50000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '1908 Pansy Dr.', 'NULL', '827-555-0198', '2013-03-31', '1-2 Miles'], ['24934', '312', 'AW00024934', 'NULL', 'Lindsay', 'P', 'Tang', '0', '1942-10-20', 'S', 'NULL', 'F', 'lindsay4@adventure-works.com', '50000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '9667 Hermosa', 'NULL', '128-555-0157', '2013-12-03', '1-2 Miles'], ['24935', '311', 'AW00024935', 'NULL', 'James', 'R', 'Hayes', '0', '1943-11-06', 'S', 'NULL', 'M', 'james38@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2474 Madhatter Ln', 'NULL', '760-555-0121', '2013-09-06', '10+ Miles'], ['24936', '546', 'AW00024936', 'NULL', 'Caleb', 'NULL', 'Scott', '0', '1949-05-17', 'M', 'NULL', 'M', 'caleb42@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9458 Camino Estrada', 'NULL', '382-555-0137', '2013-11-10', '10+ Miles'], ['24937', '612', 'AW00024937', 'NULL', 'Jordan', 'A', 'Evans', '0', '1945-03-20', 'S', 'NULL', 'F', 'jordan29@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7614 Heron Ct', 'NULL', '218-555-0127', '2013-12-03', '10+ Miles'], ['24938', '638', 'AW00024938', 'NULL', 'Julia', 'NULL', 'Martinez', '0', '1944-12-20', 'M', 'NULL', 'F', 'julia39@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9891 Sepulveda Ct.', 'NULL', '778-555-0146', '2013-06-28', '10+ Miles'], ['24939', '62', 'AW00024939', 'NULL', 'Elizabeth', 'J', 'Barnes', '0', '1944-11-02', 'S', 'NULL', 'F', 'elizabeth32@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8186 Geary', 'NULL', '307-555-0166', '2013-08-18', '10+ Miles'], ['24940', '311', 'AW00024940', 'NULL', 'Fernando', 'NULL', 'Martin', '0', '1945-12-24', 'M', 'NULL', 'M', 'fernando13@adventure-works.com', '60000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7559 Worth Ct.', 'NULL', '327-555-0191', '2013-01-28', '10+ Miles'], ['24941', '547', 'AW00024941', 'NULL', 'Wyatt', 'T', 'Garcia', '0', '1945-10-22', 'M', 'NULL', 'M', 'wyatt17@adventure-works.com', '60000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9453 Sharon Dr.', 'NULL', '146-555-0142', '2013-03-22', '10+ Miles'], ['24942', '299', 'AW00024942', 'NULL', 'Steven', 'NULL', 'James', '0', '1946-01-21', 'M', 'NULL', 'M', 'steven9@adventure-works.com', '60000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '5723 C Wharton Way', 'NULL', '702-555-0172', '2013-10-29', '1-2 Miles'], ['24943', '612', 'AW00024943', 'NULL', 'Darrell', 'C', 'Chander', '0', '1946-01-06', 'M', 'NULL', 'M', 'darrell5@adventure-works.com', '60000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3403 Meadowbrook', 'NULL', '176-555-0180', '2013-11-26', '10+ Miles'], ['24944', '299', 'AW00024944', 'NULL', 'Whitney', 'H', 'Garcia', '0', '1946-03-11', 'M', 'NULL', 'F', 'whitney14@adventure-works.com', '60000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5854 Eagle Way', 'NULL', '789-555-0192', '2013-03-30', '10+ Miles'], ['24945', '634', 'AW00024945', 'NULL', 'Logan', 'C', 'Harris', '0', '1951-12-07', 'M', 'NULL', 'M', 'logan65@adventure-works.com', '60000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1455 Fountain Road', 'NULL', '821-555-0116', '2013-05-12', '10+ Miles'], ['24946', '311', 'AW00024946', 'NULL', 'Sarah', 'L', 'Hughes', '0', '1946-06-10', 'S', 'NULL', 'F', 'sarah36@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7932 Pierce Ct.', 'NULL', '497-555-0119', '2013-04-21', '10+ Miles'], ['24947', '53', 'AW00024947', 'NULL', 'Aaron', 'R', 'Phillips', '0', '1946-08-05', 'S', 'NULL', 'M', 'aaron38@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '233 Waterview Terr.', 'NULL', '502-555-0157', '2013-06-02', '1-2 Miles'], ['24948', '315', 'AW00024948', 'NULL', 'Nathan', 'NULL', 'Carter', '0', '1946-08-29', 'M', 'NULL', 'M', 'nathan38@adventure-works.com', '50000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3526 Dover Way', 'NULL', '413-555-0181', '2013-09-23', '10+ Miles'], ['24949', '623', 'AW00024949', 'NULL', 'Devin', 'S', 'Howard', '0', '1947-05-10', 'S', 'NULL', 'M', 'devin79@adventure-works.com', '50000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '946 Santa Barbara Rd.', 'NULL', '773-555-0186', '2013-10-29', '10+ Miles'], ['24950', '374', 'AW00024950', 'NULL', 'Stephanie', 'NULL', 'Alexander', '0', '1947-03-28', 'S', 'NULL', 'F', 'stephanie46@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3475 Chablis Court', 'NULL', '113-555-0175', '2013-09-14', '10+ Miles'], ['24951', '359', 'AW00024951', 'NULL', 'Jeremy', 'D', 'Ward', '0', '1949-03-24', 'M', 'NULL', 'M', 'jeremy34@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4605 Merced Circle', 'NULL', '159-555-0116', '2013-07-30', '10+ Miles'], ['24952', '543', 'AW00024952', 'NULL', 'Amanda', 'A', 'Long', '0', '1949-03-10', 'S', 'NULL', 'F', 'amanda31@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '10 Napa Ct.', 'NULL', '328-555-0124', '2013-02-13', '1-2 Miles'], ['24953', '637', 'AW00024953', 'NULL', 'Aaron', 'R', 'Green', '0', '1950-04-06', 'M', 'NULL', 'M', 'aaron47@adventure-works.com', '30000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '8486 Hazelwood Lane', 'NULL', '658-555-0113', '2013-06-13', '1-2 Miles'], ['24954', '343', 'AW00024954', 'NULL', 'Jonathan', 'NULL', 'Long', '0', '1952-07-05', 'M', 'NULL', 'M', 'jonathan9@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2769 San Jose Drive', 'NULL', '145-555-0164', '2013-10-07', '10+ Miles'], ['24955', '307', 'AW00024955', 'NULL', 'Donald', 'V', 'Perez', '0', '1951-05-05', 'S', 'NULL', 'M', 'donald23@adventure-works.com', '30000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6998 Courthouse Drive', 'NULL', '749-555-0163', '2013-07-07', '10+ Miles'], ['24956', '298', 'AW00024956', 'NULL', 'Ariana', 'V', 'Ward', '0', '1951-02-02', 'M', 'NULL', 'F', 'ariana11@adventure-works.com', '30000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '4', '3764 Olive Hill', 'NULL', '941-555-0177', '2013-07-07', '10+ Miles'], ['24957', '334', 'AW00024957', 'NULL', 'Anna', 'A', 'Howard', '0', '1950-10-19', 'M', 'NULL', 'F', 'anna16@adventure-works.com', '30000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '4', '8290 Margaret Ct.', 'NULL', '869-555-0119', '2013-07-04', '10+ Miles'], ['24958', '310', 'AW00024958', 'NULL', 'Tamara', 'D', 'Xu', '0', '1951-12-02', 'S', 'NULL', 'F', 'tamara16@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '5587 Stanley Dollar Dr.', 'NULL', '439-555-0158', '2013-11-17', '2-5 Miles'], ['24959', '299', 'AW00024959', 'NULL', 'Kristy', 'L', 'Blanco', '0', '1952-04-15', 'S', 'NULL', 'F', 'kristy14@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '2447 Pacifica Ave.', 'NULL', '403-555-0115', '2013-04-16', '10+ Miles'], ['24960', '49', 'AW00024960', 'NULL', 'Brianna', 'NULL', 'Gray', '0', '1951-08-08', 'S', 'NULL', 'F', 'brianna42@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '1107 La Corte Bonita', 'NULL', '795-555-0174', '2012-01-18', '2-5 Miles'], ['24961', '644', 'AW00024961', 'NULL', 'Alexandra', 'NULL', 'Bennett', '0', '1952-12-29', 'M', 'NULL', 'F', 'alexandra24@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '6500 S St.', 'NULL', '656-555-0199', '2013-07-04', '2-5 Miles'], ['24962', '626', 'AW00024962', 'NULL', 'Jonathan', 'NULL', 'Jai', '0', '1953-04-24', 'M', 'NULL', 'M', 'jonathan29@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '413 West Road', 'NULL', '194-555-0143', '2013-07-22', '2-5 Miles'], ['24963', '300', 'AW00024963', 'NULL', 'Erica', 'NULL', 'Zhao', '0', '1952-10-15', 'M', 'NULL', 'F', 'erica10@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3629 Warren St.', 'NULL', '981-555-0111', '2013-04-21', '10+ Miles'], ['24964', '614', 'AW00024964', 'NULL', 'Samantha', 'NULL', 'Anderson', '0', '1953-01-16', 'M', 'NULL', 'F', 'samantha11@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '6359 Jill Ave.', 'NULL', '210-555-0164', '2014-01-17', '2-5 Miles'], ['24965', '641', 'AW00024965', 'NULL', 'Justin', 'V', 'Hayes', '0', '1953-04-26', 'M', 'NULL', 'M', 'justin20@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '2501 Wilke Drive', 'NULL', '151-555-0135', '2013-06-22', '2-5 Miles'], ['24966', '631', 'AW00024966', 'NULL', 'Jade', 'L', 'Cooper', '0', '1952-07-08', 'S', 'NULL', 'F', 'jade6@adventure-works.com', '70000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '3207 Linton Terr', 'NULL', '231-555-0163', '2013-04-20', '2-5 Miles'], ['24967', '51', 'AW00024967', 'NULL', 'Jasmine', 'NULL', 'Reed', '0', '1953-08-17', 'S', 'NULL', 'F', 'jasmine24@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6228 Palm Avenue', 'NULL', '359-555-0189', '2013-12-30', '10+ Miles'], ['24968', '547', 'AW00024968', 'NULL', 'Dalton', 'L', 'Moore', '0', '1953-08-17', 'M', 'NULL', 'M', 'dalton7@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '363 St Paul Way', 'NULL', '218-555-0142', '2013-06-27', '10+ Miles'], ['24969', '633', 'AW00024969', 'NULL', 'Vanessa', 'NULL', 'Gonzales', '0', '1959-09-23', 'M', 'NULL', 'F', 'vanessa18@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7773 Hillcrest', 'NULL', '567-555-0193', '2013-02-24', '10+ Miles'], ['24970', '548', 'AW00024970', 'NULL', 'Blake', 'NULL', 'Wright', '0', '1953-10-16', 'M', 'NULL', 'M', 'blake28@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '287 Firestone Drive', 'NULL', '971-555-0132', '2013-06-15', '10+ Miles'], ['24971', '302', 'AW00024971', 'NULL', 'Brittney', 'D', 'Lin', '0', '1959-08-18', 'M', 'NULL', 'F', 'brittney6@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3682 Diablo View Road', 'NULL', '149-555-0151', '2013-10-31', '10+ Miles'], ['24972', '322', 'AW00024972', 'NULL', 'Edward', 'NULL', 'Garcia', '0', '1959-09-23', 'S', 'NULL', 'M', 'edward39@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '0', '3121 Spar Court', '#511', '858-555-0161', '2013-11-03', '2-5 Miles'], ['24973', '337', 'AW00024973', 'NULL', 'Arianna', 'R', 'Rivera', '0', '1953-08-12', 'M', 'NULL', 'F', 'arianna39@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '3985 Dolores Way', 'NULL', '134-555-0129', '2013-06-04', '10+ Miles'], ['24974', '337', 'AW00024974', 'NULL', 'Eduardo', 'NULL', 'Carter', '0', '1953-11-29', 'M', 'NULL', 'M', 'eduardo34@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '9109 Pinetree Court', 'NULL', '473-555-0165', '2013-09-08', '10+ Miles'], ['24975', '65', 'AW00024975', 'NULL', 'Julia', 'NULL', 'James', '0', '1960-08-04', 'S', 'NULL', 'F', 'julia61@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6957 Olivewood Ct.', 'NULL', '644-555-0187', '2013-10-18', '10+ Miles'], ['24976', '64', 'AW00024976', 'NULL', 'Stephanie', 'NULL', 'Cooper', '0', '1955-01-14', 'M', 'NULL', 'F', 'stephanie14@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4365 B Eagle Peak Rd.', 'NULL', '852-555-0119', '2012-01-02', '2-5 Miles'], ['24977', '69', 'AW00024977', 'NULL', 'Sophia', 'E', 'Green', '0', '1955-01-09', 'M', 'NULL', 'F', 'sophia14@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1506 St. George Court', 'NULL', '138-555-0167', '2012-01-11', '2-5 Miles'], ['24978', '611', 'AW00024978', 'NULL', 'Kaylee', 'NULL', 'Stewart', '0', '1960-09-11', 'M', 'NULL', 'F', 'kaylee23@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8599 Central Blvd.', 'NULL', '517-555-0114', '2013-07-14', '10+ Miles'], ['24979', '614', 'AW00024979', 'NULL', 'Jada', 'NULL', 'Adams', '0', '1954-12-04', 'M', 'NULL', 'F', 'jada25@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '7544 Woodside Court', 'NULL', '524-555-0166', '2013-11-11', '2-5 Miles'], ['24980', '336', 'AW00024980', 'NULL', 'Savannah', 'NULL', 'Phillips', '0', '1954-12-29', 'M', 'NULL', 'F', 'savannah28@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '998 Green Hill Rd.', 'NULL', '428-555-0184', '2013-06-04', '10+ Miles'], ['24981', '633', 'AW00024981', 'NULL', 'Jose', 'NULL', 'Davis', '0', '1955-11-03', 'M', 'NULL', 'M', 'jose62@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '711 Houston Ct.', 'NULL', '111-555-0176', '2013-09-13', '10+ Miles'], ['24982', '301', 'AW00024982', 'NULL', 'Devin', 'NULL', 'King', '0', '1961-10-13', 'M', 'NULL', 'M', 'devin25@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '9803 Holiday Hill Dr', 'NULL', '696-555-0147', '2013-04-28', '10+ Miles'], ['24983', '343', 'AW00024983', 'NULL', 'Morgan', 'M', 'Griffin', '0', '1956-02-18', 'S', 'NULL', 'F', 'morgan90@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '9595 Barbie Dr.', 'NULL', '491-555-0113', '2013-10-30', '10+ Miles'], ['24984', '347', 'AW00024984', 'NULL', 'William', 'NULL', 'Moore', '0', '1955-08-30', 'M', 'NULL', 'M', 'william23@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '5762 Glenmount Drive', 'NULL', '163-555-0118', '2013-08-02', '1-2 Miles'], ['24985', '374', 'AW00024985', 'NULL', 'Jenna', 'T', 'Phillips', '0', '1955-12-02', 'M', 'NULL', 'F', 'jenna5@adventure-works.com', '80000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '4630 Candlestick Drive', 'NULL', '528-555-0169', '2013-09-06', '5-10 Miles'], ['24986', '59', 'AW00024986', 'NULL', 'Isabelle', 'NULL', 'Griffin', '0', '1957-06-10', 'M', 'NULL', 'F', 'isabelle19@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8609 Eagle Ct', 'NULL', '190-555-0110', '2013-11-02', '10+ Miles'], ['24987', '301', 'AW00024987', 'NULL', 'Kristopher', 'NULL', 'Chandra', '0', '1956-10-15', 'M', 'NULL', 'M', 'kristopher2@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2133 Turner Dr.', 'NULL', '349-555-0127', '2013-11-12', '2-5 Miles'], ['24988', '368', 'AW00024988', 'NULL', 'Kayla', 'E', 'Diaz', '0', '1956-10-07', 'M', 'NULL', 'F', 'kayla46@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2013 Fitzuren', 'NULL', '403-555-0172', '2013-04-04', '10+ Miles'], ['24989', '546', 'AW00024989', 'NULL', 'Arianna', 'J', 'Peterson', '0', '1958-02-03', 'M', 'NULL', 'F', 'arianna26@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8762 Terrace', 'NULL', '738-555-0113', '2013-02-03', '10+ Miles'], ['24990', '368', 'AW00024990', 'NULL', 'Timothy', 'R', 'Collins', '0', '1958-05-19', 'M', 'NULL', 'M', 'timothy27@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8139 Clark Creek Lane', 'NULL', '718-555-0191', '2013-04-25', '2-5 Miles'], ['24991', '618', 'AW00024991', 'NULL', 'Luke', 'NULL', 'Bryant', '0', '1957-11-04', 'S', 'NULL', 'M', 'luke7@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6978 Hoke Dr', 'NULL', '172-555-0143', '2013-04-13', '10+ Miles'], ['24992', '307', 'AW00024992', 'NULL', 'Faith', 'L', 'Bryant', '0', '1963-03-09', 'M', 'NULL', 'F', 'faith17@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6267 Morello Heights Circle', 'NULL', '154-555-0170', '2013-06-05', '10+ Miles'], ['24993', '310', 'AW00024993', 'NULL', 'Marvin', 'L', 'Ortega', '0', '1963-03-19', 'M', 'NULL', 'M', 'marvin22@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4942 Frigate Ct', 'NULL', '337-555-0164', '2013-12-09', '10+ Miles'], ['24994', '358', 'AW00024994', 'NULL', 'Lauren', 'NULL', 'Sanders', '0', '1969-12-17', 'M', 'NULL', 'F', 'lauren46@adventure-works.com', '60000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5242 Marvelle Ln.', 'NULL', '122-555-0115', '2013-01-28', '10+ Miles'], ['24995', '69', 'AW00024995', 'NULL', 'Melissa', 'S', 'Peterson', '0', '1959-05-19', 'S', 'NULL', 'F', 'melissa27@adventure-works.com', '60000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8162 Laurel Dr', 'NULL', '694-555-0132', '2013-03-21', '10+ Miles'], ['24996', '300', 'AW00024996', 'NULL', 'Dylan', 'NULL', 'Miller', '0', '1958-09-04', 'M', 'NULL', 'M', 'dylan33@adventure-works.com', '60000.00', '3', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6410 Argenta Drive', 'NULL', '160-555-0122', '2013-10-31', '10+ Miles'], ['24997', '302', 'AW00024997', 'NULL', 'Melvin', 'M', 'Kumar', '0', '1959-03-31', 'S', 'NULL', 'M', 'melvin8@adventure-works.com', '60000.00', '3', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '1646 Twinview Drive', 'NULL', '246-555-0119', '2013-12-19', '10+ Miles'], ['24998', '302', 'AW00024998', 'NULL', 'Olivia', 'NULL', 'Martinez', '0', '1973-10-12', 'S', 'NULL', 'F', 'olivia16@adventure-works.com', '130000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '9518 Stanley Dollar Dr.', 'NULL', '314-555-0182', '2013-04-02', '0-1 Miles'], ['24999', '307', 'AW00024999', 'NULL', 'Shaun', 'NULL', 'Jai', '0', '1973-10-23', 'S', 'NULL', 'M', 'shaun12@adventure-works.com', '150000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '0', '5199 James Donlon Blvd', 'NULL', '127-555-0114', '2013-09-18', '0-1 Miles'], ['25000', '637', 'AW00025000', 'NULL', 'Allison', 'A', 'Turner', '0', '1985-04-16', 'S', 'NULL', 'F', 'allison27@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9018 Valley Crest Drive', 'NULL', '851-555-0152', '2013-12-13', '1-2 Miles'], ['25001', '18', 'AW00025001', 'NULL', 'Clayton', 'W', 'Xu', '0', '1955-02-22', 'M', 'NULL', 'M', 'clayton25@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9115 Arthur Rd.', 'NULL', '1 (11) 500 555-0190', '2013-07-07', '5-10 Miles'], ['25002', '50', 'AW00025002', 'NULL', 'Logan', 'NULL', 'Edwards', '0', '1984-04-10', 'M', 'NULL', 'M', 'logan28@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9682 Concord', 'NULL', '368-555-0191', '2013-07-02', '5-10 Miles'], ['25003', '609', 'AW00025003', 'NULL', 'Tristan', 'NULL', 'Russell', '0', '1984-04-15', 'S', 'NULL', 'M', 'tristan20@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '7081 Willow Pass Road', 'NULL', '960-555-0124', '2013-06-16', '1-2 Miles'], ['25004', '611', 'AW00025004', 'NULL', 'Samuel', 'NULL', 'Thomas', '0', '1983-08-14', 'S', 'NULL', 'M', 'samuel67@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '2599 Vine Hill Way', 'NULL', '779-555-0176', '2014-01-21', '1-2 Miles'], ['25005', '543', 'AW00025005', 'NULL', 'Brianna', 'M', 'Williams', '0', '1984-02-13', 'S', 'NULL', 'F', 'brianna2@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '5790 Ponderosa Drive', 'NULL', '598-555-0182', '2013-03-30', '1-2 Miles'], ['25006', '648', 'AW00025006', 'NULL', 'Bailey', 'NULL', 'Murphy', '0', '1983-08-19', 'S', 'NULL', 'F', 'bailey12@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9407 StandingView Dr. Ave', 'NULL', '162-555-0190', '2013-06-29', '5-10 Miles'], ['25007', '299', 'AW00025007', 'NULL', 'Alyssa', 'R', 'Sanders', '0', '1984-03-01', 'S', 'NULL', 'F', 'alyssa46@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '5607 Willow Creek Ct.', 'NULL', '101-555-0135', '2013-04-25', '1-2 Miles'], ['25008', '314', 'AW00025008', 'NULL', 'Haley', 'H', 'Perry', '0', '1983-11-17', 'S', 'NULL', 'F', 'haley26@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '59 Lakewood Court', 'NULL', '948-555-0113', '2013-12-19', '1-2 Miles'], ['25009', '21', 'AW00025009', 'NULL', 'Natasha', 'L', 'Alonso', '0', '1950-09-03', 'M', 'NULL', 'F', 'natasha7@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '1384 Windmill Way', 'NULL', '1 (11) 500 555-0163', '2013-10-08', '1-2 Miles'], ['25010', '23', 'AW00025010', 'NULL', 'Misty', 'H', 'Kumar', '0', '1951-10-30', 'S', 'NULL', 'F', 'misty9@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3315 Providence Dr.', 'NULL', '1 (11) 500 555-0197', '2012-07-17', '1-2 Miles'], ['25011', '13', 'AW00025011', 'NULL', 'Taylor', 'D', 'White', '0', '1953-02-03', 'M', 'NULL', 'F', 'taylor60@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9504 Rosina Court', 'NULL', '1 (11) 500 555-0188', '2012-07-20', '1-2 Miles'], ['25012', '2', 'AW00025012', 'NULL', 'Craig', 'M', 'Martin', '0', '1954-03-19', 'M', 'NULL', 'M', 'craig2@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5098 N. Civic Dr', 'NULL', '1 (11) 500 555-0146', '2013-04-13', '5-10 Miles'], ['25013', '25', 'AW00025013', 'NULL', 'Mitchell', 'NULL', 'Stone', '0', '1954-01-16', 'S', 'NULL', 'M', 'mitchell0@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9948 Almond Avve', 'NULL', '1 (11) 500 555-0177', '2013-11-10', '5-10 Miles'], ['25014', '336', 'AW00025014', 'NULL', 'Juan', 'NULL', 'Reed', '0', '1984-02-13', 'S', 'NULL', 'M', 'juan30@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5671 Dimaggio Way', 'NULL', '262-555-0179', '2013-12-10', '1-2 Miles'], ['25015', '352', 'AW00025015', 'NULL', 'Jacqueline', 'S', 'Rogers', '0', '1984-02-04', 'M', 'NULL', 'F', 'jacqueline44@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5183 Ham Drive', 'NULL', '172-555-0159', '2013-04-07', '0-1 Miles'], ['25016', '59', 'AW00025016', 'NULL', 'Elijah', 'L', 'Washington', '0', '1982-10-26', 'S', 'NULL', 'M', 'elijah17@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '6759 Greenbrier Street', 'NULL', '243-555-0137', '2013-07-25', '5-10 Miles'], ['25017', '6', 'AW00025017', 'NULL', 'Cristina', 'NULL', 'Xu', '0', '1953-11-21', 'M', 'NULL', 'F', 'cristina5@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1130 Fillet Ave.', 'NULL', '1 (11) 500 555-0193', '2013-08-26', '1-2 Miles'], ['25018', '352', 'AW00025018', 'NULL', 'Lucas', 'F', 'Robinson', '0', '1982-08-04', 'S', 'NULL', 'M', 'lucas32@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9589 Eastgate Avenue', 'NULL', '178-555-0194', '2013-05-30', '5-10 Miles'], ['25019', '24', 'AW00025019', 'NULL', 'Misty', 'S', 'Shen', '0', '1956-04-17', 'M', 'NULL', 'F', 'misty3@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '3', '3055 Mt. Trinity Ct.', 'NULL', '1 (11) 500 555-0190', '2013-11-22', '5-10 Miles'], ['25020', '17', 'AW00025020', 'NULL', 'Walter', 'A', 'Romero', '0', '1955-07-07', 'S', 'NULL', 'M', 'walter22@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6190 Main Street', 'NULL', '1 (11) 500 555-0173', '2012-07-29', '5-10 Miles'], ['25021', '2', 'AW00025021', 'NULL', 'Edwin', 'K', 'Sharma', '0', '1955-08-04', 'M', 'NULL', 'M', 'edwin32@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '20 Chestnut Ave', 'NULL', '1 (11) 500 555-0126', '2012-08-05', '5-10 Miles'], ['25022', '18', 'AW00025022', 'NULL', 'Patricia', 'NULL', 'Perez', '0', '1962-09-09', 'M', 'NULL', 'F', 'patricia22@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6948 Midway Ct', 'NULL', '1 (11) 500 555-0125', '2012-08-14', '1-2 Miles'], ['25023', '301', 'AW00025023', 'NULL', 'Carolyn', 'NULL', 'Sanz', '0', '1985-09-07', 'S', 'NULL', 'F', 'carolyn41@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '5415 West', 'NULL', '111-555-0192', '2013-04-17', '5-10 Miles'], ['25024', '307', 'AW00025024', 'NULL', 'Brad', 'S', 'Pritchett', '0', '1985-11-30', 'S', 'NULL', 'M', 'brad24@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '8500 Byers Rd.', 'NULL', '154-555-0139', '2013-08-11', '5-10 Miles'], ['25025', '372', 'AW00025025', 'NULL', 'Spencer', 'J', 'Bryant', '0', '1985-06-17', 'S', 'NULL', 'M', 'spencer20@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1114 Laurel', 'NULL', '193-555-0113', '2013-04-04', '0-1 Miles'], ['25026', '24', 'AW00025026', 'NULL', 'Mitchell', 'H', 'Andersen', '0', '1957-11-03', 'M', 'NULL', 'M', 'mitchell12@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '3', '8465 Kim Court', 'NULL', '1 (11) 500 555-0142', '2013-02-27', '5-10 Miles'], ['25027', '9', 'AW00025027', 'NULL', 'Meredith', 'NULL', 'Mehta', '0', '1958-07-15', 'M', 'NULL', 'F', 'meredith13@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3756 Lime Ridge Drive', 'NULL', '1 (11) 500 555-0111', '2014-01-07', '1-2 Miles'], ['25028', '10', 'AW00025028', 'NULL', 'Brenda', 'NULL', 'Gonzalez', '0', '1964-03-22', 'M', 'NULL', 'F', 'brenda22@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2102 W. 8th St.', 'NULL', '1 (11) 500 555-0172', '2014-01-06', '5-10 Miles'], ['25029', '13', 'AW00025029', 'NULL', 'Alberto', 'D', 'Hernandez', '0', '1958-10-12', 'S', 'NULL', 'M', 'alberto5@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9597 Pass', 'NULL', '1 (11) 500 555-0119', '2012-08-06', '5-10 Miles'], ['25030', '28', 'AW00025030', 'NULL', 'Jessie', 'NULL', 'Romero', '0', '1958-12-24', 'S', 'NULL', 'F', 'jessie15@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '261 La Orinda Pl', 'NULL', '1 (11) 500 555-0144', '2012-08-20', '5-10 Miles'], ['25031', '16', 'AW00025031', 'NULL', 'Kristina', 'NULL', 'Malhotra', '0', '1960-05-26', 'S', 'NULL', 'F', 'kristina5@adventure-works.com', '40000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '671 Deerwood Court', 'NULL', '1 (11) 500 555-0171', '2013-05-02', '1-2 Miles'], ['25032', '18', 'AW00025032', 'NULL', 'Meredith', 'NULL', 'Rana', '0', '1965-01-13', 'S', 'NULL', 'F', 'meredith10@adventure-works.com', '40000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7500 Sheffield Place', 'NULL', '1 (11) 500 555-0114', '2012-08-20', '5-10 Miles'], ['25033', '7', 'AW00025033', 'NULL', 'Omar', 'NULL', 'Zhu', '0', '1960-05-11', 'S', 'NULL', 'M', 'omar13@adventure-works.com', '40000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7996 Ronda Ct.', 'NULL', '1 (11) 500 555-0147', '2012-08-01', '5-10 Miles'], ['25034', '28', 'AW00025034', 'NULL', 'Anne', 'V', 'Martin', '0', '1966-10-21', 'S', 'NULL', 'F', 'anne1@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3378 Camino Verde', 'NULL', '1 (11) 500 555-0110', '2012-08-03', '5-10 Miles'], ['25035', '10', 'AW00025035', 'NULL', 'Mandy', 'C', 'Lin', '0', '1960-10-29', 'S', 'NULL', 'F', 'mandy9@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7616 Honey Court', 'NULL', '1 (11) 500 555-0148', '2012-08-05', '1-2 Miles'], ['25036', '4', 'AW00025036', 'NULL', 'Jenny', 'NULL', 'Ye', '0', '1960-10-13', 'S', 'NULL', 'F', 'jenny12@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8922 Franklin Canyon Road', 'NULL', '1 (11) 500 555-0128', '2012-08-28', '1-2 Miles'], ['25037', '30', 'AW00025037', 'NULL', 'Terrence', 'R', 'Rai', '0', '1961-04-07', 'M', 'NULL', 'M', 'terrence18@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2587 Windmill Way', 'NULL', '1 (11) 500 555-0192', '2012-09-13', '1-2 Miles'], ['25038', '612', 'AW00025038', 'NULL', 'Isabella', 'W', 'Hall', '0', '1980-07-18', 'S', 'NULL', 'F', 'isabella54@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9395 Oak Grove Rd.', 'NULL', '323-555-0195', '2013-12-27', '1-2 Miles'], ['25039', '542', 'AW00025039', 'NULL', 'Alexis', 'NULL', 'Clark', '0', '1980-08-11', 'S', 'NULL', 'F', 'alexis16@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5065 Cloverleaf Circle', 'NULL', '607-555-0154', '2013-11-19', '5-10 Miles'], ['25040', '548', 'AW00025040', 'NULL', 'Julian', 'D', 'Perry', '0', '1980-08-20', 'S', 'NULL', 'M', 'julian9@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8172 N. Ranchford', 'NULL', '153-555-0180', '2013-12-02', '1-2 Miles'], ['25041', '648', 'AW00025041', 'NULL', 'Hunter', 'G', 'Phillips', '0', '1981-01-21', 'S', 'NULL', 'M', 'hunter35@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4500 Willow Dr.', 'NULL', '744-555-0177', '2013-11-22', '5-10 Miles'], ['25042', '298', 'AW00025042', 'NULL', 'Arif', 'A', 'Rizaldy', '0', '1981-02-24', 'S', 'NULL', 'F', 'arif0@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7189 Candle Dr', 'NULL', '867-555-0123', '2013-12-21', '1-2 Miles'], ['25043', '302', 'AW00025043', 'NULL', 'Damien', 'W', 'Rai', '0', '1980-08-19', 'S', 'NULL', 'M', 'damien34@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7094 Salvio St.', 'NULL', '788-555-0159', '2013-08-23', '5-10 Miles'], ['25044', '385', 'AW00025044', 'NULL', 'Emma', 'H', 'Bailey', '0', '1981-02-06', 'S', 'NULL', 'F', 'emma33@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3795 Tabora Drive', 'NULL', '515-555-0135', '2013-05-20', '5-10 Miles'], ['25045', '609', 'AW00025045', 'NULL', 'Paige', 'NULL', 'Russell', '0', '1979-08-31', 'M', 'NULL', 'F', 'paige19@adventure-works.com', '50000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '582 Magic Dr', 'NULL', '273-555-0175', '2013-02-01', '5-10 Miles'], ['25046', '57', 'AW00025046', 'NULL', 'Caleb', 'P', 'Long', '0', '1979-03-10', 'M', 'NULL', 'M', 'caleb6@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7023 Stallion Way', 'NULL', '717-555-0162', '2012-01-02', '5-10 Miles'], ['25047', '352', 'AW00025047', 'NULL', 'Trevor', 'NULL', 'Long', '0', '1979-05-10', 'M', 'NULL', 'M', 'trevor9@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '7957 Hermosa', 'NULL', '616-555-0169', '2013-12-01', '5-10 Miles'], ['25048', '49', 'AW00025048', 'NULL', 'Yolanda', 'K', 'Sharma', '0', '1978-08-10', 'S', 'NULL', 'F', 'yolanda8@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '1819 Lilac Court', 'NULL', '275-555-0186', '2012-01-02', '0-1 Miles'], ['25049', '312', 'AW00025049', 'NULL', 'Candice', 'L', 'Ye', '0', '1978-12-18', 'M', 'NULL', 'F', 'candice15@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2378 Joyce Dr.', 'NULL', '826-555-0110', '2013-04-29', '5-10 Miles'], ['25050', '312', 'AW00025050', 'NULL', 'Darryl', 'S', 'Chen', '0', '1978-11-03', 'S', 'NULL', 'M', 'darryl2@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '617 LindenTree Dr', 'NULL', '325-555-0127', '2013-05-02', '5-10 Miles'], ['25051', '19', 'AW00025051', 'NULL', 'Suzanne', 'NULL', 'Cai', '0', '1961-09-24', 'S', 'NULL', 'F', 'suzanne22@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1283 Teakwood Court', 'NULL', '1 (11) 500 555-0161', '2012-09-04', '5-10 Miles'], ['25052', '18', 'AW00025052', 'NULL', 'Sandra', 'A', 'Lin', '0', '1978-01-16', 'S', 'NULL', 'F', 'sandra14@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5583 Peterson Pl.', 'NULL', '1 (11) 500 555-0137', '2012-09-26', '1-2 Miles'], ['25053', '17', 'AW00025053', 'NULL', 'Colin', 'NULL', 'Andersen', '0', '1968-08-19', 'M', 'NULL', 'M', 'colin36@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5689 Almondtree Circle', 'NULL', '1 (11) 500 555-0198', '2012-09-04', '5-10 Miles'], ['25054', '24', 'AW00025054', 'NULL', 'Sheila', 'NULL', 'Alonso', '0', '1963-08-30', 'S', 'NULL', 'F', 'sheila8@adventure-works.com', '100000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '8783 Detroit Ave.', 'NULL', '1 (11) 500 555-0133', '2013-07-23', '0-1 Miles'], ['25055', '33', 'AW00025055', 'NULL', 'Erik', 'E', 'Navarro', '0', '1963-08-06', 'M', 'NULL', 'M', 'erik10@adventure-works.com', '100000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '16 Yukon Street', 'NULL', '1 (11) 500 555-0192', '2013-09-20', '10+ Miles'], ['25056', '31', 'AW00025056', 'NULL', 'Wayne', 'E', 'Black', '0', '1963-08-19', 'M', 'NULL', 'M', 'wayne22@adventure-works.com', '100000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '1366 Hunt Dr', 'NULL', '1 (11) 500 555-0187', '2013-08-20', '10+ Miles'], ['25057', '27', 'AW00025057', 'NULL', 'Jerome', 'J', 'Gomez', '0', '1970-11-09', 'S', 'NULL', 'M', 'jerome1@adventure-works.com', '100000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '6692 Bluefish Lane', 'NULL', '1 (11) 500 555-0185', '2012-09-15', '0-1 Miles'], ['25058', '22', 'AW00025058', 'NULL', 'Corey', 'NULL', 'Raji', '0', '1964-07-05', 'M', 'NULL', 'M', 'corey18@adventure-works.com', '100000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '433 Marsh Drive', 'NULL', '1 (11) 500 555-0130', '2013-10-27', '2-5 Miles'], ['25059', '546', 'AW00025059', 'NULL', 'Sean', 'NULL', 'Ward', '0', '1978-10-23', 'S', 'NULL', 'M', 'sean20@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2826 C Del Rio Ln.', 'NULL', '709-555-0132', '2013-05-01', '5-10 Miles'], ['25060', '312', 'AW00025060', 'NULL', 'Noah', 'R', 'Martinez', '0', '1978-07-17', 'S', 'NULL', 'M', 'noah64@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '6472 Loveridge Circle', 'NULL', '854-555-0195', '2013-05-10', '0-1 Miles'], ['25061', '68', 'AW00025061', 'NULL', 'Julia', 'NULL', 'Hughes', '0', '1980-01-20', 'S', 'NULL', 'F', 'julia77@adventure-works.com', '50000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '6973 Mt. Hood Circle', 'NULL', '284-555-0163', '2012-01-22', '1-2 Miles'], ['25062', '71', 'AW00025062', 'NULL', 'Kaitlyn', 'J', 'Young', '0', '1980-06-18', 'S', 'NULL', 'F', 'kaitlyn23@adventure-works.com', '50000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1058 Kirker Pass Road', 'NULL', '370-555-0122', '2013-04-12', '5-10 Miles'], ['25063', '609', 'AW00025063', 'NULL', 'Dylan', 'T', 'Williams', '0', '1985-04-15', 'M', 'NULL', 'M', 'dylan37@adventure-works.com', '50000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9774 Maywood Lane', 'NULL', '228-555-0196', '2013-12-05', '1-2 Miles'], ['25064', '374', 'AW00025064', 'NULL', 'James', 'M', 'Harris', '0', '1971-08-18', 'S', 'NULL', 'M', 'james86@adventure-works.com', '150000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '2173 H Stagecoach Rd.', 'NULL', '212-555-0171', '2013-05-03', '0-1 Miles'], ['25065', '637', 'AW00025065', 'NULL', 'Thomas', 'NULL', 'Henderson', '0', '1963-05-22', 'M', 'NULL', 'M', 'thomas6@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7159 Shell Circle', 'NULL', '103-555-0134', '2013-03-30', '5-10 Miles'], ['25066', '62', 'AW00025066', 'NULL', 'Charles', 'D', 'Robinson', '0', '1962-11-17', 'S', 'NULL', 'M', 'charles22@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5068 N Francisco Way', 'NULL', '826-555-0121', '2014-01-26', '1-2 Miles'], ['25067', '618', 'AW00025067', 'NULL', 'Melanie', 'P', 'Butler', '0', '1970-05-12', 'S', 'NULL', 'F', 'melanie1@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6398 Joyce Dr', 'NULL', '196-555-0111', '2013-12-23', '2-5 Miles'], ['25068', '307', 'AW00025068', 'NULL', 'Robert', 'NULL', 'Shan', '0', '1969-12-19', 'S', 'NULL', 'M', 'robert42@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9152 St. Patricia', 'NULL', '556-555-0193', '2013-10-13', '0-1 Miles'], ['25069', '612', 'AW00025069', 'NULL', 'Lori', 'NULL', 'Ortega', '0', '1970-05-02', 'M', 'NULL', 'F', 'lori22@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '273 Winding Lane', 'NULL', '214-555-0179', '2013-06-24', '10+ Miles'], ['25070', '49', 'AW00025070', 'NULL', 'Melody', 'NULL', 'Alvarez', '0', '1975-03-23', 'M', 'NULL', 'F', 'melody5@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '3196 Rotherham Dr.', 'NULL', '391-555-0114', '2013-09-18', '10+ Miles'], ['25071', '339', 'AW00025071', 'NULL', 'Natalie', 'W', 'Brooks', '0', '1969-08-17', 'M', 'NULL', 'F', 'natalie22@adventure-works.com', '60000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '2305 Glaze Drive', 'NULL', '568-555-0151', '2014-01-12', '2-5 Miles'], ['25072', '548', 'AW00025072', 'NULL', 'Alyssa', 'O', 'Murphy', '0', '1970-03-27', 'S', 'NULL', 'F', 'alyssa32@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1451 Victory Lane', 'NULL', '698-555-0138', '2013-12-18', '0-1 Miles'], ['25073', '539', 'AW00025073', 'NULL', 'Shelby', 'NULL', 'Stewart', '0', '1969-08-23', 'M', 'NULL', 'F', 'shelby23@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7317 Cortez', 'NULL', '526-555-0119', '2013-12-23', '2-5 Miles'], ['25074', '543', 'AW00025074', 'NULL', 'Samantha', 'NULL', 'Jackson', '0', '1969-05-22', 'M', 'NULL', 'F', 'samantha13@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '7895 Arlington Way', 'NULL', '121-555-0112', '2013-05-23', '2-5 Miles'], ['25075', '358', 'AW00025075', 'NULL', 'Samantha', 'A', 'Thompson', '0', '1968-11-23', 'M', 'NULL', 'F', 'samantha17@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '459 William Reed Drive', 'NULL', '910-555-0125', '2013-05-03', '2-5 Miles'], ['25076', '336', 'AW00025076', 'NULL', 'Nicole', 'W', 'Jenkins', '0', '1974-08-11', 'M', 'NULL', 'F', 'nicole55@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '6868 West', 'NULL', '451-555-0148', '2013-12-19', '0-1 Miles'], ['25077', '642', 'AW00025077', 'NULL', 'Wyatt', 'M', 'Clark', '0', '1980-02-02', 'M', 'NULL', 'M', 'wyatt20@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '9320 Teakwood Dr.', 'NULL', '189-555-0175', '2013-12-14', '0-1 Miles'], ['25078', '338', 'AW00025078', 'NULL', 'James', 'NULL', 'Jenkins', '0', '1984-03-20', 'M', 'NULL', 'M', 'james22@adventure-works.com', '40000.00', '3', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7585 Ida Drive', 'NULL', '990-555-0196', '2013-12-03', '2-5 Miles'], ['25079', '632', 'AW00025079', 'NULL', 'Riley', 'NULL', 'Perry', '0', '1967-12-18', 'S', 'NULL', 'F', 'riley5@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4512 M St.', 'NULL', '188-555-0186', '2013-05-29', '2-5 Miles'], ['25080', '302', 'AW00025080', 'NULL', 'Marissa', 'NULL', 'Long', '0', '1973-01-11', 'S', 'NULL', 'F', 'marissa7@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9557 Steven Circle', 'NULL', '833-555-0112', '2013-05-09', '2-5 Miles'], ['25081', '322', 'AW00025081', 'NULL', 'Melanie', 'NULL', 'Morris', '0', '1967-03-08', 'S', 'NULL', 'F', 'melanie43@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '8042 Dent Way', 'NULL', '135-555-0115', '2013-08-20', '0-1 Miles'], ['25082', '299', 'AW00025082', 'NULL', 'William', 'A', 'Martinez', '0', '1966-08-02', 'M', 'NULL', 'M', 'william12@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4019 Gumwood Dr.', 'NULL', '142-555-0130', '2013-10-11', '0-1 Miles'], ['25083', '299', 'AW00025083', 'NULL', 'Omar', 'NULL', 'Gao', '0', '1966-12-15', 'M', 'NULL', 'M', 'omar14@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6387 Tanager Road', 'NULL', '919-555-0152', '2013-11-08', '10+ Miles'], ['25084', '553', 'AW00025084', 'NULL', 'Dalton', 'NULL', 'James', '0', '1967-04-09', 'M', 'NULL', 'M', 'dalton69@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '250 Montgomery Ave.', 'NULL', '277-555-0153', '2013-12-12', '0-1 Miles'], ['25085', '331', 'AW00025085', 'NULL', 'Lucas', 'NULL', 'Rogers', '0', '1967-02-22', 'M', 'NULL', 'M', 'lucas90@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3362 Julpum Loop', 'NULL', '908-555-0168', '2013-01-20', '2-5 Miles'], ['25086', '299', 'AW00025086', 'NULL', 'Jasmine', 'NULL', 'Cox', '0', '1967-02-23', 'M', 'NULL', 'F', 'jasmine30@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '679 Pepperidge Way', 'NULL', '250-555-0113', '2012-12-30', '2-5 Miles'], ['25087', '612', 'AW00025087', 'NULL', 'Wyatt', 'NULL', 'Young', '0', '1966-11-12', 'M', 'NULL', 'M', 'wyatt27@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9533 Working Drive', 'NULL', '592-555-0134', '2013-01-22', '0-1 Miles'], ['25088', '337', 'AW00025088', 'NULL', 'Victoria', 'J', 'Reed', '0', '1972-02-07', 'M', 'NULL', 'F', 'victoria28@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8957 Maureen Circle', 'NULL', '403-555-0115', '2013-01-13', '2-5 Miles'], ['25089', '612', 'AW00025089', 'NULL', 'Christy', 'C', 'Xie', '0', '1966-03-08', 'S', 'NULL', 'F', 'christy22@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5102 Sycamore Drive', 'NULL', '405-555-0138', '2013-09-21', '2-5 Miles'], ['25090', '49', 'AW00025090', 'NULL', 'Ivan', 'L', 'Sara', '0', '1965-12-30', 'M', 'NULL', 'M', 'ivan6@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1218 Woodside Court', 'NULL', '475-555-0126', '2013-12-10', '0-1 Miles'], ['25091', '311', 'AW00025091', 'NULL', 'Jessie', 'NULL', 'Zeng', '0', '1971-01-07', 'S', 'NULL', 'M', 'jessie28@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '8308 Fox Way', 'NULL', '466-555-0118', '2013-04-07', '0-1 Miles'], ['25092', '337', 'AW00025092', 'NULL', 'Emily', 'NULL', 'Jackson', '0', '1971-10-13', 'M', 'NULL', 'F', 'emily12@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8994 Richard Ave.', 'NULL', '373-555-0132', '2013-01-07', '2-5 Miles'], ['25093', '55', 'AW00025093', 'NULL', 'Madison', 'A', 'Griffin', '0', '1972-12-24', 'S', 'NULL', 'F', 'madison33@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6531 William Reed Dr.', 'NULL', '138-555-0150', '2012-01-14', '0-1 Miles'], ['25094', '68', 'AW00025094', 'NULL', 'Charles', 'NULL', 'Thomas', '0', '1972-09-11', 'S', 'NULL', 'M', 'charles14@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9941 Graham Ave.', 'NULL', '892-555-0153', '2012-01-12', '0-1 Miles'], ['25095', '69', 'AW00025095', 'NULL', 'Adam', 'NULL', 'Jai', '0', '1978-07-10', 'S', 'NULL', 'M', 'adam28@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6375 Freda Drive', 'NULL', '481-555-0111', '2012-02-01', '0-1 Miles'], ['25096', '609', 'AW00025096', 'NULL', 'Victoria', 'D', 'Bennett', '0', '1978-04-19', 'S', 'NULL', 'F', 'victoria49@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9384 Jamie Way', 'NULL', '823-555-0196', '2013-02-12', '2-5 Miles'], ['25097', '545', 'AW00025097', 'NULL', 'Fernando', 'B', 'Gonzales', '0', '1965-12-17', 'M', 'NULL', 'M', 'fernando58@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '41 Regency Dr.', 'NULL', '492-555-0129', '2013-02-13', '2-5 Miles'], ['25098', '539', 'AW00025098', 'NULL', 'Logan', 'NULL', 'Long', '0', '1966-01-24', 'M', 'NULL', 'M', 'logan12@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9171 Morello Ave', 'NULL', '976-555-0114', '2013-02-22', '0-1 Miles'], ['25099', '368', 'AW00025099', 'NULL', 'Melanie', 'G', 'Hayes', '0', '1971-02-24', 'M', 'NULL', 'F', 'melanie10@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4475 Longbrook Way', 'NULL', '517-555-0143', '2013-02-23', '0-1 Miles'], ['25100', '49', 'AW00025100', 'NULL', 'Kristen', 'NULL', 'Huang', '0', '1964-11-10', 'M', 'NULL', 'F', 'kristen5@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8224 Georgia Street', 'NULL', '341-555-0183', '2012-02-03', '2-5 Miles'], ['25101', '57', 'AW00025101', 'NULL', 'Wyatt', 'A', 'Baker', '0', '1981-04-13', 'M', 'NULL', 'M', 'wyatt36@adventure-works.com', '60000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2230 May Way', 'NULL', '234-555-0183', '2014-01-02', '2-5 Miles'], ['25102', '299', 'AW00025102', 'NULL', 'Stephanie', 'L', 'Kelly', '0', '1965-02-14', 'M', 'NULL', 'F', 'stephanie26@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '2056 Otter Dr.', 'NULL', '185-555-0119', '2013-02-19', '2-5 Miles'], ['25103', '311', 'AW00025103', 'NULL', 'Shelby', 'NULL', 'Brooks', '0', '1964-08-16', 'M', 'NULL', 'F', 'shelby1@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '6480 Prancing Drive', 'NULL', '210-555-0162', '2013-08-04', '0-1 Miles'], ['25104', '71', 'AW00025104', 'NULL', 'Natalie', 'A', 'Parker', '0', '1965-04-11', 'S', 'NULL', 'F', 'natalie51@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '1500 Polk Street', 'NULL', '581-555-0184', '2012-02-28', '0-1 Miles'], ['25105', '311', 'AW00025105', 'NULL', 'Warren', 'M', 'Nara', '0', '1965-05-19', 'S', 'NULL', 'M', 'warren6@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6973 Elena', 'NULL', '373-555-0111', '2013-05-04', '0-1 Miles'], ['25106', '22', 'AW00025106', 'NULL', 'Micah', 'W', 'Gao', '0', '1986-05-22', 'M', 'NULL', 'M', 'micah2@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '7165 Foothill Way', 'NULL', '1 (11) 500 555-0146', '2012-09-16', '0-1 Miles'], ['25107', '36', 'AW00025107', 'NULL', 'Mason', 'K', 'Ramirez', '0', '1980-05-13', 'S', 'NULL', 'M', 'mason8@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '2137 Argenta Dr.', 'NULL', '1 (11) 500 555-0153', '2012-09-01', '0-1 Miles'], ['25108', '19', 'AW00025108', 'NULL', 'Gary', 'B', 'Gill', '0', '1974-05-06', 'M', 'NULL', 'M', 'gary24@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4504 Terranova Drive', 'NULL', '1 (11) 500 555-0131', '2012-09-29', '0-1 Miles'], ['25109', '26', 'AW00025109', 'NULL', 'Devin', 'J', 'Rivera', '0', '1975-11-03', 'M', 'NULL', 'M', 'devin75@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '2956 East Altarinda Dr.', 'NULL', '1 (11) 500 555-0147', '2013-05-27', '0-1 Miles'], ['25110', '21', 'AW00025110', 'NULL', 'Tabitha', 'NULL', 'Suarez', '0', '1975-07-26', 'M', 'NULL', 'F', 'tabitha40@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '9752 Monterrey', 'NULL', '1 (11) 500 555-0152', '2013-07-26', '0-1 Miles'], ['25111', '30', 'AW00025111', 'NULL', 'Drew', 'J', 'Chander', '0', '1976-04-04', 'M', 'NULL', 'M', 'drew17@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '2798 Castlewood', 'NULL', '1 (11) 500 555-0178', '2012-10-09', '2-5 Miles'], ['25112', '4', 'AW00025112', 'NULL', 'Suzanne', 'E', 'Zhu', '0', '1974-04-17', 'M', 'NULL', 'F', 'suzanne15@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5741 Glen Wood Dr.', 'NULL', '1 (11) 500 555-0156', '2012-10-04', '0-1 Miles'], ['25113', '12', 'AW00025113', 'NULL', 'Randy', 'NULL', 'Gao', '0', '1973-10-15', 'M', 'NULL', 'M', 'randy17@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4550 Morello Ave.', 'NULL', '1 (11) 500 555-0130', '2012-10-19', '2-5 Miles'], ['25114', '13', 'AW00025114', 'NULL', 'Donald', 'M', 'Sara', '0', '1974-04-24', 'S', 'NULL', 'M', 'donald12@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1345 Prospect Street', 'NULL', '1 (11) 500 555-0128', '2012-10-04', '0-1 Miles'], ['25115', '19', 'AW00025115', 'NULL', 'Raymond', 'NULL', 'Rana', '0', '1974-01-25', 'M', 'NULL', 'M', 'raymond13@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '1771 Wood Ranch Circle', 'NULL', '1 (11) 500 555-0143', '2012-10-06', '10+ Miles'], ['25116', '8', 'AW00025116', 'NULL', 'Phillip', 'R', 'Sara', '0', '1979-07-05', 'M', 'NULL', 'M', 'phillip11@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '1993 Maywood Lane', 'NULL', '1 (11) 500 555-0110', '2013-05-30', '10+ Miles'], ['25117', '7', 'AW00025117', 'NULL', 'Mindy', 'R', 'Shan', '0', '1973-09-30', 'M', 'NULL', 'F', 'mindy15@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '1306 B St.', 'NULL', '1 (11) 500 555-0122', '2013-12-30', '10+ Miles'], ['25118', '5', 'AW00025118', 'NULL', 'Gerald', 'M', 'Diaz', '0', '1973-06-06', 'M', 'NULL', 'M', 'gerald11@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '220 N Ridgewood Drive', 'NULL', '1 (11) 500 555-0172', '2013-08-20', '10+ Miles'], ['25119', '4', 'AW00025119', 'NULL', 'Deanna', 'L', 'Lopez', '0', '1974-11-13', 'M', 'NULL', 'F', 'deanna20@adventure-works.com', '110000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '1898 Pine Tree Drive', 'NULL', '1 (11) 500 555-0190', '2012-10-02', '1-2 Miles'], ['25120', '4', 'AW00025120', 'NULL', 'Heidi', 'L', 'Rodriguez', '0', '1980-12-08', 'S', 'NULL', 'F', 'heidi22@adventure-works.com', '110000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '7902 Bates Court', 'NULL', '1 (11) 500 555-0139', '2012-09-28', '2-5 Miles'], ['25121', '25', 'AW00025121', 'NULL', 'Clarence', 'D', 'Yang', '0', '1975-03-19', 'M', 'NULL', 'M', 'clarence41@adventure-works.com', '110000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '3676 Oak Leaf Ct', 'NULL', '1 (11) 500 555-0138', '2012-10-26', '2-5 Miles'], ['25122', '32', 'AW00025122', 'NULL', 'Susan', 'L', 'Zhao', '0', '1978-03-12', 'S', 'NULL', 'F', 'susan20@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5527 Liscome Way', 'NULL', '1 (11) 500 555-0167', '2013-11-27', '0-1 Miles'], ['25123', '2', 'AW00025123', 'NULL', 'Sharon', 'L', 'Simpson', '0', '1972-08-31', 'M', 'NULL', 'F', 'sharon8@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '3729 Via Del Verdes', 'NULL', '1 (11) 500 555-0113', '2013-09-11', '0-1 Miles'], ['25124', '6', 'AW00025124', 'NULL', 'Keith', 'J', 'Xu', '0', '1978-10-05', 'S', 'NULL', 'M', 'keith7@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '8531 Doncaster Dr', 'NULL', '1 (11) 500 555-0112', '2013-05-26', '0-1 Miles'], ['25125', '36', 'AW00025125', 'NULL', 'Randy', 'G', 'Wang', '0', '1972-03-19', 'M', 'NULL', 'M', 'randy3@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '8143 Petarct', 'NULL', '1 (11) 500 555-0110', '2013-09-25', '0-1 Miles'], ['25126', '7', 'AW00025126', 'NULL', 'Shane', 'L', 'Suri', '0', '1977-11-21', 'M', 'NULL', 'M', 'shane4@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '3994 Sucamore Drive', 'NULL', '1 (11) 500 555-0143', '2012-11-05', '2-5 Miles'], ['25127', '15', 'AW00025127', 'NULL', 'Priscilla', 'M', 'Deng', '0', '1972-01-18', 'S', 'NULL', 'F', 'priscilla1@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '3757 Brook Hollow Ct', '# 101', '1 (11) 500 555-0113', '2012-11-07', '1-2 Miles'], ['25128', '22', 'AW00025128', 'NULL', 'Clifford', 'NULL', 'Sai', '0', '1970-12-21', 'M', 'NULL', 'M', 'clifford6@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9494 Buena Vista', 'NULL', '1 (11) 500 555-0136', '2013-08-24', '2-5 Miles'], ['25129', '17', 'AW00025129', 'NULL', 'Allen', 'R', 'Raman', '0', '1976-12-04', 'S', 'NULL', 'M', 'allen10@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '378 Show Rd.', 'NULL', '1 (11) 500 555-0110', '2013-02-21', '0-1 Miles'], ['25130', '11', 'AW00025130', 'NULL', 'Micah', 'NULL', 'Huang', '0', '1981-08-16', 'M', 'NULL', 'M', 'micah16@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '9580 Kalima Place', 'NULL', '1 (11) 500 555-0111', '2013-05-09', '10+ Miles'], ['25131', '36', 'AW00025131', 'NULL', 'Gerald', 'NULL', 'Chandra', '0', '1971-04-08', 'M', 'NULL', 'M', 'gerald31@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '6933 Sutton Circle', 'NULL', '1 (11) 500 555-0178', '2013-07-21', '10+ Miles'], ['25132', '33', 'AW00025132', 'NULL', 'Lindsey', 'M', 'Xie', '0', '1984-09-16', 'M', 'NULL', 'F', 'lindsey3@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '4137 Garcia Ranch Road', 'NULL', '1 (11) 500 555-0142', '2013-09-17', '10+ Miles'], ['25133', '11', 'AW00025133', 'NULL', 'Kristine', 'G', 'Gutierrez', '0', '1974-06-04', 'S', 'NULL', 'F', 'kristine12@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7399 Pacific', 'NULL', '1 (11) 500 555-0116', '2012-11-06', '5-10 Miles'], ['25134', '17', 'AW00025134', 'NULL', 'Brett', 'NULL', 'Rodriguez', '0', '1973-08-14', 'M', 'NULL', 'M', 'brett19@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '6928 Jason Ct', 'NULL', '1 (11) 500 555-0173', '2013-12-13', '1-2 Miles'], ['25135', '39', 'AW00025135', 'NULL', 'Kelvin', 'NULL', 'Zhao', '0', '1973-11-06', 'S', 'NULL', 'M', 'kelvin29@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '9011 Tabora Drive', 'NULL', '1 (11) 500 555-0139', '2013-12-02', '1-2 Miles'], ['25136', '39', 'AW00025136', 'NULL', 'Ruben', 'A', 'Diaz', '0', '1979-07-14', 'S', 'NULL', 'M', 'ruben26@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '4038 Elk Dr', 'NULL', '1 (11) 500 555-0146', '2013-04-05', '1-2 Miles'], ['25137', '27', 'AW00025137', 'NULL', 'Nina', 'R', 'Raje', '0', '1974-01-29', 'M', 'NULL', 'F', 'nina14@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '6237 El Rancho Dr.', 'NULL', '1 (11) 500 555-0150', '2014-01-21', '0-1 Miles'], ['25138', '19', 'AW00025138', 'NULL', 'Seth', 'NULL', 'Russell', '0', '1974-03-15', 'M', 'NULL', 'M', 'seth68@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '1412 San Marino Ct.', 'NULL', '1 (11) 500 555-0141', '2012-11-10', '1-2 Miles'], ['25139', '20', 'AW00025139', 'Mr.', 'Carlos', 'M.', 'Short', '0', '1975-08-22', 'M', 'Jr.', 'M', 'carlos0@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '6853 Hacienda', 'NULL', '187-555-0100', '2013-10-18', '0-1 Miles'], ['25140', '26', 'AW00025140', 'NULL', 'Toni', 'K', 'Lopez', '0', '1969-09-26', 'M', 'NULL', 'F', 'toni17@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '6445 Cashew Street', 'NULL', '1 (11) 500 555-0176', '2013-11-20', '5-10 Miles'], ['25141', '251', 'AW00025141', 'NULL', 'Walter', 'NULL', 'Gutierrez', '0', '1979-03-16', 'S', 'NULL', 'M', 'walter4@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '5498 Treat Blvd.', 'NULL', '1 (11) 500 555-0149', '2013-05-10', '1-2 Miles'], ['25142', '197', 'AW00025142', 'NULL', 'Regina', 'B', 'Ray', '0', '1980-05-11', 'S', 'NULL', 'F', 'regina10@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Midi-Couleurs', 'NULL', '1 (11) 500 555-0135', '2013-04-04', '2-5 Miles'], ['25143', '190', 'AW00025143', 'NULL', 'Destiny', 'A', 'Henderson', '0', '1979-10-06', 'S', 'NULL', 'F', 'destiny53@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '12, rue des Berges', 'NULL', '1 (11) 500 555-0158', '2013-12-05', '0-1 Miles'], ['25144', '144', 'AW00025144', 'NULL', 'Johnathan', 'NULL', 'Fernandez', '0', '1979-12-12', 'S', 'NULL', 'M', 'johnathan15@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Westheimer Straße 9601', 'NULL', '1 (11) 500 555-0117', '2013-09-17', '2-5 Miles'], ['25145', '171', 'AW00025145', 'NULL', 'Clayton', 'C', 'Yang', '0', '1980-02-22', 'S', 'NULL', 'M', 'clayton5@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Waldstr 4326', 'NULL', '1 (11) 500 555-0119', '2013-06-21', '2-5 Miles'], ['25146', '552', 'AW00025146', 'NULL', 'Carson', 'J', 'Gonzales', '0', '1958-07-25', 'M', 'NULL', 'M', 'carson16@adventure-works.com', '60000.00', '3', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '2700 Roundtree Dr.', 'NULL', '151-555-0131', '2013-01-31', '10+ Miles'], ['25147', '68', 'AW00025147', 'NULL', 'Samantha', 'G', 'Brown', '0', '1962-09-15', 'M', 'NULL', 'F', 'samantha5@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2768 Creekside Dr.', 'NULL', '526-555-0115', '2013-07-31', '5-10 Miles'], ['25148', '307', 'AW00025148', 'NULL', 'Ryan', 'NULL', 'Simmons', '0', '1963-04-05', 'M', 'NULL', 'M', 'ryan18@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '2680 Claudia Drive', 'NULL', '964-555-0196', '2013-02-28', '1-2 Miles'], ['25149', '632', 'AW00025149', 'NULL', 'Samantha', 'NULL', 'Griffin', '0', '1963-06-14', 'M', 'NULL', 'F', 'samantha43@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6133 Kenston Dr.', 'NULL', '946-555-0183', '2013-11-30', '5-10 Miles'], ['25150', '337', 'AW00025150', 'NULL', 'Xavier', 'NULL', 'Jones', '0', '1968-11-23', 'S', 'NULL', 'M', 'xavier3@adventure-works.com', '80000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '3685 Pleasant Hill Rd', 'NULL', '380-555-0167', '2013-05-06', '2-5 Miles'], ['25151', '329', 'AW00025151', 'NULL', 'Jasmine', 'NULL', 'Washington', '0', '1961-11-08', 'S', 'NULL', 'F', 'jasmine52@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5678 Arlington Way', 'NULL', '832-555-0192', '2013-11-02', '1-2 Miles'], ['25152', '331', 'AW00025152', 'NULL', 'Maria', 'M', 'Sanders', '0', '1978-08-12', 'S', 'NULL', 'F', 'maria22@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '9657 Santa Maria', 'NULL', '561-555-0118', '2013-03-17', '5-10 Miles'], ['25153', '632', 'AW00025153', 'NULL', 'Ryan', 'NULL', 'Coleman', '0', '1970-12-22', 'S', 'NULL', 'M', 'ryan8@adventure-works.com', '100000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '5787 Ygnacio Valley Road', 'NULL', '602-555-0130', '2013-10-02', '0-1 Miles'], ['25154', '301', 'AW00025154', 'NULL', 'Clinton', 'NULL', 'Serrano', '0', '1976-12-02', 'M', 'NULL', 'M', 'clinton13@adventure-works.com', '110000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '7700 Meaham Drive', 'NULL', '158-555-0197', '2013-12-23', '2-5 Miles'], ['25155', '311', 'AW00025155', 'NULL', 'Theresa', 'NULL', 'Alonso', '0', '1981-07-02', 'S', 'NULL', 'F', 'theresa5@adventure-works.com', '110000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '4790 Curletto Drive', 'NULL', '309-555-0129', '2013-05-29', '2-5 Miles'], ['25156', '336', 'AW00025156', 'NULL', 'Catherine', 'NULL', 'Peterson', '0', '1971-03-24', 'S', 'NULL', 'F', 'catherine5@adventure-works.com', '130000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '4', '6956 Peach Place', 'NULL', '588-555-0128', '2013-02-11', '0-1 Miles'], ['25157', '66', 'AW00025157', 'NULL', 'Destiny', 'NULL', 'Miller', '0', '1969-08-15', 'S', 'NULL', 'F', 'destiny6@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '9817 Cook Street', 'NULL', '603-555-0175', '2013-07-03', '2-5 Miles'], ['25158', '611', 'AW00025158', 'NULL', 'Stephanie', 'C', 'Long', '0', '1969-09-13', 'M', 'NULL', 'F', 'stephanie37@adventure-works.com', '90000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '993 Piedmont Dr.', 'NULL', '155-555-0120', '2013-09-04', '0-1 Miles'], ['25159', '637', 'AW00025159', 'NULL', 'Katelyn', 'C', 'Cooper', '0', '1970-01-24', 'S', 'NULL', 'F', 'katelyn17@adventure-works.com', '100000.00', '5', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '1635 Carmel Dr', 'NULL', '818-555-0126', '2013-09-24', '2-5 Miles'], ['25160', '642', 'AW00025160', 'NULL', 'Mackenzie', 'C', 'Stewart', '0', '1981-02-16', 'S', 'NULL', 'F', 'mackenzie25@adventure-works.com', '100000.00', '5', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '3646 Snyder Lane', 'NULL', '577-555-0117', '2013-06-15', '2-5 Miles'], ['25161', '343', 'AW00025161', 'NULL', 'Isabella', 'NULL', 'Flores', '0', '1975-05-10', 'M', 'NULL', 'F', 'isabella22@adventure-works.com', '130000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '3628 Mt. McKinley Ct.', 'NULL', '460-555-0110', '2013-05-25', '0-1 Miles'], ['25162', '374', 'AW00025162', 'NULL', 'Bryan', 'D', 'Morris', '0', '1975-11-08', 'S', 'NULL', 'M', 'bryan19@adventure-works.com', '160000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '9634 S. Silver Spring', 'NULL', '729-555-0131', '2013-05-14', '0-1 Miles'], ['25163', '334', 'AW00025163', 'NULL', 'Natalie', 'NULL', 'Griffin', '0', '1961-10-23', 'M', 'NULL', 'F', 'natalie43@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '8210 Mines Road', 'NULL', '193-555-0158', '2013-05-17', '5-10 Miles'], ['25164', '301', 'AW00025164', 'NULL', 'Isaac', 'C', 'Parker', '0', '1962-02-21', 'M', 'NULL', 'M', 'isaac22@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '2068 Suzanne Dr.', 'NULL', '762-555-0149', '2013-05-18', '0-1 Miles'], ['25165', '298', 'AW00025165', 'NULL', 'Ashley', 'D', 'Brown', '0', '1961-07-17', 'M', 'NULL', 'F', 'ashley4@adventure-works.com', '70000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '1440 Willow Pass Dr.', 'NULL', '344-555-0118', '2013-12-16', '0-1 Miles'], ['25166', '345', 'AW00025166', 'NULL', 'Miguel', 'R', 'Jenkins', '0', '1961-10-01', 'S', 'NULL', 'M', 'miguel53@adventure-works.com', '70000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '2570 Thames Dr.', 'NULL', '816-555-0150', '2013-09-25', '5-10 Miles'], ['25167', '358', 'AW00025167', 'NULL', 'Elijah', 'NULL', 'Hughes', '0', '1962-05-13', 'M', 'NULL', 'M', 'elijah15@adventure-works.com', '80000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '5478 Hill Ct', 'NULL', '240-555-0159', '2013-11-20', '0-1 Miles'], ['25168', '299', 'AW00025168', 'NULL', 'Micheal', 'NULL', 'Hernandez', '0', '1960-10-22', 'M', 'NULL', 'M', 'micheal0@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8210 Mines Road', 'NULL', '158-555-0134', '2013-08-23', '5-10 Miles'], ['25169', '352', 'AW00025169', 'NULL', 'Angel', 'NULL', 'Peterson', '0', '1940-03-01', 'S', 'NULL', 'M', 'angel4@adventure-works.com', '130000.00', '1', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '8201 Lyon Circle', 'NULL', '333-555-0176', '2013-05-22', '0-1 Miles'], ['25170', '618', 'AW00025170', 'NULL', 'Logan', 'H', 'Walker', '0', '1974-05-14', 'M', 'NULL', 'M', 'logan56@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '8245 Pinehurst Court', 'NULL', '925-555-0129', '2013-10-18', '10+ Miles'], ['25171', '543', 'AW00025171', 'NULL', 'Christopher', 'E', 'Rodriguez', '0', '1974-03-18', 'M', 'NULL', 'M', 'christopher20@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '891 Thornwood Dr.', 'NULL', '959-555-0135', '2013-04-26', '10+ Miles'], ['25172', '348', 'AW00025172', 'NULL', 'Evan', 'NULL', 'Gray', '0', '1969-05-15', 'M', 'NULL', 'M', 'evan6@adventure-works.com', '130000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '9966 Vallet Crest Dr.', 'NULL', '207-555-0111', '2013-06-19', '0-1 Miles'], ['25173', '54', 'AW00025173', 'NULL', 'Melissa', 'NULL', 'Stewart', '0', '1967-11-02', 'M', 'NULL', 'F', 'melissa44@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8679 Mt. Tooth Place', 'NULL', '445-555-0114', '2013-06-18', '5-10 Miles'], ['25174', '491', 'AW00025174', 'NULL', 'Monica', 'NULL', 'Smith', '0', '1968-02-10', 'M', 'NULL', 'F', 'monica9@adventure-works.com', '90000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '4214 Willbrook Court', 'NULL', '822-555-0184', '2013-05-24', '5-10 Miles'], ['25175', '618', 'AW00025175', 'NULL', 'Nathan', 'D', 'Chen', '0', '1968-04-02', 'S', 'NULL', 'M', 'nathan22@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '2238 Pine Street', 'NULL', '250-555-0110', '2013-05-14', '5-10 Miles'], ['25176', '347', 'AW00025176', 'NULL', 'Edward', 'NULL', 'Flores', '0', '1967-12-12', 'S', 'NULL', 'M', 'edward61@adventure-works.com', '130000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '9542 Dubne Court', 'NULL', '116-555-0180', '2013-09-24', '0-1 Miles'], ['25177', '49', 'AW00025177', 'NULL', 'Alberto', 'NULL', 'Gomez', '0', '1978-03-12', 'M', 'NULL', 'M', 'alberto2@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '4823 Park Blvd.', 'NULL', '837-555-0140', '2014-01-25', '5-10 Miles'], ['25178', '614', 'AW00025178', 'NULL', 'Jasmine', 'D', 'Kelly', '0', '1972-04-17', 'M', 'NULL', 'F', 'jasmine39@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '6833 Filomena', 'NULL', '366-555-0155', '2014-01-05', '1-2 Miles'], ['25179', '614', 'AW00025179', 'NULL', 'Miguel', 'NULL', 'Thompson', '0', '1966-08-05', 'M', 'NULL', 'M', 'miguel15@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '7284 Adobe Dr.', 'NULL', '798-555-0146', '2013-09-25', '5-10 Miles'], ['25180', '626', 'AW00025180', 'NULL', 'Ana', 'NULL', 'Simmons', '0', '1966-09-22', 'S', 'NULL', 'F', 'ana14@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '9094 Reading Dr', 'NULL', '354-555-0127', '2013-05-21', '5-10 Miles'], ['25181', '547', 'AW00025181', 'NULL', 'Jesse', 'S', 'Torres', '0', '1966-12-20', 'M', 'NULL', 'M', 'jesse4@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '9732 Hamilton Ct.', 'NULL', '225-555-0119', '2013-03-04', '5-10 Miles'], ['25182', '548', 'AW00025182', 'NULL', 'Natalie', 'NULL', 'Simmons', '0', '1972-03-01', 'M', 'NULL', 'F', 'natalie37@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1201 Olive Hill', 'NULL', '930-555-0153', '2013-06-20', '1-2 Miles'], ['25183', '637', 'AW00025183', 'NULL', 'Michael', 'K', 'Thomas', '0', '1966-10-04', 'M', 'NULL', 'M', 'michael43@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5734 Ashford Court', 'NULL', '595-555-0169', '2013-06-14', '1-2 Miles'], ['25184', '310', 'AW00025184', 'NULL', 'Peter', 'NULL', 'Tang', '0', '1966-09-22', 'S', 'NULL', 'M', 'peter11@adventure-works.com', '110000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '9094 William Reed Dr', 'NULL', '211-555-0161', '2013-05-11', '5-10 Miles'], ['25185', '355', 'AW00025185', 'NULL', 'Jade', 'NULL', 'Reed', '0', '1967-01-05', 'S', 'NULL', 'F', 'jade16@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '1690 K St.', 'NULL', '257-555-0139', '2013-05-14', '2-5 Miles'], ['25186', '369', 'AW00025186', 'NULL', 'Angelica', 'NULL', 'Coleman', '0', '1961-04-01', 'M', 'NULL', 'F', 'angelica5@adventure-works.com', '80000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '9866 Santa Lucia Dr', 'NULL', '166-555-0174', '2013-05-15', '5-10 Miles'], ['25187', '546', 'AW00025187', 'NULL', 'Sydney', 'L', 'Scott', '0', '1941-02-11', 'M', 'NULL', 'F', 'sydney54@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5601 Garrow Drive', 'NULL', '895-555-0191', '2014-01-21', '5-10 Miles'], ['25188', '66', 'AW00025188', 'NULL', 'Kevin', 'S', 'Li', '0', '1941-07-12', 'M', 'NULL', 'M', 'kevin29@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4914 Sierra Drive', 'NULL', '640-555-0153', '2013-05-02', '5-10 Miles'], ['25189', '611', 'AW00025189', 'NULL', 'Aidan', 'NULL', 'Hayes', '0', '1952-10-08', 'M', 'NULL', 'M', 'aidan24@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1584 S. Forest Hill', 'NULL', '744-555-0145', '2014-01-01', '5-10 Miles'], ['25190', '553', 'AW00025190', 'NULL', 'Allison', 'B', 'Morris', '0', '1941-12-12', 'M', 'NULL', 'F', 'allison18@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5514 Cape Cod Way', 'NULL', '140-555-0158', '2013-09-13', '5-10 Miles'], ['25191', '339', 'AW00025191', 'NULL', 'Austin', 'D', 'Gonzales', '0', '1941-12-08', 'S', 'NULL', 'M', 'austin13@adventure-works.com', '120000.00', '1', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '4', '1254 Roux Court', 'NULL', '678-555-0120', '2013-05-20', '2-5 Miles'], ['25192', '612', 'AW00025192', 'NULL', 'Janet', 'B', 'Gill', '0', '1966-01-29', 'S', 'NULL', 'F', 'janet19@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '91 Kalima Place', 'NULL', '921-555-0114', '2013-05-12', '5-10 Miles'], ['25193', '626', 'AW00025193', 'NULL', 'Stephanie', 'A', 'Howard', '0', '1971-10-05', 'S', 'NULL', 'F', 'stephanie17@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '8850 Via Del Sol', 'NULL', '886-555-0125', '2013-06-03', '5-10 Miles'], ['25194', '548', 'AW00025194', 'NULL', 'Jada', 'NULL', 'Bell', '0', '1959-12-08', 'S', 'NULL', 'F', 'jada5@adventure-works.com', '70000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2751 Fabian Way', 'NULL', '928-555-0194', '2013-07-02', '5-10 Miles'], ['25195', '311', 'AW00025195', 'NULL', 'Alexandra', 'NULL', 'Wilson', '0', '1960-04-18', 'S', 'NULL', 'F', 'alexandra70@adventure-works.com', '70000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6441 Gordon Ct.', 'NULL', '890-555-0148', '2013-08-12', '1-2 Miles'], ['25196', '52', 'AW00025196', 'NULL', 'Aaron', 'C', 'Yang', '0', '1971-04-19', 'M', 'NULL', 'M', 'aaron27@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3005 Ruby Lane', 'NULL', '685-555-0147', '2013-11-06', '5-10 Miles'], ['25197', '385', 'AW00025197', 'NULL', 'Kyle', 'J', 'Perry', '0', '1959-09-05', 'M', 'NULL', 'M', 'kyle3@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2876 Morgan Territory Road', 'NULL', '657-555-0140', '2013-05-12', '5-10 Miles'], ['25198', '347', 'AW00025198', 'NULL', 'Michelle', 'NULL', 'Ramirez', '0', '1965-05-05', 'M', 'NULL', 'F', 'michelle8@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6508 Cedar Street', 'NULL', '549-555-0191', '2013-03-21', '5-10 Miles'], ['25199', '316', 'AW00025199', 'NULL', 'Kyle', 'L', 'Griffin', '0', '1958-10-19', 'M', 'NULL', 'M', 'kyle16@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6512 Button Court', 'NULL', '340-555-0171', '2013-03-13', '5-10 Miles'], ['25200', '641', 'AW00025200', 'NULL', 'Nathan', 'NULL', 'Williams', '0', '1958-02-13', 'M', 'NULL', 'M', 'nathan60@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1201 Paso Del Rio Way', 'NULL', '838-555-0120', '2013-12-25', '5-10 Miles'], ['25201', '314', 'AW00025201', 'NULL', 'Hunter', 'C', 'Gonzalez', '0', '1962-03-15', 'M', 'NULL', 'M', 'hunter37@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4289 Wellington Avenue', 'NULL', '164-555-0130', '2013-10-21', '5-10 Miles'], ['25202', '545', 'AW00025202', 'NULL', 'Jonathan', 'C', 'King', '0', '1957-01-21', 'S', 'NULL', 'M', 'jonathan49@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4201 Logan Court', 'NULL', '801-555-0140', '2013-11-15', '5-10 Miles'], ['25203', '298', 'AW00025203', 'NULL', 'Caroline', 'NULL', 'Wood', '0', '1956-08-22', 'S', 'NULL', 'F', 'caroline4@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '8406 S Royal Links Circle', 'NULL', '579-555-0141', '2013-03-13', '1-2 Miles'], ['25204', '374', 'AW00025204', 'NULL', 'Kelly', 'NULL', 'Barnes', '0', '1956-03-19', 'S', 'NULL', 'F', 'kelly7@adventure-works.com', '40000.00', '4', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '8783 Blocking Ct', 'NULL', '817-555-0110', '2013-03-18', '1-2 Miles'], ['25205', '300', 'AW00025205', 'NULL', 'John', 'NULL', 'Jones', '0', '1960-09-10', 'S', 'NULL', 'M', 'john41@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8113 Carlisle Way', 'NULL', '825-555-0143', '2013-10-31', '5-10 Miles'], ['25206', '334', 'AW00025206', 'NULL', 'Ryan', 'W', 'Bryant', '0', '1960-10-02', 'S', 'NULL', 'M', 'ryan21@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6658 Radar Blvd', 'NULL', '837-555-0116', '2013-04-01', '5-10 Miles'], ['25207', '634', 'AW00025207', 'NULL', 'Destiny', 'C', 'Moore', '0', '1954-08-09', 'S', 'NULL', 'F', 'destiny8@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1099 Catalpa Court', 'NULL', '264-555-0128', '2013-05-07', '5-10 Miles'], ['25208', '316', 'AW00025208', 'NULL', 'Daniel', 'P', 'Taylor', '0', '1955-04-06', 'S', 'NULL', 'M', 'daniel6@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1830 Tabora Drive', 'NULL', '758-555-0132', '2013-05-21', '5-10 Miles'], ['25209', '63', 'AW00025209', 'NULL', 'Emma', 'M', 'Walker', '0', '1955-04-03', 'S', 'NULL', 'F', 'emma22@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '2601 Amaranth Way', 'NULL', '885-555-0197', '2013-07-25', '1-2 Miles'], ['25210', '20', 'AW00025210', 'NULL', 'Kathryn', 'NULL', 'Xu', '0', '1975-11-22', 'M', 'NULL', 'F', 'kathryn4@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '4308 Sand Pointe Lane', 'NULL', '1 (11) 500 555-0166', '2013-06-08', '5-10 Miles'], ['25211', '8', 'AW00025211', 'NULL', 'Diane', 'M', 'Torres', '0', '1970-01-11', 'M', 'NULL', 'F', 'diane16@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '2924 Michigan Blvd.', 'NULL', '1 (11) 500 555-0143', '2013-10-21', '10+ Miles'], ['25212', '35', 'AW00025212', 'NULL', 'Alberto', 'L', 'Ruiz', '0', '1968-12-29', 'M', 'NULL', 'M', 'alberto3@adventure-works.com', '60000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4775 Kentucky Dr.', 'Unit E', '1 (11) 500 555-0161', '2013-11-15', '5-10 Miles'], ['25213', '28', 'AW00025213', 'NULL', 'Cheryl', 'O', 'Gutierrez', '0', '1969-03-26', 'S', 'NULL', 'F', 'cheryl13@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1462 Summit View Dr.', 'NULL', '1 (11) 500 555-0117', '2012-11-11', '5-10 Miles'], ['25214', '28', 'AW00025214', 'NULL', 'Roger', 'NULL', 'Chander', '0', '1968-08-03', 'S', 'NULL', 'M', 'roger43@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '2894 Foothill Way', 'NULL', '1 (11) 500 555-0130', '2012-11-27', '5-10 Miles'], ['25215', '32', 'AW00025215', 'NULL', 'Natalie', 'NULL', 'Gonzalez', '0', '1974-02-11', 'S', 'NULL', 'F', 'natalie60@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '8102 Birch Bark Road', 'NULL', '1 (11) 500 555-0161', '2012-11-04', '0-1 Miles'], ['25216', '29', 'AW00025216', 'NULL', 'Rachael', 'NULL', 'Raman', '0', '1974-06-04', 'S', 'NULL', 'F', 'rachael12@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4817 Julpum Loop', 'NULL', '1 (11) 500 555-0195', '2013-09-05', '5-10 Miles'], ['25217', '20', 'AW00025217', 'NULL', 'Byron', 'E', 'Martin', '0', '1973-04-15', 'M', 'NULL', 'M', 'byron0@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '4024 Dos Encinas', 'NULL', '1 (11) 500 555-0166', '2013-04-25', '0-1 Miles'], ['25218', '34', 'AW00025218', 'NULL', 'Christy', 'NULL', 'Sun', '0', '1973-02-15', 'M', 'NULL', 'F', 'christy11@adventure-works.com', '90000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '2314 Chelsea Way', 'NULL', '1 (11) 500 555-0156', '2012-11-11', '0-1 Miles'], ['25219', '13', 'AW00025219', 'NULL', 'Karla', 'NULL', 'Lal', '0', '1972-09-16', 'M', 'NULL', 'F', 'karla9@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '352 Margo Dr.', 'NULL', '1 (11) 500 555-0111', '2013-04-06', '0-1 Miles'], ['25220', '21', 'AW00025220', 'NULL', 'Emily', 'M', 'Anderson', '0', '1972-11-18', 'M', 'NULL', 'F', 'emily10@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1639 Atchinson Stage Ct.', 'NULL', '1 (11) 500 555-0192', '2013-03-10', '5-10 Miles'], ['25221', '11', 'AW00025221', 'NULL', 'Erica', 'NULL', 'Zhu', '0', '1966-10-15', 'S', 'NULL', 'F', 'erica14@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '424 Yosemite Dr.', 'NULL', '1 (11) 500 555-0157', '2012-11-18', '5-10 Miles'], ['25222', '36', 'AW00025222', 'NULL', 'Tamara', 'A', 'Kumar', '0', '1972-04-17', 'S', 'NULL', 'F', 'tamara19@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '5722 Hemlock Ave.', 'NULL', '1 (11) 500 555-0178', '2012-10-28', '0-1 Miles'], ['25223', '18', 'AW00025223', 'NULL', 'Armando', 'K', 'Ortega', '0', '1971-09-18', 'S', 'NULL', 'M', 'armando22@adventure-works.com', '110000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '8552 Oak Park Blvd', 'NULL', '1 (11) 500 555-0187', '2013-03-27', '1-2 Miles'], ['25224', '3', 'AW00025224', 'NULL', 'Keith', 'M', 'Kumar', '0', '1970-09-24', 'S', 'NULL', 'M', 'keith10@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '8084 Cardiff Drive', 'NULL', '1 (11) 500 555-0199', '2013-04-02', '5-10 Miles'], ['25225', '29', 'AW00025225', 'NULL', 'Alicia', 'NULL', 'Yuan', '0', '1970-10-22', 'S', 'NULL', 'F', 'alicia5@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5629 San Francisco', 'NULL', '1 (11) 500 555-0117', '2012-12-07', '5-10 Miles'], ['25226', '4', 'AW00025226', 'NULL', 'Robert', 'NULL', 'Kumar', '0', '1971-05-09', 'S', 'NULL', 'M', 'robert40@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6121 Cook Pk', 'NULL', '1 (11) 500 555-0129', '2012-12-22', '5-10 Miles'], ['25227', '6', 'AW00025227', 'NULL', 'Jaime', 'A', 'Gutierrez', '0', '1982-01-16', 'S', 'NULL', 'M', 'jaime49@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '4092 Marlene Drive', 'NULL', '1 (11) 500 555-0154', '2013-10-08', '1-2 Miles'], ['25228', '12', 'AW00025228', 'NULL', 'Brad', 'NULL', 'Ashe', '0', '1975-10-11', 'S', 'NULL', 'M', 'brad23@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1491 Marina Vill Pkwy', 'NULL', '1 (11) 500 555-0161', '2012-12-22', '5-10 Miles'], ['25229', '16', 'AW00025229', 'NULL', 'Autumn', 'L', 'Zhou', '0', '1969-09-12', 'S', 'NULL', 'F', 'autumn8@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '8096 West M Street', 'NULL', '1 (11) 500 555-0191', '2012-12-17', '5-10 Miles'], ['25230', '32', 'AW00025230', 'NULL', 'Sophia', 'D', 'Carter', '0', '1970-05-16', 'S', 'NULL', 'F', 'sophia9@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5359 S. Silver Spring', 'NULL', '1 (11) 500 555-0182', '2013-05-13', '5-10 Miles'], ['25231', '19', 'AW00025231', 'NULL', 'Olivia', 'A', 'Moore', '0', '1964-12-19', 'S', 'NULL', 'F', 'olivia7@adventure-works.com', '90000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '2856 High St.', 'NULL', '1 (11) 500 555-0119', '2012-12-11', '2-5 Miles'], ['25232', '22', 'AW00025232', 'NULL', 'Kellie', 'M', 'Blanco', '0', '1964-09-09', 'M', 'NULL', 'F', 'kellie14@adventure-works.com', '100000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2973 Cardinet Drive', 'NULL', '1 (11) 500 555-0137', '2014-01-23', '10+ Miles'], ['25233', '40', 'AW00025233', 'NULL', 'Nathaniel', 'NULL', 'Ward', '0', '1964-11-05', 'M', 'NULL', 'M', 'nathaniel13@adventure-works.com', '100000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '558 Levee Rd.', 'NULL', '1 (11) 500 555-0182', '2013-07-11', '10+ Miles'], ['25234', '31', 'AW00025234', 'NULL', 'Monica', 'J', 'Patel', '0', '1974-10-06', 'S', 'NULL', 'F', 'monica3@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '40 Ellis St.', 'NULL', '1 (11) 500 555-0134', '2012-12-20', '5-10 Miles'], ['25235', '4', 'AW00025235', 'NULL', 'Monique', 'NULL', 'Torres', '0', '1968-06-26', 'M', 'NULL', 'F', 'monique8@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8421 St. Francis', 'NULL', '1 (11) 500 555-0181', '2012-12-10', '5-10 Miles'], ['25236', '9', 'AW00025236', 'NULL', 'Lance', 'NULL', 'Martin', '0', '1967-07-09', 'S', 'NULL', 'M', 'lance0@adventure-works.com', '70000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '4422 Roxbury Drive', 'NULL', '1 (11) 500 555-0179', '2013-09-23', '5-10 Miles'], ['25237', '26', 'AW00025237', 'NULL', 'Roger', 'C', 'Sun', '0', '1978-12-12', 'M', 'NULL', 'M', 'roger18@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7236 Tanager Circle', 'NULL', '1 (11) 500 555-0165', '2014-01-17', '5-10 Miles'], ['25238', '17', 'AW00025238', 'NULL', 'Kristopher', 'A', 'Madan', '0', '1967-07-16', 'M', 'NULL', 'M', 'kristopher7@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5205 Coralie Drive', 'NULL', '1 (11) 500 555-0173', '2013-06-06', '0-1 Miles'], ['25239', '40', 'AW00025239', 'NULL', 'Isabella', 'J', 'Barnes', '0', '1967-12-23', 'M', 'NULL', 'F', 'isabella14@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4055 Leonard Ct.', 'NULL', '1 (11) 500 555-0177', '2013-09-27', '0-1 Miles'], ['25240', '19', 'AW00025240', 'NULL', 'Ross', 'NULL', 'Rana', '0', '1972-08-14', 'M', 'NULL', 'M', 'ross11@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '8869 San Onofre Court', 'NULL', '1 (11) 500 555-0167', '2012-12-23', '5-10 Miles'], ['25241', '32', 'AW00025241', 'NULL', 'Aaron', 'NULL', 'Powell', '0', '1964-06-23', 'M', 'NULL', 'M', 'aaron8@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9333 Georgia Street', 'NULL', '1 (11) 500 555-0168', '2013-06-19', '5-10 Miles'], ['25242', '11', 'AW00025242', 'NULL', 'Susan', 'NULL', 'Hu', '0', '1969-04-17', 'S', 'NULL', 'F', 'susan31@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '7943 Walnut Ave', 'NULL', '1 (11) 500 555-0181', '2012-12-12', '2-5 Miles'], ['25243', '28', 'AW00025243', 'NULL', 'Tonya', 'NULL', 'Rai', '0', '1963-09-05', 'S', 'NULL', 'F', 'tonya17@adventure-works.com', '100000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9551 Alet Court', 'NULL', '1 (11) 500 555-0195', '2012-12-14', '1-2 Miles'], ['25244', '4', 'AW00025244', 'NULL', 'Jay', 'A', 'Weber', '0', '1962-09-04', 'S', 'NULL', 'M', 'jay10@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5785 American Beauty Dr', 'NULL', '1 (11) 500 555-0176', '2013-03-03', '5-10 Miles'], ['25245', '2', 'AW00025245', 'NULL', 'Francis', 'NULL', 'Gutierrez', '0', '1941-08-26', 'S', 'NULL', 'M', 'francis8@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7291 Summerfield Dr.', 'NULL', '1 (11) 500 555-0154', '2013-08-15', '0-1 Miles'], ['25246', '32', 'AW00025246', 'NULL', 'Warren', 'B', 'Lal', '0', '1941-12-12', 'M', 'NULL', 'M', 'warren39@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '5514 Cape Cod Way', 'NULL', '1 (11) 500 555-0130', '2013-11-09', '5-10 Miles'], ['25247', '31', 'AW00025247', 'NULL', 'Lindsay', 'M', 'Nara', '0', '1971-05-13', 'M', 'NULL', 'F', 'lindsay17@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '9687 Shakespeare Drive', 'NULL', '1 (11) 500 555-0157', '2013-11-27', '10+ Miles'], ['25248', '38', 'AW00025248', 'NULL', 'Denise', 'R', 'Madan', '0', '1965-09-16', 'M', 'NULL', 'F', 'denise9@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '9697 Mcelroy Court', 'NULL', '1 (11) 500 555-0119', '2013-11-21', '10+ Miles'], ['25249', '4', 'AW00025249', 'NULL', 'Alexandra', 'H', 'Watson', '0', '1963-02-05', 'S', 'NULL', 'F', 'alexandra20@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '2904 San Simeon Ct.', 'NULL', '1 (11) 500 555-0134', '2011-01-02', '0-1 Miles'], ['25250', '23', 'AW00025250', 'NULL', 'Anthony', 'T', 'Walker', '0', '1962-10-09', 'S', 'NULL', 'M', 'anthony9@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '2131 Minert Rd.', 'NULL', '1 (11) 500 555-0154', '2011-01-25', '0-1 Miles'], ['25251', '24', 'AW00025251', 'NULL', 'Toni', 'J', 'Rodriguez', '0', '1968-06-18', 'S', 'NULL', 'F', 'toni20@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5007 Castle Rock Rd.', 'NULL', '1 (11) 500 555-0114', '2013-12-03', '5-10 Miles'], ['25252', '2', 'AW00025252', 'NULL', 'Warren', 'L', 'Zhang', '0', '1961-10-02', 'S', 'NULL', 'M', 'warren17@adventure-works.com', '80000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3905 Harvard Drive', 'NULL', '1 (11) 500 555-0191', '2011-01-17', '0-1 Miles'], ['25253', '618', 'AW00025253', 'NULL', 'Ryan', 'F', 'Miller', '0', '1981-07-12', 'M', 'NULL', 'M', 'ryan45@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5502 Sun View Terr.', 'NULL', '341-555-0122', '2013-03-19', '5-10 Miles'], ['25254', '612', 'AW00025254', 'NULL', 'Krystal', 'A', 'She', '0', '1981-12-08', 'S', 'NULL', 'F', 'krystal23@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6558 Pacifica Ave.', 'NULL', '433-555-0128', '2013-07-31', '5-10 Miles'], ['25255', '360', 'AW00025255', 'NULL', 'Logan', 'L', 'Lal', '0', '1980-10-24', 'M', 'NULL', 'M', 'logan2@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9669 Vista Court', 'NULL', '508-555-0111', '2013-08-07', '5-10 Miles'], ['25256', '65', 'AW00025256', 'NULL', 'Eric', 'G', 'Hill', '0', '1980-10-25', 'M', 'NULL', 'M', 'eric54@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6565 Jamie Way', 'NULL', '614-555-0127', '2013-02-27', '5-10 Miles'], ['25257', '307', 'AW00025257', 'NULL', 'Harold', 'T', 'Sanchez', '0', '1986-04-01', 'M', 'NULL', 'M', 'harold17@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7179 Golden Rain', 'NULL', '871-555-0179', '2013-07-06', '5-10 Miles'], ['25258', '310', 'AW00025258', 'NULL', 'Micheal', 'NULL', 'Vazquez', '0', '1986-02-10', 'M', 'NULL', 'M', 'micheal10@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1314 Greenview Court', 'NULL', '251-555-0141', '2013-08-21', '5-10 Miles'], ['25259', '641', 'AW00025259', 'NULL', 'Ethan', 'NULL', 'Thomas', '0', '1985-03-21', 'M', 'NULL', 'M', 'ethan44@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5751 San Vincente Drive', 'NULL', '185-555-0143', '2013-04-13', '0-1 Miles'], ['25260', '648', 'AW00025260', 'NULL', 'Dalton', 'NULL', 'Howard', '0', '1984-02-08', 'S', 'NULL', 'M', 'dalton82@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6925 Post Road', 'NULL', '635-555-0176', '2013-08-31', '5-10 Miles'], ['25261', '326', 'AW00025261', 'NULL', 'Eduardo', 'A', 'Phillips', '0', '1984-03-31', 'M', 'NULL', 'M', 'eduardo39@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4623 St. George Dr', 'NULL', '201-555-0146', '2013-03-25', '5-10 Miles'], ['25262', '36', 'AW00025262', 'NULL', 'Andre', 'L', 'Chandra', '0', '1944-03-05', 'M', 'NULL', 'M', 'andre2@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '6034 Thunderbird Dr.', 'NULL', '1 (11) 500 555-0199', '2013-12-13', '0-1 Miles'], ['25263', '12', 'AW00025263', 'NULL', 'Audrey', 'A', 'Carlson', '0', '1944-03-13', 'S', 'NULL', 'F', 'audrey20@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2341 Breaker Dr.', 'NULL', '1 (11) 500 555-0160', '2013-09-08', '5-10 Miles'], ['25264', '298', 'AW00025264', 'NULL', 'Wyatt', 'NULL', 'Bryant', '0', '1982-10-14', 'S', 'NULL', 'M', 'wyatt68@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4744 Mary Dr.', 'NULL', '367-555-0158', '2013-10-22', '5-10 Miles'], ['25265', '50', 'AW00025265', 'NULL', 'Hannah', 'J', 'Smith', '0', '1984-08-21', 'S', 'NULL', 'F', 'hannah1@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5795 Morning Glory Dr.', 'NULL', '805-555-0118', '2013-03-19', '5-10 Miles'], ['25266', '31', 'AW00025266', 'NULL', 'Kari', 'NULL', 'Suri', '0', '1944-10-20', 'S', 'NULL', 'F', 'kari2@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6386 Holiday Hill Dr', 'NULL', '1 (11) 500 555-0184', '2013-07-05', '5-10 Miles'], ['25267', '6', 'AW00025267', 'NULL', 'Arthur', 'E', 'Malhotra', '0', '1944-11-18', 'M', 'NULL', 'M', 'arthur7@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9641 Matterhorn Ct.', 'NULL', '1 (11) 500 555-0157', '2013-03-23', '5-10 Miles'], ['25268', '15', 'AW00025268', 'NULL', 'Jaime', 'NULL', 'Andersen', '0', '1944-08-11', 'M', 'NULL', 'M', 'jaime35@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '3354 Ruby Lane', 'NULL', '1 (11) 500 555-0112', '2013-09-21', '0-1 Miles'], ['25269', '19', 'AW00025269', 'NULL', 'Tabitha', 'NULL', 'Martin', '0', '1944-09-30', 'S', 'NULL', 'F', 'tabitha19@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '7375 Kipling Court', 'NULL', '1 (11) 500 555-0138', '2013-09-10', '5-10 Miles'], ['25270', '29', 'AW00025270', 'NULL', 'Gloria', 'NULL', 'Diaz', '0', '1949-03-02', 'M', 'NULL', 'F', 'gloria5@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '7770 Mota Dr.', 'NULL', '1 (11) 500 555-0157', '2011-01-31', '0-1 Miles'], ['25271', '13', 'AW00025271', 'NULL', 'Mario', 'NULL', 'Shan', '0', '1960-05-23', 'S', 'NULL', 'M', 'mario8@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '7838 Euclid Ave.', 'NULL', '1 (11) 500 555-0173', '2011-02-10', '0-1 Miles'], ['25272', '16', 'AW00025272', 'NULL', 'Edwin', 'J', 'Xu', '0', '1948-09-18', 'S', 'NULL', 'M', 'edwin13@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '9231 Santa Ana Drive', 'NULL', '1 (11) 500 555-0118', '2011-02-21', '1-2 Miles'], ['25273', '17', 'AW00025273', 'NULL', 'Karl', 'M', 'Rai', '0', '1948-12-02', 'M', 'NULL', 'M', 'karl18@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '9436 Oakmead', 'NULL', '1 (11) 500 555-0175', '2011-02-26', '1-2 Miles'], ['25274', '627', 'AW00025274', 'NULL', 'Samantha', 'M', 'Henderson', '0', '1982-02-10', 'S', 'NULL', 'F', 'samantha30@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6346 Doyle', 'NULL', '647-555-0136', '2013-10-02', '1-2 Miles'], ['25275', '632', 'AW00025275', 'NULL', 'Christina', 'NULL', 'Watson', '0', '1981-08-25', 'S', 'NULL', 'F', 'christina0@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '973 Broadway Street', 'NULL', '757-555-0167', '2013-08-15', '1-2 Miles'], ['25276', '648', 'AW00025276', 'NULL', 'Mackenzie', 'G', 'Richardson', '0', '1982-01-05', 'S', 'NULL', 'F', 'mackenzie8@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '2422 Brookview Drive', 'NULL', '171-555-0149', '2013-08-09', '1-2 Miles'], ['25277', '311', 'AW00025277', 'NULL', 'Jermaine', 'NULL', 'Fernandez', '0', '1981-07-14', 'S', 'NULL', 'M', 'jermaine14@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1434 Boxwood Drive', 'NULL', '248-555-0154', '2013-10-15', '5-10 Miles'], ['25278', '315', 'AW00025278', 'NULL', 'Brianna', 'B', 'Butler', '0', '1982-06-20', 'M', 'NULL', 'F', 'brianna59@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7861 Yosemite Dr.', 'NULL', '597-555-0147', '2013-10-02', '5-10 Miles'], ['25279', '372', 'AW00025279', 'NULL', 'Jordyn', 'L', 'Barnes', '0', '1981-09-07', 'S', 'NULL', 'F', 'jordyn2@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '2983 Yosemite Ct', 'NULL', '211-555-0131', '2013-12-23', '1-2 Miles'], ['25280', '374', 'AW00025280', 'NULL', 'Emily', 'A', 'Price', '0', '1981-12-03', 'S', 'NULL', 'F', 'emily25@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '26 Leland Way', 'NULL', '525-555-0171', '2013-12-23', '1-2 Miles'], ['25281', '635', 'AW00025281', 'NULL', 'Jeremy', 'J', 'Allen', '0', '1981-03-13', 'S', 'NULL', 'M', 'jeremy7@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5091 Laurel Dr.', 'NULL', '337-555-0184', '2013-03-26', '1-2 Miles'], ['25282', '312', 'AW00025282', 'NULL', 'Gabriel', 'E', 'Perez', '0', '1985-01-06', 'S', 'NULL', 'M', 'gabriel33@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1349 Sol St.', 'NULL', '567-555-0195', '2014-01-08', '1-2 Miles'], ['25283', '338', 'AW00025283', 'NULL', 'Caitlin', 'A', 'Howard', '0', '1980-03-03', 'S', 'NULL', 'F', 'caitlin9@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '7817 Mt. Wilson Way', 'NULL', '539-555-0190', '2013-07-22', '1-2 Miles'], ['25284', '315', 'AW00025284', 'NULL', 'Allison', 'NULL', 'Mitchell', '0', '1983-06-16', 'S', 'NULL', 'F', 'allison34@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5739 Pleasant Hill Rd.', 'NULL', '246-555-0179', '2013-06-01', '5-10 Miles'], ['25285', '614', 'AW00025285', 'NULL', 'Noah', 'B', 'Williams', '0', '1977-11-30', 'S', 'NULL', 'M', 'noah58@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8100 Contra Loma Blvd.', 'NULL', '477-555-0174', '2013-06-14', '5-10 Miles'], ['25286', '374', 'AW00025286', 'NULL', 'Zachary', 'NULL', 'Powell', '0', '1978-03-04', 'S', 'NULL', 'M', 'zachary7@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '3115 Warmcastle Ct', 'NULL', '615-555-0121', '2013-06-10', '0-1 Miles'], ['25287', '52', 'AW00025287', 'NULL', 'Paige', 'NULL', 'Sanders', '0', '1983-11-13', 'S', 'NULL', 'F', 'paige26@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '243 Pine Dr', 'NULL', '569-555-0191', '2012-01-29', '0-1 Miles'], ['25288', '51', 'AW00025288', 'NULL', 'Jordyn', 'NULL', 'Flores', '0', '1974-03-08', 'S', 'NULL', 'F', 'jordyn12@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '6228 Rivewview', 'NULL', '554-555-0169', '2012-02-16', '0-1 Miles'], ['25289', '546', 'AW00025289', 'NULL', 'Amanda', 'NULL', 'Bradley', '0', '1974-03-01', 'S', 'NULL', 'F', 'amanda5@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '6797 Almondtree Circle', 'NULL', '240-555-0134', '2013-06-24', '0-1 Miles'], ['25290', '545', 'AW00025290', 'NULL', 'Jackson', 'NULL', 'Mitchell', '0', '1974-04-22', 'S', 'NULL', 'M', 'jackson41@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '5615 Detroit Ave.', 'NULL', '636-555-0168', '2013-06-26', '1-2 Miles'], ['25291', '616', 'AW00025291', 'NULL', 'Marissa', 'NULL', 'Griffin', '0', '1973-10-24', 'M', 'NULL', 'F', 'marissa16@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '9903 Mt. Washington Way', 'NULL', '270-555-0131', '2013-12-20', '1-2 Miles'], ['25292', '359', 'AW00025292', 'NULL', 'Eduardo', 'A', 'Adams', '0', '1972-11-11', 'S', 'NULL', 'M', 'eduardo30@adventure-works.com', '120000.00', '0', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '4283 Meaham Drive', 'NULL', '414-555-0196', '2013-05-14', '1-2 Miles'], ['25293', '542', 'AW00025293', 'NULL', 'Eric', 'A', 'Gonzales', '0', '1969-04-21', 'M', 'NULL', 'M', 'eric24@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '237 El Centro', 'NULL', '157-555-0121', '2013-09-27', '1-2 Miles'], ['25294', '12', 'AW00025294', 'NULL', 'Sharon', 'T', 'Sharma', '0', '1977-04-17', 'S', 'NULL', 'F', 'sharon16@adventure-works.com', '130000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Management', 'Gestión', 'Direction', '1', '4', '3528 Sweetwater Drive', 'Unit A', '1 (11) 500 555-0110', '2011-02-02', '0-1 Miles'], ['25295', '35', 'AW00025295', 'NULL', 'Chad', 'A', 'Raje', '0', '1975-03-01', 'M', 'NULL', 'M', 'chad16@adventure-works.com', '130000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Management', 'Gestión', 'Direction', '1', '4', '1660 Bonifacio St.', 'NULL', '1 (11) 500 555-0169', '2014-01-14', '0-1 Miles'], ['25296', '208', 'AW00025296', 'NULL', 'Christina', 'R', 'Stewart', '0', '1962-07-05', 'M', 'NULL', 'F', 'christina21@adventure-works.com', '100000.00', '2', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '29, avenue de la Gare', 'NULL', '1 (11) 500 555-0193', '2014-01-20', '5-10 Miles'], ['25297', '173', 'AW00025297', 'NULL', 'Devon', 'T', 'Shan', '0', '1979-09-16', 'S', 'NULL', 'M', 'devon8@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Höhenstr 7477', 'NULL', '1 (11) 500 555-0113', '2013-11-25', '2-5 Miles'], ['25298', '240', 'AW00025298', 'NULL', 'Cedric', 'W', 'He', '0', '1985-10-23', 'M', 'NULL', 'M', 'cedric18@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '3627 Warren Street', 'NULL', '1 (11) 500 555-0121', '2013-09-05', '1-2 Miles'], ['25299', '187', 'AW00025299', 'NULL', 'Hector', 'E', 'Romero', '0', '1986-04-25', 'M', 'NULL', 'M', 'hector7@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '29, boulevard Beau Marchais', 'NULL', '1 (11) 500 555-0181', '2013-04-06', '1-2 Miles'], ['25300', '157', 'AW00025300', 'NULL', 'Jamie', 'P', 'Ashe', '0', '1985-10-30', 'M', 'NULL', 'M', 'jamie32@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Platz des Landtags 25', 'NULL', '1 (11) 500 555-0183', '2013-06-06', '1-2 Miles'], ['25301', '235', 'AW00025301', 'NULL', 'Raul', 'NULL', 'Black', '0', '1985-11-16', 'S', 'NULL', 'M', 'raul18@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '2206 Countrywood Ct', 'NULL', '1 (11) 500 555-0131', '2013-10-22', '1-2 Miles'], ['25302', '176', 'AW00025302', 'NULL', 'Manuel', 'NULL', 'Mehta', '0', '1983-11-23', 'S', 'NULL', 'M', 'manuel12@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Kapellstr 4266', 'NULL', '1 (11) 500 555-0114', '2013-12-08', '1-2 Miles'], ['25303', '147', 'AW00025303', 'NULL', 'Jeremiah', 'C', 'Hernandez', '0', '1984-05-24', 'S', 'NULL', 'M', 'jeremiah13@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Kalkweg 25', 'NULL', '1 (11) 500 555-0116', '2013-11-20', '2-5 Miles'], ['25304', '269', 'AW00025304', 'NULL', 'Ruben', 'J', 'Carlson', '0', '1983-09-14', 'S', 'NULL', 'M', 'ruben41@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '673 Noah Court', 'NULL', '1 (11) 500 555-0156', '2013-05-10', '1-2 Miles'], ['25305', '145', 'AW00025305', 'NULL', 'Ivan', 'H', 'Rodriguez', '0', '1978-11-07', 'M', 'NULL', 'M', 'ivan16@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Erftplatz 22', 'NULL', '1 (11) 500 555-0110', '2013-04-13', '0-1 Miles'], ['25306', '134', 'AW00025306', 'NULL', 'Glenn', 'A', 'Zeng', '0', '1984-12-20', 'M', 'NULL', 'M', 'glenn23@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Königsteiner Straße 750', 'NULL', '1 (11) 500 555-0119', '2013-05-16', '1-2 Miles'], ['25307', '175', 'AW00025307', 'NULL', 'Daisy', 'NULL', 'Hernandez', '0', '1979-03-24', 'M', 'NULL', 'F', 'daisy0@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Königsteiner Straße 641', 'NULL', '1 (11) 500 555-0191', '2013-06-24', '1-2 Miles'], ['25308', '235', 'AW00025308', 'NULL', 'Lindsey', 'C', 'Tang', '0', '1977-08-12', 'S', 'NULL', 'F', 'lindsey4@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6200 Mt. Pisgah', 'NULL', '1 (11) 500 555-0120', '2013-10-05', '1-2 Miles'], ['25309', '115', 'AW00025309', 'NULL', 'Karen', 'NULL', 'Zhou', '0', '1977-11-23', 'S', 'NULL', 'F', 'karen18@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Parkstr 51', 'NULL', '1 (11) 500 555-0168', '2013-11-25', '2-5 Miles'], ['25310', '149', 'AW00025310', 'NULL', 'Janelle', 'A', 'Kapoor', '0', '1982-10-08', 'S', 'NULL', 'F', 'janelle1@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Residenz Straße 944', 'NULL', '1 (11) 500 555-0112', '2013-01-29', '1-2 Miles'], ['25311', '183', 'AW00025311', 'NULL', 'Laura', 'M', 'Zhang', '0', '1978-06-03', 'M', 'NULL', 'F', 'laura7@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5, rue des Bouchers', 'NULL', '1 (11) 500 555-0149', '2013-09-15', '1-2 Miles'], ['25312', '246', 'AW00025312', 'NULL', 'Erik', 'M', 'Ramos', '0', '1977-10-06', 'M', 'NULL', 'M', 'erik18@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '590 Raven Court', 'NULL', '1 (11) 500 555-0179', '2013-11-09', '1-2 Miles'], ['25313', '237', 'AW00025313', 'NULL', 'Trevor', 'C', 'Coleman', '0', '1976-10-30', 'S', 'NULL', 'M', 'trevor5@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '1492 Bermad Dr.', 'NULL', '1 (11) 500 555-0143', '2013-07-25', '1-2 Miles'], ['25314', '207', 'AW00025314', 'NULL', 'Charles', 'J', 'Bell', '0', '1977-05-03', 'S', 'NULL', 'M', 'charles62@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '9839, boulevard Beau Marchais', 'NULL', '1 (11) 500 555-0179', '2013-03-26', '0-1 Miles'], ['25315', '231', 'AW00025315', 'NULL', 'Cole', 'M', 'Cox', '0', '1976-12-15', 'S', 'NULL', 'M', 'cole12@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '7430 Ravenwood', 'NULL', '1 (11) 500 555-0115', '2013-12-06', '0-1 Miles'], ['25316', '205', 'AW00025316', 'NULL', 'Ronnie', 'M', 'Zhu', '0', '1977-04-15', 'S', 'NULL', 'M', 'ronnie12@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '3337 Pinehurst Court', 'NULL', '1 (11) 500 555-0112', '2013-08-06', '0-1 Miles'], ['25317', '172', 'AW00025317', 'NULL', 'Erick', 'NULL', 'Garcia', '0', '1977-03-20', 'S', 'NULL', 'M', 'erick14@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Hans-Rosenthal-Platz 209', 'NULL', '1 (11) 500 555-0189', '2013-07-19', '0-1 Miles'], ['25318', '175', 'AW00025318', 'NULL', 'Dennis', 'C', 'Wang', '0', '1976-12-21', 'S', 'NULL', 'M', 'dennis2@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Hochstr 2666', 'NULL', '1 (11) 500 555-0175', '2013-10-13', '1-2 Miles'], ['25319', '185', 'AW00025319', 'NULL', 'Ruben', 'NULL', 'Chandra', '0', '1976-08-29', 'M', 'NULL', 'M', 'ruben2@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Midi-Couleurs', 'NULL', '1 (11) 500 555-0180', '2013-11-21', '1-2 Miles'], ['25320', '203', 'AW00025320', 'NULL', 'Shannon', 'F', 'Hernandez', '0', '1977-03-10', 'S', 'NULL', 'M', 'shannon25@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '88, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0133', '2013-11-21', '2-5 Miles'], ['25321', '197', 'AW00025321', 'NULL', 'Francis', 'NULL', 'Suarez', '0', '1981-03-03', 'S', 'NULL', 'M', 'francis17@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '88, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0177', '2013-10-18', '1-2 Miles'], ['25322', '163', 'AW00025322', 'NULL', 'Tina', 'J', 'Perez', '0', '1976-09-03', 'S', 'NULL', 'F', 'tina23@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Am Gallberg 644', 'Verkaufsabteilung', '1 (11) 500 555-0149', '2013-06-13', '0-1 Miles'], ['25323', '147', 'AW00025323', 'NULL', 'Lance', 'A', 'Diaz', '0', '1976-10-31', 'M', 'NULL', 'M', 'lance3@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Parise Straße 1252', 'NULL', '1 (11) 500 555-0111', '2013-06-21', '1-2 Miles'], ['25324', '275', 'AW00025324', 'NULL', 'Bethany', 'NULL', 'Andersen', '0', '1977-02-19', 'S', 'NULL', 'F', 'bethany16@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3999 Tobi Drive', 'NULL', '1 (11) 500 555-0187', '2013-02-25', '1-2 Miles'], ['25325', '279', 'AW00025325', 'NULL', 'Wyatt', 'NULL', 'Parker', '0', '1923-08-16', 'S', 'NULL', 'M', 'wyatt45@adventure-works.com', '10000.00', '4', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '6745 Salem St', 'NULL', '1 (11) 500 555-0117', '2013-05-24', '0-1 Miles'], ['25326', '221', 'AW00025326', 'NULL', 'Hunter', 'M', 'Scott', '0', '1975-09-02', 'M', 'NULL', 'M', 'hunter41@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '487, place de la Concorde', 'NULL', '1 (11) 500 555-0146', '2013-07-06', '1-2 Miles'], ['25327', '69', 'AW00025327', 'NULL', 'Adam', 'NULL', 'Simmons', '0', '1980-11-08', 'M', 'NULL', 'M', 'adam13@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4839 Ramsey Circle', 'NULL', '504-555-0140', '2013-06-21', '0-1 Miles'], ['25328', '50', 'AW00025328', 'NULL', 'Rachel', 'D', 'Price', '0', '1979-12-14', 'M', 'NULL', 'F', 'rachel47@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '431 Riverside Drive', 'NULL', '554-555-0116', '2013-07-02', '1-2 Miles'], ['25329', '310', 'AW00025329', 'NULL', 'Jacquelyn', 'NULL', 'Moreno', '0', '1979-12-18', 'S', 'NULL', 'F', 'jacquelyn6@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9347 Arlington Way', 'NULL', '174-555-0120', '2013-03-13', '0-1 Miles'], ['25330', '372', 'AW00025330', 'NULL', 'Madison', 'T', 'Gonzales', '0', '1935-03-21', 'M', 'NULL', 'F', 'madison29@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3967 Arlington Way', 'NULL', '736-555-0141', '2013-12-29', '1-2 Miles'], ['25331', '65', 'AW00025331', 'NULL', 'James', 'NULL', 'White', '0', '1972-03-31', 'M', 'NULL', 'M', 'james85@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '7727 Hitchcock', 'NULL', '317-555-0125', '2013-06-06', '0-1 Miles'], ['25332', '69', 'AW00025332', 'NULL', 'Jackson', 'J', 'Bryant', '0', '1972-01-23', 'M', 'NULL', 'M', 'jackson20@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '5433 Park Glenn', 'NULL', '680-555-0163', '2013-05-30', '0-1 Miles'], ['25333', '536', 'AW00025333', 'NULL', 'Robert', 'L', 'Coleman', '0', '1972-01-23', 'S', 'NULL', 'M', 'robert19@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '8477 Riverwood Circle', 'NULL', '284-555-0154', '2013-09-12', '0-1 Miles'], ['25334', '614', 'AW00025334', 'NULL', 'Marcus', 'M', 'Gonzales', '0', '1982-10-08', 'M', 'NULL', 'M', 'marcus67@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2348 Polaris Dr.', 'NULL', '152-555-0147', '2013-06-04', '1-2 Miles'], ['25335', '49', 'AW00025335', 'NULL', 'Cesar', 'L', 'Rodriguez', '0', '1959-10-13', 'S', 'NULL', 'M', 'cesar19@adventure-works.com', '20000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '1800 Honey Court', 'NULL', '247-555-0191', '2013-02-05', '0-1 Miles'], ['25336', '614', 'AW00025336', 'NULL', 'Chase', 'L', 'Cook', '0', '1960-02-18', 'S', 'NULL', 'M', 'chase22@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6560 Chaparral Court', 'NULL', '485-555-0158', '2013-04-26', '1-2 Miles'], ['25337', '545', 'AW00025337', 'NULL', 'Megan', 'R', 'Washington', '0', '1960-04-15', 'S', 'NULL', 'F', 'megan62@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '8751 Norse Drive', 'NULL', '381-555-0127', '2013-01-31', '1-2 Miles'], ['25338', '546', 'AW00025338', 'NULL', 'Jason', 'NULL', 'Perez', '0', '1960-04-10', 'S', 'NULL', 'M', 'jason33@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5795 Birch Bark Road', 'NULL', '350-555-0172', '2013-05-01', '1-2 Miles'], ['25339', '329', 'AW00025339', 'NULL', 'Adrian', 'NULL', 'Rivera', '0', '1965-04-09', 'M', 'NULL', 'M', 'adrian17@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1495 Linnet Court', 'NULL', '383-555-0116', '2013-03-19', '0-1 Miles'], ['25340', '53', 'AW00025340', 'NULL', 'Adrian', 'C', 'James', '0', '1961-05-20', 'S', 'NULL', 'M', 'adrian1@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '891 Melinda Court', 'NULL', '156-555-0142', '2013-11-18', '0-1 Miles'], ['25341', '331', 'AW00025341', 'NULL', 'Kaitlyn', 'J', 'Cook', '0', '1960-11-21', 'S', 'NULL', 'F', 'kaitlyn51@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5436 Via Del Sol', 'NULL', '725-555-0122', '2013-06-26', '0-1 Miles'], ['25342', '627', 'AW00025342', 'NULL', 'Seth', 'M', 'Hill', '0', '1966-10-03', 'S', 'NULL', 'M', 'seth30@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2998 Brook Street', 'NULL', '157-555-0143', '2013-05-04', '0-1 Miles'], ['25343', '343', 'AW00025343', 'NULL', 'Carol', 'L', 'Simmons', '0', '1966-09-19', 'S', 'NULL', 'F', 'carol21@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '8841 Thornwood Dr.', 'NULL', '695-555-0140', '2013-04-07', '1-2 Miles'], ['25344', '626', 'AW00025344', 'NULL', 'Thomas', 'NULL', 'Baker', '0', '1960-07-24', 'M', 'NULL', 'M', 'thomas52@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5185 Relis Valley Road', 'NULL', '289-555-0149', '2013-10-18', '2-5 Miles'], ['25345', '339', 'AW00025345', 'NULL', 'Olivia', 'B', 'Powell', '0', '1961-08-11', 'S', 'NULL', 'F', 'olivia54@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5118 Boxwood Dr.', 'NULL', '152-555-0127', '2013-09-09', '1-2 Miles'], ['25346', '631', 'AW00025346', 'NULL', 'Ian', 'NULL', 'Gonzalez', '0', '1962-02-09', 'S', 'NULL', 'M', 'ian32@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1901 Delaware Drive', 'NULL', '364-555-0127', '2014-01-11', '1-2 Miles'], ['25347', '50', 'AW00025347', 'NULL', 'Judith', 'D', 'Reed', '0', '1967-11-29', 'S', 'NULL', 'F', 'judith5@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6702 Woodsworth Lane', 'NULL', '220-555-0118', '2013-04-14', '0-1 Miles'], ['25348', '358', 'AW00025348', 'NULL', 'Angela', 'M', 'Wood', '0', '1962-01-15', 'S', 'NULL', 'F', 'angela4@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '273 Pleasant Hill Road', 'NULL', '299-555-0187', '2013-05-04', '0-1 Miles'], ['25349', '50', 'AW00025349', 'NULL', 'Jose', 'S', 'Coleman', '0', '1962-03-25', 'M', 'NULL', 'M', 'jose29@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1716 Rosewood Dr', 'NULL', '960-555-0194', '2013-07-28', '1-2 Miles'], ['25350', '301', 'AW00025350', 'NULL', 'Alberto', 'NULL', 'Alonso', '0', '1962-08-24', 'M', 'NULL', 'M', 'alberto9@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1369 Rambling Lane', 'NULL', '875-555-0149', '2013-09-12', '1-2 Miles'], ['25351', '545', 'AW00025351', 'NULL', 'Jordan', 'NULL', 'Phillips', '0', '1968-10-19', 'M', 'NULL', 'F', 'jordan34@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5871 Matterhorn Court', 'NULL', '983-555-0198', '2013-04-05', '0-1 Miles'], ['25352', '542', 'AW00025352', 'NULL', 'Brandon', 'S', 'Martinez', '0', '1962-08-14', 'M', 'NULL', 'M', 'brandon44@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '843 Camino Verde Cr.', 'NULL', '327-555-0193', '2013-09-03', '0-1 Miles'], ['25353', '637', 'AW00025353', 'NULL', 'Caitlin', 'NULL', 'Stewart', '0', '1968-04-16', 'S', 'NULL', 'F', 'caitlin20@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3258 Marsh Meadow Way', 'NULL', '277-555-0153', '2013-09-06', '1-2 Miles'], ['25354', '385', 'AW00025354', 'NULL', 'Kevin', 'A', 'Hughes', '0', '1968-08-13', 'S', 'NULL', 'M', 'kevin14@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4660 Cape Cod Way', 'NULL', '876-555-0174', '2013-11-28', '1-2 Miles'], ['25355', '614', 'AW00025355', 'NULL', 'Richard', 'NULL', 'Smith', '0', '1962-12-01', 'M', 'NULL', 'M', 'richard40@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2141 Banking Road', 'NULL', '308-555-0185', '2013-08-03', '0-1 Miles'], ['25356', '612', 'AW00025356', 'NULL', 'Jonathan', 'A', 'Miller', '0', '1968-10-19', 'M', 'NULL', 'M', 'jonathan56@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5297 Carlos Dr.', 'NULL', '757-555-0188', '2013-04-18', '0-1 Miles'], ['25357', '302', 'AW00025357', 'NULL', 'Marcus', 'E', 'Foster', '0', '1968-07-19', 'M', 'NULL', 'M', 'marcus66@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '4525 El Pueblo Pl.', 'NULL', '327-555-0132', '2013-10-08', '0-1 Miles'], ['25358', '553', 'AW00025358', 'NULL', 'Jade', 'NULL', 'Torres', '0', '1962-08-10', 'S', 'NULL', 'F', 'jade3@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2897 Stonehedge Dr', 'NULL', '600-555-0119', '2013-07-17', '1-2 Miles'], ['25359', '337', 'AW00025359', 'NULL', 'Alex', 'D', 'Young', '0', '1962-11-24', 'S', 'NULL', 'M', 'alex47@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2748 Adelaide St.', 'NULL', '376-555-0141', '2013-05-22', '1-2 Miles'], ['25360', '338', 'AW00025360', 'NULL', 'Mason', 'A', 'James', '0', '1973-09-12', 'M', 'NULL', 'M', 'mason9@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2234 Teakwood Dr.', 'NULL', '590-555-0119', '2013-10-13', '1-2 Miles'], ['25361', '60', 'AW00025361', 'NULL', 'Haley', 'T', 'Ross', '0', '1963-12-19', 'S', 'NULL', 'F', 'haley23@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8068 Villageoaks Dr.', 'NULL', '242-555-0176', '2012-02-02', '0-1 Miles'], ['25362', '314', 'AW00025362', 'NULL', 'Makayla', 'NULL', 'Bailey', '0', '1969-12-15', 'M', 'NULL', 'F', 'makayla13@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5048 Hawthorne Dr', 'NULL', '671-555-0185', '2013-10-20', '1-2 Miles'], ['25363', '62', 'AW00025363', 'NULL', 'Alexandria', 'E', 'Gray', '0', '1963-08-19', 'M', 'NULL', 'F', 'alexandria29@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1366 Hunt Dr', 'NULL', '880-555-0176', '2012-02-08', '1-2 Miles'], ['25364', '626', 'AW00025364', 'NULL', 'Isaac', 'NULL', 'Rogers', '0', '1963-12-31', 'M', 'NULL', 'M', 'isaac19@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '407 Roxie Lane', 'NULL', '673-555-0153', '2013-11-13', '1-2 Miles'], ['25365', '312', 'AW00025365', 'NULL', 'Gabrielle', 'NULL', 'Perry', '0', '1964-02-21', 'S', 'NULL', 'F', 'gabrielle30@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4865 A St.', '# 260', '456-555-0174', '2013-12-04', '1-2 Miles'], ['25366', '322', 'AW00025366', 'NULL', 'Eduardo', 'L', 'Bailey', '0', '1974-08-11', 'M', 'NULL', 'M', 'eduardo83@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9457 Mendocino Dr.', 'NULL', '617-555-0175', '2013-03-16', '1-2 Miles'], ['25367', '64', 'AW00025367', 'NULL', 'Abigail', 'NULL', 'Torres', '0', '1965-02-02', 'M', 'NULL', 'F', 'abigail18@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '682 Ambush Dr..', 'NULL', '540-555-0193', '2013-12-29', '0-1 Miles'], ['25368', '637', 'AW00025368', 'NULL', 'Blake', 'NULL', 'Baker', '0', '1964-12-31', 'S', 'NULL', 'M', 'blake34@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7550 Carzino Ct', '# 1', '455-555-0126', '2013-04-04', '1-2 Miles'], ['25369', '325', 'AW00025369', 'NULL', 'Evan', 'G', 'Cox', '0', '1970-04-03', 'S', 'NULL', 'M', 'evan11@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '3463 Bel Air Dr.', 'NULL', '287-555-0197', '2013-09-06', '0-1 Miles'], ['25370', '641', 'AW00025370', 'NULL', 'Erin', 'S', 'Bailey', '0', '1965-05-20', 'S', 'NULL', 'F', 'erin20@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '4407 Hobby Court', 'NULL', '172-555-0119', '2013-04-20', '1-2 Miles'], ['25371', '49', 'AW00025371', 'NULL', 'Renee', 'L', 'Gomez', '0', '1983-02-18', 'M', 'NULL', 'F', 'renee1@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1902 Santa Cruz', 'NULL', '815-555-0124', '2012-02-14', '1-2 Miles'], ['25372', '285', 'AW00025372', 'NULL', 'Carrie', 'NULL', 'Torres', '0', '1979-05-06', 'M', 'NULL', 'F', 'carrie11@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4584 Hamiliton Ave.', 'NULL', '565-555-0112', '2013-04-03', '1-2 Miles'], ['25373', '310', 'AW00025373', 'NULL', 'Nichole', 'NULL', 'Chande', '0', '1984-06-04', 'M', 'NULL', 'F', 'nichole14@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3717 Greenway Drive', 'NULL', '721-555-0172', '2013-09-23', '1-2 Miles'], ['25374', '314', 'AW00025374', 'NULL', 'Ana', 'NULL', 'Powell', '0', '1978-08-12', 'S', 'NULL', 'F', 'ana8@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8027 Blue Cr', 'NULL', '571-555-0162', '2013-06-29', '1-2 Miles'], ['25375', '372', 'AW00025375', 'NULL', 'Carson', 'J', 'Flores', '0', '1977-09-18', 'M', 'NULL', 'M', 'carson11@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8641 B Southampton Rd.', 'NULL', '148-555-0177', '2014-01-22', '1-2 Miles'], ['25376', '339', 'AW00025376', 'NULL', 'Alexis', 'S', 'Griffin', '0', '1977-11-03', 'M', 'NULL', 'F', 'alexis44@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1920 E St.', 'NULL', '163-555-0173', '2013-12-07', '1-2 Miles'], ['25377', '314', 'AW00025377', 'NULL', 'Lauren', 'L', 'Anderson', '0', '1976-08-12', 'M', 'NULL', 'F', 'lauren28@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2673 Peterson Place', 'NULL', '920-555-0137', '2013-11-17', '1-2 Miles'], ['25378', '547', 'AW00025378', 'NULL', 'Gabriella', 'A', 'Scott', '0', '1977-02-12', 'M', 'NULL', 'F', 'gabriella37@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1334 Appalachian Drive', 'NULL', '292-555-0126', '2013-02-21', '1-2 Miles'], ['25379', '609', 'AW00025379', 'NULL', 'Hailey', 'M', 'Young', '0', '1977-10-06', 'M', 'NULL', 'F', 'hailey63@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '590 Raven Court', 'NULL', '798-555-0179', '2013-04-29', '2-5 Miles'], ['25380', '642', 'AW00025380', 'NULL', 'Seth', 'D', 'Gonzales', '0', '1983-08-06', 'M', 'NULL', 'M', 'seth65@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2560 B Eagle Peak Rd.', 'NULL', '805-555-0145', '2013-04-17', '2-5 Miles'], ['25381', '310', 'AW00025381', 'NULL', 'Dylan', 'H', 'Li', '0', '1977-07-05', 'S', 'NULL', 'M', 'dylan26@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '2768 Baltic Sea Ct', 'NULL', '114-555-0160', '2013-04-12', '0-1 Miles'], ['25382', '311', 'AW00025382', 'NULL', 'Richard', 'L', 'Hughes', '0', '1983-03-16', 'S', 'NULL', 'M', 'richard66@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '4951 Carlos Dr.', 'NULL', '452-555-0132', '2013-03-30', '0-1 Miles'], ['25383', '618', 'AW00025383', 'NULL', 'Nathan', 'NULL', 'Walker', '0', '1975-09-08', 'M', 'NULL', 'M', 'nathan59@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1028 Indigo Ct.', 'NULL', '556-555-0137', '2013-04-10', '2-5 Miles'], ['25384', '335', 'AW00025384', 'NULL', 'Maria', 'D', 'Cooper', '0', '1975-07-15', 'M', 'NULL', 'F', 'maria11@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3082 Heritage Oaks', 'NULL', '226-555-0149', '2013-03-30', '2-5 Miles'], ['25385', '314', 'AW00025385', 'NULL', 'Destiny', 'K', 'Torres', '0', '1975-10-03', 'M', 'NULL', 'F', 'destiny39@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '811 Via Cordona', 'NULL', '286-555-0114', '2013-04-02', '2-5 Miles'], ['25386', '316', 'AW00025386', 'NULL', 'Alexis', 'S', 'Perry', '0', '1981-05-10', 'M', 'NULL', 'F', 'alexis30@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8675 Linnet Court', 'NULL', '478-555-0113', '2013-05-14', '2-5 Miles'], ['25387', '635', 'AW00025387', 'NULL', 'Stephanie', 'E', 'Brooks', '0', '1975-11-29', 'S', 'NULL', 'F', 'stephanie25@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '7650 Bonita Ave.', 'NULL', '404-555-0112', '2013-05-15', '0-1 Miles'], ['25388', '310', 'AW00025388', 'NULL', 'Ernest', 'NULL', 'Hu', '0', '1975-02-11', 'S', 'NULL', 'M', 'ernest19@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '6732 Arcadia Pl.', '#e', '829-555-0112', '2013-05-22', '0-1 Miles'], ['25389', '311', 'AW00025389', 'NULL', 'Wendy', 'NULL', 'Sanz', '0', '1974-09-11', 'M', 'NULL', 'F', 'wendy19@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7900 Black Walnut Ct.', 'NULL', '119-555-0187', '2013-05-16', '2-5 Miles'], ['25390', '298', 'AW00025390', 'NULL', 'Samantha', 'NULL', 'Powell', '0', '1980-05-24', 'M', 'NULL', 'F', 'samantha34@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8909 Chestnut Ave.', 'NULL', '649-555-0136', '2013-05-05', '2-5 Miles'], ['25391', '322', 'AW00025391', 'NULL', 'Morgan', 'J', 'Murphy', '0', '1974-09-22', 'S', 'NULL', 'F', 'morgan53@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '6681 Pestana Way', 'NULL', '216-555-0146', '2013-05-29', '0-1 Miles'], ['25392', '641', 'AW00025392', 'NULL', 'Joseph', 'L', 'Moore', '0', '1975-04-03', 'S', 'NULL', 'M', 'joseph14@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4852 Chaparral Court', 'NULL', '986-555-0159', '2013-06-10', '2-5 Miles'], ['25393', '66', 'AW00025393', 'NULL', 'Lucas', 'J', 'Cox', '0', '1982-12-10', 'M', 'NULL', 'M', 'lucas82@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8325 Glenhaven Ave. S.', 'NULL', '412-555-0191', '2012-02-24', '2-5 Miles'], ['25394', '539', 'AW00025394', 'NULL', 'Anthony', 'J', 'Garcia', '0', '1977-05-03', 'M', 'NULL', 'M', 'anthony2@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1537 Teakwood Court', 'NULL', '822-555-0149', '2013-05-31', '2-5 Miles'], ['25395', '638', 'AW00025395', 'NULL', 'Paige', 'K', 'Flores', '0', '1982-10-30', 'S', 'NULL', 'F', 'paige11@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9126 Jamie Way', 'NULL', '155-555-0140', '2013-06-03', '2-5 Miles'], ['25396', '315', 'AW00025396', 'NULL', 'Xavier', 'G', 'Ramirez', '0', '1976-08-19', 'S', 'NULL', 'M', 'xavier73@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '4451 Argonne Dr.', 'NULL', '436-555-0119', '2013-06-28', '0-1 Miles'], ['25397', '316', 'AW00025397', 'NULL', 'Lucas', 'P', 'Bradley', '0', '1976-10-25', 'M', 'NULL', 'M', 'lucas50@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8577 Dies Dorados', 'NULL', '464-555-0121', '2013-06-24', '2-5 Miles'], ['25398', '358', 'AW00025398', 'NULL', 'Thomas', 'K', 'Jones', '0', '1976-12-21', 'S', 'NULL', 'M', 'thomas63@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '3152 Torino Court', 'NULL', '678-555-0129', '2013-06-04', '0-1 Miles'], ['25399', '361', 'AW00025399', 'NULL', 'Jorge', 'NULL', 'Leitão', '0', '1982-12-10', 'M', 'NULL', 'M', 'jorge0@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '857 Alum Rock Drive', 'NULL', '892-555-0147', '2013-06-04', '2-5 Miles'], ['25400', '372', 'AW00025400', 'NULL', 'Kyle', 'NULL', 'Jai', '0', '1977-04-13', 'M', 'NULL', 'M', 'kyle28@adventure-works.com', '80000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '531 Leisure Lane', 'NULL', '632-555-0127', '2013-06-17', '0-1 Miles'], ['25401', '385', 'AW00025401', 'NULL', 'Gabriel', 'C', 'Young', '0', '1982-03-28', 'M', 'NULL', 'M', 'gabriel46@adventure-works.com', '80000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '2241 Concord Place', 'NULL', '483-555-0146', '2013-06-22', '0-1 Miles'], ['25402', '546', 'AW00025402', 'NULL', 'Maria', 'NULL', 'Hughes', '0', '1980-06-17', 'M', 'NULL', 'F', 'maria34@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4917 Lacanda Ct.', 'NULL', '177-555-0119', '2013-06-14', '2-5 Miles'], ['25403', '369', 'AW00025403', 'NULL', 'Jasmine', 'E', 'Clark', '0', '1974-11-10', 'S', 'NULL', 'F', 'jasmine16@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '5234 Martindale', 'NULL', '783-555-0154', '2013-06-02', '0-1 Miles'], ['25404', '345', 'AW00025404', 'Sr.', 'José', 'G', 'Lopez', '0', '1973-11-20', 'S', 'NULL', 'M', 'josé60@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2206 Clear View Circle', 'NULL', '983-555-0166', '2013-06-01', '2-5 Miles'], ['25405', '612', 'AW00025405', 'NULL', 'Brandon', 'E', 'Wagner', '0', '1973-10-15', 'M', 'NULL', 'M', 'brandon21@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8247 Crescent Avenue', 'NULL', '119-555-0117', '2013-06-16', '2-5 Miles'], ['25406', '299', 'AW00025406', 'NULL', 'Casey', 'NULL', 'Andersen', '0', '1974-03-22', 'M', 'NULL', 'F', 'casey14@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9204 Pelican Loop', 'NULL', '136-555-0150', '2013-06-05', '2-5 Miles'], ['25407', '537', 'AW00025407', 'NULL', 'Tony', 'L', 'Anand', '0', '1974-05-07', 'S', 'NULL', 'M', 'tony24@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4068 St. George Court', 'NULL', '541-555-0112', '2013-06-09', '0-1 Miles'], ['25408', '49', 'AW00025408', 'NULL', 'Karen', 'L', 'Zhao', '0', '1973-12-11', 'M', 'NULL', 'F', 'karen20@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8964 Yosemite Ct', 'NULL', '270-555-0191', '2012-02-04', '2-5 Miles'], ['25409', '311', 'AW00025409', 'NULL', 'Theodore', 'D', 'Gutierrez', '0', '1979-06-16', 'S', 'NULL', 'M', 'theodore11@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '8841 Warmcastle Court', 'NULL', '838-555-0196', '2013-06-18', '0-1 Miles'], ['25410', '335', 'AW00025410', 'NULL', 'Kaitlyn', 'NULL', 'Ward', '0', '1979-10-14', 'S', 'NULL', 'F', 'kaitlyn59@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '5009 Grasswood Circle', 'NULL', '408-555-0180', '2013-06-09', '0-1 Miles'], ['25411', '345', 'AW00025411', 'NULL', 'Riley', 'NULL', 'Flores', '0', '1972-08-24', 'S', 'NULL', 'F', 'riley10@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5407 Oakgrove', 'NULL', '537-555-0113', '2013-06-09', '2-5 Miles'], ['25412', '616', 'AW00025412', 'NULL', 'Michael', 'M', 'Williams', '0', '1975-09-09', 'S', 'NULL', 'M', 'michael34@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2046 Las Palmas', 'NULL', '134-555-0133', '2013-06-22', '2-5 Miles'], ['25413', '631', 'AW00025413', 'NULL', 'Zoe', 'NULL', 'Rivera', '0', '1975-12-05', 'S', 'NULL', 'F', 'zoe15@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '9788 Tri-state Ave', 'NULL', '795-555-0156', '2013-06-26', '0-1 Miles'], ['25414', '312', 'AW00025414', 'NULL', 'Grace', 'C', 'Bailey', '0', '1976-05-10', 'M', 'NULL', 'F', 'grace32@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6627 Camelback Ct.', 'NULL', '292-555-0130', '2013-06-06', '2-5 Miles'], ['25415', '314', 'AW00025415', 'NULL', 'Aaron', 'E', 'Evans', '0', '1975-08-25', 'S', 'NULL', 'M', 'aaron33@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '5623 Detroit Ave.', 'NULL', '150-555-0128', '2013-06-11', '0-1 Miles'], ['25416', '359', 'AW00025416', 'NULL', 'Jack', 'NULL', 'Coleman', '0', '1924-12-03', 'M', 'NULL', 'M', 'jack6@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9326 Mayda Way', '# 2', '494-555-0132', '2013-07-19', '0-1 Miles'], ['25417', '302', 'AW00025417', 'NULL', 'Savannah', 'NULL', 'Bell', '0', '1972-11-23', 'S', 'NULL', 'F', 'savannah13@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '869 Welle Road', 'NULL', '141-555-0179', '2013-06-26', '0-1 Miles'], ['25418', '329', 'AW00025418', 'NULL', 'Alexia', 'NULL', 'Hayes', '0', '1973-04-13', 'S', 'NULL', 'F', 'alexia19@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3788 Bahia Vista Court', 'NULL', '120-555-0113', '2013-05-31', '0-1 Miles'], ['25419', '298', 'AW00025419', 'NULL', 'Hunter', 'NULL', 'King', '0', '1973-03-08', 'S', 'NULL', 'M', 'hunter43@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '7487 Mariposa Ct.', 'NULL', '905-555-0136', '2013-06-24', '0-1 Miles'], ['25420', '638', 'AW00025420', 'NULL', 'Jordan', 'NULL', 'Scott', '0', '1984-06-21', 'M', 'NULL', 'F', 'jordan42@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5606 Bay View Drive', 'NULL', '856-555-0182', '2013-07-20', '2-5 Miles'], ['25421', '536', 'AW00025421', 'NULL', 'Marcus', 'L', 'Lewis', '0', '1973-03-15', 'S', 'NULL', 'M', 'marcus22@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4195 May Way', 'NULL', '744-555-0117', '2013-07-15', '2-5 Miles'], ['25422', '336', 'AW00025422', 'NULL', 'Elijah', 'M', 'King', '0', '1977-02-15', 'M', 'NULL', 'M', 'elijah46@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3214 Apple Drive', 'NULL', '428-555-0196', '2013-06-22', '2-5 Miles'], ['25423', '310', 'AW00025423', 'NULL', 'Jake', 'A', 'Zhou', '0', '1977-02-03', 'S', 'NULL', 'M', 'jake9@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3004 Zulu Court', 'NULL', '358-555-0157', '2013-06-05', '0-1 Miles'], ['25424', '609', 'AW00025424', 'NULL', 'Ian', 'M', 'Roberts', '0', '1972-01-31', 'S', 'NULL', 'M', 'ian35@adventure-works.com', '70000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '3050 Meadow Glen Way', 'NULL', '728-555-0147', '2013-10-29', '0-1 Miles'], ['25425', '335', 'AW00025425', 'NULL', 'Zachary', 'NULL', 'Diaz', '0', '1977-10-06', 'S', 'NULL', 'M', 'zachary20@adventure-works.com', '70000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1833 Worth Ct', 'NULL', '171-555-0166', '2013-06-09', '2-5 Miles'], ['25426', '307', 'AW00025426', 'NULL', 'Tristan', 'NULL', 'Foster', '0', '1971-09-19', 'S', 'NULL', 'M', 'tristan16@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4518 Ashwood Dr.', 'NULL', '475-555-0122', '2013-06-10', '2-5 Miles'], ['25427', '300', 'AW00025427', 'NULL', 'Omar', 'NULL', 'Zeng', '0', '1983-05-19', 'M', 'NULL', 'M', 'omar21@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4739 Bynum Way', 'NULL', '319-555-0115', '2013-06-08', '2-5 Miles'], ['25428', '641', 'AW00025428', 'NULL', 'Victoria', 'NULL', 'Jenkins', '0', '1975-01-12', 'S', 'NULL', 'F', 'victoria54@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '3968 Bonifacio', 'NULL', '593-555-0160', '2013-06-07', '2-5 Miles'], ['25429', '312', 'AW00025429', 'NULL', 'Candace', 'L', 'Rana', '0', '1980-03-30', 'S', 'NULL', 'F', 'candace11@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9077 Windsor Drive', 'NULL', '379-555-0124', '2013-06-19', '0-1 Miles'], ['25430', '369', 'AW00025430', 'NULL', 'Alyssa', 'M', 'Hall', '0', '1980-07-03', 'M', 'NULL', 'F', 'alyssa23@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3758 Colt Ct.', 'NULL', '465-555-0191', '2013-06-28', '0-1 Miles'], ['25431', '302', 'AW00025431', 'NULL', 'Ann', 'D', 'Sanchez', '0', '1971-01-12', 'S', 'NULL', 'F', 'ann25@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7125 Melinda Court', 'NULL', '190-555-0139', '2013-11-03', '2-5 Miles'], ['25432', '303', 'AW00025432', 'NULL', 'Kellie', 'J', 'Gomez', '0', '1971-02-08', 'S', 'NULL', 'F', 'kellie1@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '328 Birchbark Pl.', 'NULL', '527-555-0197', '2013-07-16', '0-1 Miles'], ['25433', '62', 'AW00025433', 'NULL', 'Zachary', 'NULL', 'Kumar', '0', '1971-05-05', 'S', 'NULL', 'M', 'zachary26@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1907 Pinecrest Dr', 'NULL', '924-555-0122', '2013-11-01', '2-5 Miles'], ['25434', '311', 'AW00025434', 'NULL', 'Gabriel', 'L', 'Hill', '0', '1970-10-06', 'S', 'NULL', 'M', 'gabriel44@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '80 Hamiliton Ave.', 'NULL', '646-555-0119', '2013-04-16', '0-1 Miles'], ['25435', '616', 'AW00025435', 'NULL', 'Jennifer', 'NULL', 'Turner', '0', '1970-09-22', 'M', 'NULL', 'F', 'jennifer7@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1391 Band Court', 'NULL', '282-555-0119', '2013-02-19', '2-5 Miles'], ['25436', '345', 'AW00025436', 'NULL', 'Destiny', 'K', 'Ross', '0', '1971-01-01', 'S', 'NULL', 'F', 'destiny52@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7178 Cancroft Road', 'NULL', '907-555-0116', '2013-07-23', '2-5 Miles'], ['25437', '52', 'AW00025437', 'NULL', 'Adam', 'G', 'Washington', '0', '1971-05-17', 'M', 'NULL', 'M', 'adam11@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6721 Baldwin Dr', 'NULL', '796-555-0118', '2013-12-24', '2-5 Miles'], ['25438', '641', 'AW00025438', 'NULL', 'Lauren', 'C', 'Murphy', '0', '1982-04-20', 'S', 'NULL', 'F', 'lauren6@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8294 El Rancho Drive', 'NULL', '783-555-0146', '2013-10-16', '0-1 Miles'], ['25439', '307', 'AW00025439', 'NULL', 'Janelle', 'J', 'Arthur', '0', '1971-01-14', 'M', 'NULL', 'F', 'janelle6@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '7832 Military East', 'NULL', '195-555-0113', '2013-02-01', '10+ Miles'], ['25440', '311', 'AW00025440', 'NULL', 'Andre', 'L', 'Gonzalez', '0', '1970-10-06', 'M', 'NULL', 'M', 'andre18@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '5186 Hamiliton Ave.', 'NULL', '254-555-0119', '2013-12-27', '10+ Miles'], ['25441', '343', 'AW00025441', 'NULL', 'Isabella', 'NULL', 'Torres', '0', '1971-01-23', 'M', 'NULL', 'F', 'isabella3@adventure-works.com', '50000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1955 Montgomery Ave', 'NULL', '905-555-0117', '2013-04-18', '2-5 Miles'], ['25442', '211', 'AW00025442', 'NULL', 'Melvin', 'A', 'Goel', '0', '1973-11-01', 'M', 'NULL', 'M', 'melvin18@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '92, rue Saint-Lazare', 'NULL', '1 (11) 500 555-0179', '2013-10-01', '0-1 Miles'], ['25443', '124', 'AW00025443', 'NULL', 'Stacey', 'NULL', 'Huang', '0', '1973-12-19', 'M', 'NULL', 'F', 'stacey6@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Curieweg 97', 'NULL', '1 (11) 500 555-0128', '2013-06-20', '0-1 Miles'], ['25444', '118', 'AW00025444', 'NULL', 'Meagan', 'J', 'Martinez', '0', '1973-09-15', 'S', 'NULL', 'F', 'meagan17@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Wallstr 444', 'NULL', '1 (11) 500 555-0117', '2013-07-03', '0-1 Miles'], ['25445', '175', 'AW00025445', 'NULL', 'Grace', 'C', 'Cook', '0', '1974-05-16', 'M', 'NULL', 'F', 'grace28@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Nollendorfplatz 4662', 'NULL', '1 (11) 500 555-0114', '2013-07-01', '0-1 Miles'], ['25446', '236', 'AW00025446', 'NULL', 'Kristina', 'NULL', 'Garcia', '0', '1974-04-09', 'M', 'NULL', 'F', 'kristina15@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6054 Laguna Circle', 'NULL', '1 (11) 500 555-0139', '2013-11-23', '0-1 Miles'], ['25447', '267', 'AW00025447', 'NULL', 'Marshall', 'J', 'Liang', '0', '1973-08-14', 'M', 'NULL', 'M', 'marshall15@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1190 Hill Top Rd.', 'NULL', '1 (11) 500 555-0189', '2013-10-30', '0-1 Miles'], ['25448', '275', 'AW00025448', 'NULL', 'Erick', 'M', 'Sara', '0', '1979-08-03', 'S', 'NULL', 'M', 'erick10@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '7902 Hudson Ave.', 'NULL', '1 (11) 500 555-0145', '2013-11-19', '0-1 Miles'], ['25449', '133', 'AW00025449', 'NULL', 'Marvin', 'NULL', 'Dominguez', '0', '1978-06-11', 'S', 'NULL', 'M', 'marvin13@adventure-works.com', '10000.00', '4', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Lützowplatz 50', 'NULL', '1 (11) 500 555-0116', '2013-10-29', '0-1 Miles'], ['25450', '177', 'AW00025450', 'NULL', 'Darrell', 'A', 'Deng', '0', '1973-05-11', 'S', 'NULL', 'M', 'darrell12@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Hüttenstr 2114', 'NULL', '1 (11) 500 555-0126', '2013-11-15', '2-5 Miles'], ['25451', '167', 'AW00025451', 'NULL', 'Geoffrey', 'L', 'Subram', '0', '1973-02-24', 'S', 'NULL', 'M', 'geoffrey11@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Wallstr 824', 'NULL', '1 (11) 500 555-0197', '2013-11-26', '1-2 Miles'], ['25452', '215', 'AW00025452', 'NULL', 'Erica', 'NULL', 'Wu', '0', '1978-10-01', 'M', 'NULL', 'F', 'erica6@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '11802, rue Surcouf', 'NULL', '1 (11) 500 555-0129', '2013-11-15', '2-5 Miles'], ['25453', '263', 'AW00025453', 'NULL', 'Drew', 'NULL', 'She', '0', '1978-02-22', 'S', 'NULL', 'M', 'drew0@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '531 Northridge Drive', 'NULL', '1 (11) 500 555-0151', '2013-10-21', '0-1 Miles'], ['25454', '270', 'AW00025454', 'NULL', 'Terry', 'R', 'She', '0', '1972-09-29', 'S', 'NULL', 'M', 'terry3@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '1', '8656 Roskelley Dr.', 'NULL', '1 (11) 500 555-0155', '2013-10-08', '0-1 Miles'], ['25455', '146', 'AW00025455', 'NULL', 'Jorge', 'NULL', 'Zheng', '0', '1983-01-10', 'M', 'NULL', 'M', 'jorge22@adventure-works.com', '10000.00', '4', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Heidestieg Straße 8224', 'NULL', '1 (11) 500 555-0170', '2013-11-13', '0-1 Miles'], ['25456', '220', 'AW00025456', 'NULL', 'Kelvin', 'A', 'Cai', '0', '1971-07-22', 'M', 'NULL', 'M', 'kelvin40@adventure-works.com', '10000.00', '5', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '118, rue Faubourg St Antoine', 'NULL', '1 (11) 500 555-0112', '2014-01-11', '0-1 Miles'], ['25457', '209', 'AW00025457', 'NULL', 'Darren', 'E', 'Sai', '0', '1971-11-30', 'S', 'NULL', 'M', 'darren8@adventure-works.com', '10000.00', '5', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '366, avenue Foch', 'NULL', '1 (11) 500 555-0127', '2013-12-10', '0-1 Miles'], ['25458', '216', 'AW00025458', 'NULL', 'Bruce', 'NULL', 'Mehta', '0', '1971-08-08', 'M', 'NULL', 'M', 'bruce13@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '48, rue Montcalm', 'NULL', '1 (11) 500 555-0118', '2013-12-21', '1-2 Miles'], ['25459', '134', 'AW00025459', 'NULL', 'Ronald', 'NULL', 'Vance', '0', '1983-03-23', 'M', 'NULL', 'M', 'ronald6@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Am Kreuz 6', 'NULL', '1 (11) 500 555-0197', '2013-11-17', '2-5 Miles'], ['25460', '128', 'AW00025460', 'NULL', 'Alisha', 'NULL', 'Andersen', '0', '1972-01-21', 'M', 'NULL', 'F', 'alisha37@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Königstr 381', 'NULL', '1 (11) 500 555-0132', '2013-11-15', '0-1 Miles'], ['25461', '189', 'AW00025461', 'NULL', 'Fernando', 'M', 'Collins', '0', '1978-10-05', 'S', 'NULL', 'M', 'fernando43@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '821, rue des Rosiers', 'NULL', '1 (11) 500 555-0169', '2013-10-21', '0-1 Miles'], ['25462', '133', 'AW00025462', 'Ms.', 'Angel', 'M', 'Gray', '0', '1972-11-14', 'S', 'NULL', 'M', 'angel5@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Pascalstr 442', 'NULL', '1 (11) 500 555-0164', '2013-07-09', '0-1 Miles'], ['25463', '208', 'AW00025463', 'NULL', 'Miguel', 'NULL', 'Robinson', '0', '1971-08-25', 'S', 'NULL', 'M', 'miguel18@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '215, avenue de la Gare', 'NULL', '1 (11) 500 555-0136', '2013-12-26', '0-1 Miles'], ['25464', '208', 'AW00025464', 'NULL', 'Jose', 'J', 'Wilson', '0', '1971-08-31', 'M', 'NULL', 'M', 'jose67@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '48, place de la Concorde', 'NULL', '1 (11) 500 555-0149', '2013-12-19', '0-1 Miles'], ['25465', '273', 'AW00025465', 'NULL', 'Mariah', 'NULL', 'Diaz', '0', '1971-08-08', 'M', 'NULL', 'F', 'mariah26@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '664 Book Pl', 'NULL', '1 (11) 500 555-0163', '2013-11-15', '0-1 Miles'], ['25466', '223', 'AW00025466', 'NULL', 'Janet', 'NULL', 'Young', '0', '1971-05-16', 'S', 'NULL', 'F', 'janet34@adventure-works.com', '10000.00', '4', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '215, rue de Terre Neuve', 'NULL', '1 (11) 500 555-0164', '2013-06-13', '0-1 Miles'], ['25467', '270', 'AW00025467', 'NULL', 'Troy', 'NULL', 'Madan', '0', '1976-08-06', 'M', 'NULL', 'M', 'troy8@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '5687 Fall Creek', 'NULL', '1 (11) 500 555-0174', '2013-11-05', '0-1 Miles'], ['25468', '150', 'AW00025468', 'NULL', 'Krista', 'NULL', 'Suarez', '0', '1970-08-13', 'M', 'NULL', 'F', 'krista18@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Postenweg 5752', 'NULL', '1 (11) 500 555-0160', '2013-11-19', '0-1 Miles'], ['25469', '183', 'AW00025469', 'NULL', 'Martha', 'NULL', 'Wu', '0', '1970-12-15', 'M', 'NULL', 'F', 'martha6@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '27, place de Brazaville', 'NULL', '1 (11) 500 555-0181', '2013-04-20', '0-1 Miles'], ['25470', '243', 'AW00025470', 'NULL', 'Darren', 'NULL', 'Ramos', '0', '1981-09-10', 'M', 'NULL', 'M', 'darren40@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '381 Marina Village Pkwy.', 'NULL', '1 (11) 500 555-0121', '2013-05-08', '0-1 Miles'], ['25471', '221', 'AW00025471', 'NULL', 'Spencer', 'R', 'Ross', '0', '1970-11-18', 'M', 'NULL', 'M', 'spencer5@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '699, rue Royale', 'NULL', '1 (11) 500 555-0169', '2013-11-18', '0-1 Miles'], ['25472', '158', 'AW00025472', 'NULL', 'Don', 'S', 'Malhotra', '0', '1976-08-18', 'M', 'NULL', 'M', 'don5@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', 'Erlenweg 95', 'NULL', '1 (11) 500 555-0142', '2013-08-05', '0-1 Miles'], ['25473', '190', 'AW00025473', 'NULL', 'Kristin', 'L', 'Goel', '0', '1971-02-09', 'M', 'NULL', 'F', 'kristin17@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '119, rue Marbeuf', 'NULL', '1 (11) 500 555-0111', '2013-05-26', '0-1 Miles'], ['25474', '274', 'AW00025474', 'NULL', 'Jimmy', 'D', 'Diaz', '0', '1970-06-09', 'M', 'NULL', 'M', 'jimmy5@adventure-works.com', '10000.00', '4', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '2163 Angi Lane', 'NULL', '1 (11) 500 555-0154', '2013-07-25', '0-1 Miles'], ['25475', '196', 'AW00025475', 'NULL', 'Destiny', 'C', 'Martin', '0', '1969-08-05', 'M', 'NULL', 'F', 'destiny14@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '55, rue de Longchamp', 'NULL', '1 (11) 500 555-0193', '2013-12-10', '0-1 Miles'], ['25476', '217', 'AW00025476', 'NULL', 'Karen', 'L', 'Ye', '0', '1969-08-31', 'M', 'NULL', 'F', 'karen19@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '100, rue de la Centenaire', 'NULL', '1 (11) 500 555-0199', '2013-04-04', '0-1 Miles'], ['25477', '231', 'AW00025477', 'NULL', 'Holly', 'NULL', 'Raman', '0', '1939-01-31', 'M', 'NULL', 'F', 'holly11@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '920 Broadway', 'NULL', '1 (11) 500 555-0179', '2013-06-21', '2-5 Miles'], ['25478', '208', 'AW00025478', 'NULL', 'Jennifer', 'D', 'Butler', '0', '1971-08-15', 'M', 'NULL', 'F', 'jennifer87@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '4, rue de Courtaboeuf', 'NULL', '1 (11) 500 555-0185', '2013-09-29', '0-1 Miles'], ['25479', '210', 'AW00025479', 'NULL', 'Bobby', 'J', 'Sanchez', '0', '1972-01-23', 'M', 'NULL', 'M', 'bobby12@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '955, rue Basse-du-Rocher', 'NULL', '1 (11) 500 555-0157', '2013-10-17', '0-1 Miles'], ['25480', '241', 'AW00025480', 'NULL', 'Miguel', 'NULL', 'Thomas', '0', '1971-12-09', 'S', 'NULL', 'M', 'miguel10@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '7151 Corte Bonita', 'NULL', '1 (11) 500 555-0173', '2013-11-18', '0-1 Miles'], ['25481', '265', 'AW00025481', 'NULL', 'Lucas', 'A', 'Jackson', '0', '1983-02-20', 'S', 'NULL', 'M', 'lucas25@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '5704 Lost Avenue', 'NULL', '1 (11) 500 555-0144', '2013-07-08', '0-1 Miles'], ['25482', '259', 'AW00025482', 'NULL', 'Donald', 'D', 'Martinez', '0', '1967-09-17', 'S', 'NULL', 'M', 'donald19@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '956 B Wildbrook Ct.', 'NULL', '1 (11) 500 555-0174', '2013-10-26', '2-5 Miles'], ['25483', '192', 'AW00025483', 'NULL', 'Dennis', 'E', 'Ma', '0', '1945-01-30', 'S', 'NULL', 'M', 'dennis17@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '22, rue Philibert-Delorme', 'NULL', '1 (11) 500 555-0168', '2014-01-12', '2-5 Miles'], ['25484', '220', 'AW00025484', 'NULL', 'Bailey', 'L', 'Wright', '0', '1976-06-10', 'M', 'NULL', 'F', 'bailey40@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '39, route de Marseille', 'NULL', '1 (11) 500 555-0118', '2013-12-05', '0-1 Miles'], ['25485', '206', 'AW00025485', 'NULL', 'Roberto', 'L', 'Rubio', '0', '1976-04-08', 'M', 'NULL', 'M', 'roberto19@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2401, rue Saint-Lazare', 'NULL', '1 (11) 500 555-0183', '2013-03-13', '0-1 Miles'], ['25486', '174', 'AW00025486', 'NULL', 'Edgar', 'B', 'Rodriguez', '0', '1976-09-16', 'S', 'NULL', 'M', 'edgar20@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Postfach 44 11 11', 'NULL', '1 (11) 500 555-0190', '2013-11-11', '0-1 Miles'], ['25487', '120', 'AW00025487', 'NULL', 'Allison', 'NULL', 'Rogers', '0', '1971-01-19', 'M', 'NULL', 'F', 'allison19@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Lindenalle 424', 'NULL', '1 (11) 500 555-0174', '2013-09-06', '0-1 Miles'], ['25488', '238', 'AW00025488', 'NULL', 'Dawn', 'NULL', 'Ye', '0', '1971-05-18', 'M', 'NULL', 'F', 'dawn11@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6542 Greenwood Pl.', 'NULL', '1 (11) 500 555-0158', '2013-11-06', '0-1 Miles'], ['25489', '242', 'AW00025489', 'NULL', 'Brad', 'NULL', 'Tang', '0', '1971-05-03', 'M', 'NULL', 'M', 'brad4@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '545 Willcrest Circle', 'NULL', '1 (11) 500 555-0130', '2013-12-26', '0-1 Miles'], ['25490', '199', 'AW00025490', 'NULL', 'Alvin', 'NULL', 'He', '0', '1970-05-10', 'M', 'NULL', 'M', 'alvin17@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '33, avenue du Président-Kennedy', 'NULL', '1 (11) 500 555-0120', '2013-07-22', '0-1 Miles'], ['25491', '213', 'AW00025491', 'NULL', 'Krystal', 'NULL', 'Xu', '0', '1969-07-04', 'S', 'NULL', 'F', 'krystal12@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '11, avenue du Président-Kennedy', 'NULL', '1 (11) 500 555-0150', '2013-07-18', '0-1 Miles'], ['25492', '162', 'AW00025492', 'NULL', 'Gabriella', 'G', 'Sanchez', '0', '1975-05-24', 'M', 'NULL', 'F', 'gabriella25@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', 'Auf der Krone 24', 'NULL', '1 (11) 500 555-0116', '2013-07-23', '0-1 Miles'], ['25493', '269', 'AW00025493', 'NULL', 'Hunter', 'NULL', 'Evans', '0', '1970-03-19', 'M', 'NULL', 'M', 'hunter29@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7927 Saclan Terr.', 'NULL', '1 (11) 500 555-0148', '2013-12-12', '0-1 Miles'], ['25494', '180', 'AW00025494', 'NULL', 'Lee', 'NULL', 'Jimenez', '0', '1968-11-30', 'M', 'NULL', 'M', 'lee3@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '304, rue des Rosiers', 'NULL', '1 (11) 500 555-0119', '2013-07-16', '0-1 Miles'], ['25495', '211', 'AW00025495', 'NULL', 'Sheena', 'NULL', 'Kennedy', '0', '1974-10-06', 'M', 'NULL', 'F', 'sheena6@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2822, rue des Ecoles', 'NULL', '1 (11) 500 555-0155', '2013-06-18', '0-1 Miles'], ['25496', '222', 'AW00025496', 'NULL', 'Regina', 'NULL', 'Sara', '0', '1968-09-13', 'M', 'NULL', 'F', 'regina9@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1987 Jennifer Way', 'Unit F13', '1 (11) 500 555-0118', '2013-08-11', '0-1 Miles'], ['25497', '117', 'AW00025497', 'NULL', 'Marcus', 'NULL', 'Torres', '0', '1969-05-30', 'M', 'NULL', 'M', 'marcus79@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', 'Viktoria-Luise-Platz 3', 'NULL', '1 (11) 500 555-0181', '2013-08-23', '0-1 Miles'], ['25498', '166', 'AW00025498', 'NULL', 'Shane', 'D', 'Kapoor', '0', '1968-12-10', 'M', 'NULL', 'M', 'shane5@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Kapellstr 4922', 'NULL', '1 (11) 500 555-0137', '2013-08-15', '0-1 Miles'], ['25499', '276', 'AW00025499', 'NULL', 'Meredith', 'NULL', 'Schmidt', '0', '1985-04-16', 'M', 'NULL', 'F', 'meredith9@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2436 Pheasant Cr.', 'NULL', '1 (11) 500 555-0124', '2013-12-03', '0-1 Miles'], ['25500', '276', 'AW00025500', 'NULL', 'Janelle', 'G', 'Lopez', '0', '1984-12-12', 'S', 'NULL', 'F', 'janelle13@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4103 Vallejo', 'NULL', '1 (11) 500 555-0111', '2013-11-17', '0-1 Miles'], ['25501', '236', 'AW00025501', 'NULL', 'Shawn', 'E', 'Jai', '0', '1974-03-18', 'M', 'NULL', 'M', 'shawn13@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '891 Thornwood Dr.', 'NULL', '1 (11) 500 555-0155', '2013-12-12', '0-1 Miles'], ['25502', '251', 'AW00025502', 'NULL', 'Carmen', 'NULL', 'Kim', '0', '1968-06-30', 'M', 'NULL', 'F', 'carmen5@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '594 Tossing Way', 'NULL', '1 (11) 500 555-0115', '2013-12-15', '0-1 Miles'], ['25503', '196', 'AW00025503', 'NULL', 'Richard', 'NULL', 'Hill', '0', '1967-08-19', 'S', 'NULL', 'M', 'richard24@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '33, boulevard d´Albi', 'NULL', '1 (11) 500 555-0118', '2013-07-07', '2-5 Miles'], ['25504', '143', 'AW00025504', 'NULL', 'Calvin', 'G', 'Sutton', '0', '1984-04-10', 'S', 'NULL', 'M', 'calvin4@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Winterfeldtstr 3535', 'NULL', '1 (11) 500 555-0138', '2013-11-10', '0-1 Miles'], ['25505', '252', 'AW00025505', 'NULL', 'Curtis', 'NULL', 'Zhou', '0', '1984-05-19', 'M', 'NULL', 'M', 'curtis8@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '3', '4243 Willow Creek Ct', 'NULL', '1 (11) 500 555-0145', '2013-09-15', '0-1 Miles'], ['25506', '273', 'AW00025506', 'NULL', 'Cristina', 'E', 'Raji', '0', '1983-09-21', 'M', 'NULL', 'F', 'cristina18@adventure-works.com', '30000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8258 N. Broadway', '# 2015', '1 (11) 500 555-0195', '2013-11-12', '0-1 Miles'], ['25507', '193', 'AW00025507', 'NULL', 'Suzanne', 'NULL', 'Guo', '0', '1983-05-27', 'S', 'NULL', 'F', 'suzanne19@adventure-works.com', '30000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '3', '3, rue de la Centenaire', 'NULL', '1 (11) 500 555-0190', '2013-04-05', '0-1 Miles'], ['25508', '147', 'AW00025508', 'NULL', 'Melissa', 'NULL', 'Cook', '0', '1982-12-01', 'S', 'NULL', 'F', 'melissa43@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Brunnenstr 44', 'NULL', '1 (11) 500 555-0175', '2013-11-03', '0-1 Miles'], ['25509', '162', 'AW00025509', 'NULL', 'Lucas', 'A', 'Hayes', '0', '1983-02-20', 'S', 'NULL', 'M', 'lucas70@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Auf den Kuhlen Straße 4662', 'NULL', '1 (11) 500 555-0161', '2013-10-28', '2-5 Miles'], ['25510', '257', 'AW00025510', 'NULL', 'Grant', 'A', 'Kumar', '0', '1983-04-27', 'S', 'NULL', 'M', 'grant9@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '9997 Montgomery Ave.', 'NULL', '1 (11) 500 555-0193', '2013-11-16', '0-1 Miles'], ['25511', '266', 'AW00025511', 'NULL', 'Chelsea', 'M', 'Arun', '0', '1983-03-08', 'S', 'NULL', 'F', 'chelsea7@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '4380 Chestnut', 'NULL', '1 (11) 500 555-0154', '2013-11-22', '0-1 Miles'], ['25512', '234', 'AW00025512', 'NULL', 'Devin', 'NULL', 'Clark', '0', '1982-02-21', 'S', 'NULL', 'M', 'devin18@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '3689 Sun Tree Lane', 'NULL', '1 (11) 500 555-0177', '2013-03-15', '2-5 Miles'], ['25513', '190', 'AW00025513', 'NULL', 'Grace', 'R', 'Walker', '0', '1982-03-08', 'S', 'NULL', 'F', 'grace22@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '11, rue de Terre Neuve', 'NULL', '1 (11) 500 555-0180', '2013-03-26', '2-5 Miles'], ['25514', '207', 'AW00025514', 'NULL', 'Dominic', 'NULL', 'Martinez', '0', '1982-01-09', 'S', 'NULL', 'M', 'dominic18@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '14, rue Descartes', 'NULL', '1 (11) 500 555-0179', '2013-06-15', '2-5 Miles'], ['25515', '226', 'AW00025515', 'NULL', 'Tara', 'NULL', 'Deng', '0', '1982-06-04', 'S', 'NULL', 'F', 'tara1@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '22bis, boulevard Saint Germain', 'NULL', '1 (11) 500 555-0179', '2013-11-09', '5-10 Miles'], ['25516', '178', 'AW00025516', 'NULL', 'Cheryl', 'NULL', 'Hernandez', '0', '1981-02-22', 'S', 'NULL', 'F', 'cheryl5@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Hunzinger Allee 124', 'NULL', '1 (11) 500 555-0137', '2013-03-29', '0-1 Miles'], ['25517', '184', 'AW00025517', 'NULL', 'Christina', 'NULL', 'Cook', '0', '1981-12-15', 'S', 'NULL', 'F', 'christina20@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '21, rue de Maubeuge', 'NULL', '1 (11) 500 555-0147', '2013-10-10', '1-2 Miles'], ['25518', '200', 'AW00025518', 'NULL', 'Oscar', 'NULL', 'Lu', '0', '1982-04-04', 'S', 'NULL', 'M', 'oscar1@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '99, quai de l´ Iton', 'NULL', '1 (11) 500 555-0180', '2013-08-27', '5-10 Miles'], ['25519', '203', 'AW00025519', 'NULL', 'Margaret', 'L', 'Sun', '0', '1982-06-22', 'S', 'NULL', 'F', 'margaret19@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '242, rue de Terre Neuve', 'NULL', '1 (11) 500 555-0156', '2013-11-04', '2-5 Miles'], ['25520', '210', 'AW00025520', 'NULL', 'Candice', 'E', 'Zeng', '0', '1982-05-11', 'S', 'NULL', 'F', 'candice6@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '88, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0164', '2013-06-19', '2-5 Miles'], ['25521', '152', 'AW00025521', 'NULL', 'Douglas', 'M', 'Sanchez', '0', '1982-01-22', 'S', 'NULL', 'M', 'douglas24@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Postenweg 3837', 'NULL', '1 (11) 500 555-0119', '2013-02-15', '2-5 Miles'], ['25522', '118', 'AW00025522', 'NULL', 'Casey', 'F', 'Anand', '0', '1982-03-13', 'S', 'NULL', 'F', 'casey22@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Höhenstr 9429', 'NULL', '1 (11) 500 555-0183', '2013-11-01', '0-1 Miles'], ['25523', '279', 'AW00025523', 'NULL', 'Nathan', 'T', 'Thompson', '0', '1981-03-21', 'S', 'NULL', 'M', 'nathan73@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '7645 Garcia Ranch Road', 'NULL', '1 (11) 500 555-0118', '2013-08-17', '5-10 Miles'], ['25524', '157', 'AW00025524', 'NULL', 'Shaun', 'NULL', 'Anand', '0', '1980-06-01', 'M', 'NULL', 'M', 'shaun22@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Potsdamer Straße 929', 'NULL', '1 (11) 500 555-0138', '2013-04-06', '0-1 Miles'], ['25525', '153', 'AW00025525', 'NULL', 'Heidi', 'NULL', 'Srini', '0', '1981-04-17', 'M', 'NULL', 'F', 'heidi10@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Alte Landstr 199', 'NULL', '1 (11) 500 555-0177', '2013-11-25', '0-1 Miles'], ['25526', '177', 'AW00025526', 'NULL', 'Armando', 'T', 'Rubio', '0', '1981-05-06', 'S', 'NULL', 'M', 'armando21@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Postenweg 4648', 'NULL', '1 (11) 500 555-0139', '2013-03-16', '0-1 Miles'], ['25527', '223', 'AW00025527', 'NULL', 'Robert', 'P', 'Johnson', '0', '1918-11-08', 'S', 'NULL', 'M', 'robert85@adventure-works.com', '20000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '9, route de Marseille', 'NULL', '1 (11) 500 555-0138', '2013-09-26', '0-1 Miles'], ['25528', '121', 'AW00025528', 'NULL', 'Alexandria', 'NULL', 'Butler', '0', '1980-02-02', 'S', 'NULL', 'F', 'alexandria14@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Auf der Krone 992', 'NULL', '1 (11) 500 555-0126', '2013-11-12', '2-5 Miles'], ['25529', '117', 'AW00025529', 'NULL', 'Jared', 'C', 'Sanders', '0', '1967-09-19', 'S', 'NULL', 'M', 'jared5@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Altendorfer Straße 9', 'NULL', '1 (11) 500 555-0134', '2013-02-24', '0-1 Miles'], ['25530', '170', 'AW00025530', 'NULL', 'Gerald', 'M', 'Lopez', '0', '1967-11-01', 'S', 'NULL', 'M', 'gerald2@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Am Kreuz 4075', 'NULL', '1 (11) 500 555-0172', '2013-08-15', '0-1 Miles'], ['25531', '230', 'AW00025531', 'NULL', 'Ebony', 'NULL', 'Patel', '0', '1979-05-03', 'M', 'NULL', 'F', 'ebony2@adventure-works.com', '30000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '3614 Golf Club Road', 'NULL', '1 (11) 500 555-0142', '2013-11-03', '0-1 Miles'], ['25532', '222', 'AW00025532', 'NULL', 'Warren', 'NULL', 'Nath', '0', '1967-09-30', 'S', 'NULL', 'M', 'warren8@adventure-works.com', '30000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '879, rue des Ecoles', 'NULL', '1 (11) 500 555-0189', '2013-03-09', '0-1 Miles'], ['25533', '153', 'AW00025533', 'NULL', 'Suzanne', 'A', 'Huang', '0', '1966-12-30', 'S', 'NULL', 'F', 'suzanne7@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Residenz Straße 4324', 'NULL', '1 (11) 500 555-0111', '2013-07-29', '0-1 Miles'], ['25534', '184', 'AW00025534', 'NULL', 'Casey', 'NULL', 'Sanz', '0', '1941-03-17', 'M', 'NULL', 'M', 'casey44@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '12, rue Descartes', 'NULL', '1 (11) 500 555-0135', '2013-08-14', '0-1 Miles'], ['25535', '210', 'AW00025535', 'NULL', 'Brandi', 'NULL', 'Navarro', '0', '1942-01-18', 'S', 'NULL', 'F', 'brandi10@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '88, impasse Notre-Dame', 'NULL', '1 (11) 500 555-0145', '2013-09-02', '0-1 Miles'], ['25536', '177', 'AW00025536', 'NULL', 'Rebekah', 'L', 'Sai', '0', '1942-04-25', 'S', 'NULL', 'F', 'rebekah6@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Winter der Böck 8441', 'NULL', '1 (11) 500 555-0165', '2014-01-14', '0-1 Miles'], ['25537', '237', 'AW00025537', 'NULL', 'Nathan', 'NULL', 'Phillips', '0', '1941-08-06', 'S', 'NULL', 'M', 'nathan35@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '55 Pomar Way', 'NULL', '1 (11) 500 555-0122', '2013-10-22', '0-1 Miles'], ['25538', '191', 'AW00025538', 'NULL', 'Andy', 'NULL', 'Jiménez', '0', '1968-01-03', 'S', 'NULL', 'M', 'andy10@adventure-works.com', '30000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9080, quai de Grenelle', 'NULL', '1 (11) 500 555-0139', '2013-03-26', '0-1 Miles'], ['25539', '185', 'AW00025539', 'NULL', 'Mathew', 'D', 'Ortega', '0', '1968-01-18', 'M', 'NULL', 'M', 'mathew18@adventure-works.com', '30000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1, rue Pierre-Demoulin', 'NULL', '1 (11) 500 555-0149', '2013-05-13', '0-1 Miles'], ['25540', '211', 'AW00025540', 'NULL', 'Rodney', 'R', 'Alonso', '0', '1973-07-04', 'M', 'NULL', 'M', 'rodney4@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '778, rue Faubourg St Antoine', 'NULL', '1 (11) 500 555-0131', '2013-06-13', '0-1 Miles'], ['25541', '151', 'AW00025541', 'NULL', 'Gary', 'NULL', 'Hernandez', '0', '1969-09-18', 'M', 'NULL', 'M', 'gary14@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Kalkweg 50', 'NULL', '1 (11) 500 555-0182', '2013-07-04', '0-1 Miles'], ['25542', '218', 'AW00025542', 'NULL', 'Gerald', 'NULL', 'Gutierrez', '0', '1963-07-12', 'S', 'NULL', 'M', 'gerald19@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '22, impasse Ste-Madeleine', 'NULL', '1 (11) 500 555-0119', '2013-11-22', '0-1 Miles'], ['25543', '144', 'AW00025543', 'NULL', 'Ramon', 'T', 'Chen', '0', '1967-09-20', 'M', 'NULL', 'M', 'ramon1@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Parkstr 4851', 'NULL', '1 (11) 500 555-0116', '2013-11-24', '0-1 Miles'], ['25544', '263', 'AW00025544', 'NULL', 'Sergio', 'K', 'Fernandez', '0', '1973-06-20', 'S', 'NULL', 'M', 'sergio16@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '8288 Serpentine', 'NULL', '1 (11) 500 555-0194', '2014-01-14', '0-1 Miles'], ['25545', '265', 'AW00025545', 'NULL', 'Kelly', 'G', 'Long', '0', '1960-12-17', 'S', 'NULL', 'F', 'kelly14@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '3870 Gonzalez Court', 'NULL', '1 (11) 500 555-0113', '2013-12-26', '0-1 Miles'], ['25546', '261', 'AW00025546', 'NULL', 'Brianna', 'NULL', 'Jones', '0', '1959-07-22', 'S', 'NULL', 'F', 'brianna3@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '8740 Vista Way', 'NULL', '1 (11) 500 555-0154', '2013-10-29', '0-1 Miles'], ['25547', '264', 'AW00025547', 'NULL', 'Carla', 'NULL', 'Suri', '0', '1944-11-10', 'S', 'NULL', 'F', 'carla3@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '2476 Mt. Whitney Way', 'NULL', '1 (11) 500 555-0137', '2013-02-10', '0-1 Miles'], ['25548', '155', 'AW00025548', 'NULL', 'Colleen', 'M', 'Yuan', '0', '1945-11-20', 'S', 'NULL', 'F', 'colleen31@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Reiherweg 501', 'NULL', '1 (11) 500 555-0143', '2013-11-12', '0-1 Miles'], ['25549', '211', 'AW00025549', 'NULL', 'Mallory', 'NULL', 'Dominguez', '0', '1947-04-26', 'S', 'NULL', 'F', 'mallory19@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '62, rue Villedo', 'NULL', '1 (11) 500 555-0186', '2013-07-07', '0-1 Miles'], ['25550', '129', 'AW00025550', 'NULL', 'Krista', 'J', 'Munoz', '0', '1947-01-31', 'M', 'NULL', 'F', 'krista8@adventure-works.com', '20000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Am Karlshof 888', 'Einkaufsabteilung', '1 (11) 500 555-0174', '2013-11-10', '0-1 Miles'], ['25551', '117', 'AW00025551', 'NULL', 'Ross', 'L', 'Torres', '0', '1946-12-23', 'M', 'NULL', 'M', 'ross30@adventure-works.com', '20000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Hans-Rosenthal-Platz 47', 'NULL', '1 (11) 500 555-0116', '2013-12-14', '0-1 Miles'], ['25552', '162', 'AW00025552', 'NULL', 'Riley', 'NULL', 'Ward', '0', '1946-10-05', 'S', 'NULL', 'F', 'riley32@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Kapellstr 4266', 'NULL', '1 (11) 500 555-0183', '2013-12-06', '0-1 Miles'], ['25553', '278', 'AW00025553', 'NULL', 'Brett', 'D', 'Srini', '0', '1946-08-22', 'M', 'NULL', 'M', 'brett8@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7035 Creekridge Lane', 'NULL', '1 (11) 500 555-0142', '2013-11-07', '0-1 Miles'], ['25554', '216', 'AW00025554', 'NULL', 'Jermaine', 'J', 'Perez', '0', '1949-04-20', 'S', 'NULL', 'M', 'jermaine20@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6268, chaussée de Tournai', 'NULL', '1 (11) 500 555-0140', '2013-04-27', '2-5 Miles'], ['25555', '9', 'AW00025555', 'NULL', 'Trisha', 'NULL', 'Lu', '0', '1985-08-12', 'M', 'NULL', 'F', 'trisha6@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '3920 Valley Run', 'NULL', '1 (11) 500 555-0147', '2011-02-16', '0-1 Miles'], ['25556', '21', 'AW00025556', 'NULL', 'Joan', 'R', 'Martin', '0', '1986-03-26', 'S', 'NULL', 'F', 'joan19@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '517 Soto St.', 'NULL', '1 (11) 500 555-0157', '2011-03-23', '1-2 Miles'], ['25557', '23', 'AW00025557', 'NULL', 'Tyrone', 'K', 'Navarro', '0', '1986-01-30', 'M', 'NULL', 'M', 'tyrone9@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '685 St. Peter Court', 'NULL', '1 (11) 500 555-0110', '2011-03-27', '2-5 Miles'], ['25558', '4', 'AW00025558', 'NULL', 'Zachary', 'NULL', 'Wilson', '0', '1985-09-12', 'S', 'NULL', 'M', 'zachary36@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '9775 Redrock Drive', 'NULL', '1 (11) 500 555-0157', '2011-03-03', '1-2 Miles'], ['25559', '5', 'AW00025559', 'NULL', 'Troy', 'H', 'Sanchez', '0', '1986-03-10', 'S', 'NULL', 'M', 'troy22@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4197 Ironwood Drive', 'NULL', '1 (11) 500 555-0138', '2011-03-27', '0-1 Miles'], ['25560', '33', 'AW00025560', 'NULL', 'Daisy', 'L', 'Vazquez', '0', '1983-11-22', 'M', 'NULL', 'F', 'daisy9@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '3620 Temple Drive', 'NULL', '1 (11) 500 555-0138', '2011-04-26', '2-5 Miles'], ['25561', '16', 'AW00025561', 'NULL', 'Micah', 'A', 'Zeng', '0', '1982-08-23', 'S', 'NULL', 'M', 'micah10@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '2264 Story Lane', 'NULL', '1 (11) 500 555-0147', '2011-04-28', '0-1 Miles'], ['25562', '7', 'AW00025562', 'NULL', 'Bonnie', 'R', 'Sharma', '0', '1985-04-07', 'M', 'NULL', 'F', 'bonnie15@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1456 La Mar Ct.', 'NULL', '1 (11) 500 555-0139', '2011-04-08', '0-1 Miles'], ['25563', '16', 'AW00025563', 'NULL', 'Natasha', 'NULL', 'Serrano', '0', '1983-10-26', 'S', 'NULL', 'F', 'natasha16@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '7892 Mitchelleanjen Ln.', 'NULL', '1 (11) 500 555-0152', '2011-04-15', '0-1 Miles'], ['25564', '19', 'AW00025564', 'NULL', 'Fernando', 'G', 'Nelson', '0', '1983-03-20', 'S', 'NULL', 'M', 'fernando34@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '4147 Alamo Court', 'NULL', '1 (11) 500 555-0167', '2011-05-15', '2-5 Miles'], ['25565', '39', 'AW00025565', 'NULL', 'Kevin', 'M', 'Perez', '0', '1983-06-06', 'S', 'NULL', 'M', 'kevin40@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '8398 Mt. Hood Circle', 'NULL', '1 (11) 500 555-0116', '2011-05-22', '1-2 Miles'], ['25566', '9', 'AW00025566', 'NULL', 'Kristine', 'B', 'Navarro', '0', '1983-03-26', 'M', 'NULL', 'F', 'kristine11@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '8903 Summertime Dr.', 'NULL', '1 (11) 500 555-0178', '2011-05-17', '0-1 Miles'], ['25567', '22', 'AW00025567', 'NULL', 'Dennis', 'E', 'Zheng', '0', '1983-01-09', 'S', 'NULL', 'M', 'dennis21@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '9231 Brook Hollow Ct.', 'NULL', '1 (11) 500 555-0189', '2011-05-12', '0-1 Miles'], ['25568', '22', 'AW00025568', 'NULL', 'Christy', 'D', 'Wu', '0', '1983-03-21', 'M', 'NULL', 'F', 'christy6@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '3842 Algiers Dr.', 'NULL', '1 (11) 500 555-0137', '2011-06-18', '0-1 Miles'], ['25569', '212', 'AW00025569', 'NULL', 'Jésus', 'H', 'Alvarez', '0', '1954-07-14', 'S', 'NULL', 'M', 'jésus5@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '2, rue Royale', 'NULL', '1 (11) 500 555-0137', '2013-06-09', '0-1 Miles'], ['25570', '197', 'AW00025570', 'NULL', 'Robyn', 'NULL', 'Torres', '0', '1948-11-13', 'S', 'NULL', 'F', 'robyn9@adventure-works.com', '20000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '343, rue de Terre Neuve', 'NULL', '1 (11) 500 555-0123', '2014-01-01', '1-2 Miles'], ['25571', '171', 'AW00025571', 'NULL', 'Richard', 'L', 'Lopez', '0', '1948-12-06', 'S', 'NULL', 'M', 'richard23@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Königsteiner Straße 750', 'NULL', '1 (11) 500 555-0163', '2013-12-17', '0-1 Miles'], ['25572', '239', 'AW00025572', 'NULL', 'Allen', 'NULL', 'Gonzalez', '0', '1949-03-02', 'S', 'NULL', 'M', 'allen17@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '3754 Alray Drive', 'NULL', '1 (11) 500 555-0171', '2013-11-25', '0-1 Miles'], ['25573', '249', 'AW00025573', 'NULL', 'Rosa', 'D', 'Zhou', '0', '1948-10-06', 'M', 'NULL', 'F', 'rosa9@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5000 Brown Dr.', 'NULL', '1 (11) 500 555-0124', '2013-11-03', '0-1 Miles'], ['25574', '224', 'AW00025574', 'NULL', 'Bradley', 'L', 'Raje', '0', '1967-03-12', 'S', 'NULL', 'M', 'bradley16@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '10, impasse Ste-Madeleine', 'NULL', '1 (11) 500 555-0125', '2013-06-26', '0-1 Miles'], ['25575', '162', 'AW00025575', 'NULL', 'Elijah', 'R', 'Campbell', '0', '1967-02-24', 'S', 'NULL', 'M', 'elijah35@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Marienplatz 41464', 'NULL', '1 (11) 500 555-0151', '2013-12-03', '0-1 Miles'], ['25576', '262', 'AW00025576', 'NULL', 'Deborah', 'NULL', 'She', '0', '1966-09-09', 'S', 'NULL', 'F', 'deborah4@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '145 W. Watson Court', 'NULL', '1 (11) 500 555-0189', '2013-11-12', '0-1 Miles'], ['25577', '265', 'AW00025577', 'NULL', 'Elijah', 'I', 'Wright', '0', '1972-07-14', 'S', 'NULL', 'M', 'elijah44@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4502 Knewal Rd', 'NULL', '1 (11) 500 555-0112', '2013-12-26', '0-1 Miles'], ['25578', '265', 'AW00025578', 'NULL', 'Sabrina', 'D', 'Martin', '0', '1966-11-18', 'M', 'NULL', 'F', 'sabrina16@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8922 Lindley Ct.', 'NULL', '1 (11) 500 555-0134', '2013-12-13', '0-1 Miles'], ['25579', '225', 'AW00025579', 'NULL', 'Bobby', 'W', 'Prasad', '0', '1965-08-08', 'M', 'NULL', 'M', 'bobby5@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '390, rue des Rosiers', 'NULL', '1 (11) 500 555-0182', '2013-03-27', '1-2 Miles'], ['25580', '190', 'AW00025580', 'NULL', 'Amber', 'A', 'Allen', '0', '1966-04-20', 'M', 'NULL', 'F', 'amber23@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '2442bis, boulevard Saint Germain', 'NULL', '1 (11) 500 555-0133', '2013-06-20', '2-5 Miles'], ['25581', '161', 'AW00025581', 'NULL', 'Kayla', 'C', 'Bryant', '0', '1966-01-24', 'S', 'NULL', 'F', 'kayla42@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Helsenbergbogen 6', 'NULL', '1 (11) 500 555-0192', '2013-09-27', '1-2 Miles'], ['25582', '238', 'AW00025582', 'NULL', 'Leonard', 'A', 'Luo', '0', '1965-12-17', 'M', 'NULL', 'M', 'leonard7@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '7118 Elliott Dr.', 'NULL', '1 (11) 500 555-0156', '2013-12-06', '0-1 Miles'], ['25583', '172', 'AW00025583', 'NULL', 'Carolyn', 'A', 'Arthur', '0', '1964-09-03', 'S', 'NULL', 'F', 'carolyn6@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '232 K St.', 'NULL', '1 (11) 500 555-0191', '2013-12-13', '0-1 Miles'], ['25584', '270', 'AW00025584', 'NULL', 'Dominique', 'NULL', 'Suri', '0', '1964-10-14', 'M', 'NULL', 'F', 'dominique0@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9937 Las Lomas Way', 'NULL', '1 (11) 500 555-0126', '2013-12-12', '0-1 Miles'], ['25585', '279', 'AW00025585', 'NULL', 'Brent', 'NULL', 'Sun', '0', '1964-10-07', 'M', 'NULL', 'M', 'brent12@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3420 Weber Bryan Pl.', 'NULL', '1 (11) 500 555-0195', '2013-12-26', '0-1 Miles'], ['25586', '190', 'AW00025586', 'NULL', 'Molly', 'C', 'Subram', '0', '1964-02-20', 'S', 'NULL', 'F', 'molly12@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '67, rue Montcalm', 'NULL', '1 (11) 500 555-0127', '2013-06-27', '0-1 Miles'], ['25587', '121', 'AW00025587', 'NULL', 'Isaiah', 'A', 'Young', '0', '1965-10-18', 'M', 'NULL', 'M', 'isaiah42@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Roßstr 9928', 'NULL', '1 (11) 500 555-0115', '2013-12-24', '0-1 Miles'], ['25588', '222', 'AW00025588', 'NULL', 'Jerry', 'NULL', 'Pal', '0', '1965-01-31', 'S', 'NULL', 'M', 'jerry13@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '81, route de Marseille', 'NULL', '1 (11) 500 555-0192', '2013-05-30', '0-1 Miles'], ['25589', '161', 'AW00025589', 'NULL', 'Lydia', 'NULL', 'Perez', '0', '1970-02-23', 'S', 'NULL', 'F', 'lydia19@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Waldstr 66', 'NULL', '1 (11) 500 555-0112', '2013-12-19', '0-1 Miles'], ['25590', '173', 'AW00025590', 'NULL', 'Naomi', 'E', 'Gill', '0', '1976-03-23', 'S', 'NULL', 'F', 'naomi14@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Charlottenstr 272', 'NULL', '1 (11) 500 555-0124', '2013-12-12', '2-5 Miles'], ['25591', '178', 'AW00025591', 'NULL', 'Preston', 'NULL', 'Ray', '0', '1975-10-20', 'S', 'NULL', 'M', 'preston10@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Wertheimer Straße 822', 'NULL', '1 (11) 500 555-0181', '2013-12-25', '2-5 Miles'], ['25592', '270', 'AW00025592', 'NULL', 'Kendra', 'NULL', 'Ortega', '0', '1986-03-14', 'S', 'NULL', 'F', 'kendra22@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '281 Windsor Drive', 'NULL', '1 (11) 500 555-0116', '2013-05-04', '0-1 Miles'], ['25593', '218', 'AW00025593', 'NULL', 'Micheal', 'NULL', 'Gill', '0', '1985-08-13', 'M', 'NULL', 'M', 'micheal9@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '6, avenue des Ternes', 'NULL', '1 (11) 500 555-0116', '2013-07-19', '0-1 Miles'], ['25594', '222', 'AW00025594', 'NULL', 'Cindy', 'T', 'Malhotra', '0', '1975-12-31', 'M', 'NULL', 'F', 'cindy5@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2, rue de la Centenaire', 'NULL', '1 (11) 500 555-0113', '2013-07-30', '0-1 Miles'], ['25595', '117', 'AW00025595', 'NULL', 'Larry', 'M', 'Rowe', '0', '1976-01-31', 'S', 'NULL', 'M', 'larry3@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Lützowplatz 5938', 'NULL', '1 (11) 500 555-0152', '2013-12-21', '0-1 Miles'], ['25596', '119', 'AW00025596', 'NULL', 'Cheryl', 'A', 'Moreno', '0', '1976-04-22', 'M', 'NULL', 'F', 'cheryl8@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Lindenalle 842', 'NULL', '1 (11) 500 555-0110', '2013-12-17', '0-1 Miles'], ['25597', '173', 'AW00025597', 'NULL', 'Alan', 'A', 'She', '0', '1975-11-03', 'S', 'NULL', 'M', 'alan27@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Haberstr 575', 'NULL', '1 (11) 500 555-0110', '2013-12-17', '0-1 Miles'], ['25598', '269', 'AW00025598', 'NULL', 'Kendra', 'NULL', 'Ruiz', '0', '1976-01-14', 'M', 'NULL', 'F', 'kendra2@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1872 Walnut Avenue', 'NULL', '1 (11) 500 555-0112', '2013-12-04', '0-1 Miles'], ['25599', '236', 'AW00025599', 'NULL', 'Aaron', 'NULL', 'Russell', '0', '1980-06-04', 'S', 'NULL', 'M', 'aaron19@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '3352 Kingswood Circle', 'NULL', '1 (11) 500 555-0142', '2013-12-11', '0-1 Miles'], ['25600', '198', 'AW00025600', 'NULL', 'Derek', 'NULL', 'Anand', '0', '1974-08-22', 'M', 'NULL', 'M', 'derek20@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1680, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0130', '2013-08-28', '0-1 Miles'], ['25601', '161', 'AW00025601', 'NULL', 'Grace', 'E', 'Morgan', '0', '1975-04-19', 'S', 'NULL', 'F', 'grace29@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Hauptstr 6146', 'NULL', '1 (11) 500 555-0115', '2013-12-01', '0-1 Miles'], ['25602', '145', 'AW00025602', 'NULL', 'Jermaine', 'A', 'Sara', '0', '1974-07-05', 'S', 'NULL', 'M', 'jermaine8@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Zollhof 2822', '#919', '1 (11) 500 555-0146', '2013-08-13', '0-1 Miles'], ['25603', '236', 'AW00025603', 'NULL', 'Dawn', 'R', 'Guo', '0', '1980-03-20', 'S', 'NULL', 'F', 'dawn19@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '158 Walnut Ave', 'NULL', '1 (11) 500 555-0186', '2013-12-17', '0-1 Miles'], ['25604', '253', 'AW00025604', 'NULL', 'Martin', 'A', 'Vance', '0', '1974-09-24', 'S', 'NULL', 'M', 'martin9@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '1050 Creed Ave', 'NULL', '1 (11) 500 555-0195', '2013-12-17', '0-1 Miles'], ['25605', '268', 'AW00025605', 'NULL', 'Abby', 'K', 'Kovár', '0', '1957-10-20', 'S', 'NULL', 'F', 'abby3@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '8314 Elkwood Dr.', 'NULL', '1 (11) 500 555-0131', '2013-01-13', '0-1 Miles'], ['25606', '194', 'AW00025606', 'NULL', 'Meredith', 'NULL', 'Fernandez', '0', '1958-05-09', 'S', 'NULL', 'F', 'meredith15@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '8211, rue Villedo', 'NULL', '1 (11) 500 555-0114', '2013-08-09', '2-5 Miles'], ['25607', '218', 'AW00025607', 'NULL', 'Sharon', 'NULL', 'Chander', '0', '1969-05-22', 'S', 'NULL', 'F', 'sharon21@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1199, rue Ste-Honoré', 'NULL', '1 (11) 500 555-0174', '2013-08-16', '0-1 Miles'], ['25608', '263', 'AW00025608', 'NULL', 'Sandra', 'NULL', 'Zeng', '0', '1958-01-31', 'S', 'NULL', 'F', 'sandra29@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '9222 Roseann Drive', 'NULL', '1 (11) 500 555-0168', '2013-01-22', '2-5 Miles'], ['25609', '263', 'AW00025609', 'NULL', 'Jaime', 'J', 'Ruiz', '0', '1957-05-02', 'S', 'NULL', 'F', 'jaime2@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6469 Castlewood', 'Unit B', '1 (11) 500 555-0176', '2012-12-31', '2-5 Miles'], ['25610', '133', 'AW00025610', 'NULL', 'Brittney', 'M', 'Zhao', '0', '1979-04-20', 'S', 'NULL', 'F', 'brittney9@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Lieblingsweg 2', 'NULL', '1 (11) 500 555-0193', '2013-12-25', '0-1 Miles'], ['25611', '231', 'AW00025611', 'NULL', 'Deanna', 'NULL', 'Rodriguez', '0', '1979-11-07', 'S', 'NULL', 'F', 'deanna23@adventure-works.com', '10000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '9736 Montana', 'NULL', '1 (11) 500 555-0136', '2013-01-09', '0-1 Miles'], ['25612', '258', 'AW00025612', 'NULL', 'Clinton', 'A', 'Rubio', '0', '1974-03-21', 'S', 'NULL', 'M', 'clinton17@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '4278 Heppard Way', 'NULL', '1 (11) 500 555-0154', '2013-02-07', '0-1 Miles'], ['25613', '192', 'AW00025613', 'NULL', 'Erik', 'S', 'Ruiz', '0', '1974-06-18', 'M', 'NULL', 'M', 'erik3@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '19, rue Philibert-Delorme', 'NULL', '1 (11) 500 555-0122', '2013-08-23', '2-5 Miles'], ['25614', '200', 'AW00025614', 'NULL', 'Deanna', 'NULL', 'Subram', '0', '1973-11-13', 'M', 'NULL', 'F', 'deanna16@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '26, rue de l´Esplanade', 'NULL', '1 (11) 500 555-0187', '2013-08-22', '2-5 Miles'], ['25615', '243', 'AW00025615', 'NULL', 'Destiny', 'G', 'Hall', '0', '1973-10-26', 'M', 'NULL', 'F', 'destiny22@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7119 Panoramic Drive', 'NULL', '1 (11) 500 555-0117', '2013-02-16', '1-2 Miles'], ['25616', '273', 'AW00025616', 'NULL', 'Jésus', 'NULL', 'Rubio', '0', '1973-08-26', 'M', 'NULL', 'M', 'jésus20@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6836 Alum Rock Drive', 'NULL', '1 (11) 500 555-0149', '2013-02-10', '1-2 Miles'], ['25617', '217', 'AW00025617', 'NULL', 'Leonard', 'E', 'Shan', '0', '1979-02-09', 'M', 'NULL', 'M', 'leonard11@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '669, rue Philibert-Delorme', 'NULL', '1 (11) 500 555-0112', '2013-08-21', '1-2 Miles'], ['25618', '135', 'AW00025618', 'NULL', 'Albert', 'NULL', 'Hernandez', '0', '1973-12-22', 'M', 'NULL', 'M', 'albert6@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Auf dem Ufer 664', 'NULL', '1 (11) 500 555-0195', '2013-01-01', '0-1 Miles'], ['25619', '224', 'AW00025619', 'NULL', 'Rafael', 'C', 'Raji', '0', '1984-09-16', 'M', 'NULL', 'M', 'rafael45@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '65, avenue du Port', 'NULL', '1 (11) 500 555-0176', '2013-08-30', '2-5 Miles'], ['25620', '49', 'AW00025620', 'NULL', 'Alejandro', 'NULL', 'Lu', '0', '1973-10-25', 'M', 'NULL', 'M', 'alejandro14@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '863 Heritage Oaks', 'NULL', '217-555-0115', '2013-04-10', '1-2 Miles'], ['25621', '59', 'AW00025621', 'NULL', 'Brandon', 'L', 'Flores', '0', '1973-07-13', 'M', 'NULL', 'M', 'brandon9@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '4443 Virginia Lane', 'NULL', '172-555-0143', '2013-09-29', '0-1 Miles'], ['25622', '539', 'AW00025622', 'NULL', 'Mary', 'M', 'Hill', '0', '1979-01-06', 'S', 'NULL', 'F', 'mary26@adventure-works.com', '100000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1513 Deercreek Ln.', 'NULL', '346-555-0138', '2013-06-15', '1-2 Miles'], ['25623', '539', 'AW00025623', 'NULL', 'Maria', 'C', 'Oliver', '0', '1979-03-02', 'M', 'NULL', 'F', 'maria52@adventure-works.com', '100000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9714 Stroer Lane', 'NULL', '112-555-0140', '2013-06-23', '1-2 Miles'], ['25624', '635', 'AW00025624', 'NULL', 'Mary', 'NULL', 'Scott', '0', '1974-04-09', 'M', 'NULL', 'F', 'mary27@adventure-works.com', '100000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '8632 River Ash Court', 'NULL', '199-555-0163', '2013-05-14', '1-2 Miles'], ['25625', '147', 'AW00025625', 'NULL', 'Krystal', 'R', 'Cai', '0', '1970-01-15', 'M', 'NULL', 'F', 'krystal21@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Haberstr 28', 'NULL', '1 (11) 500 555-0150', '2012-12-31', '0-1 Miles'], ['25626', '238', 'AW00025626', 'NULL', 'Janet', 'R', 'Diaz', '0', '1975-05-18', 'M', 'NULL', 'F', 'janet8@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '149 Valley Blvd.', 'NULL', '1 (11) 500 555-0117', '2013-02-07', '0-1 Miles'], ['25627', '271', 'AW00025627', 'NULL', 'Joe', 'L', 'Carlson', '0', '1969-09-21', 'M', 'NULL', 'M', 'joe42@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '5146 California Street', 'NULL', '1 (11) 500 555-0123', '2013-02-09', '0-1 Miles'], ['25628', '241', 'AW00025628', 'NULL', 'Jessie', 'A', 'Dominguez', '0', '1975-05-24', 'M', 'NULL', 'F', 'jessie32@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '1627 Ashford Court', 'NULL', '1 (11) 500 555-0174', '2013-04-03', '0-1 Miles'], ['25629', '117', 'AW00025629', 'NULL', 'Micheal', 'T', 'Serrano', '0', '1974-10-03', 'M', 'NULL', 'M', 'micheal12@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Kurfürstenstr 5094', 'NULL', '1 (11) 500 555-0161', '2013-04-22', '0-1 Miles'], ['25630', '224', 'AW00025630', 'NULL', 'Mandy', 'NULL', 'Zeng', '0', '1969-04-12', 'M', 'NULL', 'F', 'mandy23@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '281, rue de Varenne', 'NULL', '1 (11) 500 555-0118', '2013-04-02', '0-1 Miles'], ['25631', '252', 'AW00025631', 'NULL', 'Julie', 'NULL', 'Deng', '0', '1974-08-04', 'S', 'NULL', 'F', 'julie5@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '2360 St. George Court', 'NULL', '1 (11) 500 555-0111', '2013-09-08', '0-1 Miles'], ['25632', '250', 'AW00025632', 'NULL', 'Lee', 'NULL', 'Moreno', '0', '1938-04-16', 'S', 'NULL', 'M', 'lee4@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '5445 Tice Valley Blvd.', 'NULL', '1 (11) 500 555-0146', '2013-03-06', '2-5 Miles'], ['25633', '150', 'AW00025633', 'NULL', 'Tara', 'A', 'Sutton', '0', '1939-02-08', 'M', 'NULL', 'F', 'tara4@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Auf dem Ufer 424', 'NULL', '1 (11) 500 555-0129', '2013-07-17', '2-5 Miles'], ['25634', '208', 'AW00025634', 'NULL', 'Lydia', 'A', 'Arun', '0', '1977-11-21', 'S', 'NULL', 'F', 'lydia6@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '4617 Sheppard Way', 'NULL', '1 (11) 500 555-0137', '2013-09-29', '0-1 Miles'], ['25635', '157', 'AW00025635', 'NULL', 'Warren', 'NULL', 'Zhao', '0', '1971-10-07', 'M', 'NULL', 'M', 'warren26@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', 'Parise Straße 4552', 'NULL', '1 (11) 500 555-0110', '2013-08-31', '0-1 Miles'], ['25636', '233', 'AW00025636', 'NULL', 'Tommy', 'NULL', 'Raji', '0', '1977-03-22', 'S', 'NULL', 'M', 'tommy18@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '7870 Orangewood Dr.', 'NULL', '1 (11) 500 555-0183', '2013-12-10', '0-1 Miles'], ['25637', '279', 'AW00025637', 'NULL', 'Raquel', 'D', 'Moreno', '0', '1977-04-20', 'M', 'NULL', 'F', 'raquel4@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2058 Richard Ave', 'NULL', '1 (11) 500 555-0121', '2013-08-02', '0-1 Miles'], ['25638', '226', 'AW00025638', 'NULL', 'Dale', 'A', 'Tang', '0', '1970-09-08', 'S', 'NULL', 'M', 'dale3@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '0', '8, rue de la Comédie', 'NULL', '1 (11) 500 555-0110', '2013-03-30', '0-1 Miles'], ['25639', '192', 'AW00025639', 'NULL', 'Russell', 'E', 'Lal', '0', '1971-01-30', 'M', 'NULL', 'M', 'russell11@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5, avenue de la Gare', 'NULL', '1 (11) 500 555-0138', '2013-10-17', '0-1 Miles'], ['25640', '117', 'AW00025640', 'NULL', 'Candice', 'NULL', 'Zhao', '0', '1982-05-21', 'S', 'NULL', 'F', 'candice16@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Residenz Straße 944', 'NULL', '1 (11) 500 555-0116', '2013-02-17', '0-1 Miles'], ['25641', '244', 'AW00025641', 'NULL', 'Dana', 'S', 'Schmidt', '0', '1970-08-26', 'M', 'NULL', 'F', 'dana13@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6813 Morning Way', 'NULL', '1 (11) 500 555-0122', '2012-12-30', '0-1 Miles'], ['25642', '244', 'AW00025642', 'NULL', 'Jon', 'NULL', 'Rai', '0', '1970-09-09', 'M', 'NULL', 'M', 'jon14@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9088 Ironwood Way', 'NULL', '1 (11) 500 555-0143', '2013-02-24', '0-1 Miles'], ['25643', '201', 'AW00025643', 'NULL', 'Sergio', 'NULL', 'Arun', '0', '1981-02-12', 'M', 'NULL', 'M', 'sergio7@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '8, rue des Vendangeurs', 'NULL', '1 (11) 500 555-0198', '2013-05-29', '0-1 Miles'], ['25644', '224', 'AW00025644', 'NULL', 'Andrew', 'NULL', 'Lewis', '0', '1975-07-05', 'M', 'NULL', 'M', 'andrew28@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '83, place du Tertre', 'NULL', '1 (11) 500 555-0118', '2013-10-01', '0-1 Miles'], ['25645', '165', 'AW00025645', 'NULL', 'Tommy', 'C', 'Shen', '0', '1981-02-16', 'S', 'NULL', 'M', 'tommy0@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Kulmer Straße 3646', 'NULL', '1 (11) 500 555-0169', '2013-02-08', '0-1 Miles'], ['25646', '245', 'AW00025646', 'NULL', 'Randall', 'NULL', 'Torres', '0', '1981-04-12', 'M', 'NULL', 'M', 'randall13@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2319 Hilltop Dr.', 'NULL', '1 (11) 500 555-0160', '2013-02-17', '0-1 Miles'], ['25647', '279', 'AW00025647', 'NULL', 'Kaitlyn', 'S', 'Hernandez', '0', '1975-02-05', 'M', 'NULL', 'F', 'kaitlyn16@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7652 Mcelroy', 'NULL', '1 (11) 500 555-0163', '2013-03-24', '0-1 Miles'], ['25648', '223', 'AW00025648', 'NULL', 'Michele', 'NULL', 'Carlson', '0', '1979-12-13', 'M', 'NULL', 'F', 'michele52@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '3', '9967, rue Marbeuf', 'NULL', '1 (11) 500 555-0118', '2013-06-28', '0-1 Miles'], ['25649', '190', 'AW00025649', 'NULL', 'Trinity', 'NULL', 'Morgan', '0', '1969-05-23', 'S', 'NULL', 'F', 'trinity19@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '48, place de la Concorde', 'NULL', '1 (11) 500 555-0141', '2013-11-26', '0-1 Miles'], ['25650', '164', 'AW00025650', 'NULL', 'Jillian', 'L', 'Srini', '0', '1974-05-02', 'M', 'NULL', 'F', 'jillian9@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Höhenstr 7994', 'NULL', '1 (11) 500 555-0137', '2013-09-23', '0-1 Miles'], ['25651', '120', 'AW00025651', 'NULL', 'Alvin', 'NULL', 'Yuan', '0', '1968-12-13', 'M', 'NULL', 'M', 'alvin29@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', 'Nollendorfplatz 5', 'NULL', '1 (11) 500 555-0170', '2013-09-20', '0-1 Miles'], ['25652', '215', 'AW00025652', 'NULL', 'Rachael', 'NULL', 'Sara', '0', '1983-12-25', 'S', 'NULL', 'F', 'rachael10@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '70, allée des Princes', 'NULL', '1 (11) 500 555-0151', '2013-09-02', '1-2 Miles'], ['25653', '118', 'AW00025653', 'NULL', 'Alan', 'NULL', 'Gao', '0', '1983-03-20', 'S', 'NULL', 'M', 'alan18@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Am Kreuz 4944', 'NULL', '1 (11) 500 555-0125', '2013-05-14', '1-2 Miles'], ['25654', '193', 'AW00025654', 'NULL', 'Carla', 'W', 'Malhotra', '0', '1984-09-30', 'M', 'NULL', 'F', 'carla8@adventure-works.com', '20000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '8, rue de la Comédie', 'NULL', '1 (11) 500 555-0188', '2014-01-17', '0-1 Miles'], ['25655', '243', 'AW00025655', 'NULL', 'Virginia', 'NULL', 'Arun', '0', '1974-02-11', 'M', 'NULL', 'F', 'virginia8@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6560 Waterview Terrace', 'NULL', '1 (11) 500 555-0126', '2013-03-21', '0-1 Miles'], ['25656', '268', 'AW00025656', 'NULL', 'Brenda', 'NULL', 'Sanchez', '0', '1968-05-08', 'M', 'NULL', 'F', 'brenda24@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1862 Court Lane', 'NULL', '1 (11) 500 555-0141', '2013-04-17', '0-1 Miles'], ['25657', '238', 'AW00025657', 'NULL', 'Tammy', 'J', 'Gonzalez', '0', '1967-10-12', 'M', 'NULL', 'F', 'tammy19@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2421 Norse Drive', 'NULL', '1 (11) 500 555-0142', '2013-04-21', '0-1 Miles'], ['25658', '164', 'AW00025658', 'NULL', 'Ricky', 'B', 'Dominguez', '0', '1967-11-01', 'M', 'NULL', 'M', 'ricky13@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', 'Winterfeldtstr 3935', 'NULL', '1 (11) 500 555-0196', '2013-08-29', '0-1 Miles'], ['25659', '230', 'AW00025659', 'NULL', 'Lee', 'NULL', 'Navarro', '0', '1967-08-05', 'M', 'NULL', 'M', 'lee8@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4723 Zion Avenue', 'NULL', '1 (11) 500 555-0184', '2013-04-17', '0-1 Miles'], ['25660', '221', 'AW00025660', 'NULL', 'Warren', 'S', 'Pal', '0', '1967-09-24', 'M', 'NULL', 'M', 'warren1@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8, rue de l´Avenir', 'NULL', '1 (11) 500 555-0165', '2013-11-18', '0-1 Miles'], ['25661', '217', 'AW00025661', 'NULL', 'Manuel', 'O', 'Sai', '0', '1968-01-09', 'M', 'NULL', 'M', 'manuel4@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '16, place de la Concorde', 'NULL', '1 (11) 500 555-0178', '2013-11-10', '0-1 Miles'], ['25662', '198', 'AW00025662', 'NULL', 'Andre', 'NULL', 'Kapoor', '0', '1983-11-06', 'M', 'NULL', 'M', 'andre1@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '70, rue Georges-Clémenceau', 'NULL', '1 (11) 500 555-0136', '2013-09-15', '0-1 Miles'], ['25663', '189', 'AW00025663', 'NULL', 'Masato', 'NULL', 'Kawai', '0', '1984-01-20', 'M', 'NULL', 'M', 'masato0@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4, avenue des Laurentides', 'NULL', '1 (11) 500 555-0160', '2013-08-13', '0-1 Miles'], ['25664', '172', 'AW00025664', 'NULL', 'Jon', 'NULL', 'Hu', '0', '1984-01-19', 'M', 'NULL', 'M', 'jon40@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Kulmer Straße 555', 'NULL', '1 (11) 500 555-0197', '2013-10-19', '0-1 Miles'], ['25665', '226', 'AW00025665', 'NULL', 'Theresa', 'NULL', 'Romero', '0', '1983-04-04', 'S', 'NULL', 'F', 'theresa6@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '8787, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0155', '2013-04-29', '1-2 Miles'], ['25666', '183', 'AW00025666', 'NULL', 'Micheal', 'NULL', 'Munoz', '0', '1983-05-05', 'M', 'NULL', 'M', 'micheal2@adventure-works.com', '30000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '3', '66, place de la République', 'NULL', '1 (11) 500 555-0112', '2013-06-03', '0-1 Miles'], ['25667', '149', 'AW00025667', 'NULL', 'Jaclyn', 'NULL', 'Gao', '0', '1983-04-27', 'S', 'NULL', 'F', 'jaclyn16@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Marketplatz 5492', 'NULL', '1 (11) 500 555-0135', '2013-04-28', '2-5 Miles'], ['25668', '234', 'AW00025668', 'NULL', 'Carolyn', 'L', 'Lopez', '0', '1983-03-25', 'S', 'NULL', 'F', 'carolyn16@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1555 Running Springs Rd.', 'NULL', '1 (11) 500 555-0135', '2013-08-22', '2-5 Miles'], ['25669', '277', 'AW00025669', 'NULL', 'Stacy', 'M', 'Ortega', '0', '1983-05-27', 'S', 'NULL', 'F', 'stacy22@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '8915 Woodside Way', 'NULL', '1 (11) 500 555-0171', '2013-04-02', '2-5 Miles'], ['25670', '187', 'AW00025670', 'NULL', 'Ariana', 'R', 'Brooks', '0', '1982-01-06', 'S', 'NULL', 'F', 'ariana1@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '2, allée des Princes', 'NULL', '1 (11) 500 555-0143', '2013-11-24', '1-2 Miles'], ['25671', '142', 'AW00025671', 'NULL', 'Brett', 'V', 'Arun', '0', '1982-05-06', 'S', 'NULL', 'M', 'brett6@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Moritzstr 54', 'NULL', '1 (11) 500 555-0114', '2013-03-13', '1-2 Miles'], ['25672', '217', 'AW00025672', 'NULL', 'Janelle', 'NULL', 'Subram', '0', '1980-10-10', 'S', 'NULL', 'F', 'janelle10@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '2, rue Lafayette', 'NULL', '1 (11) 500 555-0149', '2013-02-15', '0-1 Miles'], ['25673', '224', 'AW00025673', 'NULL', 'Isaiah', 'M', 'Turner', '0', '1981-10-08', 'S', 'NULL', 'M', 'isaiah28@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '6, avenue des Laurentides', 'NULL', '1 (11) 500 555-0140', '2013-09-22', '2-5 Miles'], ['25674', '150', 'AW00025674', 'NULL', 'Reginald', 'NULL', 'Navarro', '0', '1982-01-23', 'S', 'NULL', 'M', 'reginald17@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Wolfgangstraße 72', 'NULL', '1 (11) 500 555-0147', '2013-03-07', '0-1 Miles'], ['25675', '264', 'AW00025675', 'NULL', 'Joe', 'NULL', 'Blanco', '0', '1981-12-09', 'S', 'NULL', 'M', 'joe39@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '1781 Camino Solano', 'NULL', '1 (11) 500 555-0110', '2013-02-15', '0-1 Miles'], ['25676', '267', 'AW00025676', 'NULL', 'Mackenzie', 'L', 'Scott', '0', '1982-02-10', 'S', 'NULL', 'F', 'mackenzie34@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4965 Bishop Court', 'NULL', '1 (11) 500 555-0113', '2013-05-13', '2-5 Miles'], ['25677', '207', 'AW00025677', 'NULL', 'Veronica', 'A', 'Lopez', '0', '1979-08-25', 'M', 'NULL', 'F', 'veronica18@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '7, impasse Ste-Madeleine', 'NULL', '1 (11) 500 555-0124', '2013-06-21', '1-2 Miles'], ['25678', '145', 'AW00025678', 'NULL', 'Erica', 'NULL', 'Yang', '0', '1980-05-02', 'S', 'NULL', 'F', 'erica4@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Auf Der Steige 2', 'NULL', '1 (11) 500 555-0138', '2014-01-19', '0-1 Miles'], ['25679', '222', 'AW00025679', 'NULL', 'Meredith', 'NULL', 'Rodriguez', '0', '1980-12-18', 'S', 'NULL', 'F', 'meredith19@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '92, rue Henri Gagnon', 'NULL', '1 (11) 500 555-0130', '2013-09-06', '2-5 Miles'], ['25680', '123', 'AW00025680', 'NULL', 'Manuel', 'NULL', 'Subram', '0', '1981-03-25', 'S', 'NULL', 'M', 'manuel11@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Residenz Straße 449', 'NULL', '1 (11) 500 555-0120', '2013-06-15', '2-5 Miles'], ['25681', '155', 'AW00025681', 'NULL', 'Melinda', 'NULL', 'Serrano', '0', '1980-08-29', 'S', 'NULL', 'F', 'melinda11@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Wertheimer Straße 895', 'NULL', '1 (11) 500 555-0198', '2013-02-28', '2-5 Miles'], ['25682', '245', 'AW00025682', 'NULL', 'Cheryl', 'A', 'Ramos', '0', '1984-11-22', 'M', 'NULL', 'F', 'cheryl20@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '4949 West Slough Rd', 'NULL', '1 (11) 500 555-0135', '2013-05-27', '1-2 Miles'], ['25683', '193', 'AW00025683', 'NULL', 'Ebony', 'NULL', 'Ruiz', '0', '1976-02-22', 'S', 'NULL', 'F', 'ebony24@adventure-works.com', '10000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '57, rue de l´Avenir', 'NULL', '1 (11) 500 555-0122', '2013-11-15', '0-1 Miles'], ['25684', '174', 'AW00025684', 'NULL', 'Jermaine', 'D', 'Sanchez', '0', '1967-08-31', 'S', 'NULL', 'M', 'jermaine19@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Rotthäuser Weg 7766', 'NULL', '1 (11) 500 555-0178', '2013-10-10', '0-1 Miles'], ['25685', '162', 'AW00025685', 'NULL', 'Barbara', 'A', 'Liu', '0', '1968-06-18', 'M', 'NULL', 'F', 'barbara14@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Alderweg 6842', 'NULL', '1 (11) 500 555-0116', '2013-07-31', '0-1 Miles'], ['25686', '240', 'AW00025686', 'NULL', 'Naomi', 'NULL', 'Hernandez', '0', '1984-05-01', 'S', 'NULL', 'F', 'naomi3@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '1858 Liscome Way', 'NULL', '1 (11) 500 555-0153', '2013-03-20', '0-1 Miles'], ['25687', '269', 'AW00025687', 'NULL', 'Jade', 'C', 'Cook', '0', '1967-03-13', 'S', 'NULL', 'F', 'jade17@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '8180 Pierce Court', 'NULL', '1 (11) 500 555-0130', '2013-12-06', '0-1 Miles'], ['25688', '223', 'AW00025688', 'NULL', 'Patrick', 'E', 'Morris', '0', '1967-01-22', 'S', 'NULL', 'M', 'patrick23@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '80, rue de Fontfroide', 'NULL', '1 (11) 500 555-0119', '2013-08-29', '0-1 Miles'], ['25689', '269', 'AW00025689', 'NULL', 'Andrea', 'NULL', 'Campbell', '0', '1967-11-20', 'S', 'NULL', 'F', 'andrea32@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1032 Coats Road', 'NULL', '1 (11) 500 555-0183', '2013-07-10', '0-1 Miles'], ['25690', '279', 'AW00025690', 'NULL', 'Theodore', 'NULL', 'Alvarez', '0', '1972-06-09', 'M', 'NULL', 'M', 'theodore5@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3895 Mt. Tooth Place', 'NULL', '1 (11) 500 555-0147', '2013-05-06', '0-1 Miles'], ['25691', '120', 'AW00025691', 'NULL', 'Mitchell', 'F', 'Black', '0', '1967-01-22', 'M', 'NULL', 'M', 'mitchell17@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Erlenweg 4949', 'NULL', '1 (11) 500 555-0147', '2013-03-02', '0-1 Miles'], ['25692', '264', 'AW00025692', 'NULL', 'Kelvin', 'L', 'Yuan', '0', '1940-12-14', 'M', 'NULL', 'M', 'kelvin4@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1907 Grand Ct.', 'NULL', '1 (11) 500 555-0128', '2013-03-09', '0-1 Miles'], ['25693', '185', 'AW00025693', 'NULL', 'Brandy', 'NULL', 'Subram', '0', '1968-02-19', 'S', 'NULL', 'F', 'brandy9@adventure-works.com', '30000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '14, rue Faubourg St Antoine', 'NULL', '1 (11) 500 555-0147', '2013-12-13', '0-1 Miles'], ['25694', '212', 'AW00025694', 'NULL', 'Dawn', 'D', 'Raje', '0', '1978-10-17', 'S', 'NULL', 'F', 'dawn38@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1144, rue Ste-Honoré', 'NULL', '1 (11) 500 555-0169', '2013-12-01', '0-1 Miles'], ['25695', '184', 'AW00025695', 'NULL', 'Kristine', 'D', 'Blanco', '0', '1963-10-14', 'S', 'NULL', 'F', 'kristine16@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '1722, rue de Cambrai', 'NULL', '1 (11) 500 555-0179', '2013-06-06', '0-1 Miles'], ['25696', '184', 'AW00025696', 'NULL', 'Damien', 'L', 'Luo', '0', '1963-02-19', 'M', 'NULL', 'M', 'damien23@adventure-works.com', '10000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '116, boulevard d´Albi', 'NULL', '1 (11) 500 555-0115', '2013-09-28', '0-1 Miles'], ['25697', '186', 'AW00025697', 'NULL', 'Miguel', 'L', 'Harris', '0', '1961-10-09', 'S', 'NULL', 'M', 'miguel13@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '511, rue Villedo', 'NULL', '1 (11) 500 555-0130', '2013-02-04', '0-1 Miles'], ['25698', '223', 'AW00025698', 'NULL', 'Ariana', 'E', 'Murphy', '0', '1962-01-25', 'M', 'NULL', 'F', 'ariana13@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '59, rue Montcalm', 'NULL', '1 (11) 500 555-0186', '2013-09-05', '1-2 Miles'], ['25699', '261', 'AW00025699', 'NULL', 'Marcus', 'A', 'Kelly', '0', '1962-03-21', 'S', 'NULL', 'M', 'marcus76@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '5929 Seaview Dr.', 'NULL', '1 (11) 500 555-0118', '2013-06-06', '0-1 Miles'], ['25700', '223', 'AW00025700', 'NULL', 'Faith', 'B', 'Coleman', '0', '1960-02-15', 'S', 'NULL', 'F', 'faith5@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '2181, rue Malar', 'NULL', '1 (11) 500 555-0165', '2013-12-14', '0-1 Miles'], ['25701', '255', 'AW00025701', 'NULL', 'Francisco', 'NULL', 'Garcia', '0', '1945-12-02', 'M', 'NULL', 'M', 'francisco16@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7284 Golf Club Road', 'NULL', '1 (11) 500 555-0174', '2013-02-11', '0-1 Miles'], ['25702', '144', 'AW00025702', 'NULL', 'Evelyn', 'E', 'Lopez', '0', '1947-10-12', 'S', 'NULL', 'F', 'evelyn17@adventure-works.com', '20000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Holzstr 1333', 'NULL', '1 (11) 500 555-0171', '2013-03-29', '0-1 Miles'], ['25703', '251', 'AW00025703', 'NULL', 'Summer', 'M', 'Rana', '0', '1948-01-18', 'M', 'NULL', 'F', 'summer9@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9474 Old Mt. View Drive', 'NULL', '1 (11) 500 555-0125', '2013-02-26', '0-1 Miles'], ['25704', '33', 'AW00025704', 'NULL', 'Seth', 'A', 'Murphy', '0', '1985-08-04', 'S', 'NULL', 'M', 'seth86@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '3419 C. Mt. Hood', 'NULL', '1 (11) 500 555-0113', '2011-06-30', '1-2 Miles'], ['25705', '30', 'AW00025705', 'NULL', 'Levi', 'NULL', 'Prasad', '0', '1984-12-23', 'S', 'NULL', 'M', 'levi8@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '710 Longbrook Way', 'NULL', '1 (11) 500 555-0171', '2011-06-27', '2-5 Miles'], ['25706', '21', 'AW00025706', 'NULL', 'Francisco', 'S', 'Madan', '0', '1983-12-12', 'S', 'NULL', 'M', 'francisco8@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '7824 Frayne Ln', 'NULL', '1 (11) 500 555-0110', '2011-06-16', '0-1 Miles'], ['25707', '29', 'AW00025707', 'NULL', 'Louis', 'M', 'Raje', '0', '1984-05-22', 'M', 'NULL', 'M', 'louis30@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '4915 Pear Dr.', 'NULL', '1 (11) 500 555-0169', '2011-06-18', '2-5 Miles'], ['25708', '23', 'AW00025708', 'NULL', 'Misty', 'NULL', 'Sharma', '0', '1984-01-06', 'S', 'NULL', 'F', 'misty11@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '4764 Gatter Court', 'NULL', '1 (11) 500 555-0185', '2011-06-23', '0-1 Miles'], ['25709', '35', 'AW00025709', 'NULL', 'Savannah', 'NULL', 'Lopez', '0', '1984-07-08', 'M', 'NULL', 'F', 'savannah44@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '5496 Village Pl.', 'NULL', '1 (11) 500 555-0165', '2011-06-19', '2-5 Miles'], ['25710', '6', 'AW00025710', 'NULL', 'Diana', 'NULL', 'Gill', '0', '1985-05-20', 'M', 'NULL', 'F', 'diana13@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '9073 Stimel Drive', 'NULL', '1 (11) 500 555-0186', '2011-06-18', '0-1 Miles'], ['25711', '38', 'AW00025711', 'NULL', 'Mario', 'L', 'Luo', '0', '1985-03-22', 'S', 'NULL', 'M', 'mario5@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '7062 Clayton Rd.', 'NULL', '1 (11) 500 555-0193', '2011-07-18', '0-1 Miles'], ['25712', '33', 'AW00025712', 'NULL', 'Brent', 'R', 'He', '0', '1985-02-12', 'S', 'NULL', 'M', 'brent18@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1340 Starlyn Dr.', 'NULL', '1 (11) 500 555-0138', '2011-07-30', '0-1 Miles'], ['25713', '39', 'AW00025713', 'NULL', 'Latasha', 'M', 'Gill', '0', '1984-09-15', 'S', 'NULL', 'F', 'latasha13@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5267 Mt. Tri-state Court', 'NULL', '1 (11) 500 555-0121', '2011-07-07', '0-1 Miles'], ['25714', '14', 'AW00025714', 'NULL', 'Darren', 'A', 'Gutierrez', '0', '1984-03-02', 'S', 'NULL', 'M', 'darren33@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2215 La Corte Bonita', 'NULL', '1 (11) 500 555-0172', '2011-07-15', '0-1 Miles'], ['25715', '11', 'AW00025715', 'NULL', 'Tabitha', 'W', 'Sara', '0', '1984-01-18', 'S', 'NULL', 'F', 'tabitha8@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '1069 Ahwanee Lane', 'NULL', '1 (11) 500 555-0169', '2011-07-28', '0-1 Miles'], ['25716', '13', 'AW00025716', 'NULL', 'Edwin', 'NULL', 'Gao', '0', '1984-05-24', 'S', 'NULL', 'M', 'edwin16@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '598 Limeridge Drive', 'NULL', '1 (11) 500 555-0142', '2011-07-29', '0-1 Miles'], ['25717', '9', 'AW00025717', 'NULL', 'Ernest', 'NULL', 'Guo', '0', '1983-09-15', 'M', 'NULL', 'M', 'ernest17@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '609 Power Ave.', 'NULL', '1 (11) 500 555-0181', '2011-07-18', '0-1 Miles'], ['25718', '30', 'AW00025718', 'NULL', 'Terrance', 'NULL', 'Martinez', '0', '1983-02-21', 'S', 'NULL', 'M', 'terrance15@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '8166 Starflower Dr', 'NULL', '1 (11) 500 555-0150', '2011-08-16', '0-1 Miles'], ['25719', '126', 'AW00025719', 'NULL', 'Kristine', 'NULL', 'Diaz', '0', '1954-02-07', 'S', 'NULL', 'F', 'kristine4@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Westheimer Straße 9601', 'NULL', '1 (11) 500 555-0193', '2013-02-13', '0-1 Miles'], ['25720', '134', 'AW00025720', 'NULL', 'Ronald', 'D', 'Garcia', '0', '1948-10-01', 'M', 'NULL', 'M', 'ronald17@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Am Karlshof 228', 'NULL', '1 (11) 500 555-0195', '2013-04-01', '0-1 Miles'], ['25721', '251', 'AW00025721', 'NULL', 'April', 'E', 'Nara', '0', '1949-04-18', 'M', 'NULL', 'F', 'april13@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4808 Bon Homme Way', 'NULL', '1 (11) 500 555-0168', '2013-03-23', '0-1 Miles'], ['25722', '208', 'AW00025722', 'NULL', 'Noah', 'NULL', 'Mitchell', '0', '1967-01-16', 'S', 'NULL', 'M', 'noah38@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '40, place de la République', 'NULL', '1 (11) 500 555-0163', '2013-01-09', '0-1 Miles'], ['25723', '223', 'AW00025723', 'NULL', 'Kate', 'L', 'Nara', '0', '1967-05-13', 'S', 'NULL', 'F', 'kate13@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '11, rue Descartes', 'NULL', '1 (11) 500 555-0159', '2013-01-06', '0-1 Miles'], ['25724', '115', 'AW00025724', 'NULL', 'Tabitha', 'A', 'Fernandez', '0', '1967-02-23', 'M', 'NULL', 'F', 'tabitha13@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Postfach 55 00 00', 'Einkaufsabteilung', '1 (11) 500 555-0164', '2013-04-07', '0-1 Miles'], ['25725', '178', 'AW00025725', 'NULL', 'Chad', 'S', 'Lal', '0', '1972-02-01', 'M', 'NULL', 'M', 'chad10@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Hans-Rosenthal-Platz 4117', 'NULL', '1 (11) 500 555-0147', '2013-04-05', '0-1 Miles'], ['25726', '243', 'AW00025726', 'NULL', 'Brendan', 'NULL', 'Deng', '0', '1967-05-05', 'S', 'NULL', 'M', 'brendan1@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4361 Loftus Road', 'NULL', '1 (11) 500 555-0184', '2013-03-05', '0-1 Miles'], ['25727', '243', 'AW00025727', 'NULL', 'Cheryl', 'T', 'Torres', '0', '1967-05-21', 'M', 'NULL', 'F', 'cheryl14@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '843 Raven Court', 'NULL', '1 (11) 500 555-0115', '2013-03-20', '0-1 Miles'], ['25728', '249', 'AW00025728', 'NULL', 'Nelson', 'NULL', 'Romero', '0', '1966-09-05', 'M', 'NULL', 'M', 'nelson8@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '4909 Poco Lane', 'NULL', '1 (11) 500 555-0115', '2013-03-08', '0-1 Miles'], ['25729', '127', 'AW00025729', 'NULL', 'Tabitha', 'M', 'Kapoor', '0', '1965-07-11', 'M', 'NULL', 'F', 'tabitha1@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Parkstr 4851', 'NULL', '1 (11) 500 555-0112', '2013-05-20', '1-2 Miles'], ['25730', '131', 'AW00025730', 'NULL', 'Isabelle', 'NULL', 'Simmons', '0', '1965-07-12', 'S', 'NULL', 'F', 'isabelle14@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Werftstr 54', 'NULL', '1 (11) 500 555-0175', '2013-05-05', '1-2 Miles'], ['25731', '253', 'AW00025731', 'NULL', 'Colleen', 'A', 'Tang', '0', '1965-10-31', 'S', 'NULL', 'F', 'colleen28@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '3350 Northridge Road', 'NULL', '1 (11) 500 555-0165', '2013-03-25', '1-2 Miles'], ['25732', '253', 'AW00025732', 'NULL', 'Joanna', 'L', 'Sanz', '0', '1971-09-07', 'M', 'NULL', 'F', 'joanna19@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '3197 Thornhill Place', 'NULL', '1 (11) 500 555-0171', '2013-03-07', '0-1 Miles'], ['25733', '210', 'AW00025733', 'NULL', 'Joanna', 'B', 'Blanco', '0', '1976-05-13', 'S', 'NULL', 'F', 'joanna14@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '2, rue de la Centenaire', 'NULL', '1 (11) 500 555-0183', '2013-07-31', '2-5 Miles'], ['25734', '141', 'AW00025734', 'NULL', 'Alvin', 'V', 'Zheng', '0', '1975-03-09', 'S', 'NULL', 'M', 'alvin18@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Galeriestr 6813', 'NULL', '1 (11) 500 555-0115', '2013-06-23', '0-1 Miles'], ['25735', '154', 'AW00025735', 'NULL', 'Suzanne', 'NULL', 'Wu', '0', '1966-04-03', 'S', 'NULL', 'F', 'suzanne8@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Auf den Kuhlen Straße 3619', 'NULL', '1 (11) 500 555-0169', '2013-06-02', '0-1 Miles'], ['25736', '177', 'AW00025736', 'NULL', 'Darrell', 'J', 'Stone', '0', '1976-09-01', 'M', 'NULL', 'M', 'darrell11@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Holzstr 6444', 'NULL', '1 (11) 500 555-0110', '2013-06-04', '0-1 Miles'], ['25737', '130', 'AW00025737', 'NULL', 'Marshall', 'NULL', 'Liu', '0', '1982-03-13', 'M', 'NULL', 'M', 'marshall3@adventure-works.com', '40000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Am Gallberg 404', 'NULL', '1 (11) 500 555-0110', '2013-09-10', '0-1 Miles'], ['25738', '149', 'AW00025738', 'NULL', 'Jacquelyn', 'L', 'Ruiz', '0', '1965-01-12', 'M', 'NULL', 'F', 'jacquelyn2@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Am Gallberg 48', 'NULL', '1 (11) 500 555-0141', '2013-06-24', '0-1 Miles'], ['25739', '249', 'AW00025739', 'NULL', 'Cory', 'NULL', 'Rodriguez', '0', '1963-12-18', 'S', 'NULL', 'M', 'cory16@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '5004 Santa Rita Dr', 'NULL', '1 (11) 500 555-0132', '2013-03-19', '0-1 Miles'], ['25740', '208', 'AW00025740', 'NULL', 'Kellie', 'NULL', 'Munoz', '0', '1975-09-19', 'M', 'NULL', 'F', 'kellie6@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '3433, avenue Foch', 'NULL', '1 (11) 500 555-0178', '2013-06-15', '0-1 Miles'], ['25741', '277', 'AW00025741', 'NULL', 'Tabitha', 'NULL', 'Sai', '0', '1975-10-24', 'M', 'NULL', 'F', 'tabitha4@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9903 Mt. Washington Way', 'NULL', '1 (11) 500 555-0114', '2013-03-04', '0-1 Miles'], ['25742', '158', 'AW00025742', 'NULL', 'Tamara', 'NULL', 'He', '0', '1974-08-11', 'S', 'NULL', 'F', 'tamara8@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Zollhof 4822', 'NULL', '1 (11) 500 555-0135', '2013-07-29', '0-1 Miles'], ['25743', '211', 'AW00025743', 'NULL', 'Alvin', 'K', 'Liu', '0', '1981-10-08', 'M', 'NULL', 'M', 'alvin5@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '4775 Imperial Dr.', 'NULL', '1 (11) 500 555-0111', '2013-02-12', '0-1 Miles'], ['25744', '171', 'AW00025744', 'NULL', 'Gabriel', 'NULL', 'Griffin', '0', '1975-11-17', 'M', 'NULL', 'M', 'gabriel18@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Im Himmelsweg 27', 'NULL', '1 (11) 500 555-0177', '2013-07-27', '0-1 Miles'], ['25745', '132', 'AW00025745', 'NULL', 'Mayra', 'NULL', 'Arun', '0', '1974-12-08', 'S', 'NULL', 'F', 'mayra6@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Kampstr 590', 'NULL', '1 (11) 500 555-0179', '2013-07-28', '2-5 Miles'], ['25746', '240', 'AW00025746', 'NULL', 'Lindsay', 'E', 'Simpson', '0', '1980-04-22', 'S', 'NULL', 'F', 'lindsay2@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '4817 Gibrix Drive', 'NULL', '1 (11) 500 555-0141', '2013-03-25', '2-5 Miles'], ['25747', '246', 'AW00025747', 'NULL', 'Marshall', 'K', 'Xu', '0', '1975-01-18', 'S', 'NULL', 'M', 'marshall11@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '2760 Vista Way', 'NULL', '1 (11) 500 555-0157', '2013-03-14', '2-5 Miles'], ['25748', '243', 'AW00025748', 'NULL', 'Kayla', 'J', 'Butler', '0', '1975-02-08', 'S', 'NULL', 'F', 'kayla38@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '328 Birchbark Pl.', 'NULL', '1 (11) 500 555-0112', '2013-03-12', '0-1 Miles'], ['25749', '185', 'AW00025749', 'NULL', 'Ashlee', 'R', 'Moyer', '0', '1986-01-30', 'M', 'NULL', 'F', 'ashlee2@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '1510, rue des Berges', 'NULL', '1 (11) 500 555-0153', '2013-01-31', '0-1 Miles'], ['25750', '272', 'AW00025750', 'NULL', 'Francis', 'J', 'Blanco', '0', '1974-08-30', 'S', 'NULL', 'M', 'francis13@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6969 Lancaster', 'NULL', '1 (11) 500 555-0130', '2013-05-25', '0-1 Miles'], ['25751', '146', 'AW00025751', 'NULL', 'Gina', 'NULL', 'Alvarez', '0', '1980-01-31', 'M', 'NULL', 'F', 'gina5@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Parise Straße 2552', 'NULL', '1 (11) 500 555-0119', '2013-10-10', '0-1 Miles'], ['25752', '215', 'AW00025752', 'NULL', 'Christy', 'M', 'McDonald', '0', '1958-04-24', 'S', 'NULL', 'F', 'christy7@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '3, avenue des Champs-Elysées', 'NULL', '1 (11) 500 555-0176', '2013-02-04', '0-1 Miles'], ['25753', '276', 'AW00025753', 'NULL', 'Nichole', 'P', 'Lal', '0', '1957-02-10', 'S', 'NULL', 'F', 'nichole8@adventure-works.com', '10000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '6196 Nottingham Place', 'NULL', '1 (11) 500 555-0193', '2013-11-10', '0-1 Miles'], ['25754', '151', 'AW00025754', 'NULL', 'Calvin', 'A', 'Sharma', '0', '1962-11-17', 'S', 'NULL', 'M', 'calvin9@adventure-works.com', '10000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Lieblingsweg 500', 'NULL', '1 (11) 500 555-0130', '2013-09-07', '0-1 Miles'], ['25755', '256', 'AW00025755', 'NULL', 'Jeffery', 'NULL', 'Huang', '0', '1979-04-21', 'M', 'NULL', 'M', 'jeffery6@adventure-works.com', '10000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '6647 McDandy St.', 'NULL', '1 (11) 500 555-0122', '2013-08-29', '0-1 Miles'], ['25756', '140', 'AW00025756', 'NULL', 'Cassandra', 'L', 'Malhotra', '0', '1979-08-09', 'M', 'NULL', 'F', 'cassandra5@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Waldstr 193', 'NULL', '1 (11) 500 555-0113', '2013-07-21', '2-5 Miles'], ['25757', '249', 'AW00025757', 'NULL', 'Jeffery', 'D', 'Wu', '0', '1974-01-08', 'S', 'NULL', 'M', 'jeffery7@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '3355 Carpetta Circle', 'NULL', '1 (11) 500 555-0164', '2013-04-06', '0-1 Miles'], ['25758', '147', 'AW00025758', 'NULL', 'Leslie', 'NULL', 'Gutierrez', '0', '1984-10-01', 'M', 'NULL', 'F', 'leslie12@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Klara Straße 84', 'NULL', '1 (11) 500 555-0138', '2013-07-11', '1-2 Miles'], ['25759', '208', 'AW00025759', 'NULL', 'Savannah', 'P', 'Kelly', '0', '1979-02-09', 'S', 'NULL', 'F', 'savannah1@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '370, rue des Rosiers', 'NULL', '1 (11) 500 555-0186', '2013-02-22', '2-5 Miles'], ['25760', '265', 'AW00025760', 'NULL', 'Natalie', 'A', 'Alexander', '0', '1974-06-04', 'M', 'NULL', 'F', 'natalie41@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6928 N. 8th Street', 'NULL', '1 (11) 500 555-0183', '2013-04-03', '1-2 Miles'], ['25761', '238', 'AW00025761', 'Mr.', 'Shish', 'NULL', 'Shridhar', '0', '1973-12-11', 'S', 'NULL', 'F', 'shish0@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '886 Panoramic Drive', 'NULL', '715-555-0100', '2013-04-02', '1-2 Miles'], ['25762', '153', 'AW00025762', 'NULL', 'Stefanie', 'NULL', 'Fernandez', '0', '1973-08-11', 'M', 'NULL', 'F', 'stefanie13@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Kapellstr 4967', 'NULL', '1 (11) 500 555-0130', '2013-09-04', '1-2 Miles'], ['25763', '611', 'AW00025763', 'NULL', 'Hannah', 'NULL', 'Johnson', '0', '1974-05-03', 'M', 'NULL', 'F', 'hannah2@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '2672 Black Walnut', 'NULL', '283-555-0135', '2014-01-19', '1-2 Miles'], ['25764', '611', 'AW00025764', 'NULL', 'Alexandria', 'NULL', 'Price', '0', '1973-09-14', 'S', 'NULL', 'F', 'alexandria0@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '3061 6010th Avenue', 'NULL', '528-555-0160', '2013-06-14', '1-2 Miles'], ['25765', '543', 'AW00025765', 'NULL', 'Natalie', 'NULL', 'Watson', '0', '1974-05-16', 'S', 'NULL', 'F', 'natalie21@adventure-works.com', '100000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '1318 Nottingham Pl.', 'NULL', '458-555-0116', '2013-06-07', '0-1 Miles'], ['25766', '637', 'AW00025766', 'NULL', 'Allison', 'NULL', 'Kelly', '0', '1973-09-06', 'M', 'NULL', 'F', 'allison1@adventure-works.com', '100000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '4481 Ranch Road', 'NULL', '443-555-0131', '2013-11-19', '1-2 Miles'], ['25767', '642', 'AW00025767', 'NULL', 'Bailey', 'L', 'Hill', '0', '1979-10-19', 'S', 'NULL', 'F', 'bailey32@adventure-works.com', '100000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '1940 C Mt. Hood Circle', 'NULL', '991-555-0186', '2013-06-18', '0-1 Miles'], ['25768', '153', 'AW00025768', 'NULL', 'Tyrone', 'B', 'Ruiz', '0', '1967-12-30', 'M', 'NULL', 'M', 'tyrone1@adventure-works.com', '120000.00', '2', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Conesweg 780', 'NULL', '1 (11) 500 555-0164', '2013-04-18', '5-10 Miles'], ['25769', '118', 'AW00025769', 'NULL', 'Gerald', 'A', 'Rubio', '0', '1962-12-25', 'S', 'NULL', 'M', 'gerald28@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Essener Straße 8100', 'NULL', '1 (11) 500 555-0167', '2013-01-22', '5-10 Miles'], ['25770', '191', 'AW00025770', 'NULL', 'Reginald', 'D', 'Blanco', '0', '1967-09-20', 'M', 'NULL', 'M', 'reginald1@adventure-works.com', '90000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8131 Mission Drive', 'NULL', '1 (11) 500 555-0138', '2013-12-24', '2-5 Miles'], ['25771', '147', 'AW00025771', 'NULL', 'Gabriella', 'NULL', 'Rivera', '0', '1961-10-06', 'S', 'NULL', 'F', 'gabriella15@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '4', 'Bundesallee 4442', 'NULL', '1 (11) 500 555-0153', '2013-10-13', '5-10 Miles'], ['25772', '159', 'AW00025772', 'NULL', 'Harold', 'S', 'Kapoor', '0', '1962-05-05', 'S', 'NULL', 'M', 'harold19@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Bundesallee 7576', 'NULL', '1 (11) 500 555-0196', '2013-08-05', '5-10 Miles'], ['25773', '160', 'AW00025773', 'NULL', 'Jack', 'K', 'Simmons', '0', '1967-05-21', 'S', 'NULL', 'M', 'jack15@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '4', 'Bundesallee 7432', 'NULL', '1 (11) 500 555-0142', '2013-08-22', '5-10 Miles'], ['25774', '248', 'AW00025774', 'NULL', 'Corey', 'NULL', 'Pal', '0', '1972-08-29', 'M', 'NULL', 'M', 'corey10@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '4393 Chianti Pl.', 'NULL', '1 (11) 500 555-0170', '2013-09-04', '0-1 Miles'], ['25775', '255', 'AW00025775', 'NULL', 'Marie', 'A', 'Chandra', '0', '1961-11-19', 'M', 'NULL', 'F', 'marie6@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '9297 Kenston Dr.', 'NULL', '1 (11) 500 555-0139', '2013-09-24', '0-1 Miles'], ['25776', '269', 'AW00025776', 'NULL', 'Damien', 'NULL', 'Zhou', '0', '1972-11-10', 'M', 'NULL', 'M', 'damien6@adventure-works.com', '160000.00', '2', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '7765 N. Canyon Rd.', 'NULL', '1 (11) 500 555-0133', '2013-10-17', '0-1 Miles'], ['25777', '187', 'AW00025777', 'NULL', 'Stephanie', 'J', 'Butler', '0', '1971-09-03', 'M', 'NULL', 'F', 'stephanie41@adventure-works.com', '90000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '22, rue Philibert-Delorme', 'NULL', '1 (11) 500 555-0188', '2013-12-05', '2-5 Miles'], ['25778', '237', 'AW00025778', 'NULL', 'Larry', 'S', 'Gomez', '0', '1971-09-30', 'M', 'NULL', 'M', 'larry2@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '325 Woodbury Place', 'NULL', '1 (11) 500 555-0147', '2013-10-28', '0-1 Miles'], ['25779', '174', 'AW00025779', 'NULL', 'Marshall', 'K', 'Cai', '0', '1955-05-13', 'M', 'NULL', 'M', 'marshall19@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Heidestieg Straße 2664', 'NULL', '1 (11) 500 555-0197', '2013-01-03', '2-5 Miles'], ['25780', '158', 'AW00025780', 'NULL', 'Dana', 'M', 'Gill', '0', '1949-12-03', 'S', 'NULL', 'F', 'dana6@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Roßstr 9928', 'NULL', '1 (11) 500 555-0147', '2013-01-22', '2-5 Miles'], ['25781', '256', 'AW00025781', 'NULL', 'Alejandro', 'NULL', 'Xie', '0', '1949-08-18', 'S', 'NULL', 'M', 'alejandro29@adventure-works.com', '160000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '1374 Boatwright Dr.', 'NULL', '1 (11) 500 555-0137', '2013-07-26', '5-10 Miles'], ['25782', '249', 'AW00025782', 'NULL', 'Marshall', 'NULL', 'Gao', '0', '1957-06-30', 'M', 'NULL', 'M', 'marshall14@adventure-works.com', '130000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '6769 Seabourne Ct.', 'NULL', '1 (11) 500 555-0174', '2013-05-28', '5-10 Miles'], ['25783', '251', 'AW00025783', 'NULL', 'Omar', 'D', 'Sun', '0', '1952-03-14', 'S', 'NULL', 'M', 'omar12@adventure-works.com', '130000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '4645 Rossmor Parkway', 'NULL', '1 (11) 500 555-0114', '2013-02-27', '5-10 Miles'], ['25784', '266', 'AW00025784', 'NULL', 'Damien', 'S', 'Raje', '0', '1952-06-01', 'S', 'NULL', 'M', 'damien30@adventure-works.com', '160000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '4193 E. 28th Street', 'NULL', '1 (11) 500 555-0166', '2013-09-04', '0-1 Miles'], ['25785', '236', 'AW00025785', 'NULL', 'Jackson', 'NULL', 'Edwards', '0', '1971-02-08', 'S', 'NULL', 'M', 'jackson31@adventure-works.com', '90000.00', '3', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '5790 Amigo Ln.', 'NULL', '1 (11) 500 555-0135', '2014-01-12', '10+ Miles'], ['25786', '226', 'AW00025786', 'NULL', 'Cheryl', 'A', 'Romero', '0', '1958-12-29', 'M', 'NULL', 'F', 'cheryl11@adventure-works.com', '90000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '3366, rue de Longchamp', 'NULL', '1 (11) 500 555-0159', '2013-12-17', '10+ Miles'], ['25787', '190', 'AW00025787', 'NULL', 'Lee', 'NULL', 'Serrano', '0', '1970-09-21', 'M', 'NULL', 'M', 'lee15@adventure-works.com', '100000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', "55, rue de l'Espace De Schengen", 'NULL', '1 (11) 500 555-0150', '2013-07-08', '10+ Miles'], ['25788', '146', 'AW00025788', 'NULL', 'Nichole', 'NULL', 'Yuan', '0', '1965-10-04', 'S', 'NULL', 'F', 'nichole6@adventure-works.com', '110000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', 'Hellweg 4924', 'NULL', '1 (11) 500 555-0119', '2013-02-17', '5-10 Miles'], ['25789', '221', 'AW00025789', 'NULL', 'Julia', 'NULL', 'Mitchell', '0', '1959-02-09', 'S', 'NULL', 'F', 'julia9@adventure-works.com', '90000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2, route de Marseille', 'NULL', '1 (11) 500 555-0192', '2013-12-10', '10+ Miles'], ['25790', '184', 'AW00025790', 'NULL', 'Cameron', 'M', 'Patterson', '0', '1959-03-10', 'M', 'NULL', 'M', 'cameron5@adventure-works.com', '100000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '3716, avenue Reille', 'NULL', '1 (11) 500 555-0198', '2014-01-05', '2-5 Miles'], ['25791', '224', 'AW00025791', 'NULL', 'Seth', 'L', 'Foster', '0', '1964-05-23', 'S', 'NULL', 'M', 'seth64@adventure-works.com', '100000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '268, avenue de l´Europe', 'NULL', '1 (11) 500 555-0159', '2013-11-27', '2-5 Miles'], ['25792', '127', 'AW00025792', 'NULL', 'Alyssa', 'S', 'Gonzales', '0', '1958-10-05', 'S', 'NULL', 'F', 'alyssa62@adventure-works.com', '110000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', 'Zollhof 1', 'NULL', '1 (11) 500 555-0182', '2013-12-09', '10+ Miles'], ['25793', '157', 'AW00025793', 'NULL', 'Ann', 'C', 'Rana', '0', '1964-08-13', 'M', 'NULL', 'F', 'ann16@adventure-works.com', '110000.00', '2', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', 'Heidestieg Straße 8224', 'NULL', '1 (11) 500 555-0154', '2012-12-31', '10+ Miles'], ['25794', '129', 'AW00025794', 'NULL', 'Kristin', 'A', 'Tang', '0', '1963-10-21', 'S', 'NULL', 'F', 'kristin6@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Curieweg 991', 'NULL', '1 (11) 500 555-0176', '2013-11-03', '10+ Miles'], ['25795', '171', 'AW00025795', 'NULL', 'Marie', 'M', 'Gomez', '0', '1958-01-10', 'S', 'NULL', 'F', 'marie25@adventure-works.com', '110000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Welt Platz 4', 'NULL', '1 (11) 500 555-0184', '2013-01-08', '10+ Miles'], ['25796', '252', 'AW00025796', 'NULL', 'Kelvin', 'NULL', 'Jai', '0', '1963-03-09', 'M', 'NULL', 'M', 'kelvin8@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '9009 W 46th St', 'NULL', '1 (11) 500 555-0139', '2013-10-06', '0-1 Miles'], ['25797', '189', 'AW00025797', 'NULL', 'Max', 'L', 'Torres', '0', '1957-05-07', 'M', 'NULL', 'M', 'max12@adventure-works.com', '80000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5, rue des Vendangeurs', 'NULL', '1 (11) 500 555-0117', '2013-10-10', '10+ Miles'], ['25798', '234', 'AW00025798', 'NULL', 'Christian', 'NULL', 'Coleman', '0', '1956-09-20', 'S', 'NULL', 'M', 'christian20@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '9179 Dos Rios Drive', 'NULL', '1 (11) 500 555-0157', '2013-10-12', '0-1 Miles'], ['25799', '262', 'AW00025799', 'NULL', 'Arianna', 'A', 'James', '0', '1956-09-14', 'S', 'NULL', 'F', 'arianna29@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '4021 Raymond Dr', 'NULL', '1 (11) 500 555-0176', '2013-01-30', '10+ Miles'], ['25800', '234', 'AW00025800', 'NULL', 'Sheena', 'NULL', 'Nath', '0', '1955-11-16', 'S', 'NULL', 'F', 'sheena17@adventure-works.com', '110000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '3', '6872 Jimno Ave.', 'NULL', '1 (11) 500 555-0117', '2013-05-13', '10+ Miles'], ['25801', '263', 'AW00025801', 'NULL', 'Colin', 'A', 'Raji', '0', '1955-10-30', 'M', 'NULL', 'M', 'colin44@adventure-works.com', '150000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '4', '5118 Colorado Dr', 'NULL', '1 (11) 500 555-0120', '2013-01-31', '10+ Miles'], ['25802', '120', 'AW00025802', 'NULL', 'Clayton', 'NULL', 'He', '0', '1960-11-10', 'S', 'NULL', 'M', 'clayton17@adventure-works.com', '120000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '3', 'Karl Liebknecht str 299', 'NULL', '1 (11) 500 555-0117', '2014-01-26', '10+ Miles'], ['25803', '133', 'AW00025803', 'NULL', 'Gregory', 'NULL', 'Xu', '0', '1954-11-06', 'M', 'NULL', 'M', 'gregory9@adventure-works.com', '120000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', 'Am Grossen Dern 82', 'NULL', '1 (11) 500 555-0160', '2013-02-11', '10+ Miles'], ['25804', '239', 'AW00025804', 'NULL', 'Nelson', 'F', 'Torres', '0', '1960-04-04', 'M', 'NULL', 'M', 'nelson10@adventure-works.com', '150000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '4', '6927 Ricardo Drive', 'NULL', '1 (11) 500 555-0146', '2013-03-05', '0-1 Miles'], ['25805', '265', 'AW00025805', 'NULL', 'Melody', 'NULL', 'Gomez', '0', '1954-10-29', 'M', 'NULL', 'F', 'melody1@adventure-works.com', '170000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '4', '4208 Seal Way', 'NULL', '1 (11) 500 555-0112', '2013-11-25', '10+ Miles'], ['25806', '220', 'AW00025806', 'NULL', 'Dwayne', 'L', 'Dominguez', '0', '1959-05-03', 'S', 'NULL', 'M', 'dwayne12@adventure-works.com', '70000.00', '5', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6614, rue Surcouf', 'NULL', '1 (11) 500 555-0142', '2013-08-31', '10+ Miles'], ['25807', '199', 'AW00025807', 'NULL', 'Kaitlin', 'J', 'Lopez', '0', '1953-05-09', 'M', 'NULL', 'F', 'kaitlin15@adventure-works.com', '90000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5, route de Marseille', 'NULL', '1 (11) 500 555-0165', '2013-12-29', '10+ Miles'], ['25808', '202', 'AW00025808', 'NULL', 'Janet', 'A', 'Carlson', '0', '1952-10-29', 'S', 'NULL', 'F', 'janet24@adventure-works.com', '90000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6963, rue Lauriston', 'NULL', '1 (11) 500 555-0115', '2013-09-19', '10+ Miles'], ['25809', '13', 'AW00025809', 'NULL', 'Nicholas', 'A', 'Williams', '0', '1981-05-25', 'M', 'NULL', 'M', 'nicholas4@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '4949 Dutch Slough Rd', 'NULL', '1 (11) 500 555-0191', '2013-08-27', '10+ Miles'], ['25810', '35', 'AW00025810', 'NULL', 'Jimmy', 'NULL', 'Sanz', '0', '1986-03-10', 'S', 'NULL', 'M', 'jimmy24@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '8060 Roslyn Drive', 'NULL', '1 (11) 500 555-0163', '2013-06-12', '10+ Miles'], ['25811', '23', 'AW00025811', 'NULL', 'Miguel', 'NULL', 'Wright', '0', '1982-01-23', 'S', 'NULL', 'M', 'miguel28@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '3070 Sahara Drive', 'NULL', '1 (11) 500 555-0159', '2013-01-29', '5-10 Miles'], ['25812', '29', 'AW00025812', 'NULL', 'Donna', 'NULL', 'Lal', '0', '1981-09-12', 'S', 'NULL', 'F', 'donna8@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '134 Peachwillow Street', 'NULL', '1 (11) 500 555-0110', '2013-11-30', '10+ Miles'], ['25813', '13', 'AW00025813', 'NULL', 'Isaac', 'NULL', 'Hernandez', '0', '1981-06-07', 'S', 'NULL', 'M', 'isaac42@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '5696 McFaul Drive', 'NULL', '1 (11) 500 555-0119', '2013-03-25', '10+ Miles'], ['25814', '29', 'AW00025814', 'NULL', 'Krystal', 'A', 'Zeng', '0', '1981-04-11', 'S', 'NULL', 'F', 'krystal22@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '15 Aspen Drive', 'NULL', '1 (11) 500 555-0127', '2013-09-01', '10+ Miles'], ['25815', '3', 'AW00025815', 'NULL', 'Jacquelyn', 'NULL', 'Romero', '0', '1986-03-21', 'M', 'NULL', 'F', 'jacquelyn9@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '3397 Farm Bureau Road', 'NULL', '1 (11) 500 555-0171', '2013-02-14', '10+ Miles'], ['25816', '15', 'AW00025816', 'NULL', 'Teresa', 'E', 'Navarro', '0', '1981-02-06', 'M', 'NULL', 'F', 'teresa10@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '9720 Dalis Dr.', 'NULL', '1 (11) 500 555-0116', '2013-07-30', '10+ Miles'], ['25817', '18', 'AW00025817', 'NULL', 'Isaac', 'A', 'Phillips', '0', '1979-05-05', 'M', 'NULL', 'M', 'isaac28@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '5065 Maywood Lane', 'NULL', '1 (11) 500 555-0114', '2014-01-26', '10+ Miles'], ['25818', '20', 'AW00025818', 'NULL', 'Aaron', 'NULL', 'Hill', '0', '1980-05-07', 'S', 'NULL', 'M', 'aaron46@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '6271 Clyde Street', 'NULL', '1 (11) 500 555-0183', '2013-04-23', '10+ Miles'], ['25819', '27', 'AW00025819', 'NULL', 'Carlos', 'NULL', 'Morgan', '0', '1979-02-15', 'M', 'NULL', 'M', 'carlos15@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '3080 Soto St.', 'NULL', '1 (11) 500 555-0135', '2011-08-20', '10+ Miles'], ['25820', '36', 'AW00025820', 'NULL', 'Adam', 'H', 'Evans', '0', '1984-11-21', 'M', 'NULL', 'M', 'adam30@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '5796 Lightwood Dr.', 'NULL', '1 (11) 500 555-0125', '2013-02-11', '10+ Miles'], ['25821', '39', 'AW00025821', 'NULL', 'Krystal', 'NULL', 'Gao', '0', '1979-01-13', 'S', 'NULL', 'F', 'krystal15@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', '4413 Harvard Drive', 'NULL', '1 (11) 500 555-0196', '2011-08-25', '10+ Miles'], ['25822', '16', 'AW00025822', 'NULL', 'Julio', 'M', 'Navarro', '0', '1984-01-21', 'M', 'NULL', 'M', 'julio10@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', '5551 Silverado Dr.', 'NULL', '1 (11) 500 555-0120', '2011-08-19', '10+ Miles'], ['25823', '37', 'AW00025823', 'NULL', 'Jaime', 'NULL', 'Xie', '0', '1979-01-23', 'S', 'NULL', 'M', 'jaime27@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', '6790 Edward Avenue', 'NULL', '1 (11) 500 555-0139', '2011-08-14', '10+ Miles'], ['25824', '3', 'AW00025824', 'NULL', 'Terry', 'H', 'Pal', '0', '1983-06-22', 'M', 'NULL', 'M', 'terry15@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '6034 Sunset Circle', 'NULL', '1 (11) 500 555-0112', '2013-10-02', '10+ Miles'], ['25825', '16', 'AW00025825', 'NULL', 'Tammy', 'A', 'Fernandez', '0', '1977-12-05', 'M', 'NULL', 'F', 'tammy16@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '1899 Rosey View Drive', 'NULL', '1 (11) 500 555-0135', '2013-07-27', '10+ Miles'], ['25826', '36', 'AW00025826', 'NULL', 'Nathaniel', 'H', 'Watson', '0', '1977-10-08', 'M', 'NULL', 'M', 'nathaniel1@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '3', '8037 Hillridge Way', 'NULL', '1 (11) 500 555-0168', '2011-09-09', '10+ Miles'], ['25827', '13', 'AW00025827', 'NULL', 'Karla', 'C', 'Nara', '0', '1976-08-29', 'S', 'NULL', 'F', 'karla18@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '9061 Isabel', 'NULL', '1 (11) 500 555-0144', '2011-09-10', '10+ Miles'], ['25828', '15', 'AW00025828', 'NULL', 'Ronald', 'NULL', 'Madan', '0', '1981-08-30', 'M', 'NULL', 'M', 'ronald9@adventure-works.com', '100000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '9677 Elkwood Dr', 'NULL', '1 (11) 500 555-0180', '2011-08-29', '10+ Miles'], ['25829', '12', 'AW00025829', 'NULL', 'Toni', 'E', 'Patel', '0', '1981-03-12', 'M', 'NULL', 'F', 'toni2@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '6488 Dublin Blvd.', 'NULL', '1 (11) 500 555-0170', '2011-09-12', '10+ Miles'], ['25830', '4', 'AW00025830', 'NULL', 'Louis', 'C', 'Nath', '0', '1975-08-29', 'M', 'NULL', 'M', 'louis34@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '6697 Roslyn Drive', 'NULL', '1 (11) 500 555-0189', '2011-09-01', '10+ Miles'], ['25831', '23', 'AW00025831', 'NULL', 'Sebastian', 'V', 'Torres', '0', '1976-12-22', 'M', 'NULL', 'M', 'sebastian5@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '8548 Dewing Ave.', 'NULL', '1 (11) 500 555-0145', '2011-08-30', '10+ Miles'], ['25832', '7', 'AW00025832', 'NULL', 'Shawn', 'NULL', 'Tang', '0', '1976-09-30', 'S', 'NULL', 'M', 'shawn6@adventure-works.com', '110000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '4', '5748 Hacienda Dr.', 'NULL', '1 (11) 500 555-0128', '2011-09-29', '10+ Miles'], ['25833', '536', 'AW00025833', 'NULL', 'Sabrina', 'P', 'Hernandez', '0', '1960-02-05', 'M', 'NULL', 'F', 'sabrina1@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1156 Corte Poquito', 'NULL', '132-555-0142', '2013-09-26', '5-10 Miles'], ['25834', '335', 'AW00025834', 'NULL', 'Jeremy', 'NULL', 'Davis', '0', '1954-05-18', 'S', 'NULL', 'M', 'jeremy20@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '5056 Anchor Ave', '#511', '913-555-0119', '2013-09-22', '1-2 Miles'], ['25835', '368', 'AW00025835', 'NULL', 'Destiny', 'L', 'Flores', '0', '1953-06-08', 'M', 'NULL', 'F', 'destiny60@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '5255 Corte Valencia', 'NULL', '919-555-0142', '2013-02-16', '1-2 Miles'], ['25836', '299', 'AW00025836', 'NULL', 'Jaime', 'E', 'Luo', '0', '1943-06-18', 'M', 'NULL', 'M', 'jaime29@adventure-works.com', '50000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6492 Candy Rd', 'NULL', '699-555-0112', '2013-10-09', '10+ Miles'], ['25837', '345', 'AW00025837', 'NULL', 'Timothy', 'H', 'Cook', '0', '1943-04-25', 'M', 'NULL', 'M', 'timothy23@adventure-works.com', '50000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '792 Greendell Rd.', 'NULL', '246-555-0148', '2013-06-07', '10+ Miles'], ['25838', '331', 'AW00025838', 'NULL', 'Makayla', 'NULL', 'Reed', '0', '1949-02-23', 'S', 'NULL', 'F', 'makayla16@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2798 Rankin Way', 'NULL', '833-555-0142', '2013-12-30', '10+ Miles'], ['25839', '307', 'AW00025839', 'NULL', 'Connor', 'M', 'Powell', '0', '1944-03-05', 'M', 'NULL', 'M', 'connor5@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6733 North Star Dr', 'NULL', '323-555-0159', '2013-02-05', '10+ Miles'], ['25840', '298', 'AW00025840', 'NULL', 'Karla', 'A', 'Pal', '0', '1943-07-17', 'M', 'NULL', 'F', 'karla13@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5296 Covington Court', 'NULL', '735-555-0180', '2013-07-14', '10+ Miles'], ['25841', '299', 'AW00025841', 'NULL', 'Lindsey', 'J', 'Becker', '0', '1943-09-24', 'S', 'NULL', 'F', 'lindsey20@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '4535 Sun Hill Lane', 'NULL', '869-555-0154', '2013-08-27', '1-2 Miles'], ['25842', '345', 'AW00025842', 'NULL', 'Cole', 'NULL', 'Brooks', '0', '1944-10-07', 'M', 'NULL', 'M', 'cole2@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4186 Silver Oaks Pl.', 'NULL', '502-555-0162', '2013-05-01', '10+ Miles'], ['25843', '633', 'AW00025843', 'NULL', 'Hunter', 'E', 'Perez', '0', '1944-08-16', 'S', 'NULL', 'M', 'hunter32@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7463 Hackney Lane', 'NULL', '217-555-0168', '2013-06-23', '10+ Miles'], ['25844', '312', 'AW00025844', 'NULL', 'Riley', 'M', 'Butler', '0', '1951-10-16', 'S', 'NULL', 'F', 'riley12@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '3271 Norse Ct', 'NULL', '293-555-0134', '2013-02-08', '1-2 Miles'], ['25845', '54', 'AW00025845', 'NULL', 'Timothy', 'NULL', 'Campbell', '0', '1946-01-10', 'S', 'NULL', 'M', 'timothy32@adventure-works.com', '60000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '9255 Katharyn Drive', 'NULL', '679-555-0161', '2013-12-24', '1-2 Miles'], ['25846', '623', 'AW00025846', 'NULL', 'Faith', 'D', 'Bailey', '0', '1946-02-23', 'M', 'NULL', 'F', 'faith33@adventure-works.com', '60000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9574 Silverado Drive', 'NULL', '391-555-0110', '2013-09-16', '10+ Miles'], ['25847', '616', 'AW00025847', 'NULL', 'Destiny', 'NULL', 'Brown', '0', '1946-06-11', 'M', 'NULL', 'F', 'destiny4@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9043 Monterey Ave.', 'NULL', '175-555-0123', '2013-09-22', '10+ Miles'], ['25848', '329', 'AW00025848', 'NULL', 'Samuel', 'L', 'Robinson', '0', '1946-12-09', 'S', 'NULL', 'M', 'samuel58@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1883 Cowell Rd.', 'NULL', '755-555-0139', '2013-04-08', '10+ Miles'], ['25849', '301', 'AW00025849', 'NULL', 'Danielle', 'J', 'Cooper', '0', '1947-01-23', 'M', 'NULL', 'F', 'danielle20@adventure-works.com', '50000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1161 Daffodil Dr.', 'NULL', '657-555-0165', '2013-02-06', '10+ Miles'], ['25850', '52', 'AW00025850', 'NULL', 'Jared', 'J', 'Sanchez', '0', '1946-09-21', 'M', 'NULL', 'M', 'jared19@adventure-works.com', '50000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2153 Hooftrail Way', 'NULL', '164-555-0112', '2013-05-25', '10+ Miles'], ['25851', '609', 'AW00025851', 'NULL', 'Seth', 'J', 'Washington', '0', '1946-09-11', 'S', 'NULL', 'M', 'seth61@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '9488 St. Francis Dr.', 'NULL', '599-555-0191', '2013-12-04', '1-2 Miles'], ['25852', '626', 'AW00025852', 'NULL', 'Amanda', 'M', 'Bennett', '0', '1953-06-23', 'S', 'NULL', 'F', 'amanda22@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '9828 Hook Court', 'NULL', '419-555-0113', '2013-05-25', '1-2 Miles'], ['25853', '641', 'AW00025853', 'NULL', 'Chloe', 'L', 'Collins', '0', '1949-01-30', 'M', 'NULL', 'F', 'chloe1@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '345 Branding Court', 'NULL', '615-555-0185', '2013-12-25', '10+ Miles'], ['25854', '302', 'AW00025854', 'NULL', 'Jordan', 'NULL', 'Chen', '0', '1949-02-06', 'M', 'NULL', 'M', 'jordan21@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6336 La Orinda Pl', 'NULL', '149-555-0174', '2013-06-02', '10+ Miles'], ['25855', '609', 'AW00025855', 'NULL', 'Dylan', 'NULL', 'Diaz', '0', '1948-10-02', 'S', 'NULL', 'M', 'dylan21@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '4045 Hillview Dr', 'NULL', '551-555-0183', '2013-02-25', '1-2 Miles'], ['25856', '307', 'AW00025856', 'NULL', 'Benjamin', 'H', 'Sharma', '0', '1949-11-14', 'S', 'NULL', 'M', 'benjamin32@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '7939 O St.', 'NULL', '548-555-0132', '2013-12-16', '10+ Miles'], ['25857', '552', 'AW00025857', 'NULL', 'Abigail', 'M', 'Perry', '0', '1950-03-05', 'S', 'NULL', 'F', 'abigail75@adventure-works.com', '30000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '4442 G Street', 'NULL', '487-555-0186', '2011-01-19', '10+ Miles'], ['25858', '545', 'AW00025858', 'NULL', 'Mariah', 'V', 'Gonzales', '0', '1951-05-05', 'S', 'NULL', 'F', 'mariah22@adventure-works.com', '20000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '3', '6998 Courthouse Drive', 'NULL', '787-555-0196', '2014-01-27', '10+ Miles'], ['25859', '542', 'AW00025859', 'NULL', 'Mackenzie', 'M', 'Peterson', '0', '1950-12-02', 'S', 'NULL', 'F', 'mackenzie3@adventure-works.com', '20000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '3', '3752 San Ramon Valley Blvd.', 'NULL', '490-555-0161', '2013-06-14', '10+ Miles'], ['25860', '301', 'AW00025860', 'NULL', 'Justin', 'J', 'Thomas', '0', '1950-11-24', 'S', 'NULL', 'M', 'justin30@adventure-works.com', '20000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '3', '1023 Riveria Way', 'NULL', '518-555-0138', '2013-09-26', '10+ Miles'], ['25861', '385', 'AW00025861', 'NULL', 'Garrett', 'C', 'Cooper', '0', '1950-08-26', 'M', 'NULL', 'M', 'garrett13@adventure-works.com', '30000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '4', '5854 Lombardy Lane', 'NULL', '150-555-0160', '2011-01-06', '10+ Miles'], ['25862', '312', 'AW00025862', 'NULL', 'Jared', 'NULL', 'Bell', '0', '1951-03-02', 'M', 'NULL', 'M', 'jared15@adventure-works.com', '30000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4066 St. Germain Lane', 'NULL', '149-555-0130', '2013-08-25', '1-2 Miles'], ['25863', '543', 'AW00025863', 'NULL', 'Sydney', 'S', 'Wright', '0', '1952-06-01', 'S', 'NULL', 'F', 'sydney61@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '4193 E. 28th Street', 'NULL', '285-555-0113', '2010-12-29', '10+ Miles'], ['25864', '68', 'AW00025864', 'NULL', 'Petr', 'NULL', 'Lazecky', '0', '1951-12-05', 'M', 'NULL', 'F', 'petr0@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '5497 St. Andrews Way', 'NULL', '726-555-0126', '2012-02-09', '10+ Miles'], ['25865', '623', 'AW00025865', 'NULL', 'Tristan', 'NULL', 'Butler', '0', '1951-11-06', 'M', 'NULL', 'M', 'tristan15@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '6654 Shelly Dr.', 'NULL', '981-555-0185', '2011-01-19', '10+ Miles'], ['25866', '552', 'AW00025866', 'NULL', 'Tristan', 'G', 'Perry', '0', '1952-05-09', 'M', 'NULL', 'M', 'tristan8@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '7917 Snowberry Court', 'NULL', '361-555-0153', '2011-01-24', '10+ Miles'], ['25867', '385', 'AW00025867', 'NULL', 'Carlos', 'A', 'Carter', '0', '1952-04-18', 'S', 'NULL', 'M', 'carlos38@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '1019 Buchanan Road', 'NULL', '513-555-0141', '2011-02-27', '10+ Miles'], ['25868', '385', 'AW00025868', 'NULL', 'Jessica', 'W', 'Lewis', '0', '1952-05-03', 'M', 'NULL', 'F', 'jessica69@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '4591 Paso Del Rio Court', 'NULL', '569-555-0148', '2011-02-21', '10+ Miles'], ['25869', '634', 'AW00025869', 'NULL', 'Lucas', 'NULL', 'Parker', '0', '1958-08-06', 'M', 'NULL', 'M', 'lucas9@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '7040 Bush Avenue', 'NULL', '784-555-0110', '2013-08-19', '2-5 Miles'], ['25870', '543', 'AW00025870', 'NULL', 'Edward', 'M', 'Gonzales', '0', '1953-03-31', 'M', 'NULL', 'M', 'edward65@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8474 Haynes Court', 'NULL', '347-555-0116', '2013-06-04', '2-5 Miles'], ['25871', '618', 'AW00025871', 'NULL', 'Jason', 'R', 'Nelson', '0', '1952-12-20', 'S', 'NULL', 'M', 'jason38@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8537 Bayview Circle', 'NULL', '853-555-0127', '2013-09-06', '10+ Miles'], ['25872', '638', 'AW00025872', 'NULL', 'Melanie', 'H', 'Ross', '0', '1964-04-12', 'S', 'NULL', 'F', 'melanie19@adventure-works.com', '70000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '7419 Heights Avenue', 'NULL', '272-555-0191', '2011-02-12', '2-5 Miles'], ['25873', '52', 'AW00025873', 'NULL', 'Isaiah', 'NULL', 'Sanders', '0', '1952-11-10', 'S', 'NULL', 'M', 'isaiah2@adventure-works.com', '70000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '8879 Alray Dr.', 'NULL', '550-555-0179', '2013-11-03', '10+ Miles'], ['25874', '631', 'AW00025874', 'NULL', 'Jessica', 'NULL', 'Hall', '0', '1958-08-11', 'M', 'NULL', 'F', 'jessica72@adventure-works.com', '70000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '786 Rachele Road', 'NULL', '812-555-0126', '2013-11-05', '10+ Miles'], ['25875', '60', 'AW00025875', 'NULL', 'Jocelyn', 'D', 'Price', '0', '1959-06-09', 'M', 'NULL', 'F', 'jocelyn0@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '329 Shell Dr', 'NULL', '203-555-0154', '2012-02-16', '2-5 Miles'], ['25876', '644', 'AW00025876', 'NULL', 'Noah', 'NULL', 'King', '0', '1953-11-30', 'M', 'NULL', 'M', 'noah46@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '4421 Euclid Ave.', 'NULL', '498-555-0178', '2011-02-18', '2-5 Miles'], ['25877', '644', 'AW00025877', 'NULL', 'Alyssa', 'NULL', 'Price', '0', '1954-06-03', 'S', 'NULL', 'F', 'alyssa47@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '1721 Dianda', 'NULL', '553-555-0180', '2014-01-24', '10+ Miles'], ['25878', '338', 'AW00025878', 'NULL', 'Brianna', 'E', 'Simmons', '0', '1953-12-07', 'S', 'NULL', 'F', 'brianna60@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '0', '3029 Heather Leaf Ln.', 'NULL', '706-555-0114', '2011-02-23', '2-5 Miles'], ['25879', '339', 'AW00025879', 'NULL', 'Alyssa', 'S', 'Wood', '0', '1953-12-09', 'S', 'NULL', 'F', 'alyssa48@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '9838 Carob Way', 'NULL', '166-555-0119', '2011-03-17', '10+ Miles'], ['25880', '355', 'AW00025880', 'NULL', 'Jackson', 'NULL', 'Kumar', '0', '1953-11-05', 'M', 'NULL', 'M', 'jackson1@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '5785 Ygnacio Valley Road', 'NULL', '978-555-0158', '2013-09-23', '10+ Miles'], ['25881', '358', 'AW00025881', 'NULL', 'Jennifer', 'NULL', 'Clark', '0', '1959-03-19', 'M', 'NULL', 'F', 'jennifer46@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '4509 N. Michell Canyon Rd.', 'NULL', '112-555-0188', '2014-01-04', '10+ Miles'], ['25882', '359', 'AW00025882', 'NULL', 'Edward', 'S', 'Roberts', '0', '1954-02-20', 'M', 'NULL', 'M', 'edward15@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '130 North Main St.', 'NULL', '597-555-0116', '2013-05-29', '10+ Miles'], ['25883', '71', 'AW00025883', 'NULL', 'Luis', 'E', 'Carter', '0', '1960-01-31', 'M', 'NULL', 'M', 'luis43@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8052 Weston Court', 'NULL', '657-555-0155', '2012-02-14', '2-5 Miles'], ['25884', '55', 'AW00025884', 'NULL', 'Elijah', 'S', 'Evans', '0', '1956-04-17', 'M', 'NULL', 'M', 'elijah29@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3055 Mt. Trinity Ct.', 'NULL', '734-555-0154', '2013-06-10', '10+ Miles'], ['25885', '66', 'AW00025885', 'NULL', 'Hailey', 'S', 'Washington', '0', '1961-10-13', 'M', 'NULL', 'F', 'hailey33@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9276 Blackwood Drive', 'NULL', '380-555-0191', '2013-08-24', '10+ Miles'], ['25886', '627', 'AW00025886', 'NULL', 'Rachel', 'NULL', 'Rogers', '0', '1955-11-14', 'M', 'NULL', 'F', 'rachel30@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3168 Thames Drive', 'NULL', '262-555-0119', '2011-03-21', '2-5 Miles'], ['25887', '633', 'AW00025887', 'NULL', 'Jack', 'J', 'Collins', '0', '1961-05-20', 'M', 'NULL', 'M', 'jack37@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '318 Liana Lane', 'NULL', '945-555-0193', '2011-03-04', '2-5 Miles'], ['25888', '642', 'AW00025888', 'NULL', 'Morgan', 'D', 'Edwards', '0', '1961-04-19', 'M', 'NULL', 'F', 'morgan1@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '525 Sea Point Way', 'NULL', '890-555-0175', '2011-03-09', '2-5 Miles'], ['25889', '301', 'AW00025889', 'NULL', 'Reginald', 'C', 'Munoz', '0', '1955-11-23', 'M', 'NULL', 'M', 'reginald14@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '9622 Precipice Court', 'NULL', '808-555-0181', '2011-03-12', '2-5 Miles'], ['25890', '302', 'AW00025890', 'NULL', 'Chloe', 'D', 'Brown', '0', '1956-03-14', 'M', 'NULL', 'F', 'chloe38@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '2944 Wren Ave', 'NULL', '658-555-0137', '2013-02-15', '10+ Miles'], ['25891', '385', 'AW00025891', 'NULL', 'Brandon', 'J', 'Johnson', '0', '1956-03-20', 'S', 'NULL', 'M', 'brandon38@adventure-works.com', '80000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '1450 A St.', 'NULL', '516-555-0162', '2011-04-30', '1-2 Miles'], ['25892', '60', 'AW00025892', 'NULL', 'Stephanie', 'NULL', 'Price', '0', '1956-09-17', 'M', 'NULL', 'F', 'stephanie28@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3083 Boatwright Dr.', '#6', '192-555-0173', '2012-02-12', '2-5 Miles'], ['25893', '611', 'AW00025893', 'NULL', 'Alexia', 'NULL', 'Alexander', '0', '1956-10-23', 'S', 'NULL', 'F', 'alexia15@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1733 Concord Place', 'NULL', '356-555-0116', '2013-04-26', '10+ Miles'], ['25894', '301', 'AW00025894', 'NULL', 'Steve', 'NULL', 'Zeng', '0', '1956-10-30', 'M', 'NULL', 'M', 'steve25@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '717 Westwood Court', 'NULL', '649-555-0123', '2013-07-26', '10+ Miles'], ['25895', '546', 'AW00025895', 'NULL', 'Jesse', 'M', 'Richardson', '0', '1957-09-02', 'M', 'NULL', 'M', 'jesse9@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '4', '4364 Chelsea', 'NULL', '691-555-0172', '2011-04-04', '2-5 Miles'], ['25896', '539', 'AW00025896', 'NULL', 'Marissa', 'NULL', 'Coleman', '0', '1958-01-31', 'M', 'NULL', 'F', 'marissa4@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6994 Walnut Ave', 'NULL', '994-555-0149', '2013-06-25', '10+ Miles'], ['25897', '359', 'AW00025897', 'NULL', 'Kimberly', 'NULL', 'Bailey', '0', '1958-04-11', 'M', 'NULL', 'F', 'kimberly18@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4499 Alpha Way', 'NULL', '350-555-0149', '2013-10-11', '10+ Miles'], ['25898', '607', 'AW00025898', 'NULL', 'Brittney', 'L', 'Cai', '0', '1958-05-16', 'M', 'NULL', 'F', 'brittney20@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4837 Mohr Lane', 'NULL', '149-555-0119', '2013-07-07', '2-5 Miles'], ['25899', '329', 'AW00025899', 'NULL', 'Caitlin', 'D', 'Rogers', '0', '1958-04-03', 'M', 'NULL', 'F', 'caitlin17@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6211 Piedmont Dr', 'NULL', '628-555-0110', '2013-03-11', '10+ Miles'], ['25900', '631', 'AW00025900', 'NULL', 'Haley', 'NULL', 'Sanders', '0', '1957-10-12', 'M', 'NULL', 'F', 'haley19@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4009 San Ysidro Court', 'NULL', '299-555-0126', '2013-05-18', '10+ Miles'], ['25901', '337', 'AW00025901', 'NULL', 'Lucas', 'E', 'Harris', '0', '1958-05-15', 'M', 'NULL', 'M', 'lucas27@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '404 Sunshine', 'NULL', '921-555-0176', '2011-04-12', '2-5 Miles'], ['25902', '634', 'AW00025902', 'NULL', 'Cameron', 'NULL', 'Li', '0', '1958-01-03', 'M', 'NULL', 'M', 'cameron22@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1176 Oil Road', 'NULL', '717-555-0118', '2013-02-22', '10+ Miles'], ['25903', '609', 'AW00025903', 'NULL', 'Marshall', 'A', 'Rai', '0', '1957-11-20', 'M', 'NULL', 'M', 'marshall38@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1349 Stephine Way', 'NULL', '494-555-0140', '2011-04-10', '2-5 Miles'], ['25904', '618', 'AW00025904', 'NULL', 'Ian', 'NULL', 'Collins', '0', '1959-05-15', 'S', 'NULL', 'M', 'ian39@adventure-works.com', '60000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2755 Fairfield Ave', 'NULL', '172-555-0177', '2013-12-02', '10+ Miles'], ['25905', '339', 'AW00025905', 'NULL', 'Nathan', 'K', 'Hayes', '0', '1964-11-21', 'M', 'NULL', 'M', 'nathan19@adventure-works.com', '60000.00', '3', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '2625 Poncho St', 'NULL', '131-555-0124', '2011-04-05', '2-5 Miles'], ['25906', '29', 'AW00025906', 'NULL', 'Crystal', 'NULL', 'Zhao', '0', '1949-09-30', 'S', 'NULL', 'F', 'crystal11@adventure-works.com', '10000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9896 Walkim Court', 'NULL', '1 (11) 500 555-0161', '2013-11-13', '1-2 Miles'], ['25907', '36', 'AW00025907', 'NULL', 'Kelli', 'NULL', 'Shen', '0', '1950-02-21', 'M', 'NULL', 'F', 'kelli25@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5862 Crivello Ave.', 'NULL', '1 (11) 500 555-0118', '2014-01-14', '1-2 Miles'], ['25908', '337', 'AW00025908', 'NULL', 'Melissa', 'NULL', 'Long', '0', '1984-09-19', 'M', 'NULL', 'F', 'melissa4@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '7855 Waterhigh Street', 'NULL', '520-555-0114', '2014-01-26', '1-2 Miles'], ['25909', '343', 'AW00025909', 'NULL', 'Chase', 'J', 'James', '0', '1984-12-02', 'M', 'NULL', 'M', 'chase0@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5763 Reed Way', 'NULL', '144-555-0188', '2011-05-24', '5-10 Miles'], ['25910', '343', 'AW00025910', 'NULL', 'Natalie', 'R', 'Miller', '0', '1985-03-17', 'M', 'NULL', 'F', 'natalie73@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5927 Diokmo Ct.', 'NULL', '117-555-0198', '2011-05-28', '5-10 Miles'], ['25911', '51', 'AW00025911', 'NULL', 'Alexandra', 'NULL', 'Sanders', '0', '1983-09-30', 'S', 'NULL', 'F', 'alexandra22@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7644 Corte Segunda', 'NULL', '932-555-0172', '2012-03-29', '1-2 Miles'], ['25912', '33', 'AW00025912', 'NULL', 'Walter', 'R', 'Rubio', '0', '1952-12-19', 'M', 'NULL', 'M', 'walter14@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5103 Farm Bureau Rd', 'NULL', '1 (11) 500 555-0177', '2013-06-27', '1-2 Miles'], ['25913', '6', 'AW00025913', 'NULL', 'Beth', 'A', 'Srini', '0', '1958-08-06', 'M', 'NULL', 'M', 'beth25@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9759 La Salle Ave.', 'NULL', '1 (11) 500 555-0191', '2013-11-14', '5-10 Miles'], ['25914', '637', 'AW00025914', 'NULL', 'Seth', 'NULL', 'Hughes', '0', '1983-09-29', 'M', 'NULL', 'M', 'seth59@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5043 Minert Rd.', 'NULL', '703-555-0128', '2013-08-27', '5-10 Miles'], ['25915', '637', 'AW00025915', 'NULL', 'Paige', 'J', 'Bryant', '0', '1983-11-06', 'S', 'NULL', 'F', 'paige17@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6136 North 68th St', 'NULL', '368-555-0178', '2013-10-27', '1-2 Miles'], ['25916', '301', 'AW00025916', 'NULL', 'Naomi', 'NULL', 'Serrano', '0', '1984-01-10', 'M', 'NULL', 'F', 'naomi17@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8018 Pinnacle Drive', 'NULL', '871-555-0191', '2011-05-13', '5-10 Miles'], ['25917', '316', 'AW00025917', 'NULL', 'Kyle', 'NULL', 'Long', '0', '1983-09-22', 'M', 'NULL', 'M', 'kyle4@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1248 Tanager Cir', 'NULL', '580-555-0126', '2011-05-01', '1-2 Miles'], ['25918', '2', 'AW00025918', 'NULL', 'Carly', 'NULL', 'Anand', '0', '1951-08-10', 'S', 'NULL', 'F', 'carly20@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '8411 Mt. Orange Place', 'NULL', '1 (11) 500 555-0176', '2011-10-26', '5-10 Miles'], ['25919', '4', 'AW00025919', 'NULL', 'Dana', 'D', 'Ramos', '0', '1957-10-30', 'M', 'NULL', 'F', 'dana10@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '1906 Adobe Dr.', 'NULL', '1 (11) 500 555-0142', '2011-10-08', '1-2 Miles'], ['25920', '38', 'AW00025920', 'NULL', 'Orlando', 'NULL', 'Gutierrez', '0', '1951-12-15', 'M', 'NULL', 'M', 'orlando10@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '2834 Clifford Court', 'NULL', '1 (11) 500 555-0178', '2011-10-18', '1-2 Miles'], ['25921', '14', 'AW00025921', 'NULL', 'Colin', 'NULL', 'Shan', '0', '1958-09-16', 'S', 'NULL', 'M', 'colin33@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '1524 Reva Dr.', 'NULL', '1 (11) 500 555-0176', '2011-10-21', '5-10 Miles'], ['25922', '18', 'AW00025922', 'NULL', 'Veronica', 'J', 'Malhotra', '0', '1953-03-13', 'S', 'NULL', 'F', 'veronica5@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5957 Hill Drive', 'NULL', '1 (11) 500 555-0136', '2011-11-24', '5-10 Miles'], ['25923', '31', 'AW00025923', 'NULL', 'Mason', 'W', 'Parker', '0', '1959-02-19', 'S', 'NULL', 'M', 'mason20@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2281 West Road', 'NULL', '1 (11) 500 555-0161', '2013-02-02', '5-10 Miles'], ['25924', '355', 'AW00025924', 'NULL', 'Hannah', 'NULL', 'Robinson', '0', '1984-05-19', 'S', 'NULL', 'F', 'hannah16@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '536 Beech Ct.', 'NULL', '609-555-0161', '2011-05-13', '0-1 Miles'], ['25925', '49', 'AW00025925', 'NULL', 'Brianna', 'NULL', 'Cooper', '0', '1983-05-02', 'M', 'NULL', 'F', 'brianna35@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '6482 Colt Ct.', 'NULL', '117-555-0114', '2013-04-29', '1-2 Miles'], ['25926', '10', 'AW00025926', 'NULL', 'Larry', 'NULL', 'Gutierrez', '0', '1959-09-12', 'M', 'NULL', 'M', 'larry13@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3433 Roland Dr.', 'NULL', '1 (11) 500 555-0190', '2011-11-04', '5-10 Miles'], ['25927', '12', 'AW00025927', 'NULL', 'Tiffany', 'NULL', 'Guo', '0', '1954-06-03', 'S', 'NULL', 'F', 'tiffany18@adventure-works.com', '20000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1721 Driving', 'NULL', '1 (11) 500 555-0158', '2011-10-29', '5-10 Miles'], ['25928', '13', 'AW00025928', 'NULL', 'Mario', 'J', 'Sharma', '0', '1953-12-06', 'M', 'NULL', 'M', 'mario7@adventure-works.com', '20000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1039 Adelaide St.', 'NULL', '1 (11) 500 555-0146', '2011-11-03', '5-10 Miles'], ['25929', '626', 'AW00025929', 'NULL', 'Alexandra', 'NULL', 'Gray', '0', '1983-03-25', 'S', 'NULL', 'F', 'alexandra17@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3799 Hilton Way', 'NULL', '530-555-0166', '2013-04-10', '1-2 Miles'], ['25930', '626', 'AW00025930', 'NULL', 'Ethan', 'L', 'Harris', '0', '1983-01-07', 'S', 'NULL', 'M', 'ethan47@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8782 Jamie Way.', 'NULL', '353-555-0161', '2013-06-05', '5-10 Miles'], ['25931', '632', 'AW00025931', 'NULL', 'Ryan', 'M', 'Henderson', '0', '1983-02-07', 'S', 'NULL', 'M', 'ryan7@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4292 Wellington Avenue', 'NULL', '813-555-0141', '2013-07-24', '5-10 Miles'], ['25932', '547', 'AW00025932', 'NULL', 'Marcus', 'NULL', 'Rodriguez', '0', '1983-05-25', 'S', 'NULL', 'M', 'marcus21@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '5863 Sierra', 'NULL', '250-555-0141', '2014-01-21', '1-2 Miles'], ['25933', '322', 'AW00025933', 'NULL', 'Dalton', 'L', 'Stewart', '0', '1982-12-03', 'S', 'NULL', 'M', 'dalton88@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2269 Bynum Way', 'NULL', '972-555-0138', '2013-08-28', '1-2 Miles'], ['25934', '336', 'AW00025934', 'NULL', 'Luke', 'NULL', 'King', '0', '1983-03-23', 'S', 'NULL', 'M', 'luke49@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9546 Cardinal Ct.', 'NULL', '118-555-0120', '2013-12-30', '0-1 Miles'], ['25935', '5', 'AW00025935', 'NULL', 'April', 'A', 'Tang', '0', '1954-09-15', 'M', 'NULL', 'F', 'april4@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2601 D Bel Air Drive', 'NULL', '1 (11) 500 555-0161', '2011-11-10', '1-2 Miles'], ['25936', '30', 'AW00025936', 'NULL', 'Deanna', 'H', 'Schmidt', '0', '1960-10-23', 'S', 'NULL', 'F', 'deanna46@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4535 The Alameda', 'NULL', '1 (11) 500 555-0111', '2011-11-05', '5-10 Miles'], ['25937', '16', 'AW00025937', 'NULL', 'Jon', 'NULL', 'Yuan', '0', '1960-04-18', 'M', 'NULL', 'M', 'jon47@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9270 Lakewood Court', 'NULL', '1 (11) 500 555-0112', '2011-11-07', '1-2 Miles'], ['25938', '20', 'AW00025938', 'NULL', 'Marvin', 'NULL', 'Gutierrez', '0', '1955-04-21', 'S', 'NULL', 'M', 'marvin11@adventure-works.com', '30000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '1538 Mt. Diablo St.', '# 147', '1 (11) 500 555-0118', '2011-11-25', '5-10 Miles'], ['25939', '39', 'AW00025939', 'NULL', 'Willie', 'A', 'Tang', '0', '1961-10-20', 'M', 'NULL', 'M', 'willie23@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '678 Acardia Pl', 'NULL', '1 (11) 500 555-0110', '2011-12-11', '5-10 Miles'], ['25940', '16', 'AW00025940', 'NULL', 'Gerald', 'NULL', 'Arun', '0', '1957-02-10', 'S', 'NULL', 'M', 'gerald36@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5296 Birchwood', 'NULL', '1 (11) 500 555-0112', '2011-12-18', '5-10 Miles'], ['25941', '22', 'AW00025941', 'NULL', 'Molly', 'NULL', 'Perez', '0', '1956-11-13', 'M', 'NULL', 'F', 'molly20@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4023 Glen Court', 'NULL', '1 (11) 500 555-0192', '2011-12-16', '1-2 Miles'], ['25942', '359', 'AW00025942', 'NULL', 'Brianna', 'J', 'Brooks', '0', '1985-07-16', 'S', 'NULL', 'F', 'brianna45@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3162 Asilomaar Dr', 'NULL', '135-555-0160', '2011-05-16', '1-2 Miles'], ['25943', '347', 'AW00025943', 'NULL', 'Brianna', 'NULL', 'McDonald', '0', '1984-08-02', 'S', 'NULL', 'F', 'brianna55@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5765 Mellowood St.', 'NULL', '236-555-0183', '2011-06-12', '0-1 Miles'], ['25944', '34', 'AW00025944', 'NULL', 'Ronald', 'NULL', 'Perez', '0', '1958-04-17', 'S', 'NULL', 'M', 'ronald24@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5421 Almond Avenue', 'NULL', '1 (11) 500 555-0168', '2011-12-10', '5-10 Miles'], ['25945', '18', 'AW00025945', 'NULL', 'Brent', 'J', 'Guo', '0', '1957-08-16', 'M', 'NULL', 'M', 'brent17@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6199 G St.', 'NULL', '1 (11) 500 555-0115', '2011-12-22', '5-10 Miles'], ['25946', '19', 'AW00025946', 'Ms.', 'Britta', 'NULL', 'Simon', '0', '1964-03-19', 'M', 'NULL', 'F', 'britta1@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6441 Co Road', 'NULL', '274-555-0100', '2011-12-26', '5-10 Miles'], ['25947', '34', 'AW00025947', 'NULL', 'Sam', 'NULL', 'Wilson', '0', '1960-04-11', 'S', 'NULL', 'M', 'sam3@adventure-works.com', '40000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1485 La Vista Avenue', 'NULL', '1 (11) 500 555-0150', '2011-12-08', '5-10 Miles'], ['25948', '22', 'AW00025948', 'NULL', 'Christine', 'D', 'Stone', '0', '1965-05-06', 'S', 'NULL', 'F', 'christine1@adventure-works.com', '40000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '901 Newport Drive', 'NULL', '1 (11) 500 555-0126', '2011-12-21', '5-10 Miles'], ['25949', '15', 'AW00025949', 'NULL', 'Summer', 'C', 'Raman', '0', '1959-07-18', 'S', 'NULL', 'F', 'summer10@adventure-works.com', '40000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3986 Spring Hill Road', 'NULL', '1 (11) 500 555-0185', '2011-12-03', '5-10 Miles'], ['25950', '627', 'AW00025950', 'NULL', 'Kyle', 'NULL', 'Kumar', '0', '1980-12-23', 'S', 'NULL', 'M', 'kyle24@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1640 West Way', 'NULL', '486-555-0196', '2013-12-18', '5-10 Miles'], ['25951', '300', 'AW00025951', 'NULL', 'Anthony', 'A', 'Anderson', '0', '1986-03-15', 'S', 'NULL', 'M', 'anthony19@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4264 Oak Creek Ct.', 'NULL', '148-555-0116', '2011-06-12', '1-2 Miles'], ['25952', '310', 'AW00025952', 'NULL', 'Jon', 'NULL', 'Alonso', '0', '1980-11-18', 'S', 'NULL', 'M', 'jon18@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9518 Lakeview Place', 'NULL', '410-555-0144', '2011-06-04', '1-2 Miles'], ['25953', '311', 'AW00025953', 'NULL', 'Hunter', 'A', 'Butler', '0', '1981-05-10', 'M', 'NULL', 'M', 'hunter11@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '701 Golf Club Road', 'NULL', '153-555-0152', '2013-03-28', '5-10 Miles'], ['25954', '361', 'AW00025954', 'NULL', 'Noah', 'E', 'Carter', '0', '1981-02-06', 'M', 'NULL', 'M', 'noah37@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9720 Dalis Dr.', 'NULL', '625-555-0118', '2013-05-27', '1-2 Miles'], ['25955', '369', 'AW00025955', 'NULL', 'Anna', 'NULL', 'Robinson', '0', '1980-11-12', 'S', 'NULL', 'F', 'anna56@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '923 Woodbury Place', 'NULL', '173-555-0186', '2011-06-19', '1-2 Miles'], ['25956', '539', 'AW00025956', 'NULL', 'Charles', 'J', 'Ramirez', '0', '1980-06-18', 'M', 'NULL', 'M', 'charles55@adventure-works.com', '50000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9323 Cowell Road', 'NULL', '509-555-0118', '2013-07-27', '5-10 Miles'], ['25957', '385', 'AW00025957', 'NULL', 'Stephanie', 'NULL', 'Washington', '0', '1982-01-07', 'M', 'NULL', 'F', 'stephanie40@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '3556 Mt. Tri-state Court', 'NULL', '418-555-0180', '2013-06-14', '1-2 Miles'], ['25958', '11', 'AW00025958', 'NULL', 'Alfredo', 'W', 'Ortega', '0', '1961-09-08', 'S', 'NULL', 'M', 'alfredo23@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1032 Buena Vista', 'NULL', '1 (11) 500 555-0188', '2012-01-07', '5-10 Miles'], ['25959', '335', 'AW00025959', 'NULL', 'Katherine', 'NULL', 'Hall', '0', '1982-05-10', 'S', 'NULL', 'F', 'katherine96@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '8795 Cunha Ct.', 'NULL', '370-555-0119', '2013-04-08', '1-2 Miles'], ['25960', '31', 'AW00025960', 'NULL', 'Willie', 'S', 'Cai', '0', '1962-12-03', 'M', 'NULL', 'M', 'willie19@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4720 Black Pine Lane', 'NULL', '1 (11) 500 555-0121', '2012-01-22', '5-10 Miles'], ['25961', '39', 'AW00025961', 'NULL', 'Ricardo', 'T', 'Goel', '0', '1962-09-24', 'S', 'NULL', 'M', 'ricardo18@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5083 Bates Court', 'NULL', '1 (11) 500 555-0135', '2011-12-31', '5-10 Miles'], ['25962', '626', 'AW00025962', 'NULL', 'Jordyn', 'J', 'Jenkins', '0', '1984-01-25', 'S', 'NULL', 'F', 'jordyn6@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '2383 Mt. Davidson Court', 'NULL', '375-555-0183', '2011-06-29', '0-1 Miles'], ['25963', '623', 'AW00025963', 'NULL', 'Charles', 'NULL', 'Morris', '0', '1980-05-13', 'S', 'NULL', 'M', 'charles66@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6857 Bentley St.', 'NULL', '233-555-0153', '2014-01-03', '5-10 Miles'], ['25964', '542', 'AW00025964', 'NULL', 'Christopher', 'NULL', 'Winston', '0', '1979-08-09', 'S', 'NULL', 'M', 'christopher26@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '5603 Blackridge Drive', 'NULL', '269-555-0153', '2011-06-12', '1-2 Miles'], ['25965', '345', 'AW00025965', 'NULL', 'Andrea', 'A', 'Roberts', '0', '1971-12-20', 'S', 'NULL', 'F', 'andrea29@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '4', '5196 Jabber Place', 'NULL', '173-555-0161', '2013-05-14', '1-2 Miles'], ['25966', '359', 'AW00025966', 'NULL', 'Alex', 'B', 'Watson', '0', '1971-12-15', 'M', 'NULL', 'M', 'alex3@adventure-works.com', '130000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '5047 Northwood Dr.', 'NULL', '137-555-0122', '2013-07-07', '0-1 Miles'], ['25967', '339', 'AW00025967', 'NULL', 'Alexis', 'S', 'Martinez', '0', '1963-03-25', 'M', 'NULL', 'F', 'alexis14@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3783 Dartmouth Way', 'NULL', '837-555-0194', '2013-07-01', '5-10 Miles'], ['25968', '546', 'AW00025968', 'NULL', 'Benjamin', 'F', 'Powell', '0', '1970-04-08', 'M', 'NULL', 'M', 'benjamin9@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '5070 Via Alta', 'NULL', '898-555-0166', '2013-11-18', '10+ Miles'], ['25969', '325', 'AW00025969', 'NULL', 'Jason', 'F', 'Parker', '0', '1969-10-15', 'M', 'NULL', 'M', 'jason29@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7338 Solano Drive', 'NULL', '563-555-0110', '2011-06-14', '0-1 Miles'], ['25970', '614', 'AW00025970', 'NULL', 'Hailey', 'C', 'James', '0', '1970-03-13', 'S', 'NULL', 'F', 'hailey17@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3544 Brush Creek Drive', 'NULL', '378-555-0188', '2011-06-25', '0-1 Miles'], ['25971', '59', 'AW00025971', 'NULL', 'Savannah', 'NULL', 'Young', '0', '1968-10-05', 'S', 'NULL', 'F', 'savannah40@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '280 Plymouth Dr.', 'NULL', '785-555-0136', '2012-03-20', '2-5 Miles'], ['25972', '552', 'AW00025972', 'NULL', 'Jocelyn', 'NULL', 'Henderson', '0', '1969-01-01', 'S', 'NULL', 'F', 'jocelyn5@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '3187 Westwood Court', 'NULL', '461-555-0112', '2011-06-02', '0-1 Miles'], ['25973', '543', 'AW00025973', 'NULL', 'Mariah', 'NULL', 'Griffin', '0', '1968-09-10', 'S', 'NULL', 'F', 'mariah25@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '8660 San Vincente Drive', 'NULL', '988-555-0116', '2011-06-03', '0-1 Miles'], ['25974', '325', 'AW00025974', 'NULL', 'Noah', 'E', 'Jai', '0', '1974-04-01', 'M', 'NULL', 'M', 'noah26@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '1082 Crivello Avenue', 'NULL', '452-555-0118', '2011-06-20', '2-5 Miles'], ['25975', '611', 'AW00025975', 'NULL', 'Ebony', 'R', 'Gutierrez', '0', '1968-09-17', 'S', 'NULL', 'F', 'ebony33@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '9938 Eastgate Lane', 'NULL', '847-555-0167', '2011-06-02', '0-1 Miles'], ['25976', '316', 'AW00025976', 'NULL', 'Hunter', 'F', 'Coleman', '0', '1973-10-15', 'S', 'NULL', 'M', 'hunter2@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3824 Birch Bark Rd', 'NULL', '168-555-0167', '2011-06-14', '0-1 Miles'], ['25977', '385', 'AW00025977', 'NULL', 'Jenna', 'M', 'Lopez', '0', '1979-04-20', 'M', 'NULL', 'F', 'jenna20@adventure-works.com', '60000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3747 Likins Avenue', 'NULL', '278-555-0179', '2011-07-03', '2-5 Miles'], ['25978', '331', 'AW00025978', 'NULL', 'Morgan', 'NULL', 'Perez', '0', '1931-05-23', 'S', 'NULL', 'F', 'morgan9@adventure-works.com', '90000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '9838 Westchester Pl.', 'NULL', '116-555-0188', '2011-07-15', '0-1 Miles'], ['25979', '536', 'AW00025979', 'NULL', 'Miguel', 'NULL', 'Edwards', '0', '1974-01-29', 'S', 'NULL', 'M', 'miguel44@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '5090 Pepper Way', 'NULL', '627-555-0180', '2011-07-11', '2-5 Miles'], ['25980', '635', 'AW00025980', 'NULL', 'Julia', 'M', 'Jones', '0', '1974-04-06', 'S', 'NULL', 'F', 'julia25@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '2934 Bentley St.', 'NULL', '667-555-0165', '2011-07-14', '2-5 Miles'], ['25981', '66', 'AW00025981', 'NULL', 'Isaiah', 'NULL', 'Howard', '0', '1969-05-14', 'M', 'NULL', 'M', 'isaiah10@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '2904 El Pueblo Pl.', 'NULL', '916-555-0156', '2012-03-14', '2-5 Miles'], ['25982', '648', 'AW00025982', 'NULL', 'Rebecca', 'NULL', 'Phillips', '0', '1968-10-14', 'S', 'NULL', 'F', 'rebecca8@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6374 St. Germain Lane', 'NULL', '994-555-0167', '2011-07-24', '0-1 Miles'], ['25983', '546', 'AW00025983', 'NULL', 'Jack', 'J', 'Alexander', '0', '1969-02-18', 'M', 'NULL', 'M', 'jack19@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5619 Gathering Court', 'NULL', '204-555-0126', '2013-08-11', '0-1 Miles'], ['25984', '335', 'AW00025984', 'NULL', 'Isabella', 'D', 'Wright', '0', '1969-05-25', 'S', 'NULL', 'F', 'isabella51@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6288 Relief Valley Ct.', 'NULL', '933-555-0122', '2011-07-08', '2-5 Miles'], ['25985', '347', 'AW00025985', 'NULL', 'Justin', 'L', 'Harris', '0', '1968-11-23', 'M', 'NULL', 'M', 'justin41@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '9260 Brown St.', 'NULL', '544-555-0177', '2011-07-11', '0-1 Miles'], ['25986', '638', 'AW00025986', 'NULL', 'Isabel', 'L', 'Bryant', '0', '1968-07-23', 'M', 'NULL', 'F', 'isabel17@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '1567 Midway Ct', 'NULL', '321-555-0166', '2011-08-07', '0-1 Miles'], ['25987', '298', 'AW00025987', 'NULL', 'Hunter', 'NULL', 'Kumar', '0', '1978-11-18', 'M', 'NULL', 'M', 'hunter23@adventure-works.com', '40000.00', '3', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '222 Hunter Drive', 'NULL', '475-555-0151', '2011-08-10', '0-1 Miles'], ['25988', '536', 'AW00025988', 'NULL', 'Victor', 'M', 'Muñoz', '0', '1973-01-14', 'S', 'NULL', 'M', 'victor9@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6432 Vista Way', 'NULL', '946-555-0113', '2013-08-22', '2-5 Miles'], ['25989', '66', 'AW00025989', 'NULL', 'Jeremy', 'NULL', 'Price', '0', '1973-01-14', 'M', 'NULL', 'M', 'jeremy21@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2225 Stillwater Court', 'NULL', '836-555-0162', '2012-04-20', '2-5 Miles'], ['25990', '547', 'AW00025990', 'NULL', 'Jenna', 'A', 'Parker', '0', '1968-02-19', 'S', 'NULL', 'F', 'jenna7@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '8311 Roland Drive', 'NULL', '276-555-0163', '2011-08-16', '0-1 Miles'], ['25991', '52', 'AW00025991', 'NULL', 'Arianna', 'NULL', 'Hayes', '0', '1973-03-08', 'M', 'NULL', 'F', 'arianna20@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5150 82nd Ave', 'NULL', '582-555-0144', '2012-04-06', '2-5 Miles'], ['25992', '69', 'AW00025992', 'NULL', 'Stephanie', 'NULL', 'Flores', '0', '1967-11-09', 'M', 'NULL', 'F', 'stephanie39@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1807 Trafalgar Circle', 'NULL', '583-555-0119', '2012-04-18', '0-1 Miles'], ['25993', '609', 'AW00025993', 'NULL', 'Heidi', 'H', 'Chandra', '0', '1977-11-20', 'S', 'NULL', 'F', 'heidi4@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '8678 Hartnell Court', 'NULL', '489-555-0157', '2011-08-26', '10+ Miles'], ['25994', '552', 'AW00025994', 'NULL', 'Richard', 'NULL', 'Garcia', '0', '1983-03-10', 'S', 'NULL', 'M', 'richard10@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6337 Hill Dr', 'NULL', '154-555-0197', '2011-08-05', '2-5 Miles'], ['25995', '62', 'AW00025995', 'NULL', 'Jack', 'R', 'Phillips', '0', '1966-09-30', 'M', 'NULL', 'M', 'jack41@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8656 Roskelley Dr.', 'NULL', '362-555-0167', '2012-06-26', '0-1 Miles'], ['25996', '383', 'AW00025996', 'NULL', 'Faith', 'NULL', 'Murphy', '0', '1967-02-12', 'M', 'NULL', 'F', 'faith32@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3818 Landing Drive', 'NULL', '753-555-0119', '2011-08-28', '0-1 Miles'], ['25997', '339', 'AW00025997', 'NULL', 'Katherine', 'NULL', 'Wright', '0', '1967-05-21', 'M', 'NULL', 'F', 'katherine68@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5180 Northridge Drive', 'NULL', '446-555-0171', '2011-09-08', '0-1 Miles'], ['25998', '634', 'AW00025998', 'NULL', 'Richard', 'L', 'Rivera', '0', '1966-09-01', 'M', 'NULL', 'M', 'richard89@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3729 Via Del Verdes', 'NULL', '154-555-0152', '2011-09-14', '2-5 Miles'], ['25999', '71', 'AW00025999', 'NULL', 'Joshua', 'F', 'Thompson', '0', '1965-12-29', 'M', 'NULL', 'M', 'joshua17@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9903 East Leland', 'NULL', '923-555-0117', '2012-06-25', '2-5 Miles'], ['26000', '369', 'AW00026000', 'NULL', 'Connor', 'NULL', 'Lopez', '0', '1971-10-02', 'S', 'NULL', 'M', 'connor40@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9073 Mayda Way', 'NULL', '666-555-0112', '2013-06-01', '0-1 Miles'], ['26001', '539', 'AW00026001', 'NULL', 'Nicholas', 'G', 'Lee', '0', '1972-09-21', 'S', 'NULL', 'M', 'nicholas2@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '162 Frisbie Court', 'NULL', '526-555-0133', '2011-09-23', '2-5 Miles'], ['26002', '548', 'AW00026002', 'NULL', 'Samuel', 'J', 'Walker', '0', '1973-04-01', 'S', 'NULL', 'M', 'samuel72@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '5509 Mt. Wilson Way', 'NULL', '487-555-0168', '2011-09-28', '0-1 Miles'], ['26003', '307', 'AW00026003', 'NULL', 'Denise', 'NULL', 'Subram', '0', '1973-05-24', 'S', 'NULL', 'F', 'denise14@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '3974 Central Ave.', 'NULL', '564-555-0159', '2011-09-10', '2-5 Miles'], ['26004', '348', 'AW00026004', 'NULL', 'Arthur', 'NULL', 'Washington', '0', '1966-05-08', 'M', 'NULL', 'F', 'arthur45@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8481 Cloverleaf Circle', 'NULL', '383-555-0171', '2011-09-11', '0-1 Miles'], ['26005', '547', 'AW00026005', 'NULL', 'Elizabeth', 'J', 'Clark', '0', '1966-05-18', 'M', 'NULL', 'F', 'elizabeth23@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2293 Tono Lane', 'NULL', '561-555-0152', '2011-09-14', '0-1 Miles'], ['26006', '607', 'AW00026006', 'NULL', 'Garrett', 'NULL', 'Peterson', '0', '1965-04-22', 'M', 'NULL', 'M', 'garrett10@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '4234 Coggins Dr.', 'NULL', '422-555-0170', '2013-11-25', '2-5 Miles'], ['26007', '347', 'AW00026007', 'NULL', 'Jesse', 'NULL', 'Morgan', '0', '1970-04-04', 'M', 'NULL', 'M', 'jesse13@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '8905 Candlestick Dr.', 'NULL', '810-555-0148', '2013-06-07', '0-1 Miles'], ['26008', '315', 'AW00026008', 'NULL', 'Jennifer', 'NULL', 'Gonzales', '0', '1970-06-19', 'M', 'NULL', 'F', 'jennifer90@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '3', '9494 Buena Vista', 'NULL', '101-555-0135', '2014-01-20', '10+ Miles'], ['26009', '315', 'AW00026009', 'NULL', 'Luis', 'R', 'Foster', '0', '1965-03-12', 'M', 'NULL', 'M', 'luis15@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '3', '9836 Hanson Lane', 'NULL', '239-555-0151', '2013-12-28', '10+ Miles'], ['26010', '611', 'AW00026010', 'NULL', 'Morgan', 'W', 'Campbell', '0', '1965-06-21', 'M', 'NULL', 'F', 'morgan5@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '3', '6125 Clay Way', 'NULL', '894-555-0140', '2013-03-02', '10+ Miles'], ['26011', '302', 'AW00026011', 'NULL', 'Daisuke', 'NULL', 'Yanagishima', '0', '1970-03-07', 'S', 'NULL', 'F', 'daisuke0@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '5766 Newcastle Road', 'NULL', '126-555-0120', '2011-09-05', '0-1 Miles'], ['26012', '343', 'AW00026012', 'NULL', 'Mark', 'E', 'Bebbington', '0', '1969-08-12', 'M', 'NULL', 'M', 'mark8@adventure-works.com', '80000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '48 Lacanda Ct.', 'NULL', '113-555-0157', '2011-10-08', '2-5 Miles'], ['26013', '55', 'AW00026013', 'NULL', 'Victoria', 'NULL', 'Taylor', '0', '1969-04-17', 'S', 'NULL', 'F', 'victoria10@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2584 Bentley St.', 'NULL', '641-555-0173', '2012-07-17', '2-5 Miles'], ['26014', '352', 'AW00026014', 'NULL', 'Olivia', 'NULL', 'Torres', '0', '1963-12-19', 'S', 'NULL', 'F', 'olivia39@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5754 Glenhaven Ave', 'NULL', '176-555-0185', '2011-10-14', '0-1 Miles'], ['26015', '331', 'AW00026015', 'NULL', 'Gabriel', 'NULL', 'Chow', '0', '1963-10-20', 'M', 'NULL', 'M', 'gabriel22@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '8042 StandingView Dr.', 'NULL', '865-555-0127', '2011-10-04', '2-5 Miles'], ['26016', '299', 'AW00026016', 'NULL', 'Fernando', 'NULL', 'King', '0', '1963-11-06', 'S', 'NULL', 'M', 'fernando25@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '942 Brook Street', 'NULL', '507-555-0114', '2011-10-17', '0-1 Miles'], ['26017', '301', 'AW00026017', 'NULL', 'Derrick', 'W', 'Alonso', '0', '1963-11-04', 'M', 'NULL', 'M', 'derrick8@adventure-works.com', '70000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '2', '7970 Jewett Ave.', 'NULL', '652-555-0173', '2013-02-03', '0-1 Miles'], ['26018', '626', 'AW00026018', 'NULL', 'Zachary', 'R', 'Thompson', '0', '1964-01-15', 'M', 'NULL', 'M', 'zachary46@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '166 Birchbark Place', 'NULL', '921-555-0183', '2011-10-23', '0-1 Miles'], ['26019', '40', 'AW00026019', 'NULL', 'Luis', 'C', 'Allen', '0', '1980-05-01', 'M', 'NULL', 'M', 'luis54@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '790 Northstar Drive', 'NULL', '1 (11) 500 555-0171', '2012-01-03', '0-1 Miles'], ['26020', '34', 'AW00026020', 'NULL', 'Barry', 'R', 'Lopez', '0', '1980-04-16', 'M', 'NULL', 'M', 'barry17@adventure-works.com', '100000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '8982 Ricardo Drive', 'NULL', '1 (11) 500 555-0122', '2012-01-08', '0-1 Miles'], ['26021', '16', 'AW00026021', 'NULL', 'Meghan', 'E', 'Gutierrez', '0', '1975-01-25', 'S', 'NULL', 'F', 'meghan10@adventure-works.com', '100000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '8227 Myrtle Drive', 'NULL', '1 (11) 500 555-0119', '2012-01-23', '0-1 Miles'], ['26022', '22', 'AW00026022', 'NULL', 'Jamie', 'NULL', 'Gao', '0', '1980-03-31', 'M', 'NULL', 'F', 'jamie18@adventure-works.com', '100000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '5957 Pacifica Ave.', 'NULL', '1 (11) 500 555-0187', '2012-01-27', '2-5 Miles'], ['26023', '23', 'AW00026023', 'NULL', 'Crystal', 'L', 'Huang', '0', '1974-05-09', 'M', 'NULL', 'F', 'crystal8@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3241 Dutch Slough Rd.', 'NULL', '1 (11) 500 555-0127', '2012-01-07', '0-1 Miles'], ['26024', '7', 'AW00026024', 'NULL', 'Jill', 'N', 'Gutierrez', '0', '1981-10-17', 'S', 'NULL', 'F', 'jill18@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '3183 Chestnut Ave.', 'NULL', '1 (11) 500 555-0112', '2012-02-08', '0-1 Miles'], ['26025', '21', 'AW00026025', 'NULL', 'Aimee', 'NULL', 'Zhang', '0', '1975-08-15', 'S', 'NULL', 'F', 'aimee0@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '3648 ViewPoint Court', 'NULL', '1 (11) 500 555-0176', '2012-02-28', '0-1 Miles'], ['26026', '27', 'AW00026026', 'NULL', 'Cindy', 'E', 'Srini', '0', '1972-11-10', 'S', 'NULL', 'F', 'cindy8@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '9099 Warmcastle Ct.', 'NULL', '1 (11) 500 555-0153', '2013-03-07', '10+ Miles'], ['26027', '29', 'AW00026027', 'NULL', 'Michele', 'NULL', 'Luo', '0', '1975-06-23', 'S', 'NULL', 'F', 'michele6@adventure-works.com', '110000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '330 Shenandoah Dr.', 'NULL', '1 (11) 500 555-0154', '2012-02-27', '1-2 Miles'], ['26028', '18', 'AW00026028', 'NULL', 'Brandy', 'NULL', 'Garcia', '0', '1980-10-10', 'S', 'NULL', 'F', 'brandy11@adventure-works.com', '130000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '7420 Lilac Circle', 'NULL', '1 (11) 500 555-0118', '2012-02-28', '2-5 Miles'], ['26029', '32', 'AW00026029', 'NULL', 'Roy', 'NULL', 'Vazquez', '0', '1977-07-15', 'M', 'NULL', 'M', 'roy34@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '8275 Tono Lane', 'NULL', '1 (11) 500 555-0143', '2012-02-23', '0-1 Miles'], ['26030', '19', 'AW00026030', 'NULL', 'Rebekah', 'NULL', 'Subram', '0', '1971-04-21', 'M', 'NULL', 'F', 'rebekah12@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1290 Arguello Blvd.', 'NULL', '1 (11) 500 555-0147', '2013-06-15', '5-10 Miles'], ['26031', '27', 'AW00026031', 'NULL', 'Katrina', 'P', 'Kumar', '0', '1976-05-23', 'S', 'NULL', 'F', 'katrina7@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6838 El Rancho Drive', 'NULL', '1 (11) 500 555-0186', '2014-01-25', '0-1 Miles'], ['26032', '14', 'AW00026032', 'NULL', 'Leslie', 'J', 'Ruiz', '0', '1976-08-01', 'M', 'NULL', 'F', 'leslie2@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '8195 Geary Ct.', 'NULL', '1 (11) 500 555-0138', '2013-02-05', '10+ Miles'], ['26033', '22', 'AW00026033', 'NULL', 'Danny', 'J', 'Vazquez', '0', '1976-07-09', 'S', 'NULL', 'M', 'danny15@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9012 F St.', 'NULL', '1 (11) 500 555-0183', '2012-02-06', '5-10 Miles'], ['26034', '25', 'AW00026034', 'NULL', 'Rosa', 'NULL', 'Gao', '0', '1975-06-24', 'M', 'NULL', 'F', 'rosa14@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '9052 Madhatter Lane', 'NULL', '1 (11) 500 555-0153', '2013-08-28', '0-1 Miles'], ['26035', '38', 'AW00026035', 'NULL', 'Shannon', 'NULL', 'Vazquez', '0', '1980-11-21', 'S', 'NULL', 'M', 'shannon36@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '8129 Golden Rain', 'NULL', '1 (11) 500 555-0110', '2013-07-19', '5-10 Miles'], ['26036', '4', 'AW00026036', 'NULL', 'Haley', 'NULL', 'Wright', '0', '1970-04-19', 'S', 'NULL', 'F', 'haley54@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '9279 Masonic Dr.', 'NULL', '1 (11) 500 555-0176', '2013-11-04', '5-10 Miles'], ['26037', '240', 'AW00026037', 'NULL', 'Erik', 'L', 'Dominguez', '0', '1978-12-15', 'S', 'NULL', 'M', 'erik13@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '637 Lindsey Court', 'NULL', '1 (11) 500 555-0177', '2013-02-21', '1-2 Miles'], ['26038', '162', 'AW00026038', 'NULL', 'Nicole', 'E', 'Flores', '0', '1984-12-20', 'S', 'NULL', 'F', 'nicole61@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Dunckerstr 6844', 'NULL', '1 (11) 500 555-0181', '2013-08-29', '2-5 Miles'], ['26039', '552', 'AW00026039', 'NULL', 'Robert', 'J', 'Garcia', '0', '1968-01-10', 'M', 'NULL', 'M', 'robert75@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8401 Carson Street', 'NULL', '550-555-0153', '2013-11-05', '5-10 Miles'], ['26040', '52', 'AW00026040', 'NULL', 'Ana', 'NULL', 'Butler', '0', '1962-11-21', 'M', 'NULL', 'F', 'ana13@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '6144 Rising Dawn Way', 'NULL', '912-555-0166', '2012-07-15', '5-10 Miles'], ['26041', '609', 'AW00026041', 'NULL', 'Gloria', 'G', 'Torres', '0', '1963-01-02', 'M', 'NULL', 'F', 'gloria12@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '692 Honey Trail Lane', 'NULL', '435-555-0171', '2011-09-30', '0-1 Miles'], ['26042', '337', 'AW00026042', 'NULL', 'Devin', 'NULL', 'Griffin', '0', '1963-04-05', 'M', 'NULL', 'M', 'devin58@adventure-works.com', '90000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '7053 Santa Maria Ct.', 'NULL', '497-555-0116', '2011-10-10', '2-5 Miles'], ['26043', '611', 'AW00026043', 'NULL', 'Jodi', 'NULL', 'Becker', '0', '1967-08-05', 'M', 'NULL', 'F', 'jodi21@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9183 J Ave', 'NULL', '141-555-0181', '2013-10-29', '5-10 Miles'], ['26044', '361', 'AW00026044', 'NULL', 'Gavin', 'NULL', 'Hughes', '0', '1972-10-12', 'S', 'NULL', 'M', 'gavin11@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1597 Apple Dr.', 'NULL', '774-555-0177', '2013-04-20', '1-2 Miles'], ['26045', '545', 'AW00026045', 'NULL', 'Samuel', 'NULL', 'Jenkins', '0', '1972-12-08', 'S', 'NULL', 'M', 'samuel5@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7532 Erie Dr', 'NULL', '810-555-0121', '2013-09-29', '1-2 Miles'], ['26046', '298', 'AW00026046', 'NULL', 'Kara', 'NULL', 'Kumar', '0', '1967-05-15', 'S', 'NULL', 'F', 'kara8@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2489 Dianda Drive', 'NULL', '386-555-0121', '2013-10-04', '5-10 Miles'], ['26047', '618', 'AW00026047', 'NULL', 'Ashley', 'A', 'Hall', '0', '1961-10-05', 'M', 'NULL', 'F', 'ashley25@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3535 Hillview Dr.', 'NULL', '114-555-0173', '2013-05-20', '5-10 Miles'], ['26048', '311', 'AW00026048', 'NULL', 'Brad', 'K', 'Oliver', '0', '1961-06-30', 'M', 'NULL', 'M', 'brad12@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3426 Fernwood Drive', 'NULL', '872-555-0178', '2013-07-25', '5-10 Miles'], ['26049', '49', 'AW00026049', 'NULL', 'Christopher', 'R', 'White', '0', '1972-12-01', 'M', 'NULL', 'M', 'christopher13@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '5165 Oakmead', 'NULL', '743-555-0158', '2012-07-02', '1-2 Miles'], ['26050', '611', 'AW00026050', 'NULL', 'Clarence', 'P', 'Ye', '0', '1962-03-14', 'S', 'NULL', 'M', 'clarence5@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '8523 Magic Dr', 'NULL', '832-555-0169', '2011-10-02', '1-2 Miles'], ['26051', '59', 'AW00026051', 'NULL', 'Joshua', 'NULL', 'Williams', '0', '1938-06-23', 'M', 'NULL', 'M', 'joshua4@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5988 Red Leaf', 'NULL', '477-555-0116', '2013-12-25', '5-10 Miles'], ['26052', '612', 'AW00026052', 'NULL', 'Carolyn', 'NULL', 'Subram', '0', '1970-10-22', 'M', 'NULL', 'F', 'carolyn12@adventure-works.com', '90000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '2868 Central Avenue', 'NULL', '418-555-0156', '2013-05-19', '2-5 Miles'], ['26053', '614', 'AW00026053', 'NULL', 'Austin', 'E', 'Anderson', '0', '1976-03-18', 'M', 'NULL', 'M', 'austin47@adventure-works.com', '100000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '7259 Birchwood', 'NULL', '939-555-0191', '2013-03-19', '2-5 Miles'], ['26054', '627', 'AW00026054', 'NULL', 'Dylan', 'A', 'Lee', '0', '1976-01-10', 'S', 'NULL', 'M', 'dylan52@adventure-works.com', '100000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '4785 Stillman Court', 'NULL', '390-555-0134', '2013-03-31', '0-1 Miles'], ['26055', '648', 'AW00026055', 'NULL', 'Ethan', 'NULL', 'Foster', '0', '1976-08-16', 'S', 'NULL', 'M', 'ethan12@adventure-works.com', '100000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '6642 Sandview Dr', 'NULL', '411-555-0125', '2011-10-20', '2-5 Miles'], ['26056', '298', 'AW00026056', 'NULL', 'Karen', 'T', 'Zeng', '0', '1971-06-14', 'S', 'NULL', 'F', 'karen31@adventure-works.com', '100000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '9975 Haynes Court', 'NULL', '671-555-0179', '2011-11-04', '2-5 Miles'], ['26057', '301', 'AW00026057', 'NULL', 'Barry', 'E', 'Subram', '0', '1970-08-17', 'S', 'NULL', 'M', 'barry14@adventure-works.com', '110000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '7393 Jacaranda Dr.', 'NULL', '910-555-0118', '2011-11-21', '2-5 Miles'], ['26058', '315', 'AW00026058', 'NULL', 'Faith', 'NULL', 'Stewart', '0', '1982-05-21', 'S', 'NULL', 'F', 'faith38@adventure-works.com', '120000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '3512 View Dr.', 'NULL', '710-555-0158', '2011-11-21', '2-5 Miles'], ['26059', '352', 'AW00026059', 'NULL', 'Andrew', 'NULL', 'Anderson', '0', '1971-04-20', 'M', 'NULL', 'M', 'andrew19@adventure-works.com', '130000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '4777 Rockne Drive', 'NULL', '442-555-0139', '2013-05-14', '0-1 Miles'], ['26060', '361', 'AW00026060', 'NULL', 'Kyle', 'D', 'Edwards', '0', '1976-11-08', 'M', 'NULL', 'M', 'kyle31@adventure-works.com', '130000.00', '1', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '744 Ohara Avenue', 'NULL', '230-555-0157', '2011-11-20', '0-1 Miles'], ['26061', '385', 'AW00026061', 'NULL', 'Connor', 'NULL', 'Butler', '0', '1970-10-16', 'S', 'NULL', 'M', 'connor9@adventure-works.com', '170000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '7669 Springfield Drive', 'NULL', '399-555-0199', '2011-11-10', '1-2 Miles'], ['26062', '607', 'AW00026062', 'NULL', 'Chad', 'NULL', 'Raji', '0', '1970-03-11', 'M', 'NULL', 'M', 'chad21@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6992 Ponderosa Drive', 'NULL', '745-555-0141', '2013-05-18', '2-5 Miles'], ['26063', '609', 'AW00026063', 'NULL', 'Wesley', 'P', 'Lu', '0', '1970-01-10', 'M', 'NULL', 'M', 'wesley11@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2253 Firestone Dr.', 'NULL', '161-555-0142', '2013-10-29', '0-1 Miles'], ['26064', '641', 'AW00026064', 'NULL', 'Logan', 'NULL', 'Scott', '0', '1969-12-18', 'M', 'NULL', 'M', 'logan40@adventure-works.com', '100000.00', '5', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '3534 Park Highlands Blvd.', 'NULL', '265-555-0163', '2013-06-28', '2-5 Miles'], ['26065', '299', 'AW00026065', 'NULL', 'Chloe', 'J', 'Powell', '0', '1975-02-16', 'S', 'NULL', 'F', 'chloe75@adventure-works.com', '110000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '1893 Argyll Ave.', 'NULL', '751-555-0166', '2013-10-17', '1-2 Miles'], ['26066', '299', 'AW00026066', 'NULL', 'Elizabeth', 'NULL', 'Martinez', '0', '1962-01-24', 'M', 'NULL', 'F', 'elizabeth21@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '0', '7339 Eureka Lane', 'NULL', '912-555-0186', '2011-11-22', '0-1 Miles'], ['26067', '335', 'AW00026067', 'NULL', 'Erin', 'NULL', 'Morgan', '0', '1961-07-22', 'M', 'NULL', 'F', 'erin17@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '8595 Mariposa Ct', 'NULL', '123-555-0118', '2013-11-18', '0-1 Miles'], ['26068', '631', 'AW00026068', 'NULL', 'Dylan', 'NULL', 'Patterson', '0', '1967-12-13', 'M', 'NULL', 'M', 'dylan9@adventure-works.com', '70000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '3190 Glenhaven Ave', 'NULL', '331-555-0163', '2013-11-04', '5-10 Miles'], ['26069', '52', 'AW00026069', 'NULL', 'Jessica', 'NULL', 'Foster', '0', '1973-03-15', 'M', 'NULL', 'F', 'jessica40@adventure-works.com', '70000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '428 Delaware Court', 'NULL', '513-555-0119', '2013-03-05', '0-1 Miles'], ['26070', '298', 'AW00026070', 'NULL', 'Elijah', 'A', 'Patterson', '0', '1961-12-31', 'S', 'NULL', 'M', 'elijah14@adventure-works.com', '90000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '5437 Spring Hill Road', 'NULL', '114-555-0158', '2011-11-20', '5-10 Miles'], ['26071', '311', 'AW00026071', 'NULL', 'Brittany', 'W', 'Henderson', '0', '1961-01-04', 'S', 'NULL', 'F', 'brittany4@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7904 Eagle Peak Avenue', 'NULL', '503-555-0185', '2013-04-22', '1-2 Miles'], ['26072', '300', 'AW00026072', 'NULL', 'Kelli', 'W', 'Zhang', '0', '1961-01-01', 'S', 'NULL', 'F', 'kelli0@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '200 Mitchelleanjen Ln.', 'NULL', '182-555-0118', '2013-12-08', '5-10 Miles'], ['26073', '63', 'AW00026073', 'NULL', 'Julia', 'N', 'Adams', '0', '1939-10-09', 'S', 'NULL', 'F', 'julia12@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '6205 Lorie Lane', 'NULL', '681-555-0110', '2013-11-27', '1-2 Miles'], ['26074', '68', 'AW00026074', 'NULL', 'Isaac', 'D', 'Reed', '0', '1969-04-14', 'M', 'NULL', 'M', 'isaac20@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '7594 Clearland Circle', 'NULL', '482-555-0118', '2013-08-25', '2-5 Miles'], ['26075', '644', 'AW00026075', 'NULL', 'Jessica', 'N', 'Walker', '0', '1974-04-23', 'S', 'NULL', 'F', 'jessica71@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5872 Whiteaben Drive', 'NULL', '409-555-0140', '2011-11-18', '2-5 Miles'], ['26076', '51', 'AW00026076', 'NULL', 'Kelly', 'NULL', 'Ross', '0', '1968-05-12', 'M', 'NULL', 'F', 'kelly8@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '7114 South Royal Links', 'NULL', '110-555-0119', '2013-06-21', '5-10 Miles'], ['26077', '66', 'AW00026077', 'NULL', 'Isaac', 'NULL', 'Collins', '0', '1968-05-22', 'M', 'NULL', 'M', 'isaac25@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '490 Alan Dr.', 'NULL', '247-555-0137', '2013-11-24', '5-10 Miles'], ['26078', '609', 'AW00026078', 'NULL', 'Alberto', 'R', 'Dominguez', '0', '1973-05-07', 'M', 'NULL', 'M', 'alberto13@adventure-works.com', '90000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '3219 Sandra Circle', 'NULL', '985-555-0125', '2013-02-24', '1-2 Miles'], ['26079', '609', 'AW00026079', 'NULL', 'Ryan', 'NULL', 'Robinson', '0', '1979-03-09', 'M', 'NULL', 'M', 'ryan54@adventure-works.com', '90000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '5889 Kenwal Rd.', 'NULL', '145-555-0138', '2013-07-14', '5-10 Miles'], ['26080', '616', 'AW00026080', 'NULL', 'Sydney', 'NULL', 'Roberts', '0', '1968-05-22', 'M', 'NULL', 'F', 'sydney47@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '8811 Medicine St.', '# 44', '684-555-0148', '2013-06-09', '5-10 Miles'], ['26081', '637', 'AW00026081', 'NULL', 'Edward', 'C', 'Green', '0', '1968-02-20', 'S', 'NULL', 'M', 'edward7@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '6412 Clifford Court', 'NULL', '629-555-0147', '2013-03-12', '1-2 Miles'], ['26082', '335', 'AW00026082', 'NULL', 'Christian', 'S', 'Johnson', '0', '1973-07-01', 'S', 'NULL', 'M', 'christian31@adventure-works.com', '130000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '4180 Frisbie Court', 'NULL', '930-555-0142', '2011-11-03', '2-5 Miles'], ['26083', '361', 'AW00026083', 'NULL', 'Alyssa', 'NULL', 'Smith', '0', '1967-08-05', 'S', 'NULL', 'F', 'alyssa0@adventure-works.com', '150000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '324 Mepham Dr.', 'NULL', '751-555-0111', '2011-11-27', '2-5 Miles'], ['26084', '372', 'AW00026084', 'NULL', 'Luke', 'NULL', 'Jenkins', '0', '1967-10-24', 'M', 'NULL', 'M', 'luke25@adventure-works.com', '160000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '3309 Clay Way', 'NULL', '307-555-0136', '2011-11-28', '2-5 Miles'], ['26085', '55', 'AW00026085', 'NULL', 'Ian', 'NULL', 'Powell', '0', '1967-01-23', 'M', 'NULL', 'M', 'ian49@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '2602 Glenside Court', 'NULL', '121-555-0117', '2013-06-17', '5-10 Miles'], ['26086', '618', 'AW00026086', 'NULL', 'Sean', 'J', 'Cox', '0', '1967-01-17', 'M', 'NULL', 'M', 'sean18@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '2862 Pinehurst Court', 'NULL', '148-555-0192', '2013-10-21', '5-10 Miles'], ['26087', '545', 'AW00026087', 'NULL', 'Ashley', 'H', 'Price', '0', '1972-07-23', 'M', 'NULL', 'F', 'ashley26@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '1820 St. Andrews Dr.', 'NULL', '895-555-0178', '2013-10-11', '5-10 Miles'], ['26088', '637', 'AW00026088', 'NULL', 'Ethan', 'NULL', 'Perry', '0', '1978-03-12', 'M', 'NULL', 'M', 'ethan4@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4823 Park Blvd.', 'NULL', '969-555-0145', '2013-09-13', '5-10 Miles'], ['26089', '298', 'AW00026089', 'NULL', 'Terry', 'A', 'Rai', '0', '1967-02-08', 'S', 'NULL', 'M', 'terry20@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '4488 Kirkwood Drive', 'NULL', '898-555-0181', '2011-11-10', '2-5 Miles'], ['26090', '298', 'AW00026090', 'NULL', 'Mathew', 'NULL', 'Moreno', '0', '1972-10-19', 'S', 'NULL', 'M', 'mathew2@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '6695 Treat Blvd.', 'NULL', '890-555-0162', '2011-11-02', '5-10 Miles'], ['26091', '369', 'AW00026091', 'NULL', 'Chloe', 'J', 'Bennett', '0', '1967-02-18', 'M', 'NULL', 'F', 'chloe67@adventure-works.com', '160000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '438 Mt. Etna', 'NULL', '619-555-0121', '2011-11-11', '2-5 Miles'], ['26092', '609', 'AW00026092', 'NULL', 'Devin', 'E', 'Morgan', '0', '1960-10-31', 'S', 'NULL', 'M', 'devin80@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6514 Las Juntas Way', 'NULL', '437-555-0116', '2013-12-15', '5-10 Miles'], ['26093', '316', 'AW00026093', 'NULL', 'Nicole', 'NULL', 'Washington', '0', '1966-08-06', 'S', 'NULL', 'F', 'nicole62@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '3410 Hemlock Ave.', 'NULL', '635-555-0115', '2011-11-21', '1-2 Miles'], ['26094', '348', 'AW00026094', 'NULL', 'Sarah', 'NULL', 'Butler', '0', '1966-06-07', 'M', 'NULL', 'F', 'sarah39@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '7292 Preakness Court', 'NULL', '990-555-0127', '2011-11-02', '1-2 Miles'], ['26095', '64', 'AW00026095', 'NULL', 'Trinity', 'NULL', 'Kelly', '0', '1972-01-08', 'M', 'NULL', 'F', 'trinity2@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '290 Reed Way', 'NULL', '816-555-0169', '2013-08-12', '5-10 Miles'], ['26096', '301', 'AW00026096', 'NULL', 'Kevin', 'A', 'Wright', '0', '1960-07-24', 'M', 'NULL', 'M', 'kevin55@adventure-works.com', '90000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '2753 Rubiem Ct.', 'NULL', '143-555-0170', '2011-12-22', '10+ Miles'], ['26097', '360', 'AW00026097', 'NULL', 'Robert', 'NULL', 'Flores', '0', '1940-12-08', 'S', 'NULL', 'M', 'robert25@adventure-works.com', '130000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '400 Pecan Street', 'NULL', '165-555-0125', '2011-12-21', '2-5 Miles'], ['26098', '383', 'AW00026098', 'NULL', 'Daniel', 'NULL', 'Lee', '0', '1941-03-08', 'S', 'NULL', 'M', 'daniel13@adventure-works.com', '130000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '4575 Shannondale Drive', 'NULL', '826-555-0171', '2011-12-28', '2-5 Miles'], ['26099', '60', 'AW00026099', 'NULL', 'Christina', 'NULL', 'Bell', '0', '1941-07-08', 'M', 'NULL', 'F', 'christina12@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '2324 California St', 'NULL', '741-555-0144', '2013-05-16', '1-2 Miles'], ['26100', '63', 'AW00026100', 'NULL', 'James', 'Garner', 'Ptaszynski', '0', '1941-09-30', 'S', 'NULL', 'F', 'james49@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '7345 Kenwal Rd.', 'NULL', '127-555-0194', '2014-01-15', '5-10 Miles'], ['26101', '609', 'AW00026101', 'NULL', 'Phillip', 'S', 'Smith', '0', '1941-07-12', 'M', 'NULL', 'M', 'phillip9@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4914 Sierra Drive', 'NULL', '827-555-0134', '2013-07-08', '5-10 Miles'], ['26102', '536', 'AW00026102', 'NULL', 'Ana', 'A', 'Wood', '0', '1965-12-20', 'S', 'NULL', 'F', 'ana2@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '6105 Brownstone Rd', 'NULL', '402-555-0143', '2013-03-31', '1-2 Miles'], ['26103', '614', 'AW00026103', 'NULL', 'Jack', 'A', 'Yang', '0', '1965-09-23', 'M', 'NULL', 'M', 'jack28@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '533 Beauer Lane', 'NULL', '895-555-0130', '2014-01-07', '5-10 Miles'], ['26104', '547', 'AW00026104', 'NULL', 'Timothy', 'D', 'Edwards', '0', '1971-02-10', 'M', 'NULL', 'M', 'timothy26@adventure-works.com', '100000.00', '0', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '0', '8780 Stephanie Way', 'NULL', '773-555-0115', '2013-08-21', '1-2 Miles'], ['26105', '310', 'AW00026105', 'NULL', 'Morgan', 'C', 'Gonzales', '0', '1977-05-06', 'M', 'NULL', 'F', 'morgan86@adventure-works.com', '110000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '705 Seaview Avenue', 'NULL', '163-555-0146', '2013-06-12', '2-5 Miles'], ['26106', '338', 'AW00026106', 'NULL', 'Connor', 'NULL', 'King', '0', '1965-09-09', 'S', 'NULL', 'M', 'connor47@adventure-works.com', '120000.00', '5', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '3819 Clayton Way', 'NULL', '109-555-0113', '2011-12-19', '5-10 Miles'], ['26107', '345', 'AW00026107', 'NULL', 'Alexis', 'NULL', 'Thomas', '0', '1965-10-10', 'M', 'NULL', 'F', 'alexis10@adventure-works.com', '130000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '6987 Buchanan Ct.', 'NULL', '150-555-0131', '2011-12-04', '0-1 Miles'], ['26108', '361', 'AW00026108', 'NULL', 'Dylan', 'D', 'Thompson', '0', '1971-05-02', 'S', 'NULL', 'M', 'dylan45@adventure-works.com', '170000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '6321 Laguna Street', 'NULL', '711-555-0114', '2014-01-05', '2-5 Miles'], ['26109', '359', 'AW00026109', 'NULL', 'Dalton', 'J', 'Rodriguez', '0', '1965-08-30', 'M', 'NULL', 'M', 'dalton19@adventure-works.com', '70000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7839 Liszt Way', 'NULL', '543-555-0143', '2013-10-22', '5-10 Miles'], ['26110', '612', 'AW00026110', 'NULL', 'James', 'NULL', 'Alexander', '0', '1960-05-04', 'M', 'NULL', 'M', 'james34@adventure-works.com', '70000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '9910 North Wateroak Ct', 'NULL', '847-555-0149', '2011-12-11', '1-2 Miles'], ['26111', '337', 'AW00026111', 'NULL', 'Sarah', 'S', 'Coleman', '0', '1960-01-07', 'M', 'NULL', 'F', 'sarah31@adventure-works.com', '70000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '5497 Corte Del Prado', 'NULL', '531-555-0177', '2011-12-18', '5-10 Miles'], ['26112', '644', 'AW00026112', 'NULL', 'Luke', 'NULL', 'Perry', '0', '1959-02-07', 'M', 'NULL', 'M', 'luke26@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1641 Overhill Rd', 'NULL', '248-555-0172', '2011-12-08', '5-10 Miles'], ['26113', '59', 'AW00026113', 'NULL', 'Caitlin', 'L', 'Rivera', '0', '1958-09-10', 'S', 'NULL', 'F', 'caitlin14@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3598 Walnut Place', 'NULL', '177-555-0164', '2012-08-04', '5-10 Miles'], ['26114', '299', 'AW00026114', 'NULL', 'Isaac', 'J', 'Peterson', '0', '1964-02-14', 'S', 'NULL', 'M', 'isaac4@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9187 Mario Way', 'NULL', '652-555-0117', '2011-12-12', '5-10 Miles'], ['26115', '49', 'AW00026115', 'NULL', 'Savannah', 'NULL', 'Mitchell', '0', '1959-04-23', 'S', 'NULL', 'F', 'savannah33@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '4712 Brook Way', 'NULL', '913-555-0111', '2012-08-29', '1-2 Miles'], ['26116', '607', 'AW00026116', 'NULL', 'Ashley', 'NULL', 'Martin', '0', '1959-01-02', 'S', 'NULL', 'F', 'ashley15@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '799 B St.', 'NULL', '647-555-0116', '2011-12-17', '1-2 Miles'], ['26117', '307', 'AW00026117', 'NULL', 'Samuel', 'NULL', 'Wright', '0', '1958-04-07', 'M', 'NULL', 'M', 'samuel50@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '7797 Richard Place', 'NULL', '894-555-0144', '2013-05-23', '5-10 Miles'], ['26118', '348', 'AW00026118', 'NULL', 'Ashley', 'A', 'Butler', '0', '1958-02-22', 'M', 'NULL', 'F', 'ashley41@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5243 Miguel Drive', 'NULL', '607-555-0162', '2013-06-18', '5-10 Miles'], ['26119', '300', 'AW00026119', 'NULL', 'Danielle', 'B', 'Gray', '0', '1962-11-14', 'M', 'NULL', 'F', 'danielle8@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6586 El Rancho Drive', 'NULL', '323-555-0151', '2013-12-15', '5-10 Miles'], ['26120', '307', 'AW00026120', 'NULL', 'Miguel', 'NULL', 'Lewis', '0', '1956-10-18', 'S', 'NULL', 'M', 'miguel21@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '7943 Walnut Ave', 'NULL', '850-555-0119', '2012-01-24', '1-2 Miles'], ['26121', '347', 'AW00026121', 'NULL', 'Madeline', 'K', 'Nelson', '0', '1957-01-13', 'M', 'NULL', 'F', 'madeline9@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '8499 San Marino Ct.', 'NULL', '522-555-0115', '2012-01-14', '1-2 Miles'], ['26122', '338', 'AW00026122', 'NULL', 'Lauren', 'NULL', 'Gonzales', '0', '1967-10-01', 'S', 'NULL', 'F', 'lauren63@adventure-works.com', '40000.00', '4', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '7765 Sunsine Drive', 'NULL', '885-555-0196', '2013-12-19', '5-10 Miles'], ['26123', '343', 'AW00026123', 'NULL', 'Isabella', 'R', 'Scott', '0', '1957-05-06', 'S', 'NULL', 'F', 'isabella44@adventure-works.com', '40000.00', '4', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9660 Algiers Drive', 'NULL', '126-555-0118', '2013-02-10', '5-10 Miles'], ['26124', '311', 'AW00026124', 'NULL', 'Riley', 'C', 'James', '0', '1966-09-05', 'M', 'NULL', 'F', 'riley27@adventure-works.com', '40000.00', '4', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2953 Fruitwood Drive', 'NULL', '458-555-0174', '2013-06-11', '5-10 Miles'], ['26125', '641', 'AW00026125', 'NULL', 'Sara', 'D', 'Roberts', '0', '1956-05-13', 'S', 'NULL', 'F', 'sara30@adventure-works.com', '40000.00', '4', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1121 Serrano Way', 'NULL', '434-555-0160', '2013-06-03', '5-10 Miles'], ['26126', '338', 'AW00026126', 'NULL', 'Alexandra', 'R', 'Bell', '0', '1960-10-22', 'M', 'NULL', 'F', 'alexandra7@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2944 North Main St.', 'NULL', '987-555-0181', '2013-12-11', '5-10 Miles'], ['26127', '608', 'AW00026127', 'NULL', 'Terry', 'G', 'Chander', '0', '1954-09-30', 'M', 'NULL', 'M', 'terry18@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '521 Hermosa', 'NULL', '998-555-0171', '2012-01-06', '5-10 Miles'], ['26128', '348', 'AW00026128', 'NULL', 'Samuel', 'NULL', 'Phillips', '0', '1960-05-23', 'S', 'NULL', 'M', 'samuel36@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1296 Banyan Way', 'NULL', '588-555-0175', '2013-07-07', '5-10 Miles'], ['26129', '2', 'AW00026129', 'NULL', 'Jodi', 'NULL', 'Anand', '0', '1969-10-02', 'M', 'NULL', 'F', 'jodi22@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '7102 Serrano Way', 'NULL', '1 (11) 500 555-0155', '2013-12-16', '0-1 Miles'], ['26130', '31', 'AW00026130', 'NULL', 'Ronnie', 'NULL', 'Liu', '0', '1975-11-10', 'M', 'NULL', 'M', 'ronnie3@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '6314 Minute Dr.', 'NULL', '1 (11) 500 555-0117', '2013-03-23', '10+ Miles'], ['26131', '39', 'AW00026131', 'NULL', 'Lawrence', 'C', 'Suarez', '0', '1969-04-24', 'M', 'NULL', 'M', 'lawrence18@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '9583 Silverwood Dr.', 'NULL', '1 (11) 500 555-0177', '2012-02-06', '5-10 Miles'], ['26132', '33', 'AW00026132', 'NULL', 'Shelby', 'NULL', 'Ward', '0', '1969-06-12', 'S', 'NULL', 'F', 'shelby13@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7355 Stillwater Ct', 'NULL', '1 (11) 500 555-0177', '2013-01-31', '5-10 Miles'], ['26133', '36', 'AW00026133', 'NULL', 'Jesse', 'NULL', 'Hall', '0', '1969-01-07', 'S', 'NULL', 'M', 'jesse46@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2539 Artnell Ct', 'NULL', '1 (11) 500 555-0110', '2012-02-08', '5-10 Miles'], ['26134', '24', 'AW00026134', 'NULL', 'Bridget', 'NULL', 'Goel', '0', '1983-10-29', 'M', 'NULL', 'F', 'bridget21@adventure-works.com', '90000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '7686 O St.', 'NULL', '1 (11) 500 555-0113', '2012-02-01', '1-2 Miles'], ['26135', '7', 'AW00026135', 'NULL', 'Erica', 'P', 'Sun', '0', '1972-08-20', 'M', 'NULL', 'F', 'erica13@adventure-works.com', '90000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '7141 Second Ave.', 'NULL', '1 (11) 500 555-0137', '2012-03-19', '1-2 Miles'], ['26136', '8', 'AW00026136', 'NULL', 'Tabitha', 'A', 'Gonzalez', '0', '1972-12-24', 'M', 'NULL', 'F', 'tabitha15@adventure-works.com', '90000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '6531 William Reed Dr.', 'NULL', '1 (11) 500 555-0177', '2013-08-10', '0-1 Miles'], ['26137', '26', 'AW00026137', 'NULL', 'Joshua', 'A', 'Clark', '0', '1972-10-05', 'M', 'NULL', 'M', 'joshua21@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '2467 Clearland Circle', 'NULL', '1 (11) 500 555-0149', '2013-09-06', '0-1 Miles'], ['26138', '10', 'AW00026138', 'NULL', 'Latoya', 'C', 'Chander', '0', '1967-09-06', 'M', 'NULL', 'F', 'latoya14@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6037 Daffodil Drive', 'NULL', '1 (11) 500 555-0146', '2012-03-29', '5-10 Miles'], ['26139', '8', 'AW00026139', 'NULL', 'Derek', 'A', 'Nara', '0', '1972-07-17', 'S', 'NULL', 'M', 'derek15@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7144 Augustine Drive', 'NULL', '1 (11) 500 555-0119', '2013-03-02', '5-10 Miles'], ['26140', '2', 'AW00026140', 'NULL', 'Emily', 'L', 'Long', '0', '1972-06-26', 'S', 'NULL', 'F', 'emily34@adventure-works.com', '100000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '9344 Vloching Circle', 'NULL', '1 (11) 500 555-0136', '2012-03-22', '1-2 Miles'], ['26141', '27', 'AW00026141', 'NULL', 'Jorge', 'NULL', 'Zhu', '0', '1983-03-23', 'S', 'NULL', 'M', 'jorge16@adventure-works.com', '110000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '3632 Ramsay Circle', 'NULL', '1 (11) 500 555-0125', '2013-02-07', '1-2 Miles'], ['26142', '34', 'AW00026142', 'NULL', 'Micheal', 'NULL', 'Dominguez', '0', '1966-06-25', 'M', 'NULL', 'M', 'micheal8@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1256 Orangewood Ave.', 'NULL', '1 (11) 500 555-0114', '2012-03-25', '5-10 Miles'], ['26143', '6', 'AW00026143', 'NULL', 'Michele', 'NULL', 'Mehta', '0', '1965-02-05', 'M', 'NULL', 'F', 'michele27@adventure-works.com', '90000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2809 Via Montana', 'NULL', '1 (11) 500 555-0174', '2013-07-04', '5-10 Miles'], ['26144', '39', 'AW00026144', 'NULL', 'Cassidy', 'N', 'Russell', '0', '1938-08-08', 'S', 'NULL', 'F', 'cassidy21@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6441 Clear Court', '#501', '1 (11) 500 555-0184', '2013-05-05', '5-10 Miles'], ['26145', '20', 'AW00026145', 'NULL', 'Calvin', 'W', 'Shen', '0', '1971-04-12', 'M', 'NULL', 'M', 'calvin2@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '2074 Bluefish Lane', 'NULL', '1 (11) 500 555-0168', '2013-07-07', '0-1 Miles'], ['26146', '25', 'AW00026146', 'NULL', 'Laura', 'L', 'Wang', '0', '1970-09-08', 'M', 'NULL', 'F', 'laura8@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '4006 Sunny Ave.', 'NULL', '1 (11) 500 555-0134', '2013-12-12', '1-2 Miles'], ['26147', '30', 'AW00026147', 'NULL', 'Ivan', 'A', 'Subram', '0', '1970-08-01', 'M', 'NULL', 'M', 'ivan9@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '9183 Glenmount Dr.', 'NULL', '1 (11) 500 555-0136', '2013-12-22', '1-2 Miles'], ['26148', '40', 'AW00026148', 'NULL', 'Michael', 'M', 'Thompson', '0', '1970-09-24', 'M', 'NULL', 'M', 'michael47@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '8084 Cardiff Drive', 'NULL', '1 (11) 500 555-0185', '2012-03-11', '1-2 Miles'], ['26149', '23', 'AW00026149', 'NULL', 'Casey', 'NULL', 'Chande', '0', '1969-09-11', 'S', 'NULL', 'F', 'casey16@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '8802 Valley Manor', 'NULL', '1 (11) 500 555-0111', '2013-10-04', '5-10 Miles'], ['26150', '12', 'AW00026150', 'NULL', 'Nancy', 'H', 'Rana', '0', '1975-10-24', 'S', 'NULL', 'F', 'nancy14@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1828 Blackburn Ct.', 'NULL', '1 (11) 500 555-0180', '2012-03-24', '0-1 Miles'], ['26151', '26', 'AW00026151', 'NULL', 'Austin', 'NULL', 'Lee', '0', '1964-08-04', 'M', 'NULL', 'M', 'austin37@adventure-works.com', '90000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5627 Crystal Avenue', 'NULL', '1 (11) 500 555-0163', '2013-06-25', '5-10 Miles'], ['26152', '11', 'AW00026152', 'NULL', 'Jaime', 'M', 'Gill', '0', '1974-08-09', 'S', 'NULL', 'F', 'jaime15@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '371 Woodside Way', 'NULL', '1 (11) 500 555-0153', '2012-03-01', '5-10 Miles'], ['26153', '21', 'AW00026153', 'NULL', 'Rebecca', 'M', 'Collins', '0', '1967-11-07', 'M', 'NULL', 'F', 'rebecca5@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4501 Terrace Road', '#60', '1 (11) 500 555-0136', '2012-03-09', '5-10 Miles'], ['26154', '22', 'AW00026154', 'NULL', 'Cory', 'NULL', 'Madan', '0', '1968-04-26', 'M', 'NULL', 'M', 'cory6@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9497 Richard Ave.', 'NULL', '1 (11) 500 555-0130', '2012-03-19', '5-10 Miles'], ['26155', '5', 'AW00026155', 'NULL', 'Chad', 'A', 'Xie', '0', '1973-09-18', 'M', 'NULL', 'M', 'chad4@adventure-works.com', '70000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '8753 Jacaranda Dr.', 'NULL', '1 (11) 500 555-0174', '2013-09-25', '5-10 Miles'], ['26156', '13', 'AW00026156', 'NULL', 'Shannon', 'NULL', 'Cai', '0', '1967-10-04', 'M', 'NULL', 'F', 'shannon20@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '674 Woodchuck Pl.', 'NULL', '1 (11) 500 555-0163', '2013-08-17', '5-10 Miles'], ['26157', '38', 'AW00026157', 'NULL', 'Brad', 'NULL', 'Xu', '0', '1966-08-11', 'M', 'NULL', 'M', 'brad5@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6869 Shakespeare Drive', 'NULL', '1 (11) 500 555-0190', '2013-09-27', '10+ Miles'], ['26158', '36', 'AW00026158', 'NULL', 'Lisa', 'NULL', 'Wu', '0', '1963-02-12', 'M', 'NULL', 'F', 'lisa10@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8426 Easley Dr.', 'NULL', '1 (11) 500 555-0127', '2013-05-02', '5-10 Miles'], ['26159', '18', 'AW00026159', 'NULL', 'Virginia', 'NULL', 'Raman', '0', '1963-01-07', 'S', 'NULL', 'F', 'virginia14@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3242 Coralie Drive', 'NULL', '1 (11) 500 555-0191', '2013-09-14', '5-10 Miles'], ['26160', '27', 'AW00026160', 'NULL', 'Leonard', 'NULL', 'Lal', '0', '1963-02-23', 'M', 'NULL', 'M', 'leonard10@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4644 St. Andrews Way', 'NULL', '1 (11) 500 555-0148', '2012-04-11', '5-10 Miles'], ['26161', '33', 'AW00026161', 'NULL', 'Wayne', 'A', 'Raji', '0', '1971-10-16', 'M', 'NULL', 'M', 'wayne23@adventure-works.com', '60000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8989 Twincreek Ct.', 'NULL', '1 (11) 500 555-0159', '2012-04-10', '5-10 Miles'], ['26162', '3', 'AW00026162', 'NULL', 'Toni', 'NULL', 'Malhotra', '0', '1966-02-07', 'M', 'NULL', 'F', 'toni4@adventure-works.com', '60000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7367 Wests Way', 'NULL', '1 (11) 500 555-0157', '2012-04-05', '0-1 Miles'], ['26163', '12', 'AW00026163', 'NULL', 'Autumn', 'O', 'Cai', '0', '1965-11-15', 'M', 'NULL', 'F', 'autumn20@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '8958 Carleton Street', 'NULL', '1 (11) 500 555-0114', '2013-03-24', '10+ Miles'], ['26164', '27', 'AW00026164', 'NULL', 'Krista', 'NULL', 'Vazquez', '0', '1971-12-09', 'M', 'NULL', 'F', 'krista14@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '2396 Mink Court', 'NULL', '1 (11) 500 555-0168', '2013-07-05', '5-10 Miles'], ['26165', '26', 'AW00026165', 'NULL', 'Alexandra', 'C', 'Flores', '0', '1962-08-26', 'M', 'NULL', 'F', 'alexandra35@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7354 Scramble Rd', 'NULL', '1 (11) 500 555-0173', '2012-03-30', '5-10 Miles'], ['26166', '37', 'AW00026166', 'NULL', 'Brett', 'NULL', 'Van', '0', '1961-09-04', 'M', 'NULL', 'M', 'brett3@adventure-works.com', '80000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '2035 Shelly Dr', 'NULL', '1 (11) 500 555-0151', '2013-12-24', '0-1 Miles'], ['26167', '17', 'AW00026167', 'NULL', 'Jaclyn', 'D', 'Zhao', '0', '1964-05-17', 'S', 'NULL', 'F', 'jaclyn11@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '8033 Gumwood', 'NULL', '1 (11) 500 555-0181', '2012-04-27', '5-10 Miles'], ['26168', '614', 'AW00026168', 'NULL', 'Ian', 'NULL', 'Campbell', '0', '1982-02-23', 'S', 'NULL', 'M', 'ian37@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '700 Oaxaca', '# 17', '487-555-0110', '2013-11-18', '5-10 Miles'], ['26169', '358', 'AW00026169', 'NULL', 'Alexandra', 'B', 'White', '0', '1981-08-30', 'M', 'NULL', 'F', 'alexandra76@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '287 D Bel Air Dr.', 'NULL', '943-555-0147', '2013-11-19', '5-10 Miles'], ['26170', '361', 'AW00026170', 'NULL', 'Jeremiah', 'C', 'Jenkins', '0', '1981-11-01', 'S', 'NULL', 'M', 'jeremiah29@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7356 Indigo Ct.', 'NULL', '191-555-0117', '2014-01-05', '0-1 Miles'], ['26171', '311', 'AW00026171', 'NULL', 'Randall', 'A', 'Ruiz', '0', '1981-03-02', 'M', 'NULL', 'M', 'randall3@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8412 Jorge', 'NULL', '727-555-0111', '2013-06-05', '5-10 Miles'], ['26172', '300', 'AW00026172', 'NULL', 'Madeline', 'NULL', 'Hernandez', '0', '1981-02-14', 'S', 'NULL', 'F', 'madeline16@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5863 Masonic Dr.', 'NULL', '465-555-0192', '2014-01-24', '0-1 Miles'], ['26173', '70', 'AW00026173', 'NULL', 'Ariana', 'NULL', 'Rivera', '0', '1982-04-01', 'M', 'NULL', 'F', 'ariana15@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5013 Military E', 'NULL', '117-555-0119', '2013-04-30', '5-10 Miles'], ['26174', '548', 'AW00026174', 'NULL', 'Isaac', 'NULL', 'Adams', '0', '1985-12-24', 'S', 'NULL', 'M', 'isaac36@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3146 Rose Street', 'NULL', '612-555-0118', '2012-01-08', '0-1 Miles'], ['26175', '542', 'AW00026175', 'NULL', 'Jose', 'NULL', 'Hughes', '0', '1986-02-14', 'M', 'NULL', 'M', 'jose34@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5307 Wildberry Court', 'NULL', '163-555-0158', '2013-03-17', '5-10 Miles'], ['26176', '62', 'AW00026176', 'NULL', 'Jason', 'NULL', 'Hayes', '0', '1986-02-13', 'S', 'NULL', 'M', 'jason20@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4849 C Olivera Rd', 'NULL', '233-555-0198', '2013-10-02', '5-10 Miles'], ['26177', '68', 'AW00026177', 'NULL', 'Nicole', 'S', 'Simmons', '0', '1986-04-06', 'M', 'NULL', 'F', 'nicole64@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5200 Pennsylvania Blvd', 'NULL', '746-555-0125', '2013-09-07', '0-1 Miles'], ['26178', '553', 'AW00026178', 'NULL', 'Paige', 'P', 'Price', '0', '1985-10-30', 'M', 'NULL', 'F', 'paige0@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6985 Pecan Street', '# 786', '857-555-0156', '2013-10-12', '5-10 Miles'], ['26179', '4', 'AW00026179', 'NULL', 'Ruth', 'R', 'Rodriguez', '0', '1951-12-08', 'S', 'NULL', 'F', 'ruth23@adventure-works.com', '10000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '872 Mark Twain Dr', 'NULL', '1 (11) 500 555-0159', '2013-03-26', '0-1 Miles'], ['26180', '56', 'AW00026180', 'NULL', 'Jonathan', 'NULL', 'Butler', '0', '1983-08-02', 'S', 'NULL', 'M', 'jonathan14@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3271 Black Walnut', 'NULL', '380-555-0156', '2013-09-14', '5-10 Miles'], ['26181', '616', 'AW00026181', 'NULL', 'Lucas', 'B', 'Ross', '0', '1983-08-16', 'M', 'NULL', 'M', 'lucas53@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5026 North 104th St.', 'NULL', '575-555-0128', '2013-04-11', '5-10 Miles'], ['26182', '28', 'AW00026182', 'NULL', 'Brittney', 'R', 'Liang', '0', '1943-10-08', 'S', 'NULL', 'F', 'brittney15@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '1551 Happy Valley Road', 'NULL', '1 (11) 500 555-0154', '2013-10-31', '0-1 Miles'], ['26183', '298', 'AW00026183', 'NULL', 'Allen', 'M', 'Arthur', '0', '1982-08-04', 'S', 'NULL', 'M', 'allen6@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '165 East Leland Road', 'NULL', '518-555-0180', '2012-01-24', '5-10 Miles'], ['26184', '611', 'AW00026184', 'NULL', 'Louis', 'M', 'Lal', '0', '1982-08-30', 'S', 'NULL', 'M', 'louis26@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6748 Alfred Ave.', 'NULL', '115-555-0161', '2013-04-07', '5-10 Miles'], ['26185', '59', 'AW00026185', 'NULL', 'Kaylee', 'C', 'Green', '0', '1982-07-21', 'S', 'NULL', 'F', 'kaylee37@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '478 McFaul Drive', 'NULL', '139-555-0163', '2013-06-02', '5-10 Miles'], ['26186', '4', 'AW00026186', 'NULL', 'Joanna', 'NULL', 'Gill', '0', '1950-10-22', 'S', 'NULL', 'F', 'joanna12@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7982 D Kiska Ct.', 'NULL', '1 (11) 500 555-0111', '2013-11-20', '5-10 Miles'], ['26187', '25', 'AW00026187', 'NULL', 'Hector', 'M', 'Gill', '0', '1945-11-19', 'S', 'NULL', 'M', 'hector11@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2176 Brown Street', 'NULL', '1 (11) 500 555-0116', '2012-04-10', '5-10 Miles'], ['26188', '26', 'AW00026188', 'NULL', 'Geoffrey', 'NULL', 'Sara', '0', '1946-04-07', 'M', 'NULL', 'M', 'geoffrey8@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7797 Richard Place', 'NULL', '1 (11) 500 555-0129', '2012-04-24', '5-10 Miles'], ['26189', '37', 'AW00026189', 'NULL', 'Pedro', 'NULL', 'Serrano', '0', '1945-09-30', 'M', 'NULL', 'M', 'pedro37@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '975 Madrid', 'NULL', '1 (11) 500 555-0170', '2012-04-29', '0-1 Miles'], ['26190', '7', 'AW00026190', 'NULL', 'Arthur', 'NULL', 'Suri', '0', '1947-02-12', 'S', 'NULL', 'M', 'arthur2@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '1345 La Luz', 'NULL', '1 (11) 500 555-0111', '2012-04-17', '0-1 Miles'], ['26191', '4', 'AW00026191', 'NULL', 'Jon', 'A', 'Wang', '0', '1948-09-07', 'M', 'NULL', 'M', 'jon20@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '6506 Gentrytown Drive', 'NULL', '1 (11) 500 555-0177', '2012-04-28', '0-1 Miles'], ['26192', '25', 'AW00026192', 'NULL', 'Noah', 'NULL', 'Hill', '0', '1949-01-08', 'M', 'NULL', 'M', 'noah39@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8743 Roanwood Way', 'NULL', '1 (11) 500 555-0148', '2012-04-26', '5-10 Miles'], ['26193', '300', 'AW00026193', 'NULL', 'Luis', 'M', 'Edwards', '0', '1981-07-31', 'S', 'NULL', 'M', 'luis34@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9167 Jennifer Way', 'NULL', '423-555-0186', '2014-01-02', '1-2 Miles'], ['26194', '315', 'AW00026194', 'NULL', 'Miguel', 'T', 'Brown', '0', '1982-06-10', 'S', 'NULL', 'M', 'miguel3@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6937 E. 42nd Street', 'NULL', '206-555-0114', '2013-12-06', '5-10 Miles'], ['26195', '343', 'AW00026195', 'NULL', 'Alyssa', 'S', 'Rivera', '0', '1981-09-16', 'S', 'NULL', 'F', 'alyssa34@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3217 Elm St', 'NULL', '188-555-0142', '2013-02-02', '5-10 Miles'], ['26196', '329', 'AW00026196', 'NULL', 'Gavin', 'NULL', 'Griffin', '0', '1980-11-17', 'S', 'NULL', 'M', 'gavin19@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8005 Spring Water St.', 'NULL', '865-555-0130', '2013-08-22', '5-10 Miles'], ['26197', '612', 'AW00026197', 'NULL', 'Marcus', 'S', 'Lopez', '0', '1980-08-30', 'S', 'NULL', 'M', 'marcus31@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9846 Golf Club Road', 'NULL', '410-555-0110', '2014-01-10', '1-2 Miles'], ['26198', '336', 'AW00026198', 'NULL', 'Alyssa', 'M', 'Taylor', '0', '1979-10-19', 'S', 'NULL', 'F', 'alyssa8@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6946 Candywood Ct.', 'NULL', '765-555-0134', '2013-09-02', '1-2 Miles'], ['26199', '385', 'AW00026199', 'NULL', 'Matthew', 'NULL', 'White', '0', '1980-04-04', 'S', 'NULL', 'M', 'matthew18@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4096 San Remo', 'NULL', '250-555-0184', '2013-01-31', '1-2 Miles'], ['26200', '53', 'AW00026200', 'NULL', 'Ian', 'V', 'Baker', '0', '1978-01-29', 'S', 'NULL', 'M', 'ian31@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8950 Olivera Rd', 'NULL', '166-555-0176', '2012-09-26', '5-10 Miles'], ['26201', '369', 'AW00026201', 'NULL', 'Dalton', 'P', 'Watson', '0', '1979-10-19', 'S', 'NULL', 'M', 'dalton70@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '6790 Falcon Dr.', 'NULL', '511-555-0114', '2012-01-10', '1-2 Miles'], ['26202', '54', 'AW00026202', 'NULL', 'Haley', 'T', 'Simmons', '0', '1974-02-11', 'M', 'NULL', 'F', 'haley34@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '2087 Plaza Del Rio', 'NULL', '744-555-0111', '2012-09-06', '0-1 Miles'], ['26203', '329', 'AW00026203', 'NULL', 'Nicole', 'NULL', 'Hall', '0', '1973-03-18', 'S', 'NULL', 'F', 'nicole24@adventure-works.com', '120000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '3022 Black Walnut Court', 'NULL', '132-555-0111', '2013-10-21', '1-2 Miles'], ['26204', '13', 'AW00026204', 'NULL', 'Christy', 'D', 'Gao', '0', '1976-09-01', 'M', 'NULL', 'F', 'christy13@adventure-works.com', '130000.00', '5', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Management', 'Gestión', 'Direction', '1', '4', '255 Steven Drive', 'NULL', '1 (11) 500 555-0122', '2012-04-10', '0-1 Miles'], ['26205', '242', 'AW00026205', 'NULL', 'Julio', 'NULL', 'Alvarez', '0', '1964-06-13', 'M', 'NULL', 'M', 'julio4@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9062 Melrose Place', 'NULL', '1 (11) 500 555-0161', '2013-11-29', '0-1 Miles'], ['26206', '257', 'AW00026206', 'NULL', 'Kurt', 'NULL', 'She', '0', '1964-01-02', 'M', 'NULL', 'M', 'kurt0@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6307 Greenbelt Way', 'NULL', '1 (11) 500 555-0111', '2013-12-23', '0-1 Miles'], ['26207', '262', 'AW00026207', 'NULL', 'Kelvin', 'A', 'Zeng', '0', '1963-12-11', 'S', 'NULL', 'M', 'kelvin41@adventure-works.com', '150000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '4991 Lindenwood Drive', 'NULL', '1 (11) 500 555-0135', '2013-12-23', '0-1 Miles'], ['26208', '273', 'AW00026208', 'NULL', 'Sharon', 'NULL', 'Anand', '0', '1964-02-16', 'S', 'NULL', 'F', 'sharon27@adventure-works.com', '160000.00', '2', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '246 Weatherly Way', 'NULL', '1 (11) 500 555-0162', '2013-06-25', '0-1 Miles'], ['26209', '161', 'AW00026209', 'NULL', 'Jan', 'R', 'Cox', '0', '1986-01-24', 'S', 'NULL', 'F', 'jan7@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Zeiter Weg 6664', 'NULL', '1 (11) 500 555-0196', '2013-09-09', '0-1 Miles'], ['26210', '229', 'AW00026210', 'NULL', 'Clinton', 'NULL', 'Gill', '0', '1986-03-08', 'S', 'NULL', 'M', 'clinton10@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '3828 Baltic Sea Ct', 'NULL', '1 (11) 500 555-0160', '2013-04-02', '0-1 Miles'], ['26211', '248', 'AW00026211', 'NULL', 'Bridget', 'NULL', 'Yuan', '0', '1986-02-14', 'S', 'NULL', 'F', 'bridget8@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '8375 Ambush Dr..', 'NULL', '1 (11) 500 555-0198', '2013-04-10', '1-2 Miles'], ['26212', '133', 'AW00026212', 'NULL', 'Summer', 'NULL', 'Martinez', '0', '1984-11-03', 'S', 'NULL', 'F', 'summer15@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Am Kreuz 555', 'NULL', '1 (11) 500 555-0169', '2013-10-05', '2-5 Miles'], ['26213', '214', 'AW00026213', 'NULL', 'Grant', 'A', 'Andersen', '0', '1983-10-07', 'S', 'NULL', 'M', 'grant15@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '48733, rue des Ecoles', 'NULL', '1 (11) 500 555-0113', '2013-11-13', '1-2 Miles'], ['26214', '238', 'AW00026214', 'NULL', 'Christy', 'NULL', 'Chande', '0', '1980-02-07', 'M', 'NULL', 'F', 'christy32@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '419 Mills Dr.', 'NULL', '1 (11) 500 555-0136', '2013-05-28', '1-2 Miles'], ['26215', '260', 'AW00026215', 'NULL', 'Grant', 'NULL', 'Shan', '0', '1980-05-01', 'M', 'NULL', 'M', 'grant12@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '5566 Banyan Circle', 'NULL', '1 (11) 500 555-0157', '2013-12-26', '0-1 Miles'], ['26216', '244', 'AW00026216', 'NULL', 'Ebony', 'K', 'Subram', '0', '1983-08-18', 'M', 'NULL', 'F', 'ebony13@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '2529 Clear Court', 'NULL', '1 (11) 500 555-0192', '2013-07-15', '1-2 Miles'], ['26217', '270', 'AW00026217', 'NULL', 'Pedro', 'C', 'Blanco', '0', '1983-11-13', 'M', 'NULL', 'M', 'pedro36@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '4312 Wintergreen Court', 'NULL', '1 (11) 500 555-0184', '2013-11-25', '1-2 Miles'], ['26218', '231', 'AW00026218', 'NULL', 'Barry', 'J', 'Patel', '0', '1978-01-29', 'S', 'NULL', 'M', 'barry3@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '9183 Via Del Sol', 'NULL', '1 (11) 500 555-0164', '2013-04-12', '0-1 Miles'], ['26219', '234', 'AW00026219', 'NULL', 'Summer', 'NULL', 'Suri', '0', '1979-02-24', 'M', 'NULL', 'F', 'summer0@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4352 Olive Ave.', 'NULL', '1 (11) 500 555-0152', '2013-05-17', '1-2 Miles'], ['26220', '234', 'AW00026220', 'NULL', 'Jonathan', 'NULL', 'Harris', '0', '1978-11-19', 'M', 'NULL', 'M', 'jonathan67@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5469 Piper Ridge Court', 'NULL', '1 (11) 500 555-0172', '2013-05-21', '1-2 Miles'], ['26221', '117', 'AW00026221', 'NULL', 'Kari', 'M', 'Chapman', '0', '1978-05-06', 'S', 'NULL', 'F', 'kari4@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Pascalstr 99', 'NULL', '1 (11) 500 555-0118', '2013-09-08', '2-5 Miles'], ['26222', '257', 'AW00026222', 'NULL', 'Carolyn', 'NULL', 'Madan', '0', '1978-01-30', 'S', 'NULL', 'F', 'carolyn7@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '4421 Alderwood Lane', 'NULL', '1 (11) 500 555-0139', '2013-03-30', '2-5 Miles'], ['26223', '172', 'AW00026223', 'NULL', 'Dominic', 'A', 'Sai', '0', '1978-01-18', 'S', 'NULL', 'M', 'dominic6@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Pappelallee 667', 'NULL', '1 (11) 500 555-0113', '2013-09-25', '1-2 Miles'], ['26224', '226', 'AW00026224', 'NULL', 'Henry', 'W', 'Gonzalez', '0', '1983-10-16', 'S', 'NULL', 'M', 'henry20@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '2, route de Marseille', 'NULL', '1 (11) 500 555-0123', '2013-03-04', '1-2 Miles'], ['26225', '207', 'AW00026225', 'NULL', 'Sergio', 'NULL', 'Srini', '0', '1983-08-08', 'S', 'NULL', 'M', 'sergio9@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '826, rue de Berri', 'NULL', '1 (11) 500 555-0114', '2013-03-02', '2-5 Miles'], ['26226', '159', 'AW00026226', 'NULL', 'Michele', 'C', 'Andersen', '0', '1978-05-22', 'M', 'NULL', 'F', 'michele13@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Zimmerstr 57', 'NULL', '1 (11) 500 555-0182', '2013-07-09', '0-1 Miles'], ['26227', '172', 'AW00026227', 'NULL', 'Joe', 'NULL', 'Gutierrez', '0', '1977-08-03', 'S', 'NULL', 'M', 'joe34@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Höhenstr 7477', 'NULL', '1 (11) 500 555-0197', '2013-10-28', '1-2 Miles'], ['26228', '173', 'AW00026228', 'NULL', 'Carolyn', 'B', 'Perez', '0', '1978-03-19', 'M', 'NULL', 'F', 'carolyn21@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Residenz Straße 744', 'NULL', '1 (11) 500 555-0113', '2013-10-14', '1-2 Miles'], ['26229', '147', 'AW00026229', 'NULL', 'Cara', 'L', 'Ye', '0', '1976-10-25', 'S', 'NULL', 'F', 'cara6@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Celler Weg 2949', 'NULL', '1 (11) 500 555-0196', '2013-10-26', '2-5 Miles'], ['26230', '156', 'AW00026230', 'NULL', 'Natasha', 'NULL', 'Ramos', '0', '1977-04-30', 'S', 'NULL', 'F', 'natasha17@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Brunnenstr 678', 'NULL', '1 (11) 500 555-0118', '2013-10-09', '2-5 Miles'], ['26231', '180', 'AW00026231', 'NULL', 'Maurice', 'NULL', 'Nara', '0', '1982-10-29', 'M', 'NULL', 'M', 'maurice17@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '92, boulevard d´Albi', 'NULL', '1 (11) 500 555-0122', '2013-11-15', '1-2 Miles'], ['26232', '234', 'AW00026232', 'NULL', 'Jay', 'NULL', 'Gomez', '0', '1981-01-17', 'M', 'NULL', 'M', 'jay30@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4070 Orange Street', 'NULL', '1 (11) 500 555-0113', '2013-04-23', '1-2 Miles'], ['26233', '154', 'AW00026233', 'NULL', 'Cristina', 'NULL', 'Chande', '0', '1975-08-08', 'M', 'NULL', 'F', 'cristina13@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Postfach 11 00 99', 'NULL', '1 (11) 500 555-0194', '2013-02-04', '1-2 Miles'], ['26234', '299', 'AW00026234', 'NULL', 'Antonio', 'L', 'Perry', '0', '1981-06-25', 'S', 'NULL', 'M', 'antonio7@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3250 Golden Meadow Dr.', 'NULL', '267-555-0111', '2012-01-11', '1-2 Miles'], ['26235', '64', 'AW00026235', 'NULL', 'Michelle', 'H', 'Watson', '0', '1981-02-03', 'S', 'NULL', 'F', 'michelle2@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '332 West Slough Rd', 'NULL', '150-555-0113', '2012-10-10', '1-2 Miles'], ['26236', '612', 'AW00026236', 'NULL', 'Isabella', 'A', 'Evans', '0', '1986-05-01', 'M', 'NULL', 'F', 'isabella33@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4832 Park Glen Ct.', 'NULL', '286-555-0187', '2014-01-16', '0-1 Miles'], ['26237', '311', 'AW00026237', 'NULL', 'Grace', 'M', 'Martin', '0', '1979-09-04', 'M', 'NULL', 'F', 'grace14@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2885 Hill Drive', 'NULL', '876-555-0124', '2013-02-22', '0-1 Miles'], ['26238', '343', 'AW00026238', 'NULL', 'Julia', 'A', 'Foster', '0', '1980-03-16', 'S', 'NULL', 'F', 'julia82@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4704 Tustin Court', 'NULL', '104-555-0122', '2012-01-08', '1-2 Miles'], ['26239', '545', 'AW00026239', 'NULL', 'Kaitlyn', 'NULL', 'Turner', '0', '1980-06-04', 'M', 'NULL', 'F', 'kaitlyn3@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8267 Park Tree Ct.', 'NULL', '396-555-0157', '2013-11-09', '0-1 Miles'], ['26240', '632', 'AW00026240', 'NULL', 'Katelyn', 'NULL', 'Evans', '0', '1979-12-17', 'S', 'NULL', 'F', 'katelyn22@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '6119 Grasswood Circle', 'NULL', '183-555-0169', '2013-04-27', '0-1 Miles'], ['26241', '352', 'AW00026241', 'NULL', 'James', 'M', 'Lal', '0', '1979-09-16', 'M', 'NULL', 'M', 'james45@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3196 Peachwillow', 'NULL', '793-555-0193', '2012-01-22', '1-2 Miles'], ['26242', '63', 'AW00026242', 'NULL', 'Isabella', 'NULL', 'Lewis', '0', '1980-11-18', 'M', 'NULL', 'F', 'isabella77@adventure-works.com', '40000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9518 Lakeview Place', 'NULL', '321-555-0140', '2013-04-21', '0-1 Miles'], ['26243', '542', 'AW00026243', 'NULL', 'Fernando', 'A', 'Gonzalez', '0', '1972-01-01', 'S', 'NULL', 'M', 'fernando33@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '9741 Forte Way', 'NULL', '257-555-0167', '2013-12-07', '0-1 Miles'], ['26244', '641', 'AW00026244', 'NULL', 'Jordan', 'NULL', 'Hughes', '0', '1972-01-30', 'M', 'NULL', 'M', 'jordan8@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '3212 Yellowood Lane', 'NULL', '755-555-0185', '2013-08-29', '0-1 Miles'], ['26245', '300', 'AW00026245', 'NULL', 'Devin', 'NULL', 'Murphy', '0', '1972-03-03', 'M', 'NULL', 'M', 'devin82@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9827 Vist Oak Dr.', 'NULL', '139-555-0191', '2012-01-27', '1-2 Miles'], ['26246', '302', 'AW00026246', 'NULL', 'Jade', 'T', 'Bell', '0', '1972-03-14', 'S', 'NULL', 'F', 'jade11@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '2405 Mission Drive', 'NULL', '871-555-0153', '2013-10-04', '0-1 Miles'], ['26247', '307', 'AW00026247', 'NULL', 'Sophia', 'NULL', 'Turner', '0', '1977-05-20', 'M', 'NULL', 'F', 'sophia3@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1646 Seal Way', 'NULL', '340-555-0188', '2012-01-11', '1-2 Miles'], ['26248', '542', 'AW00026248', 'NULL', 'Thomas', 'A', 'Lewis', '0', '1959-09-07', 'M', 'NULL', 'M', 'thomas79@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '1940 Nulty Drive', 'NULL', '356-555-0161', '2013-07-06', '0-1 Miles'], ['26249', '641', 'AW00026249', 'NULL', 'Thomas', 'B', 'Ross', '0', '1960-03-30', 'M', 'NULL', 'M', 'thomas5@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1992 Hidden Oak Ct', 'NULL', '144-555-0120', '2012-01-09', '2-5 Miles'], ['26250', '553', 'AW00026250', 'NULL', 'Miguel', 'D', 'Simmons', '0', '1965-05-06', 'S', 'NULL', 'M', 'miguel61@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '1', '901 Newport Drive', 'NULL', '194-555-0118', '2013-02-14', '5-10 Miles'], ['26251', '300', 'AW00026251', 'NULL', 'Cedric', 'NULL', 'Huang', '0', '1959-11-08', 'S', 'NULL', 'M', 'cedric6@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'P. O. Box # 9257', 'NULL', '542-555-0175', '2013-12-12', '5-10 Miles'], ['26252', '336', 'AW00026252', 'NULL', 'Morgan', 'R', 'Garcia', '0', '1960-04-23', 'M', 'NULL', 'F', 'morgan38@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6604 Langley Ct.', 'NULL', '522-555-0180', '2012-01-06', '1-2 Miles'], ['26253', '548', 'AW00026253', 'NULL', 'Dalton', 'N', 'Wright', '0', '1961-01-04', 'S', 'NULL', 'M', 'dalton26@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7371 Cali', 'NULL', '769-555-0175', '2013-06-11', '1-2 Miles'], ['26254', '536', 'AW00026254', 'NULL', 'Seth', 'A', 'Henderson', '0', '1966-07-09', 'S', 'NULL', 'M', 'seth53@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '8501 Bonifacio St.', 'NULL', '159-555-0189', '2013-07-14', '1-2 Miles'], ['26255', '543', 'AW00026255', 'NULL', 'Cameron', 'NULL', 'Alexander', '0', '1966-09-09', 'S', 'NULL', 'M', 'cameron14@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2377 Joyce Dr', 'NULL', '399-555-0196', '2013-10-05', '0-1 Miles'], ['26256', '607', 'AW00026256', 'NULL', 'Ronald', 'NULL', 'Rana', '0', '1961-01-10', 'S', 'NULL', 'M', 'ronald13@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '8974 F Mt Hood Circle', 'NULL', '722-555-0126', '2013-10-09', '1-2 Miles'], ['26257', '302', 'AW00026257', 'NULL', 'Hector', 'NULL', 'Jimenez', '0', '1960-07-24', 'S', 'NULL', 'M', 'hector3@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5185 Relis Valley Road', 'NULL', '922-555-0190', '2013-09-03', '0-1 Miles'], ['26258', '547', 'AW00026258', 'NULL', 'Angelica', 'E', 'Powell', '0', '1966-02-21', 'S', 'NULL', 'F', 'angelica8@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '935 Vista Oak Dr', 'NULL', '330-555-0118', '2013-10-06', '1-2 Miles'], ['26259', '634', 'AW00026259', 'NULL', 'Hunter', 'NULL', 'Bryant', '0', '1966-02-21', 'S', 'NULL', 'M', 'hunter15@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '1', '3265 E. 62nd Street', 'NULL', '250-555-0115', '2013-04-01', '10+ Miles'], ['26260', '641', 'AW00026260', 'NULL', 'Ryan', 'G', 'Jackson', '0', '1971-11-13', 'S', 'NULL', 'M', 'ryan51@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '2', '630 Plymouth Drive', 'NULL', '660-555-0172', '2013-05-20', '1-2 Miles'], ['26261', '553', 'AW00026261', 'NULL', 'Brooke', 'J', 'Watson', '0', '1961-11-05', 'S', 'NULL', 'F', 'brooke0@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6700 Corte Del Sol', 'NULL', '517-555-0140', '2013-04-20', '1-2 Miles'], ['26262', '626', 'AW00026262', 'NULL', 'Hannah', 'C', 'Thompson', '0', '1967-06-15', 'S', 'NULL', 'F', 'hannah13@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6049 Dalis Dr.', 'NULL', '754-555-0165', '2013-06-17', '0-1 Miles'], ['26263', '547', 'AW00026263', 'NULL', 'Kaitlyn', 'NULL', 'Collins', '0', '1961-10-18', 'S', 'NULL', 'F', 'kaitlyn2@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1413 Winter Drive', 'NULL', '271-555-0158', '2013-03-16', '1-2 Miles'], ['26264', '383', 'AW00026264', 'NULL', 'Elijah', 'NULL', 'Lal', '0', '1962-02-20', 'S', 'NULL', 'M', 'elijah3@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3140 Gingham Way', 'NULL', '222-555-0147', '2013-03-21', '1-2 Miles'], ['26265', '536', 'AW00026265', 'NULL', 'Tammy', 'V', 'Lopez', '0', '1962-04-09', 'S', 'NULL', 'F', 'tammy17@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2131 Covington Court', 'NULL', '161-555-0181', '2013-11-01', '1-2 Miles'], ['26266', '609', 'AW00026266', 'NULL', 'Brent', 'E', 'Gao', '0', '1962-03-22', 'M', 'NULL', 'M', 'brent14@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '717 Ridge Park Drive', 'NULL', '146-555-0119', '2013-05-23', '0-1 Miles'], ['26267', '337', 'AW00026267', 'NULL', 'Matthew', 'F', 'Martin', '0', '1961-10-22', 'M', 'NULL', 'M', 'matthew20@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1960 Via Catanzaro', 'NULL', '873-555-0194', '2013-10-20', '0-1 Miles'], ['26268', '299', 'AW00026268', 'NULL', 'Jonathon', 'NULL', 'Romero', '0', '1963-02-23', 'M', 'NULL', 'M', 'jonathon6@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5960 Springfield Drive', 'NULL', '116-555-0166', '2013-05-04', '0-1 Miles'], ['26269', '51', 'AW00026269', 'NULL', 'Chloe', 'L', 'Moore', '0', '1963-01-03', 'M', 'NULL', 'F', 'chloe41@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2344 Mt. Wilson Way', 'NULL', '238-555-0141', '2013-08-23', '1-2 Miles'], ['26270', '64', 'AW00026270', 'NULL', 'Hailey', 'R', 'Bailey', '0', '1962-09-05', 'S', 'NULL', 'F', 'hailey7@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4116 Candelero Place', 'NULL', '580-555-0133', '2013-07-25', '1-2 Miles'], ['26271', '359', 'AW00026271', 'NULL', 'Bailey', 'NULL', 'Baker', '0', '1963-03-19', 'M', 'NULL', 'F', 'bailey36@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1291 Arguello Blvd.', 'NULL', '111-555-0111', '2013-07-22', '0-1 Miles'], ['26272', '648', 'AW00026272', 'NULL', 'Kelly', 'NULL', 'Hughes', '0', '1968-05-14', 'M', 'NULL', 'F', 'kelly16@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2242 Panoramic Ave', 'NULL', '389-555-0149', '2013-02-06', '1-2 Miles'], ['26273', '612', 'AW00026273', 'NULL', 'Chelsea', 'L', 'Suri', '0', '1973-09-12', 'M', 'NULL', 'F', 'chelsea0@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '8029 Golden Meadow Dr.', 'NULL', '943-555-0139', '2013-06-30', '1-2 Miles'], ['26274', '642', 'AW00026274', 'NULL', 'Jennifer', 'L', 'Wood', '0', '1962-10-22', 'M', 'NULL', 'F', 'jennifer77@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5339 Cashew Street', 'NULL', '113-555-0113', '2013-05-24', '0-1 Miles'], ['26275', '648', 'AW00026275', 'NULL', 'Miguel', 'NULL', 'Johnson', '0', '1964-05-27', 'M', 'NULL', 'M', 'miguel0@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '7070 W. Watson Court', 'NULL', '774-555-0187', '2013-07-10', '0-1 Miles'], ['26276', '536', 'AW00026276', 'NULL', 'Heather', 'NULL', 'Huang', '0', '1963-08-08', 'M', 'NULL', 'F', 'heather5@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1275 West Street', 'NULL', '721-555-0116', '2012-01-27', '1-2 Miles'], ['26277', '623', 'AW00026277', 'NULL', 'Jacqueline', 'NULL', 'Hughes', '0', '1964-05-23', 'S', 'NULL', 'F', 'jacqueline12@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1726 Chestnut', 'NULL', '904-555-0153', '2012-02-13', '1-2 Miles'], ['26278', '607', 'AW00026278', 'NULL', 'Jon', 'NULL', 'Wu', '0', '1975-04-03', 'S', 'NULL', 'M', 'jon26@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '804 Skycrest Drive', 'NULL', '134-555-0146', '2013-02-03', '0-1 Miles'], ['26279', '54', 'AW00026279', 'NULL', 'Trinity', 'J', 'Sanchez', '0', '1970-12-03', 'S', 'NULL', 'F', 'trinity20@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '619 Concord Ct.', 'NULL', '876-555-0130', '2012-11-24', '1-2 Miles'], ['26280', '312', 'AW00026280', 'NULL', 'Jackson', 'NULL', 'Jenkins', '0', '1964-10-21', 'S', 'NULL', 'M', 'jackson9@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '1415 Edwards Ave', 'NULL', '418-555-0130', '2012-02-09', '1-2 Miles'], ['26281', '383', 'AW00026281', 'NULL', 'Ian', 'D', 'Alexander', '0', '1964-11-21', 'S', 'NULL', 'M', 'ian59@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5240 Premier Pl.', 'NULL', '233-555-0168', '2012-02-10', '1-2 Miles'], ['26282', '612', 'AW00026282', 'NULL', 'Leonard', 'R', 'Jai', '0', '1977-07-04', 'S', 'NULL', 'M', 'leonard12@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '4299 Vernal Drive', '# 132', '676-555-0120', '2013-12-19', '0-1 Miles'], ['26283', '385', 'AW00026283', 'NULL', 'Jeremiah', 'S', 'Diaz', '0', '1983-10-16', 'S', 'NULL', 'M', 'jeremiah37@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '267 Baywood Dr.', 'NULL', '111-555-0167', '2012-02-01', '1-2 Miles'], ['26284', '616', 'AW00026284', 'NULL', 'Garrett', 'NULL', 'Ward', '0', '1977-08-22', 'S', 'NULL', 'M', 'garrett8@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '2215 Taylor Box #108', 'NULL', '783-555-0191', '2013-10-05', '0-1 Miles'], ['26285', '618', 'AW00026285', 'NULL', 'Kayla', 'NULL', 'Hayes', '0', '1978-02-13', 'S', 'NULL', 'F', 'kayla47@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2308 Mi Casa Court', 'NULL', '350-555-0114', '2012-02-13', '1-2 Miles'], ['26286', '369', 'AW00026286', 'NULL', 'Evan', 'J', 'Phillips', '0', '1978-06-06', 'S', 'NULL', 'M', 'evan30@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7455 Wellington Ave.', 'NULL', '589-555-0170', '2012-02-12', '1-2 Miles'], ['26287', '543', 'AW00026287', 'NULL', 'Elijah', 'NULL', 'Baker', '0', '1977-12-29', 'S', 'NULL', 'M', 'elijah36@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '6986 Saddlewood', 'NULL', '181-555-0123', '2013-05-16', '0-1 Miles'], ['26288', '301', 'AW00026288', 'NULL', 'Alexandra', 'H', 'Russell', '0', '1978-11-07', 'M', 'NULL', 'F', 'alexandra41@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8809 Diablo View Road', 'NULL', '780-555-0185', '2014-01-13', '0-1 Miles'], ['26289', '302', 'AW00026289', 'NULL', 'Samuel', 'NULL', 'Simmons', '0', '1984-02-13', 'M', 'NULL', 'M', 'samuel14@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7318 Lavene Way', 'NULL', '991-555-0133', '2013-06-25', '0-1 Miles'], ['26290', '383', 'AW00026290', 'NULL', 'Noah', 'L', 'Chen', '0', '1978-12-30', 'S', 'NULL', 'M', 'noah22@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2577 Dover Way', 'NULL', '324-555-0171', '2012-02-06', '1-2 Miles'], ['26291', '337', 'AW00026291', 'NULL', 'Blake', 'R', 'Walker', '0', '1977-03-05', 'S', 'NULL', 'M', 'blake23@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4155 Star Dr', 'NULL', '241-555-0163', '2013-03-11', '1-2 Miles'], ['26292', '609', 'AW00026292', 'Mr.', 'Marty', 'E.', 'Simpson', '0', '1977-02-22', 'M', 'NULL', 'F', 'marty0@adventure-works.com', '70000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1937 Sycamore Drive', 'NULL', '288-555-0100', '2012-02-23', '0-1 Miles'], ['26293', '611', 'AW00026293', 'NULL', 'Casey', 'G', 'Carlson', '0', '1977-01-05', 'M', 'NULL', 'M', 'casey42@adventure-works.com', '70000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '514 Roehlidge Lane', 'NULL', '170-555-0110', '2012-01-29', '1-2 Miles'], ['26294', '51', 'AW00026294', 'NULL', 'Andrew', 'F', 'Johnson', '0', '1977-10-30', 'M', 'NULL', 'M', 'andrew10@adventure-works.com', '50000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '8408 Via Del Sol', 'NULL', '166-555-0114', '2012-10-31', '0-1 Miles'], ['26295', '611', 'AW00026295', 'NULL', 'Toni', 'K', 'Kapoor', '0', '1977-07-21', 'M', 'NULL', 'F', 'toni1@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4480 Las Trampas Road', 'NULL', '694-555-0129', '2012-02-16', '2-5 Miles'], ['26296', '618', 'AW00026296', 'NULL', 'Grace', 'M', 'Simmons', '0', '1977-12-21', 'M', 'NULL', 'F', 'grace63@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3071 Asilomar', 'NULL', '271-555-0127', '2012-02-05', '2-5 Miles'], ['26297', '543', 'AW00026297', 'NULL', 'Jeremiah', 'NULL', 'Lopez', '0', '1983-12-23', 'M', 'NULL', 'M', 'jeremiah15@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7186 View Dr.', 'NULL', '413-555-0138', '2012-02-22', '2-5 Miles'], ['26298', '627', 'AW00026298', 'NULL', 'Jasmine', 'R', 'Peterson', '0', '1983-01-07', 'M', 'NULL', 'F', 'jasmine33@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5898 Mt. Dell', 'NULL', '894-555-0182', '2012-02-11', '2-5 Miles'], ['26299', '642', 'AW00026299', 'NULL', 'Y.', 'L.', 'Yong', '0', '1983-07-24', 'S', 'NULL', 'M', 'y0@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '5387 La Orinda Pl.', 'NULL', '856-555-0157', '2012-02-15', '0-1 Miles'], ['26300', '298', 'AW00026300', 'NULL', 'Audrey', 'D', 'Ortega', '0', '1977-10-13', 'S', 'NULL', 'F', 'audrey24@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7581 Whiteaben Drive', 'NULL', '230-555-0144', '2012-02-09', '2-5 Miles'], ['26301', '334', 'AW00026301', 'NULL', 'Isaiah', 'NULL', 'Hall', '0', '1977-07-14', 'S', 'NULL', 'M', 'isaiah46@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '362 Richard Place', 'NULL', '257-555-0112', '2012-02-14', '0-1 Miles'], ['26302', '314', 'AW00026302', 'NULL', 'James', 'L', 'Jackson', '0', '1976-01-09', 'M', 'NULL', 'M', 'james84@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8328 Melinda Court', 'NULL', '589-555-0146', '2012-01-30', '0-1 Miles'], ['26303', '298', 'AW00026303', 'NULL', 'Devon', 'M', 'Pal', '0', '1981-05-12', 'M', 'NULL', 'M', 'devon10@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '866, rue Basse-du-Rocher', 'NULL', '790-555-0117', '2012-02-24', '2-5 Miles'], ['26304', '609', 'AW00026304', 'NULL', 'Anna', 'NULL', 'Lewis', '0', '1975-12-30', 'M', 'NULL', 'F', 'anna59@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '283 Cadloni', 'NULL', '115-555-0179', '2012-02-28', '2-5 Miles'], ['26305', '543', 'AW00026305', 'NULL', 'Julia', 'E', 'Rogers', '0', '1980-12-08', 'S', 'NULL', 'F', 'julia49@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '5461 Sunview Terrace', 'NULL', '816-555-0112', '2012-02-19', '0-1 Miles'], ['26306', '322', 'AW00026306', 'NULL', 'Kyle', 'J', 'Holt', '0', '1980-04-22', 'S', 'NULL', 'M', 'kyle6@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '6685 Norris Court', 'NULL', '464-555-0163', '2012-03-20', '0-1 Miles'], ['26307', '310', 'AW00026307', 'NULL', 'Alexander', 'NULL', 'Miller', '0', '1975-02-22', 'M', 'NULL', 'M', 'alexander11@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7264 St. Peter Court', 'NULL', '126-555-0184', '2012-03-08', '2-5 Miles'], ['26308', '644', 'AW00026308', 'NULL', 'Sara', 'NULL', 'Kelly', '0', '1980-09-13', 'S', 'NULL', 'F', 'sara3@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '8713 MapleView Drive', 'NULL', '715-555-0144', '2012-03-09', '0-1 Miles'], ['26309', '315', 'AW00026309', 'NULL', 'Julian', 'NULL', 'Powell', '0', '1980-07-19', 'S', 'NULL', 'M', 'julian10@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '4794 Cowell Road', 'NULL', '946-555-0127', '2012-03-09', '0-1 Miles'], ['26310', '54', 'AW00026310', 'NULL', 'Kaitlyn', 'J', 'Garcia', '0', '1975-03-22', 'S', 'NULL', 'F', 'kaitlyn39@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '589 Ashwood Dr.', 'NULL', '469-555-0180', '2012-10-29', '0-1 Miles'], ['26311', '609', 'AW00026311', 'NULL', 'Brenda', 'S', 'Rodriguez', '0', '1977-02-17', 'S', 'NULL', 'F', 'brenda23@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5341 Arnold Dr.', 'NULL', '285-555-0118', '2012-03-25', '2-5 Miles'], ['26312', '632', 'AW00026312', 'NULL', 'Elizabeth', 'D', 'Wood', '0', '1976-12-28', 'M', 'NULL', 'F', 'elizabeth31@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4982 Katharyn Drive', 'NULL', '566-555-0177', '2012-03-19', '2-5 Miles'], ['26313', '335', 'AW00026313', 'NULL', 'Dalton', 'NULL', 'Simmons', '0', '1982-10-29', 'M', 'NULL', 'M', 'dalton61@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5856 Onley Dr.', 'NULL', '415-555-0115', '2012-03-19', '2-5 Miles'], ['26314', '369', 'AW00026314', 'NULL', 'Angel', 'M', 'Murphy', '0', '1923-11-16', 'S', 'NULL', 'M', 'angel14@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2414 Darlene Dr.', 'NULL', '470-555-0194', '2013-05-15', '2-5 Miles'], ['26315', '361', 'AW00026315', 'NULL', 'Taylor', 'P', 'Peterson', '0', '1980-05-11', 'S', 'NULL', 'F', 'taylor17@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '2137 Birchwood Dr', 'NULL', '291-555-0119', '2012-03-17', '0-1 Miles'], ['26316', '59', 'AW00026316', 'NULL', 'Stephanie', 'NULL', 'Hughes', '0', '1975-04-06', 'S', 'NULL', 'F', 'stephanie38@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5692 Fish Drive', 'NULL', '452-555-0184', '2012-02-16', '2-5 Miles'], ['26317', '634', 'AW00026317', 'Ms.', 'Amanda', 'NULL', 'Wright', '0', '1974-11-15', 'M', 'NULL', 'F', 'amanda63@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5474 Danielle Court', 'NULL', '435-555-0162', '2012-03-27', '2-5 Miles'], ['26318', '62', 'AW00026318', 'NULL', 'Caleb', 'A', 'Parker', '0', '1979-04-20', 'M', 'NULL', 'M', 'caleb28@adventure-works.com', '40000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '5243 Harmony Way', 'NULL', '593-555-0116', '2013-08-16', '10+ Miles'], ['26319', '368', 'AW00026319', 'NULL', 'Dylan', 'M', 'Martinez', '0', '1974-05-17', 'S', 'NULL', 'M', 'dylan47@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '2008 Storey Lane', 'NULL', '277-555-0194', '2012-03-26', '0-1 Miles'], ['26320', '338', 'AW00026320', 'NULL', 'Brianna', 'M', 'Diaz', '0', '1973-09-18', 'M', 'NULL', 'F', 'brianna67@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1349 Palm Ave.', 'NULL', '939-555-0162', '2012-02-29', '2-5 Miles'], ['26321', '43', 'AW00026321', 'NULL', 'Randall', 'NULL', 'Blanco', '0', '1979-11-16', 'M', 'NULL', 'M', 'randall17@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8308 Roskelley Drive', 'NULL', '171-555-0191', '2012-04-18', '2-5 Miles'], ['26322', '618', 'AW00026322', 'NULL', 'Justin', 'NULL', 'Zhang', '0', '1978-09-10', 'S', 'NULL', 'M', 'justin21@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4250 Park Tree Ct', 'NULL', '431-555-0179', '2012-03-22', '2-5 Miles'], ['26323', '536', 'AW00026323', 'NULL', 'Dwayne', 'A', 'Ruiz', '0', '1976-05-06', 'M', 'NULL', 'M', 'dwayne2@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1897 Northridge Road', 'NULL', '756-555-0113', '2013-11-16', '2-5 Miles'], ['26324', '634', 'AW00026324', 'NULL', 'Faith', 'NULL', 'Brooks', '0', '1976-05-06', 'S', 'NULL', 'F', 'faith23@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '712 Sweetwater Drive', 'NULL', '146-555-0195', '2012-03-08', '0-1 Miles'], ['26325', '641', 'AW00026325', 'NULL', 'Tyler', 'A', 'Robinson', '0', '1981-10-19', 'M', 'NULL', 'M', 'tyler16@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8069 Vine Hill Way', 'NULL', '936-555-0175', '2012-03-25', '2-5 Miles'], ['26326', '307', 'AW00026326', 'NULL', 'Trevor', 'NULL', 'Washington', '0', '1981-07-02', 'M', 'NULL', 'M', 'trevor13@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '522 Fieldbrook Pl.', 'NULL', '107-555-0181', '2012-03-12', '2-5 Miles'], ['26327', '315', 'AW00026327', 'NULL', 'Jack', 'NULL', 'Jai', '0', '1975-10-31', 'M', 'NULL', 'M', 'jack33@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1174 Ayers Rd', 'NULL', '436-555-0167', '2012-03-20', '2-5 Miles'], ['26328', '355', 'AW00026328', 'NULL', 'Edward', 'L', 'Anderson', '0', '1975-10-06', 'S', 'NULL', 'M', 'edward32@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '9489 Anderson Way', 'NULL', '186-555-0144', '2012-04-15', '0-1 Miles'], ['26329', '322', 'AW00026329', 'NULL', 'Angelica', 'NULL', 'Bryant', '0', '1978-05-17', 'M', 'NULL', 'F', 'angelica17@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7344 Raymond Dr', 'NULL', '910-555-0188', '2012-04-04', '2-5 Miles'], ['26330', '611', 'AW00026330', 'NULL', 'Marcus', 'H', 'Diaz', '0', '1972-10-30', 'S', 'NULL', 'M', 'marcus71@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1534 Lanton Ave', 'NULL', '165-555-0185', '2012-04-03', '0-1 Miles'], ['26331', '611', 'AW00026331', 'NULL', 'Melanie', 'K', 'Powell', '0', '1973-03-03', 'M', 'NULL', 'F', 'melanie24@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3187 Concord Place', 'NULL', '150-555-0195', '2012-04-16', '2-5 Miles'], ['26332', '543', 'AW00026332', 'NULL', 'Aaron', 'W', 'Mitchell', '0', '1977-09-22', 'M', 'NULL', 'M', 'aaron44@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '3773 Lakefield Place', 'NULL', '116-555-0185', '2013-08-16', '0-1 Miles'], ['26333', '547', 'AW00026333', 'NULL', 'Alexandria', 'NULL', 'Alexander', '0', '1971-10-29', 'M', 'NULL', 'F', 'alexandria19@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3223 Virgina Hills Drive', 'NULL', '714-555-0159', '2013-05-06', '2-5 Miles'], ['26334', '298', 'AW00026334', 'NULL', 'Ross', 'NULL', 'Blanco', '0', '1971-10-02', 'S', 'NULL', 'M', 'ross33@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9530 Vine Lane', 'NULL', '561-555-0179', '2013-09-28', '2-5 Miles'], ['26335', '301', 'AW00026335', 'NULL', 'April', 'C', 'Pal', '0', '1971-11-06', 'M', 'NULL', 'F', 'april10@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2214 Solano', 'NULL', '472-555-0185', '2013-04-12', '2-5 Miles'], ['26336', '315', 'AW00026336', 'NULL', 'Noah', 'D', 'Brown', '0', '1972-02-22', 'M', 'NULL', 'M', 'noah61@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8741 Clark Creek Lane', 'NULL', '230-555-0146', '2014-01-17', '2-5 Miles'], ['26337', '611', 'AW00026337', 'NULL', 'Jennifer', 'NULL', 'Gonzalez', '0', '1977-05-24', 'M', 'NULL', 'F', 'jennifer20@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5539 Choctaw Court', 'NULL', '944-555-0159', '2013-04-25', '2-5 Miles'], ['26338', '348', 'AW00026338', 'NULL', 'Anna', 'NULL', 'Coleman', '0', '1971-10-07', 'M', 'NULL', 'F', 'anna30@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4311 Clay Rd', 'NULL', '210-555-0174', '2012-04-11', '2-5 Miles'], ['26339', '644', 'AW00026339', 'NULL', 'Cindy', 'NULL', 'James', '0', '1972-04-07', 'S', 'NULL', 'F', 'cindy26@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2921 Glen Wood Drive', 'NULL', '458-555-0190', '2012-04-17', '2-5 Miles'], ['26340', '631', 'AW00026340', 'NULL', 'Melissa', 'A', 'Morris', '0', '1980-03-16', 'M', 'NULL', 'F', 'melissa41@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '4838 Fish Dr.', 'NULL', '768-555-0114', '2013-02-22', '0-1 Miles'], ['26341', '632', 'AW00026341', 'NULL', 'Olivia', 'R', 'Taylor', '0', '1974-09-19', 'M', 'NULL', 'F', 'olivia8@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '5806 Old Oak Dr.', 'NULL', '438-555-0169', '2013-06-13', '0-1 Miles'], ['26342', '343', 'AW00026342', 'NULL', 'Eduardo', 'M', 'Griffin', '0', '1980-08-12', 'S', 'NULL', 'M', 'eduardo64@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '742 Grasswood Ct.', 'NULL', '168-555-0117', '2012-04-16', '0-1 Miles'], ['26343', '641', 'AW00026343', 'NULL', 'Mariah', 'NULL', 'Washington', '0', '1976-09-11', 'S', 'NULL', 'F', 'mariah18@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1271 Yosemite Circle', 'NULL', '764-555-0112', '2012-04-04', '0-1 Miles'], ['26344', '338', 'AW00026344', 'NULL', 'Natalie', 'K', 'Hughes', '0', '1970-12-24', 'S', 'NULL', 'F', 'natalie34@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5473 Hillridge Way', 'NULL', '839-555-0114', '2012-04-20', '2-5 Miles'], ['26345', '345', 'AW00026345', 'NULL', 'Connor', 'NULL', 'Baker', '0', '1971-01-07', 'M', 'NULL', 'M', 'connor37@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5664 Wilke Drive', 'NULL', '195-555-0150', '2013-08-08', '0-1 Miles'], ['26346', '300', 'AW00026346', 'NULL', 'Emmanuel', 'NULL', 'Suri', '0', '1971-03-14', 'M', 'NULL', 'M', 'emmanuel0@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '377 Trees Drive', 'NULL', '868-555-0144', '2013-06-23', '10+ Miles'], ['26347', '611', 'AW00026347', 'NULL', 'Alvin', 'S', 'Raji', '0', '1971-06-01', 'M', 'NULL', 'M', 'alvin42@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '9969 Coldwater Drive', 'NULL', '531-555-0122', '2013-10-22', '10+ Miles'], ['26348', '53', 'AW00026348', 'NULL', 'Logan', 'NULL', 'Moore', '0', '1970-09-10', 'M', 'NULL', 'M', 'logan59@adventure-works.com', '50000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2096 Estudillo Street', 'NULL', '880-555-0154', '2013-02-08', '2-5 Miles'], ['26349', '641', 'AW00026349', 'NULL', 'Adam', 'E', 'Lopez', '0', '1976-04-15', 'S', 'NULL', 'M', 'adam42@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '1267 Baltic Sea Ct.', 'NULL', '740-555-0165', '2013-04-02', '0-1 Miles'], ['26350', '54', 'AW00026350', 'NULL', 'Gabrielle', 'NULL', 'King', '0', '1971-05-02', 'M', 'NULL', 'F', 'gabrielle61@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '273 Winding Lane', 'NULL', '141-555-0116', '2013-05-27', '2-5 Miles'], ['26351', '348', 'AW00026351', 'NULL', 'Emma', 'NULL', 'Moore', '0', '1970-07-24', 'S', 'NULL', 'F', 'emma7@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '9690 Hale Dr.', 'NULL', '730-555-0155', '2012-04-23', '0-1 Miles'], ['26352', '115', 'AW00026352', 'NULL', 'Cynthia', 'L', 'Fernandez', '0', '1974-02-19', 'S', 'NULL', 'F', 'cynthia21@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Klara Straße 8463', 'NULL', '1 (11) 500 555-0120', '2013-10-01', '0-1 Miles'], ['26353', '118', 'AW00026353', 'NULL', 'Holly', 'R', 'Malhotra', '0', '1974-01-20', 'S', 'NULL', 'F', 'holly6@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Curieweg 2992', 'NULL', '1 (11) 500 555-0175', '2013-11-04', '0-1 Miles'], ['26354', '150', 'AW00026354', 'NULL', 'Nelson', 'NULL', 'Serrano', '0', '1973-12-22', 'S', 'NULL', 'M', 'nelson15@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Conesweg 9', 'NULL', '1 (11) 500 555-0172', '2013-11-24', '0-1 Miles'], ['26355', '211', 'AW00026355', 'NULL', 'Darren', 'NULL', 'Madan', '0', '1931-02-04', 'M', 'NULL', 'M', 'darren10@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '2080, quai de Grenelle', 'NULL', '1 (11) 500 555-0180', '2013-12-04', '1-2 Miles'], ['26356', '279', 'AW00026356', 'NULL', 'Timothy', 'NULL', 'Howard', '0', '1972-09-07', 'M', 'NULL', 'M', 'timothy12@adventure-works.com', '10000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '692 Brook Way', 'NULL', '1 (11) 500 555-0146', '2013-05-23', '0-1 Miles'], ['26357', '202', 'AW00026357', 'NULL', 'Sergio', 'S', 'Gonzalez', '0', '1973-06-01', 'S', 'NULL', 'M', 'sergio19@adventure-works.com', '10000.00', '3', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '62, avenue des Laurentides', 'NULL', '1 (11) 500 555-0115', '2013-04-28', '0-1 Miles'], ['26358', '160', 'AW00026358', 'NULL', 'Mason', 'C', 'Gonzalez', '0', '1932-02-07', 'S', 'NULL', 'M', 'mason29@adventure-works.com', '20000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Hüttenstr 7005', 'Kreditorenbuchhaltung', '1 (11) 500 555-0178', '2013-05-15', '2-5 Miles'], ['26359', '267', 'AW00026359', 'NULL', 'George', 'M', 'Raman', '0', '1973-02-17', 'M', 'NULL', 'M', 'george18@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1563 Weston Court', 'NULL', '1 (11) 500 555-0115', '2013-05-20', '2-5 Miles'], ['26360', '230', 'AW00026360', 'NULL', 'Max', 'NULL', 'Blanco', '0', '1978-05-21', 'M', 'NULL', 'M', 'max15@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '1', '9649 Sequoia Woods Pl.', 'NULL', '1 (11) 500 555-0156', '2013-05-20', '0-1 Miles'], ['26361', '249', 'AW00026361', 'NULL', 'Ebony', 'NULL', 'Suarez', '0', '1971-08-08', 'M', 'NULL', 'F', 'ebony40@adventure-works.com', '10000.00', '4', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '9057 Palms Dr.', 'NULL', '1 (11) 500 555-0198', '2014-01-27', '0-1 Miles'], ['26362', '171', 'AW00026362', 'NULL', 'Joy', 'E', 'Torres', '0', '1971-09-15', 'M', 'NULL', 'F', 'joy13@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Postenweg 5752', 'NULL', '1 (11) 500 555-0186', '2013-10-16', '2-5 Miles'], ['26363', '115', 'AW00026363', 'NULL', 'Larry', 'M', 'Jimenez', '0', '1972-11-29', 'M', 'NULL', 'M', 'larry7@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Hansaallee 598', 'NULL', '1 (11) 500 555-0143', '2013-11-18', '0-1 Miles'], ['26364', '265', 'AW00026364', 'NULL', 'Gabriella', 'NULL', 'Hill', '0', '1933-08-17', 'S', 'NULL', 'F', 'gabriella36@adventure-works.com', '10000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '2691 Balhan Dr.', 'NULL', '1 (11) 500 555-0112', '2013-08-09', '0-1 Miles'], ['26365', '183', 'AW00026365', 'NULL', 'Phillip', 'L', 'Fernandez', '0', '1977-02-16', 'M', 'NULL', 'M', 'phillip17@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '81, place de Fontenoy', 'NULL', '1 (11) 500 555-0165', '2013-02-28', '0-1 Miles'], ['26366', '123', 'AW00026366', 'NULL', 'Johnathan', 'NULL', 'Schmidt', '0', '1972-05-27', 'M', 'NULL', 'M', 'johnathan12@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', 'Lützowplatz 3859', '#139', '1 (11) 500 555-0118', '2013-11-05', '0-1 Miles'], ['26367', '204', 'AW00026367', 'NULL', 'Omar', 'NULL', 'Shan', '0', '1971-08-18', 'M', 'NULL', 'M', 'omar30@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '55, rue de Longchamp', 'NULL', '1 (11) 500 555-0195', '2013-06-23', '0-1 Miles'], ['26368', '220', 'AW00026368', 'NULL', 'Bharat', 'NULL', 'Mirchandani', '0', '1971-03-04', 'S', 'NULL', 'M', 'bharat0@adventure-works.com', '10000.00', '4', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '33, place de la République', 'NULL', '1 (11) 500 555-0113', '2013-10-09', '0-1 Miles'], ['26369', '218', 'AW00026369', 'NULL', 'Kate', 'J', 'Nath', '0', '1971-03-24', 'M', 'NULL', 'F', 'kate15@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '1101, rue Lauriston', 'NULL', '1 (11) 500 555-0171', '2014-01-26', '0-1 Miles'], ['26370', '155', 'AW00026370', 'NULL', 'Maria', 'E', 'Bryant', '0', '1982-03-13', 'M', 'NULL', 'F', 'maria39@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Kapellstr 4561', 'NULL', '1 (11) 500 555-0113', '2013-08-23', '0-1 Miles'], ['26371', '223', 'AW00026371', 'NULL', 'Cassandra', 'NULL', 'Garcia', '0', '1976-03-01', 'M', 'NULL', 'F', 'cassandra16@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9, rue Lafayette', 'NULL', '1 (11) 500 555-0161', '2014-01-24', '0-1 Miles'], ['26372', '270', 'AW00026372', 'NULL', 'Marie', 'NULL', 'Browning', '0', '1969-10-19', 'M', 'NULL', 'F', 'marie39@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '2109 Mt. Washington', 'NULL', '1 (11) 500 555-0111', '2013-05-13', '0-1 Miles'], ['26373', '59', 'AW00026373', 'NULL', 'Mariah', 'NULL', 'Reed', '0', '1977-12-10', 'M', 'NULL', 'F', 'mariah43@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1476 Chestnut Ave.', 'NULL', '371-555-0112', '2012-04-20', '5-10 Miles'], ['26374', '36', 'AW00026374', 'NULL', 'Bradley', 'M', 'Pal', '0', '1982-02-24', 'S', 'NULL', 'M', 'bradley14@adventure-works.com', '130000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Management', 'Gestión', 'Direction', '0', '4', '7555 Hillview Dr', 'NULL', '1 (11) 500 555-0145', '2014-01-20', '10+ Miles'], ['26375', '32', 'AW00026375', 'NULL', 'Shannon', 'NULL', 'Ortega', '0', '1976-12-12', 'S', 'NULL', 'M', 'shannon41@adventure-works.com', '130000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Management', 'Gestión', 'Direction', '1', '4', '1896 Adelaide Street', 'NULL', '1 (11) 500 555-0132', '2012-04-04', '0-1 Miles'], ['26376', '343', 'AW00026376', 'NULL', 'Anthony', 'NULL', 'Martinez', '0', '1958-07-17', 'M', 'NULL', 'M', 'anthony3@adventure-works.com', '70000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '8494 Ryan Rd.', 'NULL', '276-555-0113', '2013-10-18', '10+ Miles'], ['26377', '49', 'AW00026377', 'NULL', 'Isabelle', 'NULL', 'Foster', '0', '1958-12-03', 'S', 'NULL', 'F', 'isabelle15@adventure-works.com', '70000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7161 Broadway St', 'NULL', '114-555-0129', '2013-12-01', '10+ Miles'], ['26378', '151', 'AW00026378', 'NULL', 'Colin', 'NULL', 'Raje', '0', '1963-12-01', 'M', 'NULL', 'M', 'colin37@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', 'Postenweg 5752', 'NULL', '1 (11) 500 555-0118', '2013-10-21', '0-1 Miles'], ['26379', '243', 'AW00026379', 'NULL', 'Cindy', 'NULL', 'Rodriguez', '0', '1963-12-07', 'S', 'NULL', 'F', 'cindy18@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '7426 Forest Way', 'NULL', '1 (11) 500 555-0165', '2013-07-17', '0-1 Miles'], ['26380', '226', 'AW00026380', 'NULL', 'Ricardo', 'NULL', 'Luo', '0', '1962-11-16', 'M', 'NULL', 'M', 'ricardo5@adventure-works.com', '100000.00', '2', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '6, route de Marseille', 'NULL', '1 (11) 500 555-0114', '2013-07-29', '5-10 Miles'], ['26381', '131', 'AW00026381', 'NULL', 'Shannon', 'J', 'Romero', '0', '1968-08-19', 'M', 'NULL', 'M', 'shannon30@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Dunckerstr 2825', 'NULL', '1 (11) 500 555-0110', '2013-01-20', '0-1 Miles'], ['26382', '145', 'AW00026382', 'NULL', 'Dale', 'NULL', 'Xu', '0', '1974-05-02', 'S', 'NULL', 'M', 'dale4@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Wolfgangstraße 28', 'NULL', '1 (11) 500 555-0180', '2013-01-26', '0-1 Miles'], ['26383', '194', 'AW00026383', 'NULL', 'Ronnie', 'NULL', 'Hu', '0', '1961-08-15', 'S', 'NULL', 'M', 'ronnie17@adventure-works.com', '110000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '395, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0137', '2013-08-04', '5-10 Miles'], ['26384', '195', 'AW00026384', 'NULL', 'Jon', 'J', 'Zhu', '0', '1962-01-31', 'M', 'NULL', 'M', 'jon34@adventure-works.com', '110000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '29, rue des Grands Champs', 'NULL', '1 (11) 500 555-0120', '2013-09-15', '5-10 Miles'], ['26385', '115', 'AW00026385', 'NULL', 'Javier', 'NULL', 'Muñoz', '0', '1961-12-26', 'S', 'NULL', 'M', 'javier3@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '4', 'Heideweg 1459', 'NULL', '1 (11) 500 555-0193', '2013-11-25', '5-10 Miles'], ['26386', '261', 'AW00026386', 'NULL', 'Kelli', 'NULL', 'Zhao', '0', '1961-10-18', 'S', 'NULL', 'F', 'kelli11@adventure-works.com', '160000.00', '2', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '1413 Withers Drive', 'NULL', '1 (11) 500 555-0167', '2013-08-23', '0-1 Miles'], ['26387', '273', 'AW00026387', 'NULL', 'Dalton', 'NULL', 'Roberts', '0', '1962-06-21', 'S', 'NULL', 'M', 'dalton38@adventure-works.com', '170000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '997 Grasswood Ct.', 'NULL', '1 (11) 500 555-0134', '2013-11-18', '0-1 Miles'], ['26388', '226', 'AW00026388', 'NULL', 'Wayne', 'L', 'Jai', '0', '1961-02-22', 'M', 'NULL', 'M', 'wayne13@adventure-works.com', '90000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '225, rue Marbeuf', 'NULL', '1 (11) 500 555-0151', '2013-12-08', '10+ Miles'], ['26389', '202', 'AW00026389', 'NULL', 'Candice', 'L', 'Zhou', '0', '1966-02-13', 'M', 'NULL', 'F', 'candice14@adventure-works.com', '100000.00', '2', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '4', '3887, rue Villedo', 'NULL', '1 (11) 500 555-0193', '2013-04-27', '2-5 Miles'], ['26390', '254', 'AW00026390', 'NULL', 'Ivan', 'S', 'Mehta', '0', '1960-07-15', 'M', 'NULL', 'M', 'ivan10@adventure-works.com', '150000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '8624 Pepper Way', 'NULL', '1 (11) 500 555-0162', '2013-08-04', '0-1 Miles'], ['26391', '211', 'AW00026391', 'NULL', 'Dominique', 'S', 'Arun', '0', '1955-09-22', 'S', 'NULL', 'F', 'dominique6@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '83, rue de Fontfroide', 'NULL', '1 (11) 500 555-0181', '2013-05-27', '10+ Miles'], ['26392', '134', 'AW00026392', 'NULL', 'Kelli', 'NULL', 'Rai', '0', '1949-08-13', 'S', 'NULL', 'F', 'kelli40@adventure-works.com', '100000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '4', 'Räuscherweg 675', 'NULL', '1 (11) 500 555-0116', '2013-04-09', '2-5 Miles'], ['26393', '160', 'AW00026393', 'NULL', 'Donald', 'NULL', 'Raman', '0', '1955-08-04', 'S', 'NULL', 'M', 'donald13@adventure-works.com', '110000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', 'Auf den Kuhlen Straße 234', 'NULL', '1 (11) 500 555-0131', '2013-06-13', '5-10 Miles'], ['26394', '217', 'AW00026394', 'NULL', 'Martha', 'V', 'Sun', '0', '1951-02-02', 'M', 'NULL', 'F', 'martha13@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8733bis, rue des Peupliers', 'NULL', '1 (11) 500 555-0120', '2013-10-07', '10+ Miles'], ['26395', '173', 'AW00026395', 'NULL', 'Daisy', 'E', 'Gill', '0', '1950-07-20', 'S', 'NULL', 'F', 'daisy8@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Winterfeldtstr 5557', 'NULL', '1 (11) 500 555-0125', '2013-02-11', '10+ Miles'], ['26396', '176', 'AW00026396', 'NULL', 'Terry', 'D', 'Black', '0', '1950-11-16', 'M', 'NULL', 'M', 'terry22@adventure-works.com', '100000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', 'Charlottenstr 40', 'NULL', '1 (11) 500 555-0166', '2014-01-16', '2-5 Miles'], ['26397', '263', 'AW00026397', 'NULL', 'Micheal', 'NULL', 'Travers', '0', '1951-02-05', 'S', 'NULL', 'M', 'micheal7@adventure-works.com', '130000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '8393 Stanford St.', 'NULL', '1 (11) 500 555-0119', '2013-11-08', '5-10 Miles'], ['26398', '279', 'AW00026398', 'NULL', 'Ian', 'G', 'Watson', '0', '1950-12-08', 'M', 'NULL', 'M', 'ian65@adventure-works.com', '170000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '8291 Serpentine', 'NULL', '1 (11) 500 555-0114', '2013-08-30', '0-1 Miles'], ['26399', '175', 'AW00026399', 'NULL', 'Erick', 'E', 'Gonzalez', '0', '1951-12-23', 'M', 'NULL', 'M', 'erick18@adventure-works.com', '120000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', 'Wertheimer Straße 266', 'NULL', '1 (11) 500 555-0160', '2013-02-27', '10+ Miles'], ['26400', '237', 'AW00026400', 'NULL', 'Jade', 'M', 'James', '0', '1958-09-16', 'M', 'NULL', 'F', 'jade5@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9477 Gladstone Drive', 'NULL', '1 (11) 500 555-0197', '2013-03-07', '10+ Miles'], ['26401', '237', 'AW00026401', 'NULL', 'Natalie', 'NULL', 'Butler', '0', '1960-05-11', 'M', 'NULL', 'F', 'natalie36@adventure-works.com', '130000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '7996 Ronda Ct.', 'NULL', '1 (11) 500 555-0177', '2013-02-12', '0-1 Miles'], ['26402', '186', 'AW00026402', 'NULL', 'Jamie', 'NULL', 'Wagner', '0', '1959-03-07', 'S', 'NULL', 'F', 'jamie3@adventure-works.com', '100000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '4, rue de la Comédie', 'NULL', '1 (11) 500 555-0134', '2013-06-17', '2-5 Miles'], ['26403', '158', 'AW00026403', 'NULL', 'Philip', 'NULL', 'Navarro', '0', '1964-06-21', 'M', 'NULL', 'M', 'philip10@adventure-works.com', '110000.00', '2', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Werftstr 54', 'NULL', '1 (11) 500 555-0183', '2013-09-06', '10+ Miles'], ['26404', '270', 'AW00026404', 'NULL', 'Trisha', 'NULL', 'Wu', '0', '1959-01-03', 'M', 'NULL', 'F', 'trisha1@adventure-works.com', '170000.00', '0', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '3558 Pebble Glen Drive', '# 214', '1 (11) 500 555-0197', '2013-12-22', '0-1 Miles'], ['26405', '204', 'AW00026405', 'NULL', 'Naomi', 'K', 'Blanco', '0', '1963-04-23', 'M', 'NULL', 'F', 'naomi16@adventure-works.com', '80000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Attaché de Presse', 'NULL', '1 (11) 500 555-0194', '2013-09-12', '10+ Miles'], ['26406', '189', 'AW00026406', 'NULL', 'Haley', 'M', 'Lopez', '0', '1957-08-25', 'M', 'NULL', 'F', 'haley55@adventure-works.com', '80000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8, rue des Vendangeurs', 'NULL', '1 (11) 500 555-0134', '2013-12-17', '2-5 Miles'], ['26407', '234', 'AW00026407', 'NULL', 'Ashley', 'NULL', 'Davis', '0', '1963-04-14', 'S', 'NULL', 'F', 'ashley5@adventure-works.com', '120000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '1226 Canyon Creek Drive', 'NULL', '1 (11) 500 555-0169', '2013-03-02', '10+ Miles'], ['26408', '249', 'AW00026408', 'NULL', 'Martha', 'E', 'Huang', '0', '1956-11-30', 'S', 'NULL', 'F', 'martha5@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '4240 El Campo Ct', 'NULL', '1 (11) 500 555-0112', '2013-08-28', '10+ Miles'], ['26409', '258', 'AW00026409', 'NULL', 'Christy', 'NULL', 'Goel', '0', '1957-01-30', 'S', 'NULL', 'F', 'christy37@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '2672 Petarct', 'NULL', '1 (11) 500 555-0169', '2013-03-14', '10+ Miles'], ['26410', '208', 'AW00026410', 'NULL', 'Franklin', 'E', 'Goel', '0', '1961-05-06', 'S', 'NULL', 'M', 'franklin36@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '2155, avenue Foch', 'NULL', '1 (11) 500 555-0193', '2013-07-11', '10+ Miles'], ['26411', '232', 'AW00026411', 'NULL', 'Mario', 'NULL', 'Xu', '0', '1956-05-05', 'S', 'NULL', 'M', 'mario4@adventure-works.com', '110000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '2', '594 Tosco Way', 'NULL', '1 (11) 500 555-0141', '2013-03-01', '10+ Miles'], ['26412', '211', 'AW00026412', 'NULL', 'Kate', 'J', 'Chande', '0', '1960-09-11', 'M', 'NULL', 'F', 'kate12@adventure-works.com', '80000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '3', '591, rue Lauriston', 'NULL', '1 (11) 500 555-0112', '2013-10-22', '5-10 Miles'], ['26413', '210', 'AW00026413', 'NULL', 'Rebekah', 'C', 'Romero', '0', '1955-03-13', 'M', 'NULL', 'F', 'rebekah29@adventure-works.com', '80000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '6260 Vernal Drive', 'NULL', '1 (11) 500 555-0155', '2013-10-22', '10+ Miles'], ['26414', '159', 'AW00026414', 'NULL', 'George', 'NULL', 'Patel', '0', '1960-09-01', 'M', 'NULL', 'M', 'george9@adventure-works.com', '120000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', 'Am Grossen Dern 4982', 'NULL', '1 (11) 500 555-0113', '2013-02-06', '10+ Miles'], ['26415', '132', 'AW00026415', 'NULL', 'Latoya', 'S', 'Lal', '0', '1953-10-15', 'M', 'NULL', 'F', 'latoya7@adventure-works.com', '90000.00', '4', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '4', 'Heideweg 2459', 'NULL', '1 (11) 500 555-0198', '2014-01-19', '10+ Miles'], ['26416', '245', 'AW00026416', 'NULL', 'Amy', 'C', 'Zhao', '0', '1954-02-07', 'M', 'NULL', 'F', 'amy17@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '7874 Santa Barbara Rd.', 'NULL', '1 (11) 500 555-0154', '2013-07-09', '0-1 Miles'], ['26417', '263', 'AW00026417', 'NULL', 'Dustin', 'J', 'Rai', '0', '1954-06-19', 'S', 'NULL', 'M', 'dustin18@adventure-works.com', '130000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '1084 Meadow Glen Way', 'NULL', '1 (11) 500 555-0193', '2013-06-03', '10+ Miles'], ['26418', '202', 'AW00026418', 'NULL', 'Rafael', 'NULL', 'Chande', '0', '1958-08-06', 'S', 'NULL', 'M', 'rafael39@adventure-works.com', '90000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9, rue Villedo', 'NULL', '1 (11) 500 555-0116', '2013-07-07', '5-10 Miles'], ['26419', '163', 'AW00026419', 'NULL', 'Geoffrey', 'NULL', 'Suri', '0', '1952-10-21', 'M', 'NULL', 'M', 'geoffrey0@adventure-works.com', '100000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', 'Hellweg 4934', 'NULL', '1 (11) 500 555-0186', '2013-06-24', '5-10 Miles'], ['26420', '176', 'AW00026420', 'NULL', 'Bob', 'M', 'Kapoor', '0', '1953-03-31', 'S', 'NULL', 'M', 'bob4@adventure-works.com', '110000.00', '4', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '3', 'Kampstr 2842', 'NULL', '1 (11) 500 555-0169', '2013-02-07', '10+ Miles'], ['26421', '21', 'AW00026421', 'NULL', 'Allison', 'A', 'Peterson', '0', '1980-10-03', 'S', 'NULL', 'F', 'allison3@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '9092 Pinecrest Dr', 'NULL', '1 (11) 500 555-0155', '2013-10-23', '2-5 Miles'], ['26422', '40', 'AW00026422', 'NULL', 'Pedro', 'NULL', 'Suri', '0', '1981-03-02', 'S', 'NULL', 'M', 'pedro0@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '844 Sol Street', 'NULL', '1 (11) 500 555-0114', '2012-05-17', '10+ Miles'], ['26423', '33', 'AW00026423', 'NULL', 'Hector', 'NULL', 'Gutierrez', '0', '1981-05-04', 'S', 'NULL', 'M', 'hector9@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '8590 Hoek Maple Court', 'NULL', '1 (11) 500 555-0119', '2012-05-23', '10+ Miles'], ['26424', '33', 'AW00026424', 'NULL', 'Kayla', 'NULL', 'White', '0', '1981-10-31', 'S', 'NULL', 'F', 'kayla13@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '3016 Arleda Lane', 'NULL', '1 (11) 500 555-0139', '2013-03-03', '2-5 Miles'], ['26425', '5', 'AW00026425', 'NULL', 'Janelle', 'NULL', 'Malhotra', '0', '1982-05-12', 'S', 'NULL', 'F', 'janelle4@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '8611 Park Lane Circle', 'NULL', '1 (11) 500 555-0155', '2013-08-30', '10+ Miles'], ['26426', '28', 'AW00026426', 'NULL', 'Heidi', 'A', 'Malhotra', '0', '1981-12-13', 'S', 'NULL', 'F', 'heidi7@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '3159 Lime Ridge Drive', 'NULL', '1 (11) 500 555-0118', '2013-12-05', '10+ Miles'], ['26427', '37', 'AW00026427', 'NULL', 'Alicia', 'NULL', 'Xie', '0', '1982-06-27', 'S', 'NULL', 'F', 'alicia2@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '4277 Benet Court', 'NULL', '1 (11) 500 555-0138', '2013-11-20', '10+ Miles'], ['26428', '33', 'AW00026428', 'NULL', 'Colin', 'NULL', 'Ma', '0', '1982-05-22', 'M', 'NULL', 'M', 'colin17@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '9270 Via Pablo Neruda', 'NULL', '1 (11) 500 555-0174', '2013-09-16', '10+ Miles'], ['26429', '28', 'AW00026429', 'NULL', 'Reginald', 'K', 'Ortega', '0', '1982-04-25', 'S', 'NULL', 'M', 'reginald7@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '162 Courthouse Drive', 'NULL', '1 (11) 500 555-0199', '2012-05-28', '10+ Miles'], ['26430', '30', 'AW00026430', 'NULL', 'Paula', 'NULL', 'Sanz', '0', '1981-05-09', 'S', 'NULL', 'F', 'paula21@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '8011 Elwood Drive', 'NULL', '1 (11) 500 555-0112', '2013-09-22', '10+ Miles'], ['26431', '5', 'AW00026431', 'NULL', 'Shaun', 'NULL', 'Rai', '0', '1980-02-13', 'S', 'NULL', 'M', 'shaun18@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '2308 Mi Casa Court', 'NULL', '1 (11) 500 555-0140', '2013-12-15', '10+ Miles'], ['26432', '25', 'AW00026432', 'NULL', 'Isabel', 'H', 'Simmons', '0', '1981-05-20', 'M', 'NULL', 'F', 'isabel14@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '5717 Monterey Ave', 'NULL', '1 (11) 500 555-0192', '2013-04-26', '10+ Miles'], ['26433', '15', 'AW00026433', 'NULL', 'Nelson', 'NULL', 'Rubio', '0', '1981-01-23', 'M', 'NULL', 'M', 'nelson20@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '5985 Boyd Road', 'NULL', '1 (11) 500 555-0165', '2012-05-10', '10+ Miles'], ['26434', '18', 'AW00026434', 'NULL', 'Mallory', 'NULL', 'Romero', '0', '1980-02-20', 'S', 'NULL', 'F', 'mallory16@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '5995 Olivera Rd.', 'NULL', '1 (11) 500 555-0148', '2013-06-21', '10+ Miles'], ['26435', '32', 'AW00026435', 'NULL', 'Yolanda', 'M', 'Goel', '0', '1984-10-02', 'M', 'NULL', 'F', 'yolanda18@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '7572 Easley Drive', 'NULL', '1 (11) 500 555-0199', '2012-05-26', '10+ Miles'], ['26436', '32', 'AW00026436', 'NULL', 'Briana', 'NULL', 'Carlson', '0', '1979-06-25', 'S', 'NULL', 'F', 'briana15@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', '2668 Trailview Circle', 'NULL', '1 (11) 500 555-0136', '2012-05-05', '10+ Miles'], ['26437', '26', 'AW00026437', 'NULL', 'Tiffany', 'NULL', 'Zhu', '0', '1978-12-17', 'S', 'NULL', 'F', 'tiffany14@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', '7604 Icicle Way', 'NULL', '1 (11) 500 555-0140', '2012-05-26', '10+ Miles'], ['26438', '7', 'AW00026438', 'NULL', 'Alisha', 'J', 'Shen', '0', '1978-10-19', 'M', 'NULL', 'F', 'alisha26@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '6103 Bailey Road', 'NULL', '1 (11) 500 555-0112', '2012-05-11', '0-1 Miles'], ['26439', '21', 'AW00026439', 'NULL', 'Isaac', 'G', 'Morris', '0', '1977-09-02', 'S', 'NULL', 'M', 'isaac18@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '1903 Long Brook Way', 'NULL', '1 (11) 500 555-0112', '2012-05-04', '10+ Miles'], ['26440', '35', 'AW00026440', 'NULL', 'Devin', 'J', 'Green', '0', '1983-01-10', 'S', 'NULL', 'M', 'devin28@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '3', '3169 Estela', 'NULL', '1 (11) 500 555-0128', '2012-05-17', '10+ Miles'], ['26441', '26', 'AW00026441', 'NULL', 'Randy', 'NULL', 'Lu', '0', '1976-09-08', 'M', 'NULL', 'M', 'randy13@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '8345 Sunset Circle', 'NULL', '1 (11) 500 555-0188', '2013-12-22', '10+ Miles'], ['26442', '8', 'AW00026442', 'NULL', 'Barbara', 'NULL', 'Huang', '0', '1977-07-06', 'S', 'NULL', 'F', 'barbara15@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '4', '3478 Hillside Way', 'NULL', '1 (11) 500 555-0111', '2012-05-04', '10+ Miles'], ['26443', '27', 'AW00026443', 'NULL', 'Kathryn', 'I', 'She', '0', '1977-01-22', 'M', 'NULL', 'F', 'kathryn0@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '1260 Mt. Washington Way', 'NULL', '1 (11) 500 555-0161', '2012-05-16', '10+ Miles'], ['26444', '11', 'AW00026444', 'NULL', 'Pamela', 'E', 'Lopez', '0', '1976-04-03', 'S', 'NULL', 'F', 'pamela20@adventure-works.com', '100000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '626 Rossmor Parkway', 'NULL', '1 (11) 500 555-0154', '2012-05-22', '10+ Miles'], ['26445', '21', 'AW00026445', 'NULL', 'Aidan', 'NULL', 'Foster', '0', '1976-03-05', 'S', 'NULL', 'M', 'aidan17@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '6497 Macalven Drive', 'NULL', '1 (11) 500 555-0177', '2012-05-19', '10+ Miles'], ['26446', '9', 'AW00026446', 'NULL', 'Jamie', 'H', 'Muñoz', '0', '1975-09-06', 'S', 'NULL', 'M', 'jamie31@adventure-works.com', '130000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '9539 Glenside Dr', 'NULL', '1 (11) 500 555-0111', '2014-01-24', '0-1 Miles'], ['26447', '26', 'AW00026447', 'NULL', 'Noah', 'M', 'Russell', '0', '1976-10-17', 'S', 'NULL', 'M', 'noah17@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '4321 West I St', 'NULL', '1 (11) 500 555-0157', '2012-06-05', '10+ Miles'], ['26448', '611', 'AW00026448', 'NULL', 'Kara', 'NULL', 'Yuan', '0', '1954-06-25', 'M', 'NULL', 'F', 'kara7@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4567 Shannon Lane', 'NULL', '862-555-0193', '2013-08-26', '5-10 Miles'], ['26449', '60', 'AW00026449', 'NULL', 'Jared', 'A', 'Gray', '0', '1959-03-08', 'M', 'NULL', 'M', 'jared9@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2103 Violet Ct.', 'NULL', '347-555-0111', '2013-03-27', '5-10 Miles'], ['26450', '548', 'AW00026450', 'NULL', 'Lauren', 'L', 'Ramirez', '0', '1958-12-24', 'S', 'NULL', 'F', 'lauren17@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '7653 Fall Creek Road', 'NULL', '725-555-0163', '2013-10-15', '5-10 Miles'], ['26451', '641', 'AW00026451', 'NULL', 'Mariah', 'NULL', 'Perry', '0', '1948-08-09', 'M', 'NULL', 'F', 'mariah12@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1098 Lawton Street', 'NULL', '683-555-0198', '2013-07-15', '5-10 Miles'], ['26452', '383', 'AW00026452', 'NULL', 'James', 'NULL', 'Martinez', '0', '1942-10-15', 'S', 'NULL', 'M', 'james90@adventure-works.com', '50000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '424 Yosemite Dr.', 'NULL', '167-555-0126', '2013-04-11', '10+ Miles'], ['26453', '546', 'AW00026453', 'NULL', 'Cole', 'L', 'Peterson', '0', '1942-09-14', 'S', 'NULL', 'M', 'cole7@adventure-works.com', '50000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8292 Thames Dr.', 'NULL', '386-555-0169', '2013-10-08', '10+ Miles'], ['26454', '634', 'AW00026454', 'NULL', 'Sebastian', 'J', 'Cox', '0', '1948-11-22', 'M', 'NULL', 'M', 'sebastian11@adventure-works.com', '50000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5680 Edward Ave.', 'NULL', '445-555-0117', '2013-07-27', '10+ Miles'], ['26455', '623', 'AW00026455', 'NULL', 'Samuel', 'NULL', 'Carter', '0', '1944-12-14', 'M', 'NULL', 'M', 'samuel40@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '8184 N. Spoonwood Court', 'NULL', '987-555-0119', '2013-05-28', '10+ Miles'], ['26456', '60', 'AW00026456', 'NULL', 'Xavier', 'R', 'Peterson', '0', '1944-10-02', 'S', 'NULL', 'M', 'xavier71@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5596 Fall Creek', 'NULL', '414-555-0154', '2013-11-20', '10+ Miles'], ['26457', '553', 'AW00026457', 'NULL', 'Sydney', 'L', 'Moore', '0', '1945-02-09', 'S', 'NULL', 'F', 'sydney72@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5846 Premier Place', 'NULL', '981-555-0198', '2013-03-11', '10+ Miles'], ['26458', '314', 'AW00026458', 'NULL', 'Ryan', 'NULL', 'Moore', '0', '1944-12-31', 'M', 'NULL', 'M', 'ryan47@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6316 Glazier Ct.', 'NULL', '332-555-0174', '2013-06-07', '10+ Miles'], ['26459', '632', 'AW00026459', 'NULL', 'Angelica', 'NULL', 'Hayes', '0', '1945-02-16', 'S', 'NULL', 'F', 'angelica22@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4313 Atherton Circle', 'NULL', '260-555-0148', '2013-08-26', '10+ Miles'], ['26460', '552', 'AW00026460', 'NULL', 'Gabriella', 'NULL', 'Cook', '0', '1945-09-06', 'M', 'NULL', 'F', 'gabriella19@adventure-works.com', '60000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8264 Montanya Court', 'NULL', '553-555-0153', '2014-01-16', '10+ Miles'], ['26461', '59', 'AW00026461', 'NULL', 'Brooke', 'D', 'Howard', '0', '1946-05-24', 'S', 'NULL', 'F', 'brooke10@adventure-works.com', '60000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '2010 Coach Place', 'NULL', '304-555-0157', '2013-12-31', '1-2 Miles'], ['26462', '609', 'AW00026462', 'NULL', 'Lauren', 'A', 'Kelly', '0', '1951-02-17', 'S', 'NULL', 'F', 'lauren45@adventure-works.com', '60000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '4095 Cooper Dr.', 'NULL', '287-555-0169', '2013-09-15', '1-2 Miles'], ['26463', '609', 'AW00026463', 'NULL', 'Alexa', 'H', 'Rogers', '0', '1946-04-02', 'S', 'NULL', 'F', 'alexa18@adventure-works.com', '60000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '2233 California St.', 'NULL', '489-555-0118', '2013-09-26', '1-2 Miles'], ['26464', '631', 'AW00026464', 'NULL', 'Alexandria', 'NULL', 'Griffin', '0', '1947-05-04', 'S', 'NULL', 'F', 'alexandria21@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '4250 Cross Road', 'NULL', '411-555-0197', '2013-10-28', '1-2 Miles'], ['26465', '336', 'AW00026465', 'NULL', 'Andrea', 'NULL', 'Evans', '0', '1952-06-01', 'S', 'NULL', 'F', 'andrea24@adventure-works.com', '50000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5010 Orange Street', 'NULL', '954-555-0143', '2013-03-14', '10+ Miles'], ['26466', '536', 'AW00026466', 'NULL', 'Kevin', 'NULL', 'Turner', '0', '1946-09-22', 'S', 'NULL', 'M', 'kevin42@adventure-works.com', '50000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '6007 Concord Pl.', 'NULL', '890-555-0160', '2013-06-03', '1-2 Miles'], ['26467', '339', 'AW00026467', 'NULL', 'Nicole', 'NULL', 'Brooks', '0', '1947-02-19', 'S', 'NULL', 'F', 'nicole45@adventure-works.com', '50000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '7549 Longview Rd.', 'NULL', '178-555-0192', '2013-12-01', '1-2 Miles'], ['26468', '345', 'AW00026468', 'NULL', 'Alyssa', 'O', 'Brown', '0', '1946-11-11', 'M', 'NULL', 'F', 'alyssa3@adventure-works.com', '50000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6051 Manila Avenue', 'NULL', '453-555-0190', '2013-02-08', '10+ Miles'], ['26469', '299', 'AW00026469', 'NULL', 'Joy', 'G', 'Alvarez', '0', '1947-05-06', 'S', 'NULL', 'F', 'joy5@adventure-works.com', '50000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '3854 Wildcat Circle', 'NULL', '225-555-0182', '2013-03-05', '1-2 Miles'], ['26470', '339', 'AW00026470', 'NULL', 'Marcus', 'NULL', 'Cooper', '0', '1947-05-18', 'M', 'NULL', 'M', 'marcus84@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5899 Scottsdale Rd.', 'NULL', '155-555-0151', '2013-03-15', '10+ Miles'], ['26471', '358', 'AW00026471', 'NULL', 'Edward', 'J', 'Perez', '0', '1953-02-09', 'M', 'NULL', 'M', 'edward14@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5724 Victory Lane', 'NULL', '124-555-0115', '2013-08-28', '10+ Miles'], ['26472', '372', 'AW00026472', 'NULL', 'David', 'NULL', 'Hughes', '0', '1947-09-05', 'S', 'NULL', 'M', 'david44@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9551 Alet Court', 'NULL', '337-555-0160', '2013-03-20', '10+ Miles'], ['26473', '548', 'AW00026473', 'NULL', 'Anna', 'J', 'Wood', '0', '1947-10-17', 'S', 'NULL', 'F', 'anna26@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '1748 Bird Drive', 'NULL', '244-555-0169', '2013-08-05', '1-2 Miles'], ['26474', '60', 'AW00026474', 'NULL', 'Mackenzie', 'N', 'Morris', '0', '1948-07-18', 'S', 'NULL', 'F', 'mackenzie17@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '3084 Cedar Point Loop', 'NULL', '921-555-0137', '2013-07-25', '1-2 Miles'], ['26475', '345', 'AW00026475', 'NULL', 'Isabella', 'L', 'Gonzalez', '0', '1950-04-02', 'S', 'NULL', 'F', 'isabella48@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '26 Amador Ct.', 'NULL', '962-555-0158', '2013-06-17', '1-2 Miles'], ['26476', '315', 'AW00026476', 'NULL', 'Jordan', 'NULL', 'Jai', '0', '1950-02-19', 'M', 'NULL', 'M', 'jordan28@adventure-works.com', '30000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9967 Malibu Place', 'NULL', '310-555-0191', '2013-08-07', '1-2 Miles'], ['26477', '302', 'AW00026477', 'NULL', 'Joel', 'NULL', 'Rana', '0', '1958-04-03', 'S', 'NULL', 'M', 'joel10@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2118 Little Dr.', 'NULL', '516-555-0117', '2013-10-08', '10+ Miles'], ['26478', '314', 'AW00026478', 'NULL', 'Sara', 'P', 'Collins', '0', '1953-04-24', 'S', 'NULL', 'F', 'sara27@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5863 J St.', 'NULL', '760-555-0180', '2013-07-17', '10+ Miles'], ['26479', '310', 'AW00026479', 'NULL', 'Katherine', 'R', 'Cook', '0', '1952-08-08', 'S', 'NULL', 'F', 'katherine7@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '4137 E St.', 'NULL', '211-555-0111', '2013-10-07', '1-2 Miles'], ['26480', '347', 'AW00026480', 'NULL', 'Jacqueline', 'R', 'Patterson', '0', '1956-06-18', 'S', 'NULL', 'F', 'jacqueline11@adventure-works.com', '20000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '3', '5103 Farm Bureau Rd', 'NULL', '499-555-0128', '2013-02-13', '1-2 Miles'], ['26481', '331', 'AW00026481', 'NULL', 'Luke', 'NULL', 'Young', '0', '1951-04-02', 'M', 'NULL', 'M', 'luke48@adventure-works.com', '30000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '4751 Gregory Drive', 'NULL', '262-555-0138', '2012-04-19', '10+ Miles'], ['26482', '62', 'AW00026482', 'NULL', 'Sydney', 'NULL', 'Hill', '0', '1950-11-14', 'M', 'NULL', 'F', 'sydney63@adventure-works.com', '30000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '3532 Premier Pl.', 'NULL', '291-555-0169', '2012-05-20', '10+ Miles'], ['26483', '315', 'AW00026483', 'NULL', 'Taylor', 'NULL', 'Ward', '0', '1950-09-16', 'S', 'NULL', 'F', 'taylor15@adventure-works.com', '30000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '7691 Benedict Ct.', 'NULL', '713-555-0181', '2013-07-22', '1-2 Miles'], ['26484', '298', 'AW00026484', 'NULL', 'Fernando', 'E', 'Patterson', '0', '1951-10-01', 'S', 'NULL', 'M', 'fernando53@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '2761 Clyde Street', 'NULL', '980-555-0146', '2012-04-28', '2-5 Miles'], ['26485', '635', 'AW00026485', 'NULL', 'Jason', 'NULL', 'Bryant', '0', '1951-12-05', 'M', 'NULL', 'M', 'jason15@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '2499 Greendell Pl', 'NULL', '538-555-0167', '2012-04-01', '10+ Miles'], ['26486', '338', 'AW00026486', 'NULL', 'Andrea', 'NULL', 'Cook', '0', '1957-06-30', 'M', 'NULL', 'F', 'andrea21@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '4', '6769 Seabourne Ct.', 'NULL', '831-555-0198', '2012-04-24', '2-5 Miles'], ['26487', '536', 'AW00026487', 'NULL', 'Vincent', 'W', 'Ma', '0', '1951-10-16', 'S', 'NULL', 'M', 'vincent15@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '7126 Edie Ct.', 'NULL', '312-555-0162', '2012-04-16', '10+ Miles'], ['26488', '49', 'AW00026488', 'NULL', 'Julia', 'A', 'Rodriguez', '0', '1953-04-11', 'M', 'NULL', 'F', 'julia41@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8742 Longbrood Way', 'NULL', '321-555-0114', '2013-02-23', '10+ Miles'], ['26489', '300', 'AW00026489', 'NULL', 'Jordan', 'NULL', 'Collins', '0', '1952-10-08', 'S', 'NULL', 'M', 'jordan56@adventure-works.com', '70000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '2494 Beauer Lane', 'NULL', '398-555-0189', '2013-02-02', '10+ Miles'], ['26490', '385', 'AW00026490', 'NULL', 'Antonio', 'NULL', 'Simmons', '0', '1963-08-19', 'S', 'NULL', 'M', 'antonio15@adventure-works.com', '70000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '4705 Silverberry Court', 'NULL', '545-555-0127', '2012-04-14', '2-5 Miles'], ['26491', '609', 'AW00026491', 'NULL', 'Riley', 'J', 'Sanchez', '0', '1953-05-18', 'S', 'NULL', 'F', 'riley37@adventure-works.com', '70000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '2310 Donegal Way', 'NULL', '748-555-0138', '2012-05-09', '2-5 Miles'], ['26492', '310', 'AW00026492', 'NULL', 'Ryan', 'M', 'Rodriguez', '0', '1952-08-24', 'M', 'NULL', 'M', 'ryan56@adventure-works.com', '70000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '1691 Boxer Blvd.', 'NULL', '928-555-0180', '2013-04-23', '10+ Miles'], ['26493', '609', 'AW00026493', 'NULL', 'Lawrence', 'P', 'Ramos', '0', '1953-03-03', 'M', 'NULL', 'M', 'lawrence16@adventure-works.com', '70000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '8879 Greystone Drive', 'NULL', '635-555-0118', '2013-02-17', '10+ Miles'], ['26494', '312', 'AW00026494', 'NULL', 'Nicholas', 'G', 'White', '0', '1958-02-18', 'M', 'NULL', 'M', 'nicholas13@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '636 Vine Hill Way', 'NULL', '395-555-0190', '2013-10-05', '2-5 Miles'], ['26495', '49', 'AW00026495', 'NULL', 'Allison', 'NULL', 'Baker', '0', '1954-06-15', 'S', 'NULL', 'F', 'allison39@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2976 Dumbarton Drive', 'NULL', '856-555-0149', '2013-09-15', '10+ Miles'], ['26496', '70', 'AW00026496', 'NULL', 'Cassidy', 'NULL', 'Griffin', '0', '1954-05-08', 'M', 'NULL', 'F', 'cassidy22@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5974 Sequoia Drive', 'NULL', '999-555-0198', '2012-05-26', '2-5 Miles'], ['26497', '618', 'AW00026497', 'NULL', 'Karen', 'NULL', 'Sanchez', '0', '1954-01-03', 'M', 'NULL', 'F', 'karen33@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6036 Park Glenn', 'NULL', '181-555-0184', '2013-09-30', '10+ Miles'], ['26498', '635', 'AW00026498', 'NULL', 'Ethan', 'NULL', 'Hayes', '0', '1954-04-25', 'M', 'NULL', 'M', 'ethan19@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '9765 Marie Drive', 'NULL', '114-555-0179', '2013-06-18', '10+ Miles'], ['26499', '298', 'AW00026499', 'NULL', 'Renee', 'L', 'Ruiz', '0', '1953-08-17', 'M', 'NULL', 'F', 'renee2@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '363 St Paul Way', 'NULL', '482-555-0110', '2012-05-17', '10+ Miles'], ['26500', '300', 'AW00026500', 'NULL', 'Billy', 'M', 'Ruiz', '0', '1959-03-19', 'M', 'NULL', 'M', 'billy3@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Rt. 6415 Box A', 'NULL', '101-555-0159', '2013-09-07', '10+ Miles'], ['26501', '310', 'AW00026501', 'NULL', 'Allison', 'NULL', 'Parker', '0', '1953-08-02', 'S', 'NULL', 'F', 'allison30@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9634 East Avenue', 'NULL', '750-555-0124', '2013-10-04', '10+ Miles'], ['26502', '311', 'AW00026502', 'NULL', 'Taylor', 'R', 'Brown', '0', '1953-10-30', 'S', 'NULL', 'F', 'taylor51@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3390 Colfax Street', 'NULL', '408-555-0155', '2013-09-04', '10+ Miles'], ['26503', '55', 'AW00026503', 'NULL', 'Jeremiah', 'I', 'Townsend', '0', '1960-01-31', 'M', 'NULL', 'M', 'jeremiah41@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6920 Merriewood Dr.', 'NULL', '155-555-0150', '2012-06-03', '2-5 Miles'], ['26504', '62', 'AW00026504', 'NULL', 'Jennifer', 'L', 'Robinson', '0', '1955-02-17', 'M', 'NULL', 'F', 'jennifer45@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1305 Rain Drop Circle', 'NULL', '905-555-0194', '2012-06-14', '2-5 Miles'], ['26505', '62', 'AW00026505', 'NULL', 'Jennifer', 'NULL', 'Wright', '0', '1960-08-13', 'M', 'NULL', 'F', 'jennifer23@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6675 Andrea Lane', 'NULL', '675-555-0169', '2013-02-04', '10+ Miles'], ['26506', '607', 'AW00026506', 'NULL', 'Ruth', 'C', 'Srini', '0', '1955-01-14', 'S', 'NULL', 'F', 'ruth13@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6535 Warmcastle Ct.', 'NULL', '591-555-0153', '2013-02-23', '10+ Miles'], ['26507', '612', 'AW00026507', 'NULL', 'Abhijit', 'NULL', 'Thakur', '0', '1960-01-30', 'M', 'NULL', 'F', 'abhijit0@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '7806 Bentley St.', 'NULL', '185-555-0194', '2013-06-02', '10+ Miles'], ['26508', '618', 'AW00026508', 'NULL', 'Marcus', 'F', 'Ross', '0', '1955-01-11', 'M', 'NULL', 'M', 'marcus53@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3283 Terra Granda', 'NULL', '448-555-0176', '2013-05-10', '10+ Miles'], ['26509', '642', 'AW00026509', 'NULL', 'Seth', 'R', 'Taylor', '0', '1954-09-02', 'S', 'NULL', 'M', 'seth9@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '4518 Sequoia Drive', '# 2', '627-555-0110', '2012-05-19', '2-5 Miles'], ['26510', '335', 'AW00026510', 'NULL', 'Jack', 'A', 'Scott', '0', '1954-09-15', 'S', 'NULL', 'M', 'jack50@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '2759 Carrick Ct.', 'NULL', '166-555-0111', '2012-05-23', '10+ Miles'], ['26511', '385', 'AW00026511', 'NULL', 'Charles', 'NULL', 'Weisman', '0', '1955-02-04', 'M', 'NULL', 'M', 'charles16@adventure-works.com', '70000.00', '5', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '7805 Roslyn Drive', 'NULL', '870-555-0182', '2012-05-21', '10+ Miles'], ['26512', '52', 'AW00026512', 'NULL', 'Christina', 'C', 'Cooper', '0', '1961-01-28', 'M', 'NULL', 'F', 'christina16@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5901 Larch Ct.', 'NULL', '481-555-0123', '2012-06-06', '2-5 Miles'], ['26513', '609', 'AW00026513', 'NULL', 'Stacy', 'NULL', 'Moreno', '0', '1955-08-03', 'S', 'NULL', 'F', 'stacy7@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '6220 Krueger Dr.', 'NULL', '818-555-0181', '2012-05-02', '2-5 Miles'], ['26514', '326', 'AW00026514', 'NULL', 'Cameron', 'NULL', 'Powell', '0', '1955-10-13', 'M', 'NULL', 'M', 'cameron3@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '9000 Adobe St', 'NULL', '139-555-0132', '2013-06-17', '1-2 Miles'], ['26515', '326', 'AW00026515', 'NULL', 'Zoe', 'W', 'Watson', '0', '1961-09-12', 'M', 'NULL', 'F', 'zoe0@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7936 Sterling Hill', 'NULL', '166-555-0180', '2013-08-21', '10+ Miles'], ['26516', '329', 'AW00026516', 'NULL', 'Jill', 'E', 'Perry', '0', '1956-03-06', 'M', 'NULL', 'F', 'jill32@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6152 Del Mar Ave', 'NULL', '213-555-0117', '2013-07-13', '10+ Miles'], ['26517', '329', 'AW00026517', 'NULL', 'Melanie', 'A', 'Griffin', '0', '1955-08-07', 'M', 'NULL', 'F', 'melanie8@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '3193 Mehaffey Way', 'NULL', '154-555-0148', '2013-03-21', '10+ Miles'], ['26518', '337', 'AW00026518', 'NULL', 'Marcus', 'NULL', 'Lee', '0', '1955-12-14', 'S', 'NULL', 'M', 'marcus23@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7145 Matchstick Drive', 'NULL', '789-555-0166', '2013-10-11', '10+ Miles'], ['26519', '374', 'AW00026519', 'NULL', 'Brianna', 'NULL', 'Wood', '0', '1955-07-02', 'M', 'NULL', 'F', 'brianna49@adventure-works.com', '80000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '639 La Corte Bonita', 'NULL', '172-555-0181', '2013-08-26', '5-10 Miles'], ['26520', '614', 'AW00026520', 'NULL', 'Chloe', 'NULL', 'Ramirez', '0', '1957-04-22', 'S', 'NULL', 'F', 'chloe61@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '9970 Loma Linda', 'NULL', '816-555-0118', '2012-05-24', '2-5 Miles'], ['26521', '633', 'AW00026521', 'NULL', 'Nathan', 'L', 'Taylor', '0', '1956-11-28', 'M', 'NULL', 'M', 'nathan67@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '9216 Sandy Way', 'NULL', '224-555-0112', '2012-05-07', '2-5 Miles'], ['26522', '641', 'AW00026522', 'NULL', 'Logan', 'T', 'Thompson', '0', '1962-09-23', 'M', 'NULL', 'M', 'logan67@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '2737 East 27th Street', 'NULL', '703-555-0129', '2013-08-06', '10+ Miles'], ['26523', '299', 'AW00026523', 'NULL', 'Casey', 'C', 'Raji', '0', '1962-11-12', 'S', 'NULL', 'F', 'casey21@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9113 Park Lane', 'NULL', '492-555-0123', '2013-10-18', '10+ Miles'], ['26524', '329', 'AW00026524', 'NULL', 'Anthony', 'E', 'Robinson', '0', '1956-11-01', 'M', 'NULL', 'M', 'anthony4@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3154 Boxwood Dr.', 'NULL', '929-555-0193', '2013-12-19', '10+ Miles'], ['26525', '383', 'AW00026525', 'NULL', 'Jeremy', 'F', 'Bell', '0', '1963-04-23', 'S', 'NULL', 'M', 'jeremy42@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8222 Northridge Road', 'NULL', '931-555-0183', '2013-09-16', '10+ Miles'], ['26526', '334', 'AW00026526', 'NULL', 'Blake', 'NULL', 'Coleman', '0', '1958-02-15', 'M', 'NULL', 'M', 'blake53@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '7950 H Pine Creek Way', 'NULL', '687-555-0176', '2013-10-24', '10+ Miles'], ['26527', '43', 'AW00026527', 'NULL', 'Oscar', 'NULL', 'Hayes', '0', '1963-09-06', 'M', 'NULL', 'M', 'oscar8@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5897 Scottsdale Rd.', 'NULL', '150-555-0146', '2013-07-28', '10+ Miles'], ['26528', '614', 'AW00026528', 'NULL', 'Samuel', 'NULL', 'Garcia', '0', '1958-11-01', 'S', 'NULL', 'M', 'samuel55@adventure-works.com', '60000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2773 Bonifacio Street', 'NULL', '130-555-0138', '2013-12-29', '10+ Miles'], ['26529', '69', 'AW00026529', 'NULL', 'Jasmine', 'M', 'Davis', '0', '1975-04-04', 'S', 'NULL', 'F', 'jasmine5@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9892 N. Spoonwood Ct.', 'NULL', '540-555-0181', '2012-07-21', '2-5 Miles'], ['26530', '542', 'AW00026530', 'NULL', 'Riley', 'R', 'Morgan', '0', '1974-09-10', 'M', 'NULL', 'F', 'riley33@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '2827 Red Leaf', 'NULL', '660-555-0143', '2012-05-23', '0-1 Miles'], ['26531', '302', 'AW00026531', 'NULL', 'Jeremy', 'NULL', 'Reed', '0', '1974-10-06', 'M', 'NULL', 'M', 'jeremy46@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '7801 Midway Ct.', 'NULL', '452-555-0112', '2013-05-23', '2-5 Miles'], ['26532', '311', 'AW00026532', 'NULL', 'Angela', 'M', 'Barnes', '0', '1974-03-12', 'S', 'NULL', 'F', 'angela5@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '8349 Roxbury Drive', 'NULL', '130-555-0175', '2012-05-24', '0-1 Miles'], ['26533', '52', 'AW00026533', 'NULL', 'Xavier', 'L', 'Mitchell', '0', '1974-01-25', 'M', 'NULL', 'M', 'xavier34@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '7834 Roux Court', 'NULL', '939-555-0178', '2012-08-29', '0-1 Miles'], ['26534', '348', 'AW00026534', 'NULL', 'Fernando', 'NULL', 'Smith', '0', '1979-02-07', 'S', 'NULL', 'M', 'fernando1@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '5637 Arbor Drive', 'NULL', '166-555-0119', '2012-05-06', '1-2 Miles'], ['26535', '632', 'AW00026535', 'NULL', 'Kelly', 'E', 'Perry', '0', '1979-12-23', 'M', 'NULL', 'F', 'kelly12@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '6006 Hackamore Lane', 'NULL', '542-555-0115', '2013-09-09', '1-2 Miles'], ['26536', '325', 'AW00026536', 'NULL', 'Katherine', 'NULL', 'Thomas', '0', '1978-10-01', 'S', 'NULL', 'F', 'katherine81@adventure-works.com', '100000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5840 Delta Fair Blvd.', 'NULL', '112-555-0159', '2012-05-10', '1-2 Miles'], ['26537', '644', 'AW00026537', 'NULL', 'Wyatt', 'NULL', 'Perez', '0', '1972-10-12', 'S', 'NULL', 'M', 'wyatt41@adventure-works.com', '100000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1162 Park Glenn', 'NULL', '735-555-0150', '2012-05-18', '1-2 Miles'], ['26538', '298', 'AW00026538', 'NULL', 'Warren', 'NULL', 'Black', '0', '1979-11-15', 'M', 'NULL', 'M', 'warren10@adventure-works.com', '110000.00', '2', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '8866 Alpha Way', 'NULL', '189-555-0173', '2012-05-19', '1-2 Miles'], ['26539', '302', 'AW00026539', 'NULL', 'Faith', 'NULL', 'Hayes', '0', '1973-10-23', 'S', 'NULL', 'F', 'faith22@adventure-works.com', '130000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '5199 James Donlon Blvd', 'NULL', '330-555-0137', '2012-05-12', '0-1 Miles'], ['26540', '310', 'AW00026540', 'NULL', 'Jada', 'NULL', 'Sanchez', '0', '1979-10-19', 'S', 'NULL', 'F', 'jada16@adventure-works.com', '170000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '3009 Temple Court', 'NULL', '910-555-0113', '2012-05-29', '0-1 Miles'], ['26541', '311', 'AW00026541', 'NULL', 'Alexis', 'NULL', 'Butler', '0', '1984-11-01', 'M', 'NULL', 'F', 'alexis37@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5217 Cordova Way', 'NULL', '276-555-0133', '2013-05-19', '5-10 Miles'], ['26542', '607', 'AW00026542', 'NULL', 'Jamie', 'NULL', 'Torres', '0', '1983-09-22', 'M', 'NULL', 'M', 'jamie34@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '1248 Tanager Cir', 'NULL', '285-555-0189', '2013-04-13', '1-2 Miles'], ['26543', '21', 'AW00026543', 'NULL', 'Susan', 'A', 'Guo', '0', '1952-07-20', 'S', 'NULL', 'F', 'susan28@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9534 Country View Lane', 'NULL', '1 (11) 500 555-0162', '2013-02-15', '1-2 Miles'], ['26544', '614', 'AW00026544', 'NULL', 'Riley', 'E', 'Ramirez', '0', '1983-09-21', 'M', 'NULL', 'F', 'riley26@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8258 N. Broadway', 'NULL', '926-555-0155', '2013-05-08', '5-10 Miles'], ['26545', '315', 'AW00026545', 'NULL', 'Taylor', 'S', 'Ross', '0', '1983-07-08', 'M', 'NULL', 'F', 'taylor29@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2598 Breck Court', 'NULL', '357-555-0117', '2012-05-14', '1-2 Miles'], ['26546', '329', 'AW00026546', 'NULL', 'Miguel', 'NULL', 'Bennett', '0', '1983-12-24', 'M', 'NULL', 'M', 'miguel47@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6208 Hedaro Court', 'NULL', '180-555-0197', '2012-05-01', '5-10 Miles'], ['26547', '7', 'AW00026547', 'NULL', 'Barbara', 'NULL', 'Beck', '0', '1951-11-06', 'S', 'NULL', 'F', 'barbara48@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6654 Shelly Dr.', 'NULL', '1 (11) 500 555-0127', '2012-06-18', '5-10 Miles'], ['26548', '7', 'AW00026548', 'NULL', 'Casey', 'NULL', 'Suarez', '0', '1952-11-07', 'S', 'NULL', 'M', 'casey43@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3106 Julpum Loop', 'NULL', '1 (11) 500 555-0175', '2012-06-23', '1-2 Miles'], ['26549', '15', 'AW00026549', 'NULL', 'Jamie', 'NULL', 'Sanz', '0', '1959-08-12', 'S', 'NULL', 'M', 'jamie42@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5790 Amigo Ln.', 'NULL', '1 (11) 500 555-0169', '2012-06-25', '5-10 Miles'], ['26550', '612', 'AW00026550', 'NULL', 'Alex', 'NULL', 'Morris', '0', '1983-04-27', 'S', 'NULL', 'M', 'alex22@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '8133 Andrews Dr.', 'NULL', '552-555-0199', '2013-08-03', '5-10 Miles'], ['26551', '545', 'AW00026551', 'NULL', 'Noah', 'E', 'Moore', '0', '1983-03-20', 'S', 'NULL', 'M', 'noah47@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3000 Wildcat Circle', 'NULL', '162-555-0115', '2013-02-13', '5-10 Miles'], ['26552', '631', 'AW00026552', 'NULL', 'Judith', 'A', 'Turner', '0', '1982-09-09', 'M', 'NULL', 'F', 'judith2@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6478 Hastings Dr.', 'NULL', '991-555-0196', '2013-06-21', '5-10 Miles'], ['26553', '634', 'AW00026553', 'NULL', 'Kayla', 'A', 'Powell', '0', '1982-11-07', 'S', 'NULL', 'F', 'kayla32@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9392 16th St.', 'NULL', '186-555-0170', '2013-12-14', '5-10 Miles'], ['26554', '301', 'AW00026554', 'NULL', 'Michael', 'D', 'Garcia', '0', '1982-11-13', 'S', 'NULL', 'M', 'michael48@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9833 Mt. Dias Blv.', 'NULL', '537-555-0134', '2013-11-01', '1-2 Miles'], ['26555', '345', 'AW00026555', 'NULL', 'Jeremy', 'C', 'Perry', '0', '1982-12-11', 'S', 'NULL', 'M', 'jeremy25@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8598 Sharon Dr.', 'NULL', '249-555-0123', '2013-08-15', '0-1 Miles'], ['26556', '539', 'AW00026556', 'NULL', 'Jeremy', 'NULL', 'Cooper', '0', '1981-11-01', 'M', 'NULL', 'M', 'jeremy38@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2909 Woodland Dr.', 'NULL', '869-555-0171', '2013-05-18', '1-2 Miles'], ['26557', '312', 'AW00026557', 'NULL', 'Katelyn', 'M', 'Morgan', '0', '1982-01-10', 'S', 'NULL', 'F', 'katelyn21@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8434 Ringing Court', 'NULL', '607-555-0179', '2013-05-11', '5-10 Miles'], ['26558', '28', 'AW00026558', 'NULL', 'Holly', 'NULL', 'Garcia', '0', '1955-02-22', 'M', 'NULL', 'F', 'holly14@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9043 Risdon Road', 'NULL', '1 (11) 500 555-0139', '2013-07-09', '1-2 Miles'], ['26559', '3', 'AW00026559', 'NULL', 'Marshall', 'R', 'Ye', '0', '1954-11-13', 'S', 'NULL', 'M', 'marshall8@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9849 Santa Fe Court', 'NULL', '1 (11) 500 555-0118', '2013-05-15', '5-10 Miles'], ['26560', '10', 'AW00026560', 'NULL', 'Lindsey', 'NULL', 'Shen', '0', '1962-05-31', 'M', 'NULL', 'F', 'lindsey2@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '589 Woodcrest Drive', 'NULL', '1 (11) 500 555-0163', '2012-06-10', '5-10 Miles'], ['26561', '32', 'AW00026561', 'NULL', 'Hannah', 'NULL', 'Lewis', '0', '1962-05-02', 'M', 'NULL', 'F', 'hannah19@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9640 Kenneth Ct.', 'NULL', '1 (11) 500 555-0118', '2012-06-12', '5-10 Miles'], ['26562', '2', 'AW00026562', 'NULL', 'Edward', 'L', 'Wilson', '0', '1958-07-24', 'M', 'NULL', 'M', 'edward29@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9875 Grant St', 'NULL', '1 (11) 500 555-0190', '2012-06-12', '5-10 Miles'], ['26563', '40', 'AW00026563', 'NULL', 'Keith', 'L', 'She', '0', '1958-07-24', 'M', 'NULL', 'M', 'keith2@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9875 Grant St', 'NULL', '1 (11) 500 555-0197', '2012-06-29', '5-10 Miles'], ['26564', '32', 'AW00026564', 'NULL', 'Franklin', 'A', 'Chen', '0', '1960-03-25', 'S', 'NULL', 'M', 'franklin2@adventure-works.com', '40000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9632 K St.', 'NULL', '1 (11) 500 555-0199', '2014-01-28', '1-2 Miles'], ['26565', '2', 'AW00026565', 'NULL', 'Gabriel', 'J', 'Mitchell', '0', '1959-11-17', 'S', 'NULL', 'M', 'gabriel42@adventure-works.com', '40000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6510 Northridge Drive', 'NULL', '1 (11) 500 555-0131', '2013-12-31', '1-2 Miles'], ['26566', '39', 'AW00026566', 'NULL', 'Crystal', 'M', 'Chen', '0', '1965-03-19', 'S', 'NULL', 'F', 'crystal4@adventure-works.com', '40000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2402 Cinnabar St.', 'NULL', '1 (11) 500 555-0148', '2012-06-08', '5-10 Miles'], ['26567', '6', 'AW00026567', 'NULL', 'Michele', 'M', 'Rai', '0', '1966-10-03', 'S', 'NULL', 'F', 'michele18@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2998 Brook Street', 'NULL', '1 (11) 500 555-0121', '2012-06-07', '1-2 Miles'], ['26568', '38', 'AW00026568', 'NULL', 'Nancy', 'F', 'Kovar', '0', '1966-08-07', 'S', 'NULL', 'F', 'nancy8@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1314 Greenview Court', 'NULL', '1 (11) 500 555-0179', '2012-06-15', '5-10 Miles'], ['26569', '25', 'AW00026569', 'NULL', 'Michelle', 'R', 'Sanchez', '0', '1961-02-05', 'M', 'NULL', 'F', 'michelle24@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3396 Olivera Rd.', 'NULL', '1 (11) 500 555-0147', '2012-06-15', '5-10 Miles'], ['26570', '18', 'AW00026570', 'NULL', 'Hunter', 'NULL', 'Gonzales', '0', '1960-11-07', 'M', 'NULL', 'M', 'hunter14@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4679 Cardinal Dr', 'NULL', '1 (11) 500 555-0154', '2012-06-18', '5-10 Miles'], ['26571', '22', 'AW00026571', 'NULL', 'Lacey', 'K', 'Pal', '0', '1960-08-15', 'S', 'NULL', 'F', 'lacey2@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6890 Highland Road', 'NULL', '1 (11) 500 555-0197', '2012-06-14', '1-2 Miles'], ['26572', '66', 'AW00026572', 'NULL', 'Jessica', 'NULL', 'Russell', '0', '1981-05-18', 'S', 'NULL', 'F', 'jessica44@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6155 Larch Ct.', 'NULL', '274-555-0128', '2012-10-31', '1-2 Miles'], ['26573', '641', 'AW00026573', 'NULL', 'Samantha', 'NULL', 'Clark', '0', '1980-11-14', 'M', 'NULL', 'F', 'samantha20@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3022 Terra Calitina', 'NULL', '556-555-0128', '2013-02-04', '5-10 Miles'], ['26574', '300', 'AW00026574', 'NULL', 'Jordan', 'NULL', 'Allen', '0', '1981-03-25', 'M', 'NULL', 'M', 'jordan76@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5586 Pacheco', 'NULL', '612-555-0181', '2013-11-10', '5-10 Miles'], ['26575', '302', 'AW00026575', 'NULL', 'Toni', 'E', 'Gonzalez', '0', '1981-01-04', 'S', 'NULL', 'F', 'toni19@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2657 Honey Trail Lane', 'NULL', '113-555-0174', '2012-05-10', '1-2 Miles'], ['26576', '335', 'AW00026576', 'NULL', 'Kaitlyn', 'NULL', 'Robinson', '0', '1980-07-09', 'M', 'NULL', 'F', 'kaitlyn41@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5288 York Dr.', 'NULL', '935-555-0189', '2013-05-31', '5-10 Miles'], ['26577', '339', 'AW00026577', 'NULL', 'Cindy', 'E', 'Edwards', '0', '1980-08-01', 'M', 'NULL', 'F', 'cindy20@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8468 Clifford Court', 'NULL', '882-555-0188', '2013-06-01', '5-10 Miles'], ['26578', '339', 'AW00026578', 'NULL', 'Jeremy', 'NULL', 'White', '0', '1981-04-23', 'S', 'NULL', 'M', 'jeremy3@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9830 May Way', 'NULL', '642-555-0133', '2013-10-28', '5-10 Miles'], ['26579', '369', 'AW00026579', 'NULL', 'Hunter', 'NULL', 'Hayes', '0', '1979-11-19', 'S', 'NULL', 'M', 'hunter18@adventure-works.com', '50000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2197 Heights Ave.', 'NULL', '174-555-0134', '2012-05-23', '1-2 Miles'], ['26580', '548', 'AW00026580', 'NULL', 'Paige', 'NULL', 'Ramirez', '0', '1980-01-14', 'M', 'NULL', 'F', 'paige30@adventure-works.com', '50000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2317 Matchstick Drive', 'NULL', '820-555-0189', '2014-01-03', '5-10 Miles'], ['26581', '609', 'AW00026581', 'NULL', 'Mariah', 'F', 'Patterson', '0', '1979-05-22', 'M', 'NULL', 'F', 'mariah15@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3366 Carson Street', 'NULL', '523-555-0180', '2012-05-22', '5-10 Miles'], ['26582', '49', 'AW00026582', 'NULL', 'Fernando', 'NULL', 'Moore', '0', '1978-08-31', 'M', 'NULL', 'M', 'fernando8@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '764 Teak Court', 'NULL', '647-555-0151', '2012-11-21', '5-10 Miles'], ['26583', '369', 'AW00026583', 'NULL', 'James', 'P', 'Patterson', '0', '1982-02-10', 'S', 'NULL', 'M', 'james26@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '9640 Alderwood Lane', 'NULL', '596-555-0114', '2013-07-15', '1-2 Miles'], ['26584', '644', 'AW00026584', 'NULL', 'Benjamin', 'A', 'Alexander', '0', '1981-08-23', 'M', 'NULL', 'M', 'benjamin20@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '757 Eureka Lane', 'NULL', '240-555-0151', '2013-01-29', '1-2 Miles'], ['26585', '10', 'AW00026585', 'NULL', 'Alejandro', 'R', 'Xu', '0', '1962-01-12', 'S', 'NULL', 'M', 'alejandro15@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6389 Sandview Dr.', 'NULL', '1 (11) 500 555-0175', '2012-05-31', '5-10 Miles'], ['26586', '611', 'AW00026586', 'NULL', 'Alexandra', 'NULL', 'Baker', '0', '1982-01-09', 'M', 'NULL', 'F', 'alexandra58@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3173 Hilltop Dr.', 'NULL', '996-555-0185', '2013-07-16', '5-10 Miles'], ['26587', '13', 'AW00026587', 'NULL', 'Mario', 'W', 'Johnsen', '0', '1962-09-05', 'S', 'NULL', 'M', 'mario9@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3165 Fountain Rd.', 'NULL', '1 (11) 500 555-0111', '2012-06-06', '1-2 Miles'], ['26588', '30', 'AW00026588', 'NULL', 'Dustin', 'NULL', 'Pal', '0', '1963-03-21', 'M', 'NULL', 'M', 'dustin12@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9105 Santa Fe', 'NULL', '1 (11) 500 555-0153', '2012-07-09', '5-10 Miles'], ['26589', '13', 'AW00026589', 'NULL', 'Julie', 'NULL', 'Tang', '0', '1974-01-29', 'S', 'NULL', 'F', 'julie8@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '205 Park Blvd.', 'NULL', '1 (11) 500 555-0140', '2012-07-28', '5-10 Miles'], ['26590', '3', 'AW00026590', 'NULL', 'Jorge', 'L', 'Guo', '0', '1964-05-30', 'M', 'NULL', 'M', 'jorge20@adventure-works.com', '100000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '9784 Mt Etna Drive', 'NULL', '1 (11) 500 555-0132', '2013-10-17', '10+ Miles'], ['26591', '34', 'AW00026591', 'NULL', 'Aimee', 'NULL', 'Chen', '0', '1969-08-01', 'S', 'NULL', 'F', 'aimee2@adventure-works.com', '100000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2785 Terrace Dr.', 'NULL', '1 (11) 500 555-0180', '2012-07-18', '2-5 Miles'], ['26592', '39', 'AW00026592', 'NULL', 'Brenda', 'NULL', 'Lopez', '0', '1975-10-31', 'S', 'NULL', 'F', 'brenda20@adventure-works.com', '100000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '9040 Pierce', 'NULL', '1 (11) 500 555-0196', '2013-05-26', '2-5 Miles'], ['26593', '329', 'AW00026593', 'NULL', 'Eduardo', 'NULL', 'Campbell', '0', '1971-09-15', 'S', 'NULL', 'M', 'eduardo40@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '9536 Mt. Hood Circle', 'NULL', '402-555-0123', '2013-12-18', '1-2 Miles'], ['26594', '348', 'AW00026594', 'NULL', 'Melissa', 'NULL', 'Wood', '0', '1968-08-02', 'M', 'NULL', 'F', 'melissa21@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1395 Dos Rios Drive', 'NULL', '459-555-0122', '2013-06-07', '5-10 Miles'], ['26595', '623', 'AW00026595', 'NULL', 'Alyssa', 'C', 'Bailey', '0', '1962-10-03', 'M', 'NULL', 'F', 'alyssa33@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8811 Lombardy Lane', 'NULL', '715-555-0165', '2014-01-05', '5-10 Miles'], ['26596', '343', 'AW00026596', 'NULL', 'Antonio', 'NULL', 'Hayes', '0', '1969-11-30', 'M', 'NULL', 'M', 'antonio23@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3341 Riverside Dr.', 'NULL', '959-555-0114', '2013-06-09', '2-5 Miles'], ['26597', '648', 'AW00026597', 'NULL', 'Madison', 'NULL', 'Lewis', '0', '1969-07-04', 'S', 'NULL', 'F', 'madison21@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6394 Dumbarton Drive', 'NULL', '788-555-0156', '2014-01-09', '0-1 Miles'], ['26598', '642', 'AW00026598', 'NULL', 'Charles', 'R', 'Adams', '0', '1969-08-30', 'S', 'NULL', 'M', 'charles35@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1258 Steven Way', 'NULL', '257-555-0115', '2013-02-04', '2-5 Miles'], ['26599', '385', 'AW00026599', 'NULL', 'Allison', 'NULL', 'Reed', '0', '1969-07-13', 'M', 'NULL', 'F', 'allison20@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8779 Gatewood Court', 'NULL', '770-555-0129', '2013-02-11', '2-5 Miles'], ['26600', '355', 'AW00026600', 'NULL', 'Michelle', 'NULL', 'Gray', '0', '1970-01-19', 'S', 'NULL', 'F', 'michelle7@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2047 Westbury Dr', 'NULL', '372-555-0129', '2012-05-15', '0-1 Miles'], ['26601', '347', 'AW00026601', 'NULL', 'Kyle', 'J', 'Gonzalez', '0', '1975-06-21', 'S', 'NULL', 'M', 'kyle38@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4676 Duckhorn Court', 'NULL', '477-555-0132', '2012-05-18', '2-5 Miles'], ['26602', '335', 'AW00026602', 'NULL', 'Noah', 'NULL', 'Yang', '0', '1969-04-02', 'S', 'NULL', 'M', 'noah23@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '7022 E Trident Dr', 'NULL', '591-555-0114', '2012-06-08', '2-5 Miles'], ['26603', '302', 'AW00026603', 'NULL', 'Sheila', 'L', 'Ruiz', '0', '1968-09-30', 'S', 'NULL', 'F', 'sheila2@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '9171 Driftwood Court', 'NULL', '216-555-0136', '2012-06-08', '0-1 Miles'], ['26604', '359', 'AW00026604', 'NULL', 'Elizabeth', 'NULL', 'West', '0', '1974-05-07', 'S', 'NULL', 'F', 'elizabeth42@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3919 Fern Leaf Lane', 'NULL', '290-555-0134', '2012-06-13', '0-1 Miles'], ['26605', '338', 'AW00026605', 'NULL', 'Brandon', 'R', 'Foster', '0', '1968-08-26', 'S', 'NULL', 'M', 'brandon13@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '679 Land Ave', 'NULL', '743-555-0118', '2014-01-25', '2-5 Miles'], ['26606', '633', 'AW00026606', 'NULL', 'Hannah', 'S', 'Harris', '0', '1974-11-29', 'S', 'NULL', 'F', 'hannah12@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4514 Terry Lynn Lane', 'NULL', '182-555-0145', '2012-06-08', '2-5 Miles'], ['26607', '299', 'AW00026607', 'NULL', 'Natalie', 'L', 'Powell', '0', '1969-01-07', 'M', 'NULL', 'F', 'natalie31@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7569 Mt. Everest Court', 'NULL', '403-555-0151', '2012-06-22', '2-5 Miles'], ['26608', '300', 'AW00026608', 'NULL', 'Aaron', 'R', 'Nelson', '0', '1980-01-10', 'S', 'NULL', 'M', 'aaron42@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '9819 Anchor Court', 'NULL', '690-555-0178', '2012-06-24', '0-1 Miles'], ['26609', '536', 'AW00026609', 'NULL', 'Abigail', 'A', 'Kelly', '0', '1978-10-05', 'M', 'NULL', 'F', 'abigail23@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '896 Southdale', 'NULL', '137-555-0115', '2012-06-17', '0-1 Miles'], ['26610', '345', 'AW00026610', 'NULL', 'Mary', 'NULL', 'Perez', '0', '1968-05-08', 'M', 'NULL', 'F', 'mary25@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8343 Chilpancingo Pkwy.', 'NULL', '271-555-0116', '2012-06-21', '2-5 Miles'], ['26611', '311', 'AW00026611', 'NULL', 'Kayla', 'NULL', 'Henderson', '0', '1967-10-17', 'M', 'NULL', 'F', 'kayla29@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4173 Willow Pass Road', 'NULL', '561-555-0149', '2012-06-06', '2-5 Miles'], ['26612', '299', 'AW00026612', 'NULL', 'Janet', 'D', 'Romero', '0', '1966-09-01', 'M', 'NULL', 'F', 'janet14@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '8015 Climbing Vine Court', 'NULL', '449-555-0114', '2013-10-20', '10+ Miles'], ['26613', '302', 'AW00026613', 'NULL', 'Priscilla', 'NULL', 'Lal', '0', '1966-12-23', 'M', 'NULL', 'F', 'priscilla8@adventure-works.com', '40000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '5412 Iris Ct', 'NULL', '439-555-0149', '2014-01-19', '5-10 Miles'], ['26614', '637', 'AW00026614', 'NULL', 'Richard', 'S', 'Robinson', '0', '1966-12-03', 'S', 'NULL', 'M', 'richard12@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2030 Hill Drive', 'NULL', '646-555-0154', '2012-06-16', '2-5 Miles'], ['26615', '60', 'AW00026615', 'NULL', 'David', 'W', 'Powell', '0', '1966-10-04', 'M', 'NULL', 'M', 'david41@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6774 Alier Drive', 'NULL', '205-555-0184', '2012-11-07', '2-5 Miles'], ['26616', '536', 'AW00026616', 'NULL', 'Colin', 'G', 'Goel', '0', '1976-09-11', 'M', 'NULL', 'M', 'colin42@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9330 Georgia Dr.', 'NULL', '386-555-0134', '2012-06-17', '0-1 Miles'], ['26617', '369', 'AW00026617', 'NULL', 'Isaiah', 'NULL', 'Peterson', '0', '1966-04-10', 'M', 'NULL', 'M', 'isaiah4@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9442 Thors Bay Road', 'NULL', '673-555-0140', '2012-06-10', '2-5 Miles'], ['26618', '368', 'AW00026618', 'NULL', 'Amanda', 'NULL', 'Morris', '0', '1965-08-17', 'M', 'NULL', 'F', 'amanda1@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7266 Corcoran Road', 'NULL', '498-555-0189', '2012-06-03', '2-5 Miles'], ['26619', '631', 'AW00026619', 'NULL', 'Thomas', 'M', 'Hill', '0', '1965-09-23', 'M', 'NULL', 'M', 'thomas49@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2583 Thissen Court', 'NULL', '595-555-0162', '2012-06-01', '0-1 Miles'], ['26620', '63', 'AW00026620', 'NULL', 'Isabella', 'NULL', 'Green', '0', '1978-05-17', 'S', 'NULL', 'F', 'isabella45@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '7355 Macarthur Avenue', 'NULL', '529-555-0179', '2011-01-27', '0-1 Miles'], ['26621', '536', 'AW00026621', 'NULL', 'Sarah', 'L', 'Wood', '0', '1972-11-18', 'S', 'NULL', 'F', 'sarah27@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6097 Notre Dame Ave.', 'NULL', '484-555-0159', '2013-10-01', '2-5 Miles'], ['26622', '614', 'AW00026622', 'NULL', 'Jan', 'NULL', 'Howard', '0', '1973-03-04', 'S', 'NULL', 'F', 'jan9@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9897 Bayview Cir', 'NULL', '461-555-0141', '2012-06-12', '0-1 Miles'], ['26623', '618', 'AW00026623', 'NULL', 'Alexandra', 'C', 'Ross', '0', '1972-08-10', 'S', 'NULL', 'F', 'alexandra27@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9277 Ridgewood Court', 'NULL', '484-555-0190', '2012-06-20', '2-5 Miles'], ['26624', '637', 'AW00026624', 'NULL', 'Elizabeth', 'A', 'Russell', '0', '1972-11-02', 'S', 'NULL', 'F', 'elizabeth48@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '7297 Kaywood Drive', 'NULL', '716-555-0190', '2012-06-26', '2-5 Miles'], ['26625', '553', 'AW00026625', 'NULL', 'Lauren', 'M', 'Barnes', '0', '1978-12-15', 'S', 'NULL', 'F', 'lauren50@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '7297 Rosalinda', 'NULL', '457-555-0148', '2012-06-21', '2-5 Miles'], ['26626', '302', 'AW00026626', 'NULL', 'Dalton', 'NULL', 'Taylor', '0', '1972-09-21', 'S', 'NULL', 'M', 'dalton8@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '6985 Florencia', 'NULL', '159-555-0190', '2012-06-05', '0-1 Miles'], ['26627', '312', 'AW00026627', 'NULL', 'Jose', 'J', 'Alexander', '0', '1973-02-03', 'M', 'NULL', 'M', 'jose13@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '6905 Camino Ricardo', 'NULL', '873-555-0162', '2012-06-24', '0-1 Miles'], ['26628', '641', 'AW00026628', 'NULL', 'Lucas', 'J', 'Lee', '0', '1932-10-31', 'S', 'NULL', 'M', 'lucas36@adventure-works.com', '40000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1646 Texas Way', 'NULL', '703-555-0179', '2013-05-12', '0-1 Miles'], ['26629', '53', 'AW00026629', 'NULL', 'Miranda', 'NULL', 'Price', '0', '1965-08-05', 'M', 'NULL', 'F', 'miranda0@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9397 N. 8th Street', 'NULL', '367-555-0196', '2011-02-16', '0-1 Miles'], ['26630', '64', 'AW00026630', 'NULL', 'Vanessa', 'NULL', 'Powell', '0', '1965-09-12', 'M', 'NULL', 'F', 'vanessa9@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7503 Sheffield Place', '# 19', '379-555-0177', '2011-04-21', '2-5 Miles'], ['26631', '345', 'AW00026631', 'NULL', 'Isaiah', 'A', 'Stewart', '0', '1965-08-29', 'M', 'NULL', 'M', 'isaiah25@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7752 Sunset Meadows Ln.', 'NULL', '765-555-0118', '2012-06-09', '2-5 Miles'], ['26632', '609', 'AW00026632', 'NULL', 'Isabella', 'B', 'Moore', '0', '1971-12-21', 'M', 'NULL', 'F', 'isabella63@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2972 East Lake Court', 'NULL', '207-555-0183', '2012-06-15', '2-5 Miles'], ['26633', '338', 'AW00026633', 'NULL', 'Gabrielle', 'R', 'Ward', '0', '1966-05-08', 'M', 'NULL', 'F', 'gabrielle12@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5522 Grading Way', 'NULL', '600-555-0158', '2012-06-01', '2-5 Miles'], ['26634', '347', 'AW00026634', 'NULL', 'Devin', 'P', 'Walker', '0', '1971-05-09', 'M', 'NULL', 'M', 'devin20@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9416 Browse Ct', 'NULL', '602-555-0171', '2012-05-31', '0-1 Miles'], ['26635', '326', 'AW00026635', 'NULL', 'Jasmine', 'NULL', 'Harris', '0', '1964-11-10', 'M', 'NULL', 'F', 'jasmine12@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8224 Georgia Street', 'NULL', '201-555-0134', '2012-06-09', '2-5 Miles'], ['26636', '539', 'AW00026636', 'NULL', 'Miguel', 'NULL', 'Walker', '0', '1964-11-14', 'M', 'NULL', 'M', 'miguel23@adventure-works.com', '60000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '7 Churchill Dr.', 'NULL', '679-555-0194', '2013-07-26', '2-5 Miles'], ['26637', '316', 'AW00026637', 'NULL', 'Thomas', 'C', 'Robinson', '0', '1964-09-23', 'M', 'NULL', 'M', 'thomas58@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '8354 Sunset Meadows Ln.', 'NULL', '348-555-0169', '2014-01-02', '2-5 Miles'], ['26638', '642', 'AW00026638', 'NULL', 'Olivia', 'V', 'Flores', '0', '1964-12-21', 'S', 'NULL', 'F', 'olivia58@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '7682 Alta Vista', 'NULL', '980-555-0126', '2012-06-10', '0-1 Miles'], ['26639', '311', 'AW00026639', 'NULL', 'Riley', 'P', 'Diaz', '0', '1964-08-14', 'M', 'NULL', 'F', 'riley18@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '3', '8398 Kathryn Drive', 'NULL', '543-555-0176', '2013-08-04', '10+ Miles'], ['26640', '49', 'AW00026640', 'NULL', 'Eduardo', 'J', 'Lopez', '0', '1965-02-01', 'S', 'NULL', 'M', 'eduardo28@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '3', '8047 Dover Drive', 'NULL', '837-555-0113', '2011-04-28', '10+ Miles'], ['26641', '298', 'AW00026641', 'NULL', 'Arturo', 'J', 'Xie', '0', '1965-02-01', 'S', 'NULL', 'M', 'arturo27@adventure-works.com', '80000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8047 Dover Drive', 'NULL', '383-555-0115', '2012-06-05', '0-1 Miles'], ['26642', '552', 'AW00026642', 'NULL', 'Gabrielle', 'J', 'Evans', '0', '1963-12-16', 'M', 'NULL', 'F', 'gabrielle45@adventure-works.com', '80000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4619 Mount Orange Ct', 'NULL', '547-555-0153', '2012-06-06', '0-1 Miles'], ['26643', '66', 'AW00026643', 'NULL', 'Benjamin', 'G', 'Miller', '0', '1964-04-11', 'M', 'NULL', 'M', 'benjamin40@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '9810 Rishell Ct.', 'NULL', '645-555-0112', '2011-05-27', '2-5 Miles'], ['26644', '632', 'AW00026644', 'NULL', 'Jenna', 'E', 'Hernandez', '0', '1969-04-17', 'S', 'NULL', 'F', 'jenna17@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4795 Hawthorne Dr.', 'NULL', '169-555-0133', '2012-06-17', '0-1 Miles'], ['26645', '311', 'AW00026645', 'NULL', 'Morgan', 'S', 'Richardson', '0', '1964-02-19', 'S', 'NULL', 'F', 'morgan57@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '8736 E. 62nd Street', 'NULL', '559-555-0128', '2012-06-03', '2-5 Miles'], ['26646', '348', 'AW00026646', 'NULL', 'Jordyn', 'NULL', 'Perry', '0', '1980-10-14', 'S', 'NULL', 'F', 'jordyn7@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6788 Edward Ave', 'NULL', '331-555-0195', '2012-06-17', '2-5 Miles'], ['26647', '368', 'AW00026647', 'NULL', 'Jasmine', 'D', 'Simmons', '0', '1969-03-24', 'S', 'NULL', 'F', 'jasmine54@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7214 Peachwillow', 'NULL', '617-555-0161', '2012-06-26', '2-5 Miles'], ['26648', '300', 'AW00026648', 'NULL', 'Riley', 'NULL', 'Rogers', '0', '1975-04-19', 'S', 'NULL', 'F', 'riley38@adventure-works.com', '70000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '911 Nicholas Drive', 'NULL', '990-555-0122', '2013-11-05', '2-5 Miles'], ['26649', '311', 'AW00026649', 'NULL', 'Emily', 'F', 'Perry', '0', '1975-04-03', 'S', 'NULL', 'F', 'emily32@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '5152 Fine Dr.', 'NULL', '825-555-0115', '2012-05-30', '0-1 Miles'], ['26650', '336', 'AW00026650', 'NULL', 'Kevin', 'NULL', 'Collins', '0', '1963-11-25', 'S', 'NULL', 'M', 'kevin39@adventure-works.com', '80000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7835 Rio Blanco Dr.', 'NULL', '837-555-0190', '2012-06-16', '0-1 Miles'], ['26651', '39', 'AW00026651', 'NULL', 'Gregory', 'NULL', 'Nara', '0', '1986-03-14', 'S', 'NULL', 'M', 'gregory20@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '2489 Teakwood Drive', 'NULL', '1 (11) 500 555-0191', '2012-07-22', '0-1 Miles'], ['26652', '36', 'AW00026652', 'NULL', 'Bruce', 'F', 'Moreno', '0', '1986-03-10', 'M', 'NULL', 'M', 'bruce29@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '9204 Park Highlands', 'NULL', '1 (11) 500 555-0173', '2012-07-07', '0-1 Miles'], ['26653', '2', 'AW00026653', 'NULL', 'Kaylee', 'NULL', 'Allen', '0', '1986-03-10', 'M', 'NULL', 'F', 'kaylee46@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '377 Trees Drive', 'NULL', '1 (11) 500 555-0121', '2012-07-12', '0-1 Miles'], ['26654', '32', 'AW00026654', 'NULL', 'Kathleen', 'NULL', 'Jimenez', '0', '1975-01-23', 'M', 'NULL', 'F', 'kathleen7@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '1955 Montgomery Ave', 'NULL', '1 (11) 500 555-0156', '2012-07-28', '0-1 Miles'], ['26655', '27', 'AW00026655', 'NULL', 'Kelvin', 'D', 'Sharma', '0', '1975-02-22', 'M', 'NULL', 'M', 'kelvin6@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '0', '465 Falcon Place', 'NULL', '1 (11) 500 555-0172', '2012-07-22', '0-1 Miles'], ['26656', '23', 'AW00026656', 'NULL', 'Amanda', 'NULL', 'Hall', '0', '1974-08-26', 'M', 'NULL', 'F', 'amanda66@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '3200 Vine Lane', 'NULL', '1 (11) 500 555-0169', '2012-07-21', '0-1 Miles'], ['26657', '39', 'AW00026657', 'NULL', 'Lucas', 'E', 'Hughes', '0', '1980-03-03', 'S', 'NULL', 'M', 'lucas59@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '154 Kentucky Dr.', 'NULL', '1 (11) 500 555-0135', '2012-07-09', '0-1 Miles'], ['26658', '32', 'AW00026658', 'NULL', 'Darryl', 'NULL', 'Liang', '0', '1974-11-30', 'M', 'NULL', 'M', 'darryl16@adventure-works.com', '100000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '3341 Riverside Dr.', 'NULL', '1 (11) 500 555-0166', '2012-07-14', '1-2 Miles'], ['26659', '24', 'AW00026659', 'NULL', 'Katrina', 'D', 'Yuan', '0', '1976-02-19', 'M', 'NULL', 'F', 'katrina6@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '9534 Hartnell Court', 'NULL', '1 (11) 500 555-0122', '2014-01-11', '0-1 Miles'], ['26660', '22', 'AW00026660', 'NULL', 'Kern', 'A', 'Sutton', '0', '1973-08-21', 'M', 'NULL', 'M', 'kern0@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5520 Sierra Ridge', 'NULL', '1 (11) 500 555-0133', '2012-07-25', '2-5 Miles'], ['26661', '14', 'AW00026661', 'NULL', 'Dawn', 'NULL', 'Zhu', '0', '1973-10-17', 'S', 'NULL', 'F', 'dawn16@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4469 Dellwood Court', 'NULL', '1 (11) 500 555-0171', '2012-07-24', '0-1 Miles'], ['26662', '40', 'AW00026662', 'NULL', 'Lori', 'C', 'Alvarez', '0', '1974-03-13', 'S', 'NULL', 'F', 'lori7@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2751 Hooftrail Way', 'NULL', '1 (11) 500 555-0110', '2012-08-02', '2-5 Miles'], ['26663', '30', 'AW00026663', 'NULL', 'Joanna', 'J', 'Serrano', '0', '1972-12-21', 'S', 'NULL', 'F', 'joanna15@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '296 Bel Air Dr.', 'NULL', '1 (11) 500 555-0160', '2012-08-19', '0-1 Miles'], ['26664', '8', 'AW00026664', 'NULL', 'Amy', 'W', 'Zhu', '0', '1973-05-20', 'M', 'NULL', 'F', 'amy20@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '6781 San Jose Ave', 'NULL', '1 (11) 500 555-0137', '2013-03-27', '10+ Miles'], ['26665', '3', 'AW00026665', 'NULL', 'Jésus', 'NULL', 'Vazquez', '0', '1973-04-25', 'S', 'NULL', 'M', 'jésus13@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '475 Santa Maria', 'NULL', '1 (11) 500 555-0142', '2013-05-25', '10+ Miles'], ['26666', '31', 'AW00026666', 'NULL', 'Ashlee', 'L', 'Beck', '0', '1974-09-08', 'S', 'NULL', 'F', 'ashlee4@adventure-works.com', '110000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '612 Patricia Ave.', 'NULL', '1 (11) 500 555-0168', '2012-08-24', '2-5 Miles'], ['26667', '36', 'AW00026667', 'NULL', 'Jillian', 'NULL', 'Patel', '0', '1975-05-19', 'S', 'NULL', 'F', 'jillian3@adventure-works.com', '120000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '139 Lancelot Drive', 'NULL', '1 (11) 500 555-0118', '2012-08-02', '1-2 Miles'], ['26668', '6', 'AW00026668', 'NULL', 'Toni', 'NULL', 'Madan', '0', '1972-12-21', 'M', 'NULL', 'F', 'toni7@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '4284 Boynton Avenue', 'NULL', '1 (11) 500 555-0180', '2013-04-04', '10+ Miles'], ['26669', '24', 'AW00026669', 'NULL', 'Curtis', 'E', 'Zeng', '0', '1972-10-31', 'M', 'NULL', 'M', 'curtis19@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '4089 Frisbie Court', 'NULL', '1 (11) 500 555-0168', '2013-05-15', '10+ Miles'], ['26670', '34', 'AW00026670', 'NULL', 'Jerry', 'NULL', 'Johnsen', '0', '1973-04-04', 'M', 'NULL', 'M', 'jerry12@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '3737 Bellord Ct', 'NULL', '1 (11) 500 555-0134', '2013-06-05', '10+ Miles'], ['26671', '26', 'AW00026671', 'NULL', 'Arthur', 'B', 'Patel', '0', '1973-02-24', 'M', 'NULL', 'M', 'arthur5@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1560 Harbor View Drive', 'NULL', '1 (11) 500 555-0188', '2013-10-05', '0-1 Miles'], ['26672', '12', 'AW00026672', 'NULL', 'Kelli', 'NULL', 'Sharma', '0', '1977-08-03', 'M', 'NULL', 'F', 'kelli32@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '6547 Lexington Road', 'NULL', '1 (11) 500 555-0120', '2013-10-26', '1-2 Miles'], ['26673', '40', 'AW00026673', 'NULL', 'Austin', 'NULL', 'Alexander', '0', '1971-11-01', 'M', 'NULL', 'M', 'austin15@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '5953 Pinewood Court', 'NULL', '1 (11) 500 555-0140', '2012-08-17', '2-5 Miles'], ['26674', '307', 'AW00026674', 'NULL', 'Ashley', 'NULL', 'Jackson', '0', '1959-03-15', 'M', 'NULL', 'F', 'ashley12@adventure-works.com', '60000.00', '3', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6566 Sepulveda Ct.', 'NULL', '147-555-0163', '2013-07-18', '10+ Miles'], ['26675', '358', 'AW00026675', 'NULL', 'Natalie', 'L', 'King', '0', '1962-09-21', 'M', 'NULL', 'F', 'natalie62@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5146 California Street', 'NULL', '232-555-0176', '2013-07-19', '5-10 Miles'], ['26676', '335', 'AW00026676', 'NULL', 'Emily', 'NULL', 'Jenkins', '0', '1963-01-16', 'M', 'NULL', 'F', 'emily31@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '494 Crown Court', 'NULL', '336-555-0144', '2012-06-11', '5-10 Miles'], ['26677', '338', 'AW00026677', 'NULL', 'William', 'R', 'Johnson', '0', '1962-05-06', 'M', 'NULL', 'M', 'william17@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5936 Rising Dawn Way', 'NULL', '194-555-0116', '2013-09-19', '5-10 Miles'], ['26678', '54', 'AW00026678', 'NULL', 'Miranda', 'NULL', 'Hughes', '0', '1962-05-20', 'S', 'NULL', 'F', 'miranda11@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '253 Hemlock Drive', 'NULL', '444-555-0141', '2013-08-02', '5-10 Miles'], ['26679', '635', 'AW00026679', 'NULL', 'Noah', 'K', 'Perry', '0', '1961-06-30', 'M', 'NULL', 'M', 'noah4@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3426 Fernwood Drive', 'NULL', '519-555-0183', '2013-07-15', '5-10 Miles'], ['26680', '627', 'AW00026680', 'NULL', 'Melissa', 'NULL', 'Powell', '0', '1967-11-09', 'S', 'NULL', 'F', 'melissa3@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9524 Show Rd', 'NULL', '194-555-0127', '2013-04-30', '1-2 Miles'], ['26681', '337', 'AW00026681', 'NULL', 'Zachary', 'NULL', 'Jackson', '0', '1961-10-01', 'S', 'NULL', 'M', 'zachary42@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '7815 Driftwood Drive', 'NULL', '674-555-0155', '2012-06-20', '5-10 Miles'], ['26682', '54', 'AW00026682', 'NULL', 'Richard', 'A', 'Diaz', '0', '1970-08-01', 'M', 'NULL', 'M', 'richard77@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '9183 Glenmount Dr.', 'NULL', '489-555-0188', '2013-08-16', '2-5 Miles'], ['26683', '68', 'AW00026683', 'NULL', 'Mariah', 'NULL', 'Simmons', '0', '1976-01-31', 'S', 'NULL', 'F', 'mariah20@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '2552 Weatherly Drive', 'NULL', '859-555-0111', '2011-05-04', '2-5 Miles'], ['26684', '299', 'AW00026684', 'NULL', 'Dustin', 'L', 'Andersen', '0', '1971-05-22', 'M', 'NULL', 'M', 'dustin13@adventure-works.com', '110000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '6999 Salem St.', 'NULL', '703-555-0184', '2012-06-12', '2-5 Miles'], ['26685', '345', 'AW00026685', 'NULL', 'Noah', 'NULL', 'Baker', '0', '1981-12-15', 'S', 'NULL', 'M', 'noah43@adventure-works.com', '130000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '4', '98 Roan Lane', 'NULL', '832-555-0113', '2013-10-12', '1-2 Miles'], ['26686', '50', 'AW00026686', 'NULL', 'Christian', 'R', 'Washington', '0', '1975-04-12', 'M', 'NULL', 'M', 'christian28@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '0', '4307 D Bel Air Dr', 'NULL', '115-555-0119', '2013-10-20', '0-1 Miles'], ['26687', '609', 'AW00026687', 'NULL', 'Marshall', 'NULL', 'Xu', '0', '1970-04-09', 'M', 'NULL', 'M', 'marshall26@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4553 Morello Ave', 'NULL', '543-555-0119', '2013-07-02', '2-5 Miles'], ['26688', '611', 'AW00026688', 'NULL', 'Brittney', 'E', 'Xu', '0', '1975-03-22', 'M', 'NULL', 'F', 'brittney11@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '9755 Glen Road', 'NULL', '974-555-0194', '2013-03-30', '0-1 Miles'], ['26689', '299', 'AW00026689', 'NULL', 'Arthur', 'NULL', 'Gill', '0', '1969-11-16', 'S', 'NULL', 'M', 'arthur38@adventure-works.com', '110000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '2569 Serrana Ct.', 'NULL', '404-555-0181', '2013-08-05', '1-2 Miles'], ['26690', '301', 'AW00026690', 'NULL', 'Alexia', 'NULL', 'Bennett', '0', '1970-03-11', 'M', 'NULL', 'F', 'alexia1@adventure-works.com', '110000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '6992 Ponderosa Drive', 'NULL', '396-555-0181', '2013-05-26', '2-5 Miles'], ['26691', '301', 'AW00026691', 'NULL', 'Tina', 'B', 'Suri', '0', '1970-06-05', 'S', 'NULL', 'F', 'tina2@adventure-works.com', '110000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '3347 Quigley Street', 'NULL', '128-555-0124', '2013-02-19', '1-2 Miles'], ['26692', '60', 'AW00026692', 'NULL', 'Isabella', 'L', 'Brown', '0', '1972-11-10', 'M', 'NULL', 'F', 'isabella61@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '3573 Holiday Hills', 'NULL', '150-555-0166', '2011-06-07', '5-10 Miles'], ['26693', '68', 'AW00026693', 'NULL', 'Charles', 'NULL', 'Perez', '0', '1967-10-13', 'M', 'NULL', 'M', 'charles40@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '1685 Rose Dr.', 'NULL', '747-555-0117', '2013-03-03', '5-10 Miles'], ['26694', '609', 'AW00026694', 'NULL', 'Aaron', 'J', 'Hughes', '0', '1961-12-18', 'S', 'NULL', 'M', 'aaron10@adventure-works.com', '80000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3566 Matterhorn Ct', 'NULL', '622-555-0113', '2012-07-16', '2-5 Miles'], ['26695', '336', 'AW00026695', 'NULL', 'Jocelyn', 'D', 'Diaz', '0', '1962-03-14', 'M', 'NULL', 'F', 'jocelyn21@adventure-works.com', '80000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4444 Acardia Pl', 'NULL', '549-555-0150', '2012-07-04', '2-5 Miles'], ['26696', '609', 'AW00026696', 'NULL', 'Robyn', 'NULL', 'Suarez', '0', '1961-04-13', 'S', 'NULL', 'F', 'robyn15@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6096 Fraga Court', 'NULL', '312-555-0195', '2013-04-28', '5-10 Miles'], ['26697', '300', 'AW00026697', 'NULL', 'Manuel', 'NULL', 'Arun', '0', '1985-01-06', 'M', 'NULL', 'M', 'manuel5@adventure-works.com', '100000.00', '0', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1437 Donaleen Cr', 'NULL', '773-555-0132', '2013-05-02', '5-10 Miles'], ['26698', '329', 'AW00026698', 'NULL', 'Brooke', 'L', 'Rivera', '0', '1969-04-02', 'M', 'NULL', 'F', 'brooke14@adventure-works.com', '120000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '8297 Pheasant Court', 'NULL', '486-555-0148', '2012-07-26', '5-10 Miles'], ['26699', '49', 'AW00026699', 'NULL', 'Joan', 'W', 'Coleman', '0', '1973-10-06', 'S', 'NULL', 'F', 'joan20@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3202 Jalisco', 'NULL', '517-555-0117', '2013-04-30', '5-10 Miles'], ['26700', '50', 'AW00026700', 'NULL', 'Sydney', 'NULL', 'Ramirez', '0', '1973-11-29', 'S', 'NULL', 'F', 'sydney17@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3925 North 39th Street', 'NULL', '141-555-0169', '2013-04-26', '5-10 Miles'], ['26701', '63', 'AW00026701', 'NULL', 'Katherine', 'L', 'Hill', '0', '1973-03-07', 'M', 'NULL', 'F', 'katherine70@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '7936 Hemlock Ave.', 'NULL', '929-555-0191', '2013-04-02', '5-10 Miles'], ['26702', '609', 'AW00026702', 'NULL', 'Cynthia', 'NULL', 'Arun', '0', '1973-03-31', 'M', 'NULL', 'F', 'cynthia11@adventure-works.com', '90000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '9027 Alan Dr', 'NULL', '555-555-0151', '2013-06-23', '1-2 Miles'], ['26703', '546', 'AW00026703', 'NULL', 'Wyatt', 'M', 'Miller', '0', '1968-02-17', 'M', 'NULL', 'M', 'wyatt6@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '2520 Almond Street', 'NULL', '401-555-0159', '2012-07-15', '5-10 Miles'], ['26704', '300', 'AW00026704', 'NULL', 'Frank', 'G', 'Alvarez', '0', '1973-09-07', 'S', 'NULL', 'M', 'frank35@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '6524 Geriola Court', 'NULL', '767-555-0177', '2013-11-12', '1-2 Miles'], ['26705', '361', 'AW00026705', 'NULL', 'Eric', 'L', 'Jenkins', '0', '1973-02-17', 'S', 'NULL', 'M', 'eric15@adventure-works.com', '150000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '2333 Fillet Ave', 'NULL', '111-555-0166', '2012-07-13', '2-5 Miles'], ['26706', '68', 'AW00026706', 'NULL', 'Bailey', 'B', 'Mitchell', '0', '1966-07-16', 'M', 'NULL', 'F', 'bailey31@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '3268 Hazelwood Lane', 'NULL', '315-555-0122', '2013-03-13', '2-5 Miles'], ['26707', '300', 'AW00026707', 'NULL', 'Sydney', 'M', 'Brooks', '0', '1977-10-20', 'M', 'NULL', 'F', 'sydney20@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '3792 Westwood Ct.', 'NULL', '990-555-0115', '2013-07-19', '2-5 Miles'], ['26708', '307', 'AW00026708', 'NULL', 'Katherine', 'NULL', 'Washington', '0', '1967-05-19', 'S', 'NULL', 'F', 'katherine39@adventure-works.com', '110000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '3248 Birdhaven Court', '# 1', '601-555-0119', '2012-06-30', '2-5 Miles'], ['26709', '331', 'AW00026709', 'NULL', 'Mary', 'O', 'King', '0', '1961-01-08', 'S', 'NULL', 'F', 'mary32@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9204 Birch Bark Dr.', 'NULL', '456-555-0173', '2013-10-10', '1-2 Miles'], ['26710', '361', 'AW00026710', 'NULL', 'Jan', 'J', 'Green', '0', '1961-05-24', 'M', 'NULL', 'F', 'jan14@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2574 Red Leaf', 'NULL', '306-555-0122', '2012-07-16', '5-10 Miles'], ['26711', '301', 'AW00026711', 'NULL', 'Mya', 'P', 'Bryant', '0', '1961-01-21', 'S', 'NULL', 'F', 'mya18@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '9351 Via Media', 'NULL', '867-555-0134', '2012-07-11', '1-2 Miles'], ['26712', '359', 'AW00026712', 'NULL', 'Ashley', 'S', 'Wilson', '0', '1965-03-02', 'S', 'NULL', 'F', 'ashley7@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9343 Seaview Avenue', 'NULL', '589-555-0188', '2013-07-31', '1-2 Miles'], ['26713', '312', 'AW00026713', 'NULL', 'Stephanie', 'R', 'Edwards', '0', '1959-09-23', 'M', 'NULL', 'F', 'stephanie51@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9028 Alan Dr.', 'NULL', '401-555-0198', '2013-06-05', '5-10 Miles'], ['26714', '607', 'AW00026714', 'NULL', 'Angela', 'NULL', 'Long', '0', '1959-08-22', 'S', 'NULL', 'F', 'angela12@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1727 The Trees Drive', 'NULL', '308-555-0112', '2013-05-18', '1-2 Miles'], ['26715', '348', 'AW00026715', 'NULL', 'Gabriella', 'NULL', 'Bell', '0', '1959-12-11', 'M', 'NULL', 'F', 'gabriella12@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3895 Mt. Tooth Place', 'NULL', '346-555-0181', '2013-10-09', '5-10 Miles'], ['26716', '59', 'AW00026716', 'NULL', 'Megan', 'J', 'Smith', '0', '1941-05-19', 'M', 'NULL', 'F', 'megan3@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '9484 Rhoda Way', 'NULL', '945-555-0186', '2013-11-28', '5-10 Miles'], ['26717', '536', 'AW00026717', 'Mr.', 'David', 'NULL', 'Simpson', '0', '1946-02-23', 'M', 'NULL', 'M', 'david24@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3956 Stonedale', 'NULL', '115-555-0100', '2012-07-07', '5-10 Miles'], ['26718', '337', 'AW00026718', 'NULL', 'Richard', 'NULL', 'Flores', '0', '1947-05-10', 'M', 'NULL', 'M', 'richard67@adventure-works.com', '100000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '3029 Crescent Ave.', 'NULL', '774-555-0146', '2012-07-08', '5-10 Miles'], ['26719', '536', 'AW00026719', 'NULL', 'Tamara', 'NULL', 'Li', '0', '1965-08-24', 'S', 'NULL', 'F', 'tamara34@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '7432 Corte Valencia', 'NULL', '208-555-0193', '2013-07-17', '1-2 Miles'], ['26720', '637', 'AW00026720', 'NULL', 'Seth', 'I', 'Watson', '0', '1965-11-04', 'M', 'NULL', 'M', 'seth73@adventure-works.com', '100000.00', '0', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '5254 Westwood Lane', 'NULL', '319-555-0137', '2013-08-08', '5-10 Miles'], ['26721', '299', 'AW00026721', 'NULL', 'Paula', 'L', 'Jimenez', '0', '1966-03-20', 'S', 'NULL', 'F', 'paula8@adventure-works.com', '100000.00', '0', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '920 Holiday Hills Drive', 'NULL', '115-555-0146', '2013-08-14', '1-2 Miles'], ['26722', '315', 'AW00026722', 'NULL', 'Alexandra', 'NULL', 'McDonald', '0', '1971-10-05', 'M', 'NULL', 'F', 'alexandra81@adventure-works.com', '110000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '4346 Via Rerrari', 'NULL', '436-555-0131', '2013-03-02', '2-5 Miles'], ['26723', '372', 'AW00026723', 'NULL', 'Devin', 'A', 'Kelly', '0', '1971-08-29', 'S', 'NULL', 'M', 'devin64@adventure-works.com', '170000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '4861 Via Valencia', 'NULL', '458-555-0128', '2012-07-25', '0-1 Miles'], ['26724', '548', 'AW00026724', 'NULL', 'Sydney', 'NULL', 'Edwards', '0', '1960-03-21', 'S', 'NULL', 'F', 'sydney45@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9923 Pampered Ct.', 'NULL', '116-555-0172', '2012-07-19', '5-10 Miles'], ['26725', '633', 'AW00026725', 'NULL', 'Alexis', 'L', 'Smith', '0', '1959-11-03', 'M', 'NULL', 'F', 'alexis0@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6820 Gladstone Dr.', 'NULL', '660-555-0112', '2012-07-18', '5-10 Miles'], ['26726', '614', 'AW00026726', 'NULL', 'Danielle', 'NULL', 'Rivera', '0', '1959-10-12', 'S', 'NULL', 'F', 'danielle19@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1711 Fruitwood St.', 'NULL', '154-555-0165', '2012-07-20', '1-2 Miles'], ['26727', '545', 'AW00026727', 'NULL', 'Jose', 'NULL', 'Clark', '0', '1959-12-14', 'M', 'NULL', 'M', 'jose80@adventure-works.com', '70000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '6252 Winding Lane', 'NULL', '285-555-0177', '2012-07-13', '5-10 Miles'], ['26728', '368', 'AW00026728', 'NULL', 'Elijah', 'NULL', 'Roberts', '0', '1964-01-30', 'S', 'NULL', 'M', 'elijah33@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '9847 Galloway Dr.', 'NULL', '853-555-0136', '2012-07-17', '1-2 Miles'], ['26729', '612', 'AW00026729', 'NULL', 'Brian', 'NULL', 'Gray', '0', '1958-07-12', 'S', 'NULL', 'M', 'brian18@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '8724 Sea Point Way', 'NULL', '503-555-0132', '2012-07-03', '1-2 Miles'], ['26730', '50', 'AW00026730', 'NULL', 'Rachel', 'C', 'Sanchez', '0', '1957-10-25', 'S', 'NULL', 'F', 'rachel28@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8722 Norcross Lane', 'NULL', '148-555-0110', '2013-10-07', '5-10 Miles'], ['26731', '343', 'AW00026731', 'NULL', 'Ethan', 'A', 'Clark', '0', '1957-10-08', 'M', 'NULL', 'M', 'ethan36@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '596 Springwood Way', 'NULL', '282-555-0179', '2012-07-30', '1-2 Miles'], ['26732', '358', 'AW00026732', 'NULL', 'Martin', 'NULL', 'Rienstra', '0', '1963-08-09', 'S', 'NULL', 'M', 'martin2@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '7148 Elmhurst Lane', 'NULL', '387-555-0150', '2013-09-20', '5-10 Miles'], ['26733', '609', 'AW00026733', 'NULL', 'Benjamin', 'A', 'Smith', '0', '1962-09-19', 'M', 'NULL', 'M', 'benjamin46@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6273 Bel Air Dr.', 'NULL', '685-555-0175', '2013-10-22', '5-10 Miles'], ['26734', '618', 'AW00026734', 'NULL', 'Morgan', 'A', 'Powell', '0', '1962-02-12', 'M', 'NULL', 'F', 'morgan78@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '4082 Virginia Hills', 'NULL', '837-555-0147', '2012-07-12', '1-2 Miles'], ['26735', '623', 'AW00026735', 'NULL', 'Grace', 'NULL', 'White', '0', '1956-08-13', 'S', 'NULL', 'F', 'grace12@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '1858 Blocking Cr.', 'NULL', '574-555-0132', '2012-07-14', '1-2 Miles'], ['26736', '298', 'AW00026736', 'NULL', 'Lacey', 'A', 'Xu', '0', '1955-03-23', 'S', 'NULL', 'F', 'lacey24@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4903 Franklin Canyon Road', 'NULL', '535-555-0129', '2013-02-15', '5-10 Miles'], ['26737', '648', 'AW00026737', 'NULL', 'Katherine', 'A', 'Young', '0', '1955-03-23', 'S', 'NULL', 'F', 'katherine98@adventure-works.com', '40000.00', '4', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4903 Franklin Canyon Road', 'NULL', '541-555-0177', '2013-05-31', '5-10 Miles'], ['26738', '352', 'AW00026738', 'NULL', 'Katherine', 'M', 'Simmons', '0', '1971-05-03', 'S', 'NULL', 'F', 'katherine41@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1111 Bayview Cr', 'NULL', '186-555-0182', '2013-11-30', '5-10 Miles'], ['26739', '10', 'AW00026739', 'NULL', 'Corey', 'NULL', 'Shen', '0', '1969-11-09', 'M', 'NULL', 'M', 'corey2@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '7128 Seaview Avenue', 'NULL', '1 (11) 500 555-0197', '2013-03-04', '10+ Miles'], ['26740', '23', 'AW00026740', 'NULL', 'Donald', 'A', 'Lopez', '0', '1974-11-17', 'M', 'NULL', 'M', 'donald18@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '8956 Birch Bark Road', 'NULL', '1 (11) 500 555-0111', '2012-08-24', '0-1 Miles'], ['26741', '5', 'AW00026741', 'NULL', 'Nichole', 'J', 'Pal', '0', '1973-02-14', 'M', 'NULL', 'F', 'nichole12@adventure-works.com', '90000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '2765 Robbins Place', 'NULL', '1 (11) 500 555-0197', '2013-08-12', '0-1 Miles'], ['26742', '34', 'AW00026742', 'NULL', 'James', 'E', 'Collins', '0', '1932-09-05', 'M', 'NULL', 'M', 'james52@adventure-works.com', '70000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5149 Atchinson Stage Ct.', 'NULL', '1 (11) 500 555-0193', '2013-10-02', '5-10 Miles'], ['26743', '17', 'AW00026743', 'NULL', 'Derek', 'NULL', 'Chande', '0', '1967-10-12', 'S', 'NULL', 'M', 'derek13@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2318 Glen Road', 'NULL', '1 (11) 500 555-0113', '2012-08-13', '5-10 Miles'], ['26744', '21', 'AW00026744', 'NULL', 'Mitchell', 'NULL', 'Yuan', '0', '1973-08-08', 'M', 'NULL', 'M', 'mitchell6@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9687 Breck Court', 'NULL', '1 (11) 500 555-0119', '2012-07-31', '5-10 Miles'], ['26745', '30', 'AW00026745', 'NULL', 'Valerie', 'J', 'Huang', '0', '1968-05-19', 'M', 'NULL', 'F', 'valerie7@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9484 Rhoda Way', 'NULL', '1 (11) 500 555-0182', '2012-08-22', '5-10 Miles'], ['26746', '20', 'AW00026746', 'NULL', 'Amber', 'NULL', 'Adams', '0', '1972-02-01', 'S', 'NULL', 'F', 'amber16@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9720 Morning Glory Dr.', 'NULL', '1 (11) 500 555-0116', '2012-08-07', '0-1 Miles'], ['26747', '12', 'AW00026747', 'NULL', 'Candice', 'NULL', 'Cai', '0', '1972-01-02', 'S', 'NULL', 'F', 'candice5@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1345 Bloching Circle', 'NULL', '1 (11) 500 555-0147', '2012-08-14', '0-1 Miles'], ['26748', '28', 'AW00026748', 'NULL', 'Stacey', 'NULL', 'She', '0', '1971-09-15', 'S', 'NULL', 'F', 'stacey24@adventure-works.com', '100000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '9536 Mt. Hood Circle', 'NULL', '1 (11) 500 555-0196', '2012-08-11', '0-1 Miles'], ['26749', '25', 'AW00026749', 'NULL', 'Rafael', 'NULL', 'Sun', '0', '1972-03-03', 'M', 'NULL', 'M', 'rafael14@adventure-works.com', '100000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3845 Mt. Dell Drive', 'NULL', '1 (11) 500 555-0189', '2012-08-03', '2-5 Miles'], ['26750', '6', 'AW00026750', 'NULL', 'Randall', 'NULL', 'Alvarez', '0', '1965-08-08', 'S', 'NULL', 'M', 'randall6@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9970 San Miguel Rd', 'NULL', '1 (11) 500 555-0173', '2012-09-22', '0-1 Miles'], ['26751', '19', 'AW00026751', 'NULL', 'Mallory', 'E', 'Serrano', '0', '1971-07-22', 'S', 'NULL', 'F', 'mallory3@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4467 Hoover Court', 'NULL', '1 (11) 500 555-0163', '2012-09-16', '5-10 Miles'], ['26752', '30', 'AW00026752', 'NULL', 'Henry', 'NULL', 'Perez', '0', '1971-09-15', 'M', 'NULL', 'M', 'henry22@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2555 Via Rosa', 'NULL', '1 (11) 500 555-0113', '2012-08-28', '5-10 Miles'], ['26753', '2', 'AW00026753', 'NULL', 'Summer', 'G', 'Patel', '0', '1971-07-20', 'S', 'NULL', 'F', 'summer3@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6705 Tweed Lane', 'NULL', '1 (11) 500 555-0185', '2012-08-28', '0-1 Miles'], ['26754', '36', 'AW00026754', 'NULL', 'Candice', 'J', 'Zimmerman', '0', '1966-04-01', 'S', 'NULL', 'F', 'candice3@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4643 Elkwood Dr.', 'NULL', '1 (11) 500 555-0137', '2012-09-18', '5-10 Miles'], ['26755', '13', 'AW00026755', 'NULL', 'Brendan', 'NULL', 'Jai', '0', '1970-12-01', 'M', 'NULL', 'M', 'brendan9@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '8839 Seaview Dr.', 'NULL', '1 (11) 500 555-0140', '2013-12-14', '1-2 Miles'], ['26756', '27', 'AW00026756', 'NULL', 'Brooke', 'P', 'Gray', '0', '1971-02-24', 'S', 'NULL', 'F', 'brooke6@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '4997 Clayburn Rd', 'NULL', '1 (11) 500 555-0180', '2013-09-22', '1-2 Miles'], ['26757', '33', 'AW00026757', 'NULL', 'Evan', 'Y', 'Rivera', '0', '1964-09-10', 'S', 'NULL', 'M', 'evan18@adventure-works.com', '90000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '353 Citrus Ave.', 'NULL', '1 (11) 500 555-0132', '2012-09-18', '2-5 Miles'], ['26758', '8', 'AW00026758', 'NULL', 'Damien', 'C', 'Zhang', '0', '1964-08-29', 'S', 'NULL', 'M', 'damien0@adventure-works.com', '100000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5176 Conifer Court', 'NULL', '1 (11) 500 555-0118', '2012-09-24', '5-10 Miles'], ['26759', '21', 'AW00026759', 'NULL', 'Hailey', 'C', 'Allen', '0', '1968-08-27', 'M', 'NULL', 'F', 'hailey62@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '493 Terry Lynn Lane', 'NULL', '1 (11) 500 555-0179', '2013-07-16', '0-1 Miles'], ['26760', '40', 'AW00026760', 'NULL', 'Katherine', 'F', 'Butler', '0', '1980-04-12', 'S', 'NULL', 'F', 'katherine40@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '9361 Corte Del Sol', 'NULL', '1 (11) 500 555-0140', '2012-09-10', '5-10 Miles'], ['26761', '23', 'AW00026761', 'NULL', 'Tabitha', 'D', 'Prasad', '0', '1968-01-01', 'M', 'NULL', 'F', 'tabitha7@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5778 Hames Dr.', 'NULL', '1 (11) 500 555-0130', '2012-09-14', '5-10 Miles'], ['26762', '38', 'AW00026762', 'NULL', 'Rachael', 'D', 'Perez', '0', '1967-10-08', 'M', 'NULL', 'F', 'rachael20@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1693 Ohara Avenue', 'NULL', '1 (11) 500 555-0111', '2013-04-30', '0-1 Miles'], ['26763', '4', 'AW00026763', 'NULL', 'Grant', 'B', 'Shen', '0', '1966-08-13', 'M', 'NULL', 'M', 'grant4@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6448 Castle Court', 'NULL', '1 (11) 500 555-0195', '2012-09-08', '5-10 Miles'], ['26764', '4', 'AW00026764', 'NULL', 'Alvin', 'NULL', 'Li', '0', '1966-08-09', 'M', 'NULL', 'M', 'alvin4@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '824 Gregory Drive', 'NULL', '1 (11) 500 555-0110', '2012-08-30', '5-10 Miles'], ['26765', '8', 'AW00026765', 'NULL', 'Dominique', 'H', 'Chandra', '0', '1966-08-31', 'S', 'NULL', 'F', 'dominique2@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9768 Glenellen Court', 'NULL', '1 (11) 500 555-0192', '2013-03-13', '5-10 Miles'], ['26766', '13', 'AW00026766', 'NULL', 'Jodi', 'NULL', 'Andersen', '0', '1972-09-07', 'M', 'NULL', 'F', 'jodi13@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6920 Merriewood Drive', 'NULL', '1 (11) 500 555-0183', '2013-11-13', '10+ Miles'], ['26767', '14', 'AW00026767', 'NULL', 'Alisha', 'C', 'Goel', '0', '1979-10-18', 'S', 'NULL', 'F', 'alisha44@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3002 Carmel Drive', 'NULL', '1 (11) 500 555-0133', '2012-09-08', '0-1 Miles'], ['26768', '11', 'AW00026768', 'NULL', 'Cristina', 'NULL', 'Shen', '0', '1963-06-11', 'M', 'NULL', 'F', 'cristina2@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6076 Glen Arms Drive', 'NULL', '1 (11) 500 555-0126', '2012-09-07', '5-10 Miles'], ['26769', '17', 'AW00026769', 'NULL', 'Holly', 'V', 'Sai', '0', '1941-11-17', 'M', 'NULL', 'F', 'holly7@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '2606 Lacanda', 'NULL', '1 (11) 500 555-0115', '2013-09-02', '5-10 Miles'], ['26770', '22', 'AW00026770', 'NULL', 'Katie', 'Z', 'Ashe', '0', '1965-11-19', 'M', 'NULL', 'F', 'katie24@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6291 Withersed Lane', 'NULL', '1 (11) 500 555-0116', '2013-10-03', '10+ Miles'], ['26771', '34', 'AW00026771', 'NULL', 'Eric', 'L', 'Shan', '0', '1965-11-30', 'M', 'NULL', 'M', 'eric39@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '4192 East 39th Street', 'NULL', '1 (11) 500 555-0112', '2013-03-15', '10+ Miles'], ['26772', '9', 'AW00026772', 'NULL', 'Jamie', 'C', 'Hu', '0', '1965-08-19', 'M', 'NULL', 'F', 'jamie24@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '3022 Adobe St', 'NULL', '1 (11) 500 555-0110', '2014-01-01', '5-10 Miles'], ['26773', '38', 'AW00026773', 'NULL', 'Meghan', 'B', 'Martin', '0', '1971-03-14', 'M', 'NULL', 'F', 'meghan0@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6179 Mt. Hamilton Dr.', 'NULL', '1 (11) 500 555-0172', '2013-03-17', '10+ Miles'], ['26774', '34', 'AW00026774', 'NULL', 'Arianna', 'E', 'Ross', '0', '1979-09-06', 'M', 'NULL', 'F', 'arianna4@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6004 Peabody Road', 'NULL', '1 (11) 500 555-0176', '2012-09-15', '5-10 Miles'], ['26775', '383', 'AW00026775', 'NULL', 'Riley', 'NULL', 'Bryant', '0', '1982-04-21', 'M', 'NULL', 'F', 'riley15@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5834 Martindale', 'NULL', '484-555-0167', '2013-12-23', '5-10 Miles'], ['26776', '299', 'AW00026776', 'NULL', 'Jenny', 'F', 'Guo', '0', '1982-03-25', 'S', 'NULL', 'F', 'jenny19@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9563 Pennsylvania Blvd.', 'NULL', '129-555-0113', '2013-05-22', '5-10 Miles'], ['26777', '369', 'AW00026777', 'NULL', 'Andrew', 'L', 'Clark', '0', '1986-02-13', 'S', 'NULL', 'M', 'andrew26@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7883 Mitchell Canyon Court', 'NULL', '270-555-0189', '2013-06-25', '5-10 Miles'], ['26778', '641', 'AW00026778', 'NULL', 'Sierra', 'A', 'Perez', '0', '1980-12-07', 'S', 'NULL', 'F', 'sierra11@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6558 Pacifica Ave.', 'NULL', '617-555-0161', '2013-10-08', '5-10 Miles'], ['26779', '347', 'AW00026779', 'NULL', 'Alexandra', 'J', 'Henderson', '0', '1985-12-10', 'M', 'NULL', 'F', 'alexandra28@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5899 Mt. Wilson Place', 'NULL', '944-555-0172', '2013-08-26', '0-1 Miles'], ['26780', '326', 'AW00026780', 'NULL', 'Julia', 'J', 'Butler', '0', '1985-08-02', 'S', 'NULL', 'F', 'julia80@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6332 N. Thompson Rd', 'NULL', '227-555-0134', '2013-10-02', '5-10 Miles'], ['26781', '634', 'AW00026781', 'NULL', 'Jan', 'D', 'Cox', '0', '1985-06-02', 'M', 'NULL', 'F', 'jan8@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9429 Geraldine Dr', 'NULL', '660-555-0112', '2014-01-14', '5-10 Miles'], ['26782', '69', 'AW00026782', 'NULL', 'Seth', 'NULL', 'Lewis', '0', '1986-03-25', 'S', 'NULL', 'M', 'seth20@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '516 Oak Park Blvd.', 'NULL', '129-555-0114', '2011-07-01', '0-1 Miles'], ['26783', '644', 'AW00026783', 'NULL', 'Juan', 'NULL', 'Torres', '0', '1985-10-17', 'M', 'NULL', 'M', 'juan14@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8761 Garnet Lane', 'NULL', '714-555-0128', '2014-01-03', '0-1 Miles'], ['26784', '19', 'AW00026784', 'NULL', 'Walter', 'NULL', 'Torres', '0', '1952-04-05', 'S', 'NULL', 'M', 'walter5@adventure-works.com', '10000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '417 Mt. Alpine Pl.', 'NULL', '1 (11) 500 555-0127', '2013-03-18', '5-10 Miles'], ['26785', '32', 'AW00026785', 'NULL', 'Raul', 'L', 'Raje', '0', '1943-03-14', 'M', 'NULL', 'M', 'raul11@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '635 Chickpea Ct.', 'NULL', '1 (11) 500 555-0121', '2013-05-17', '5-10 Miles'], ['26786', '314', 'AW00026786', 'NULL', 'Seth', 'R', 'Smith', '0', '1983-10-29', 'S', 'NULL', 'M', 'seth0@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5932 Houston Ct.', 'NULL', '216-555-0199', '2012-07-08', '0-1 Miles'], ['26787', '609', 'AW00026787', 'NULL', 'Austin', 'N', 'Moore', '0', '1984-03-03', 'S', 'NULL', 'M', 'austin45@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9609 W 74th St.', 'NULL', '381-555-0191', '2014-01-19', '5-10 Miles'], ['26788', '307', 'AW00026788', 'NULL', 'Destiny', 'C', 'Howard', '0', '1983-11-08', 'S', 'NULL', 'F', 'destiny37@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9021 Onley Dr', 'NULL', '776-555-0156', '2013-02-04', '5-10 Miles'], ['26789', '55', 'AW00026789', 'NULL', 'Chase', 'F', 'Morris', '0', '1984-05-09', 'S', 'NULL', 'M', 'chase19@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7030 Galloway Dr.', 'NULL', '722-555-0153', '2011-08-06', '0-1 Miles'], ['26790', '368', 'AW00026790', 'NULL', 'Chloe', 'L', 'Cook', '0', '1982-08-21', 'S', 'NULL', 'F', 'chloe50@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7350 Pinon', 'NULL', '417-555-0134', '2013-10-21', '5-10 Miles'], ['26791', '573', 'AW00026791', 'NULL', 'Kelvin', 'M', 'Nath', '0', '1983-05-04', 'S', 'NULL', 'M', 'kelvin15@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3538 Olivewood Ct.', 'NULL', '716-555-0187', '2013-08-20', '5-10 Miles'], ['26792', '299', 'AW00026792', 'NULL', 'Casey', 'NULL', 'Torres', '0', '1982-12-04', 'S', 'NULL', 'M', 'casey35@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9737 Oak Creek Ct', 'NULL', '932-555-0117', '2013-03-31', '0-1 Miles'], ['26793', '374', 'AW00026793', 'NULL', 'Jesse', 'M', 'Nelson', '0', '1982-09-15', 'S', 'NULL', 'M', 'jesse34@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3352 Alicante Court', 'NULL', '542-555-0136', '2013-11-18', '5-10 Miles'], ['26794', '536', 'AW00026794', 'NULL', 'Michele', 'NULL', 'Dominguez', '0', '1985-05-25', 'M', 'NULL', 'F', 'michele46@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8158 Pheasant Court', 'NULL', '644-555-0186', '2013-07-14', '5-10 Miles'], ['26795', '19', 'AW00026795', 'NULL', 'Elijah', 'L', 'Shan', '0', '1946-01-10', 'M', 'NULL', 'M', 'elijah5@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1258 Yarrow Dr', 'NULL', '1 (11) 500 555-0119', '2012-10-26', '5-10 Miles'], ['26796', '12', 'AW00026796', 'NULL', 'Warren', 'J', 'Raji', '0', '1946-09-19', 'S', 'NULL', 'M', 'warren12@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9137 San Remo Ct.', 'NULL', '1 (11) 500 555-0125', '2012-10-08', '5-10 Miles'], ['26797', '22', 'AW00026797', 'NULL', 'Marshall', 'H', 'Hu', '0', '1954-04-18', 'S', 'NULL', 'M', 'marshall18@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '2774 Eagle Peak', 'NULL', '1 (11) 500 555-0134', '2012-10-14', '0-1 Miles'], ['26798', '637', 'AW00026798', 'NULL', 'Jeremiah', 'NULL', 'Garcia', '0', '1981-07-10', 'M', 'NULL', 'M', 'jeremiah7@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1887 Mt. Diablo St', 'NULL', '456-555-0130', '2013-08-05', '5-10 Miles'], ['26799', '312', 'AW00026799', 'NULL', 'Ryan', 'G', 'Russell', '0', '1982-03-19', 'M', 'NULL', 'M', 'ryan23@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1104 O St.', 'NULL', '696-555-0187', '2013-11-14', '5-10 Miles'], ['26800', '315', 'AW00026800', 'NULL', 'Lauren', 'NULL', 'Lewis', '0', '1982-04-06', 'S', 'NULL', 'F', 'lauren39@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '593 Chatworth', 'NULL', '836-555-0132', '2013-07-25', '1-2 Miles'], ['26801', '385', 'AW00026801', 'NULL', 'Wyatt', 'NULL', 'Washington', '0', '1982-01-16', 'M', 'NULL', 'M', 'wyatt63@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2279 Pineview Lane', 'NULL', '210-555-0123', '2012-07-10', '5-10 Miles'], ['26802', '63', 'AW00026802', 'NULL', 'Lucas', 'W', 'Sanders', '0', '1981-05-12', 'S', 'NULL', 'M', 'lucas74@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4398 Clayburn Road', 'NULL', '175-555-0166', '2013-07-01', '5-10 Miles'], ['26803', '338', 'AW00026803', 'NULL', 'Xavier', 'W', 'Bennett', '0', '1979-08-07', 'M', 'NULL', 'M', 'xavier64@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8540 Ravenwood Dr.', 'NULL', '557-555-0185', '2013-07-27', '5-10 Miles'], ['26804', '372', 'AW00026804', 'NULL', 'Trinity', 'B', 'Sanders', '0', '1980-05-11', 'S', 'NULL', 'F', 'trinity3@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4083 Mendocino Drive', 'NULL', '245-555-0135', '2013-06-24', '5-10 Miles'], ['26805', '335', 'AW00026805', 'NULL', 'Alexandria', 'NULL', 'Reed', '0', '1979-04-08', 'S', 'NULL', 'F', 'alexandria41@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9593 Singingwood Court', 'NULL', '369-555-0165', '2012-07-08', '1-2 Miles'], ['26806', '68', 'AW00026806', 'NULL', 'Caleb', 'K', 'Mitchell', '0', '1976-09-16', 'M', 'NULL', 'M', 'caleb41@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2665 Rosina Court', 'NULL', '954-555-0166', '2013-08-15', '2-5 Miles'], ['26807', '335', 'AW00026807', 'NULL', 'Angel', 'H', 'Hall', '0', '1976-09-08', 'S', 'NULL', 'M', 'angel43@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6384 Virgina Hills Drive', 'NULL', '391-555-0120', '2013-02-05', '2-5 Miles'], ['26808', '614', 'AW00026808', 'NULL', 'Kimberly', 'NULL', 'Howard', '0', '1976-01-23', 'S', 'NULL', 'F', 'kimberly15@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8885 Riber Ash Court', 'NULL', '812-555-0179', '2013-12-04', '2-5 Miles'], ['26809', '355', 'AW00026809', 'NULL', 'Julia', 'E', 'Morgan', '0', '1971-05-04', 'S', 'NULL', 'F', 'julia50@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1403 Mcmillan Ave.', 'NULL', '700-555-0173', '2013-05-09', '0-1 Miles'], ['26810', '54', 'AW00026810', 'NULL', 'Melanie', 'M', 'Stewart', '0', '1976-05-09', 'S', 'NULL', 'F', 'melanie46@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9667 Argonne Drive', 'NULL', '272-555-0181', '2014-01-15', '0-1 Miles'], ['26811', '301', 'AW00026811', 'NULL', 'Rachael', 'NULL', 'Sanchez', '0', '1976-09-30', 'S', 'NULL', 'F', 'rachael19@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '2022 Highridge Court', 'NULL', '323-555-0128', '2012-07-11', '10+ Miles'], ['26812', '352', 'AW00026812', 'NULL', 'James', 'NULL', 'Hernandez', '0', '1971-03-08', 'M', 'NULL', 'M', 'james68@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '3602 Banyan Circle', 'NULL', '151-555-0115', '2013-07-07', '10+ Miles'], ['26813', '307', 'AW00026813', 'NULL', 'Xavier', 'M', 'Diaz', '0', '1971-01-12', 'S', 'NULL', 'M', 'xavier62@adventure-works.com', '50000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9632 S. Silver Spring', 'NULL', '601-555-0132', '2013-11-04', '0-1 Miles'], ['26814', '644', 'AW00026814', 'NULL', 'Alex', 'NULL', 'Hernandez', '0', '1970-10-02', 'M', 'NULL', 'M', 'alex49@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5957 Pacifica Ave.', 'NULL', '581-555-0137', '2012-07-13', '2-5 Miles'], ['26815', '543', 'AW00026815', 'NULL', 'Erin', 'NULL', 'Cox', '0', '1970-10-31', 'M', 'NULL', 'F', 'erin15@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9643 Ida Ave', 'NULL', '131-555-0115', '2012-08-01', '2-5 Miles'], ['26816', '206', 'AW00026816', 'NULL', 'Ronnie', 'NULL', 'Wu', '0', '1973-09-06', 'M', 'NULL', 'M', 'ronnie6@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5757, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0183', '2013-11-15', '0-1 Miles'], ['26817', '236', 'AW00026817', 'NULL', 'Melvin', 'NULL', 'Ashe', '0', '1979-10-19', 'S', 'NULL', 'M', 'melvin21@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3009 Temple Court', 'NULL', '1 (11) 500 555-0182', '2013-06-03', '0-1 Miles'], ['26818', '131', 'AW00026818', 'NULL', 'Eduardo', 'NULL', 'Coleman', '0', '1978-06-12', 'S', 'NULL', 'M', 'eduardo50@adventure-works.com', '10000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Am Gallberg 2282', 'NULL', '1 (11) 500 555-0125', '2013-10-07', '0-1 Miles'], ['26819', '175', 'AW00026819', 'NULL', 'Devin', 'NULL', 'Mitchell', '0', '1972-08-20', 'M', 'NULL', 'M', 'devin34@adventure-works.com', '10000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Unter Linden 644', 'NULL', '1 (11) 500 555-0144', '2013-12-15', '0-1 Miles'], ['26820', '257', 'AW00026820', 'NULL', 'Carol', 'E', 'Nath', '0', '1972-10-29', 'M', 'NULL', 'F', 'carol9@adventure-works.com', '10000.00', '3', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '3982 Ram Circle', 'NULL', '1 (11) 500 555-0193', '2014-01-03', '0-1 Miles'], ['26821', '155', 'AW00026821', 'NULL', 'Tamara', 'NULL', 'Guo', '0', '1972-08-20', 'M', 'NULL', 'F', 'tamara7@adventure-works.com', '10000.00', '4', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Rotthäuser Weg 101', 'NULL', '1 (11) 500 555-0114', '2013-06-05', '0-1 Miles'], ['26822', '158', 'AW00026822', 'NULL', 'Cindy', 'NULL', 'Gonzalez', '0', '1972-08-08', 'S', 'NULL', 'F', 'cindy17@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Wolfgangstraße 48', 'NULL', '1 (11) 500 555-0186', '2013-11-24', '2-5 Miles'], ['26823', '115', 'AW00026823', 'NULL', 'Kaitlin', 'S', 'Raman', '0', '1972-10-29', 'S', 'NULL', 'F', 'kaitlin12@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Wasserstr 63', 'NULL', '1 (11) 500 555-0111', '2013-12-13', '0-1 Miles'], ['26824', '249', 'AW00026824', 'NULL', 'Theresa', 'NULL', 'Blanco', '0', '1971-09-03', 'S', 'NULL', 'F', 'theresa11@adventure-works.com', '10000.00', '4', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '6780 Ware Ct.', 'NULL', '1 (11) 500 555-0181', '2013-05-19', '0-1 Miles'], ['26825', '132', 'AW00026825', 'NULL', 'Jamie', 'NULL', 'Jimenez', '0', '1977-10-06', 'M', 'NULL', 'M', 'jamie29@adventure-works.com', '10000.00', '4', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Postfach 8 44 99', 'NULL', '1 (11) 500 555-0164', '2013-01-27', '0-1 Miles'], ['26826', '138', 'AW00026826', 'NULL', 'Kendra', 'NULL', 'Romero', '0', '1977-07-02', 'S', 'NULL', 'F', 'kendra9@adventure-works.com', '10000.00', '5', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Rykestr 0581', 'NULL', '1 (11) 500 555-0119', '2012-12-30', '0-1 Miles'], ['26827', '198', 'AW00026827', 'NULL', 'Renee', 'L', 'Rubio', '0', '1972-07-17', 'S', 'NULL', 'F', 'renee19@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '21, impasse Notre-Dame', 'NULL', '1 (11) 500 555-0165', '2013-10-29', '0-1 Miles'], ['26828', '209', 'AW00026828', 'NULL', 'Stephanie', 'A', 'Rivera', '0', '1984-02-03', 'M', 'NULL', 'F', 'stephanie13@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '167, rue de la Comédie', 'NULL', '1 (11) 500 555-0142', '2013-11-04', '0-1 Miles'], ['26829', '155', 'AW00026829', 'NULL', 'Morgan', 'NULL', 'Evans', '0', '1978-09-19', 'M', 'NULL', 'F', 'morgan0@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Postfach 55 00 00', 'NULL', '1 (11) 500 555-0119', '2013-12-24', '0-1 Miles'], ['26830', '273', 'AW00026830', 'NULL', 'Levi', 'NULL', 'Perez', '0', '1972-03-21', 'M', 'NULL', 'M', 'levi19@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5814 Homestead Avenue', 'NULL', '1 (11) 500 555-0158', '2013-05-28', '2-5 Miles'], ['26831', '174', 'AW00026831', 'NULL', 'Drew', 'D', 'Raje', '0', '1971-09-01', 'M', 'NULL', 'M', 'drew15@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Platz des Landtags 44', 'NULL', '1 (11) 500 555-0133', '2013-01-13', '2-5 Miles'], ['26832', '118', 'AW00026832', 'NULL', 'Kate', 'J', 'Xie', '0', '1977-01-30', 'M', 'NULL', 'F', 'kate2@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', 'Waldstr 91', 'NULL', '1 (11) 500 555-0169', '2014-01-28', '0-1 Miles'], ['26833', '238', 'AW00026833', 'NULL', 'Kelvin', 'M', 'Rai', '0', '1971-07-13', 'M', 'NULL', 'M', 'kelvin14@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9011 Blackburn Ct.', 'NULL', '1 (11) 500 555-0182', '2013-06-17', '0-1 Miles'], ['26834', '231', 'AW00026834', 'NULL', 'Teresa', 'A', 'Romero', '0', '1971-08-29', 'M', 'NULL', 'F', 'teresa9@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7752 Sunset Meadows Ln.', 'NULL', '1 (11) 500 555-0173', '2013-07-31', '0-1 Miles'], ['26835', '224', 'AW00026835', 'NULL', 'Kyle', 'C', 'Turner', '0', '1976-01-06', 'M', 'NULL', 'M', 'kyle35@adventure-works.com', '10000.00', '4', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '39, boulevard Beau Marchais', 'NULL', '1 (11) 500 555-0151', '2013-11-09', '0-1 Miles'], ['26836', '267', 'AW00026836', 'NULL', 'Hector', 'A', 'Diaz', '0', '1970-12-08', 'S', 'NULL', 'M', 'hector1@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '7128 Joan Ave.', 'NULL', '1 (11) 500 555-0132', '2014-01-12', '0-1 Miles'], ['26837', '244', 'AW00026837', 'NULL', 'Albert', 'NULL', 'Martin', '0', '1970-09-04', 'M', 'NULL', 'M', 'albert3@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '672 Chrisland Court', 'NULL', '1 (11) 500 555-0116', '2013-05-13', '0-1 Miles'], ['26838', '187', 'AW00026838', 'NULL', 'Cassie', 'NULL', 'Shan', '0', '1971-06-03', 'S', 'NULL', 'F', 'cassie9@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1788, rue de la Comédie', 'NULL', '1 (11) 500 555-0181', '2013-02-17', '0-1 Miles'], ['26839', '209', 'AW00026839', 'NULL', 'Jeremy', 'K', 'Nelson', '0', '1970-08-18', 'S', 'NULL', 'M', 'jeremy12@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '2781 Cresent Dr.', 'NULL', '1 (11) 500 555-0125', '2013-05-18', '0-1 Miles'], ['26840', '209', 'AW00026840', 'NULL', 'Eric', 'L', 'Yang', '0', '1976-03-15', 'M', 'NULL', 'M', 'eric35@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '759, rue de Bas Marin', 'NULL', '1 (11) 500 555-0119', '2013-10-20', '0-1 Miles'], ['26841', '205', 'AW00026841', 'NULL', 'Roberto', 'D', 'Jiménez', '0', '1971-02-10', 'M', 'NULL', 'M', 'roberto5@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '80112, rue des Pyrenees', 'NULL', '1 (11) 500 555-0123', '2013-03-17', '0-1 Miles'], ['26842', '243', 'AW00026842', 'NULL', 'Felicia', 'A', 'Alonso', '0', '1969-12-23', 'M', 'NULL', 'F', 'felicia7@adventure-works.com', '10000.00', '5', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '2427 Notre Dame Ave.', 'NULL', '1 (11) 500 555-0149', '2013-04-30', '0-1 Miles'], ['26843', '160', 'AW00026843', 'NULL', 'Noah', 'NULL', 'Gonzalez', '0', '1934-08-08', 'S', 'NULL', 'M', 'noah35@adventure-works.com', '10000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Parise Straße 56', 'NULL', '1 (11) 500 555-0124', '2013-10-14', '0-1 Miles'], ['26844', '236', 'AW00026844', 'NULL', 'Erin', 'P', 'Cooper', '0', '1935-11-24', 'S', 'NULL', 'F', 'erin13@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6838 El Rancho Drive', 'NULL', '1 (11) 500 555-0172', '2014-01-16', '1-2 Miles'], ['26845', '174', 'AW00026845', 'NULL', 'Theodore', 'M', 'Ortega', '0', '1970-03-26', 'S', 'NULL', 'M', 'theodore23@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Waldstr 66', 'NULL', '1 (11) 500 555-0156', '2013-08-01', '0-1 Miles'], ['26846', '240', 'AW00026846', 'NULL', 'Dustin', 'R', 'Kumar', '0', '1970-01-11', 'M', 'NULL', 'M', 'dustin7@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '7496 Sunset Meadows', 'NULL', '1 (11) 500 555-0180', '2013-12-12', '0-1 Miles'], ['26847', '157', 'AW00026847', 'NULL', 'Brent', 'NULL', 'Yang', '0', '1969-07-04', 'S', 'NULL', 'M', 'brent4@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Welt Platz 456', 'NULL', '1 (11) 500 555-0195', '2013-10-20', '0-1 Miles'], ['26848', '241', 'AW00026848', 'NULL', 'Alisha', 'NULL', 'Rai', '0', '1970-05-17', 'M', 'NULL', 'F', 'alisha42@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '7628 Beech Ct', 'NULL', '1 (11) 500 555-0140', '2013-06-19', '0-1 Miles'], ['26849', '252', 'AW00026849', 'NULL', 'Billy', 'B', 'Martin', '0', '1968-07-17', 'M', 'NULL', 'M', 'billy1@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '2941 San Anton Lane', 'NULL', '1 (11) 500 555-0145', '2013-05-04', '0-1 Miles'], ['26850', '232', 'AW00026850', 'NULL', 'Terry', 'H', 'Luo', '0', '1979-12-13', 'S', 'NULL', 'M', 'terry9@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '204 Longbrook Way', 'NULL', '1 (11) 500 555-0191', '2013-06-07', '0-1 Miles'], ['26851', '155', 'AW00026851', 'NULL', 'Diane', 'NULL', 'Alvarez', '0', '1969-05-19', 'S', 'NULL', 'F', 'diane9@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Zollstr 68', 'NULL', '1 (11) 500 555-0162', '2013-10-13', '0-1 Miles'], ['26852', '174', 'AW00026852', 'NULL', 'Karen', 'H', 'She', '0', '1968-12-02', 'M', 'NULL', 'F', 'karen32@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Kappellweg 664', 'NULL', '1 (11) 500 555-0119', '2013-02-02', '0-1 Miles'], ['26853', '207', 'AW00026853', 'NULL', 'Shane', 'NULL', 'Rana', '0', '1971-07-13', 'S', 'NULL', 'M', 'shane14@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '45, avenue du Port', 'NULL', '1 (11) 500 555-0111', '2013-05-08', '0-1 Miles'], ['26854', '187', 'AW00026854', 'NULL', 'Jonathan', 'NULL', 'Hayes', '0', '1971-07-13', 'S', 'NULL', 'M', 'jonathan22@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '33, rue du Puits Dixme', 'NULL', '1 (11) 500 555-0194', '2013-11-04', '0-1 Miles'], ['26855', '222', 'AW00026855', 'NULL', 'Carla', 'NULL', 'Fernandez', '0', '1971-12-07', 'M', 'NULL', 'F', 'carla18@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '59, rue Jean Mermoz', 'NULL', '1 (11) 500 555-0111', '2013-11-02', '0-1 Miles'], ['26856', '221', 'AW00026856', 'NULL', 'Jessica', 'NULL', 'Brooks', '0', '1971-05-03', 'M', 'NULL', 'F', 'jessica22@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '33bis, rue des Peupliers', 'NULL', '1 (11) 500 555-0171', '2013-05-14', '0-1 Miles'], ['26857', '166', 'AW00026857', 'NULL', 'Willie', 'NULL', 'Anand', '0', '1982-03-12', 'M', 'NULL', 'M', 'willie41@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Reiherweg 5924', 'NULL', '1 (11) 500 555-0115', '2013-06-11', '0-1 Miles'], ['26858', '271', 'AW00026858', 'NULL', 'Samuel', 'L', 'Lopez', '0', '1970-11-05', 'M', 'NULL', 'M', 'samuel51@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7074 N. Spoonwood Court', 'NULL', '1 (11) 500 555-0175', '2013-06-20', '0-1 Miles'], ['26859', '226', 'AW00026859', 'NULL', 'Darrell', 'M', 'Pal', '0', '1970-01-10', 'M', 'NULL', 'M', 'darrell20@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '910bis, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0151', '2013-07-18', '0-1 Miles'], ['26860', '237', 'AW00026860', 'NULL', 'Olivia', 'H', 'Miller', '0', '1975-10-24', 'M', 'NULL', 'F', 'olivia5@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1828 Blackburn Ct.', 'NULL', '1 (11) 500 555-0114', '2013-06-04', '0-1 Miles'], ['26861', '190', 'AW00026861', 'NULL', 'Bruce', 'S', 'Gutierrez', '0', '1969-05-19', 'S', 'NULL', 'M', 'bruce32@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '0', '55, rue de Courtaboeuf', 'NULL', '1 (11) 500 555-0111', '2013-02-04', '0-1 Miles'], ['26862', '127', 'AW00026862', 'NULL', 'Tina', 'NULL', 'Vance', '0', '1969-01-23', 'S', 'NULL', 'F', 'tina5@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Räuscherweg 153', 'NULL', '1 (11) 500 555-0177', '2013-01-16', '0-1 Miles'], ['26863', '256', 'AW00026863', 'NULL', 'Alvin', 'NULL', 'Chen', '0', '1983-05-08', 'S', 'NULL', 'M', 'alvin3@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1510 Sharon Dr.', 'NULL', '1 (11) 500 555-0113', '2014-01-05', '2-5 Miles'], ['26864', '146', 'AW00026864', 'NULL', 'Christine', 'NULL', 'Sutton', '0', '1984-11-29', 'S', 'NULL', 'F', 'christine2@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Auf der Krone 4992', 'NULL', '1 (11) 500 555-0192', '2012-12-29', '0-1 Miles'], ['26865', '248', 'AW00026865', 'NULL', 'Tabitha', 'NULL', 'Martinez', '0', '1984-08-26', 'M', 'NULL', 'F', 'tabitha14@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '244 Willow Pass Road', 'NULL', '1 (11) 500 555-0123', '2013-02-19', '0-1 Miles'], ['26866', '269', 'AW00026866', 'NULL', 'Jada', 'NULL', 'Allen', '0', '1984-11-11', 'S', 'NULL', 'F', 'jada27@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9816 Ban Bridge Pl.', 'NULL', '1 (11) 500 555-0111', '2013-06-23', '0-1 Miles'], ['26867', '176', 'AW00026867', 'NULL', 'Danny', 'NULL', 'Romero', '0', '1969-05-14', 'M', 'NULL', 'M', 'danny10@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Am Karlshof 2499', 'NULL', '1 (11) 500 555-0189', '2013-12-03', '0-1 Miles'], ['26868', '253', 'AW00026868', 'NULL', 'Lydia', 'NULL', 'Raman', '0', '1974-08-12', 'M', 'NULL', 'F', 'lydia11@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2118 Court Lane', 'NULL', '1 (11) 500 555-0125', '2013-06-11', '0-1 Miles'], ['26869', '269', 'AW00026869', 'Ms.', 'Anne', 'R.', 'Sims', '0', '1969-02-01', 'M', 'NULL', 'M', 'anne0@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4932 La Jolla', 'NULL', '886-555-0100', '2013-06-26', '0-1 Miles'], ['26870', '271', 'AW00026870', 'NULL', 'Jill', 'J', 'Gill', '0', '1974-01-22', 'M', 'NULL', 'F', 'jill21@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6688 Richard Place', 'NULL', '1 (11) 500 555-0181', '2013-06-05', '0-1 Miles'], ['26871', '223', 'AW00026871', 'NULL', 'Justin', 'NULL', 'Chen', '0', '1973-08-08', 'S', 'NULL', 'M', 'justin22@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '081, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0114', '2013-08-28', '0-1 Miles'], ['26872', '117', 'AW00026872', 'NULL', 'Wyatt', 'H', 'Hughes', '0', '1983-07-20', 'M', 'NULL', 'M', 'wyatt61@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '3', 'Rykestr 8105', 'NULL', '1 (11) 500 555-0114', '2013-08-17', '0-1 Miles'], ['26873', '165', 'AW00026873', 'NULL', 'Ann', 'NULL', 'Suri', '0', '1982-10-30', 'S', 'NULL', 'F', 'ann5@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Kampstr 9859', 'NULL', '1 (11) 500 555-0128', '2013-02-16', '2-5 Miles'], ['26874', '118', 'AW00026874', 'NULL', 'Jorge', 'NULL', 'Zhang', '0', '1983-05-19', 'S', 'NULL', 'M', 'jorge1@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Hochstr 8222', 'NULL', '1 (11) 500 555-0198', '2013-05-01', '2-5 Miles'], ['26875', '134', 'AW00026875', 'NULL', 'Bobby', 'D', 'Perez', '0', '1982-09-06', 'S', 'NULL', 'M', 'bobby13@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Heidestieg Straße 8224', 'NULL', '1 (11) 500 555-0117', '2013-11-15', '2-5 Miles'], ['26876', '260', 'AW00026876', 'NULL', 'Holly', 'NULL', 'Lopez', '0', '1983-01-22', 'S', 'NULL', 'F', 'holly16@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '8965 Rheem Blvd.', 'NULL', '1 (11) 500 555-0115', '2013-06-12', '0-1 Miles'], ['26877', '265', 'AW00026877', 'NULL', 'Damien', 'W', 'Nara', '0', '1982-08-21', 'M', 'NULL', 'M', 'damien33@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '1439 N. Michell Canyon Rd.', 'NULL', '1 (11) 500 555-0191', '2013-12-06', '0-1 Miles'], ['26878', '120', 'AW00026878', 'NULL', 'Madeline', 'NULL', 'Roberts', '0', '1981-08-15', 'M', 'NULL', 'F', 'madeline3@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Höhenstr 9449', 'NULL', '1 (11) 500 555-0174', '2013-05-09', '2-5 Miles'], ['26879', '167', 'AW00026879', 'NULL', 'Shannon', 'L', 'Lin', '0', '1981-10-14', 'S', 'NULL', 'F', 'shannon8@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Hauptstr 2929', 'NULL', '1 (11) 500 555-0155', '2013-10-16', '2-5 Miles'], ['26880', '128', 'AW00026880', 'NULL', 'Heather', 'NULL', 'Xu', '0', '1981-08-26', 'S', 'NULL', 'F', 'heather11@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Rykestr 5', 'NULL', '1 (11) 500 555-0178', '2013-08-23', '2-5 Miles'], ['26881', '221', 'AW00026881', 'NULL', 'Regina', 'R', 'Fernandez', '0', '1980-08-10', 'M', 'NULL', 'F', 'regina15@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '7348, avenue de l´Europe', 'NULL', '1 (11) 500 555-0181', '2013-07-20', '0-1 Miles'], ['26882', '211', 'AW00026882', 'NULL', 'Mayra', 'S', 'Sanchez', '0', '1981-10-30', 'S', 'NULL', 'F', 'mayra19@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '74, rue Jean Mermoz', 'NULL', '1 (11) 500 555-0142', '2013-04-25', '5-10 Miles'], ['26883', '190', 'AW00026883', 'NULL', 'Shelby', 'NULL', 'Bradley', '0', '1981-12-25', 'S', 'NULL', 'F', 'shelby14@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '84, avenue des Ternes', 'NULL', '1 (11) 500 555-0199', '2013-11-25', '5-10 Miles'], ['26884', '120', 'AW00026884', 'NULL', 'Paige', 'S', 'James', '0', '1982-03-09', 'S', 'NULL', 'F', 'paige31@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Pappelallee 250', 'NULL', '1 (11) 500 555-0185', '2013-02-25', '0-1 Miles'], ['26885', '264', 'AW00026885', 'NULL', 'Victor', 'L', 'Martin', '0', '1981-09-07', 'S', 'NULL', 'M', 'victor1@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '2983 Yosemite Ct', 'NULL', '1 (11) 500 555-0194', '2013-06-08', '0-1 Miles'], ['26886', '267', 'AW00026886', 'NULL', 'Jasmine', 'NULL', 'Robinson', '0', '1982-05-12', 'S', 'NULL', 'F', 'jasmine15@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '8611 Park Lane Circle', 'NULL', '1 (11) 500 555-0118', '2013-06-21', '0-1 Miles'], ['26887', '240', 'AW00026887', 'NULL', 'Janelle', 'NULL', 'Rodriguez', '0', '1980-05-22', 'M', 'NULL', 'F', 'janelle16@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '6780 Bonari Court', 'NULL', '1 (11) 500 555-0153', '2013-06-17', '0-1 Miles'], ['26888', '233', 'AW00026888', 'NULL', 'Bruce', 'E', 'Fernandez', '0', '1979-09-20', 'S', 'NULL', 'M', 'bruce15@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '1583 Westwood Lane', 'NULL', '1 (11) 500 555-0112', '2013-12-15', '0-1 Miles'], ['26889', '118', 'AW00026889', 'NULL', 'Natasha', 'NULL', 'Torres', '0', '1980-01-04', 'S', 'NULL', 'F', 'natasha11@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Auf den Kuhlen Straße 2229', 'NULL', '1 (11) 500 555-0139', '2013-04-14', '5-10 Miles'], ['26890', '231', 'AW00026890', 'NULL', 'Bryan', 'NULL', 'Rogers', '0', '1986-03-08', 'M', 'NULL', 'M', 'bryan20@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2503 Cloverleaf Circle', 'NULL', '1 (11) 500 555-0114', '2013-06-23', '1-2 Miles'], ['26891', '236', 'AW00026891', 'NULL', 'Arturo', 'V', 'Zhang', '0', '1980-12-05', 'M', 'NULL', 'M', 'arturo0@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '3601 Greenbush Drive', 'NULL', '1 (11) 500 555-0161', '2013-08-20', '0-1 Miles'], ['26892', '241', 'AW00026892', 'NULL', 'Cody', 'F', 'Rogers', '0', '1981-03-18', 'M', 'NULL', 'M', 'cody19@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5066 Bonanza', 'NULL', '1 (11) 500 555-0196', '2013-07-24', '1-2 Miles'], ['26893', '276', 'AW00026893', 'NULL', 'Sharon', 'A', 'Deng', '0', '1981-06-22', 'M', 'NULL', 'F', 'sharon7@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '6218 Stephanie Way', 'NULL', '1 (11) 500 555-0145', '2013-07-24', '0-1 Miles'], ['26894', '158', 'AW00026894', 'NULL', 'Lindsey', 'NULL', 'Goel', '0', '1978-08-26', 'S', 'NULL', 'F', 'lindsey19@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Rotthäuser Weg 22', 'NULL', '1 (11) 500 555-0137', '2013-03-30', '1-2 Miles'], ['26895', '238', 'AW00026895', 'NULL', 'Christine', 'R', 'Shan', '0', '1984-09-30', 'S', 'NULL', 'F', 'christine5@adventure-works.com', '10000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '2100 Pear Dr.', 'NULL', '1 (11) 500 555-0177', '2013-06-27', '0-1 Miles'], ['26896', '248', 'AW00026896', 'NULL', 'Michele', 'A', 'Malhotra', '0', '1973-06-20', 'S', 'NULL', 'F', 'michele60@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8683 San Antonio', 'NULL', '1 (11) 500 555-0139', '2013-03-18', '0-1 Miles'], ['26897', '251', 'AW00026897', 'NULL', 'Katrina', 'M', 'Xie', '0', '1968-01-07', 'M', 'NULL', 'F', 'katrina2@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5274 Harvey Way', 'NULL', '1 (11) 500 555-0193', '2013-03-22', '0-1 Miles'], ['26898', '187', 'AW00026898', 'NULL', 'Ashley', 'R', 'Simmons', '0', '1966-12-14', 'S', 'NULL', 'F', 'ashley42@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '21, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0145', '2013-03-03', '0-1 Miles'], ['26899', '162', 'AW00026899', 'NULL', 'Rachael', 'NULL', 'Vance', '0', '1972-01-04', 'M', 'NULL', 'F', 'rachael4@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Galeriestr 6812', 'NULL', '1 (11) 500 555-0124', '2013-02-23', '0-1 Miles'], ['26900', '232', 'AW00026900', 'NULL', 'Rosa', 'NULL', 'Sun', '0', '1966-12-03', 'S', 'NULL', 'F', 'rosa13@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '4895 Browse St', 'NULL', '1 (11) 500 555-0159', '2013-09-24', '0-1 Miles'], ['26901', '244', 'AW00026901', 'NULL', 'Louis', 'J', 'Nara', '0', '1972-07-31', 'M', 'NULL', 'M', 'louis32@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3574 Scenic Ct', 'NULL', '1 (11) 500 555-0144', '2013-11-21', '0-1 Miles'], ['26902', '185', 'AW00026902', 'NULL', 'Clifford', 'NULL', 'Mehta', '0', '1968-05-22', 'M', 'NULL', 'M', 'clifford12@adventure-works.com', '30000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6, rue des Vendangeurs', 'NULL', '1 (11) 500 555-0136', '2013-05-08', '0-1 Miles'], ['26903', '183', 'AW00026903', 'NULL', 'Rafael', 'A', 'Luo', '0', '1973-06-01', 'M', 'NULL', 'M', 'rafael29@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2, place de la République', 'NULL', '1 (11) 500 555-0135', '2013-05-25', '0-1 Miles'], ['26904', '223', 'AW00026904', 'NULL', 'Judith', 'F', 'Parker', '0', '1963-04-18', 'S', 'NULL', 'F', 'judith3@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Midi-Couleurs', 'Espace Migent', '1 (11) 500 555-0117', '2013-02-08', '0-1 Miles'], ['26905', '229', 'AW00026905', 'NULL', 'Kari', 'NULL', 'Serrano', '0', '1963-03-09', 'S', 'NULL', 'F', 'kari37@adventure-works.com', '10000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '4765 L St.', 'NULL', '1 (11) 500 555-0146', '2013-05-24', '0-1 Miles'], ['26906', '249', 'AW00026906', 'NULL', 'Darrell', 'C', 'Rai', '0', '1962-02-08', 'M', 'NULL', 'M', 'darrell6@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '4771 Kenston Dr', 'NULL', '1 (11) 500 555-0171', '2013-10-10', '0-1 Miles'], ['26907', '222', 'AW00026907', 'NULL', 'Dana', 'A', 'Torres', '0', '1961-10-26', 'M', 'NULL', 'F', 'dana4@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '80, rue de Courtaboeuf', 'NULL', '1 (11) 500 555-0153', '2013-11-23', '0-1 Miles'], ['26908', '183', 'AW00026908', 'NULL', 'Glenn', 'NULL', 'Zheng', '0', '1961-07-10', 'M', 'NULL', 'M', 'glenn20@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '66, rue de Cambrai', 'NULL', '1 (11) 500 555-0148', '2013-10-20', '0-1 Miles'], ['26909', '220', 'AW00026909', 'NULL', 'Christine', 'M', 'Nath', '0', '1967-05-21', 'S', 'NULL', 'F', 'christine13@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2705, rue des Bouchers', 'NULL', '1 (11) 500 555-0150', '2013-03-01', '0-1 Miles'], ['26910', '242', 'AW00026910', 'NULL', 'Kristina', 'R', 'Kovar', '0', '1943-11-06', 'S', 'NULL', 'F', 'kristina4@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2474 Maureen Ln', 'NULL', '1 (11) 500 555-0165', '2013-06-27', '0-1 Miles'], ['26911', '248', 'AW00026911', 'NULL', 'Kristi', 'NULL', 'Gomez', '0', '1944-03-25', 'S', 'NULL', 'F', 'kristi41@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '9643 Willow Pass Road', 'NULL', '1 (11) 500 555-0121', '2013-02-22', '0-1 Miles'], ['26912', '156', 'AW00026912', 'NULL', 'Denise', 'NULL', 'Rodriguez', '0', '1944-12-08', 'S', 'NULL', 'F', 'denise20@adventure-works.com', '10000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Am Gallberg 61', 'NULL', '1 (11) 500 555-0146', '2013-07-10', '0-1 Miles'], ['26913', '240', 'AW00026913', 'NULL', 'Harold', 'NULL', 'Lopez', '0', '1944-11-03', 'M', 'NULL', 'M', 'harold14@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1120 Curtis Drive', 'NULL', '1 (11) 500 555-0119', '2013-06-29', '0-1 Miles'], ['26914', '265', 'AW00026914', 'NULL', 'Cindy', 'C', 'Prasad', '0', '1945-10-25', 'S', 'NULL', 'F', 'cindy9@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8722 Norcross Lane', 'NULL', '1 (11) 500 555-0131', '2013-06-20', '0-1 Miles'], ['26915', '242', 'AW00026915', 'NULL', 'Peter', 'NULL', 'Kumar', '0', '1948-05-21', 'S', 'NULL', 'M', 'peter14@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '4468 Arleda Lane', 'NULL', '1 (11) 500 555-0153', '2013-07-02', '0-1 Miles'], ['26916', '26', 'AW00026916', 'NULL', 'Mackenzie', 'M', 'King', '0', '1986-02-05', 'M', 'NULL', 'F', 'mackenzie40@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '3898 Appalachian Drive', 'NULL', '1 (11) 500 555-0119', '2012-10-01', '2-5 Miles'], ['26917', '39', 'AW00026917', 'NULL', 'Roberto', 'A', 'Dominguez', '0', '1984-10-02', 'M', 'NULL', 'M', 'roberto13@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '2071 Lindell Dr', 'NULL', '1 (11) 500 555-0156', '2012-10-20', '0-1 Miles'], ['26918', '33', 'AW00026918', 'NULL', 'Krista', 'J', 'Hernandez', '0', '1982-03-14', 'S', 'NULL', 'F', 'krista4@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '5091 Laurel Dr.', 'NULL', '1 (11) 500 555-0111', '2012-10-24', '0-1 Miles'], ['26919', '29', 'AW00026919', 'NULL', 'Ramon', 'NULL', 'He', '0', '1981-12-24', 'S', 'NULL', 'M', 'ramon16@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '8590 Dublin Court', 'NULL', '1 (11) 500 555-0142', '2012-10-23', '0-1 Miles'], ['26920', '35', 'AW00026920', 'NULL', 'Jon', 'NULL', 'Chen', '0', '1984-09-19', 'M', 'NULL', 'M', 'jon21@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '7855 Dumbarton Street', 'NULL', '1 (11) 500 555-0147', '2012-10-22', '0-1 Miles'], ['26921', '24', 'AW00026921', 'NULL', 'Cynthia', 'NULL', 'Weber', '0', '1985-02-16', 'M', 'NULL', 'F', 'cynthia8@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7682 Solano Dr.', 'NULL', '1 (11) 500 555-0152', '2012-10-04', '0-1 Miles'], ['26922', '39', 'AW00026922', 'NULL', 'Trevor', 'C', 'Powell', '0', '1983-11-24', 'M', 'NULL', 'M', 'trevor8@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '6208 Prestwick Dr.', 'NULL', '1 (11) 500 555-0176', '2012-10-27', '2-5 Miles'], ['26923', '23', 'AW00026923', 'NULL', 'Krystal', 'M', 'Ye', '0', '1984-03-06', 'M', 'NULL', 'F', 'krystal9@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8487 Amador', 'NULL', '1 (11) 500 555-0197', '2012-10-14', '0-1 Miles'], ['26924', '32', 'AW00026924', 'NULL', 'Erica', 'NULL', 'Zeng', '0', '1982-12-13', 'S', 'NULL', 'F', 'erica21@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '9549 Roxbury Drive', 'NULL', '1 (11) 500 555-0163', '2012-10-12', '0-1 Miles'], ['26925', '183', 'AW00026925', 'NULL', 'Dominic', 'B', 'Rana', '0', '1949-02-14', 'S', 'NULL', 'M', 'dominic11@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '302, quai Paul Doumer', 'NULL', '1 (11) 500 555-0161', '2013-11-16', '0-1 Miles'], ['26926', '204', 'AW00026926', 'NULL', 'Sergio', 'NULL', 'Mehta', '0', '1949-03-25', 'M', 'NULL', 'M', 'sergio14@adventure-works.com', '20000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '88, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0119', '2013-12-03', '1-2 Miles'], ['26927', '210', 'AW00026927', 'NULL', 'Jill', 'H', 'Dominguez', '0', '1960-02-01', 'M', 'NULL', 'F', 'jill20@adventure-works.com', '20000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '343, avenue de la Gare', 'NULL', '1 (11) 500 555-0131', '2013-04-22', '0-1 Miles'], ['26928', '238', 'AW00026928', 'NULL', 'Roger', 'NULL', 'Nara', '0', '1949-04-18', 'S', 'NULL', 'M', 'roger44@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5911 Del Vista Court', 'NULL', '1 (11) 500 555-0161', '2013-06-04', '0-1 Miles'], ['26929', '276', 'AW00026929', 'NULL', 'Maurice', 'NULL', 'Pal', '0', '1948-11-09', 'M', 'NULL', 'M', 'maurice13@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9300 Palm Drive', 'NULL', '1 (11) 500 555-0114', '2013-08-26', '0-1 Miles'], ['26930', '170', 'AW00026930', 'NULL', 'Sharon', 'NULL', 'Andersen', '0', '1966-11-08', 'M', 'NULL', 'F', 'sharon18@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Am Gallberg 999', 'Verkaufsabteilung', '1 (11) 500 555-0112', '2013-03-20', '0-1 Miles'], ['26931', '241', 'AW00026931', 'NULL', 'Edward', 'L', 'Lopez', '0', '1967-01-09', 'M', 'NULL', 'M', 'edward4@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3381 Pastel Drive', 'NULL', '1 (11) 500 555-0183', '2013-06-09', '0-1 Miles'], ['26932', '258', 'AW00026932', 'NULL', 'Kristina', 'NULL', 'Raman', '0', '1967-02-23', 'S', 'NULL', 'F', 'kristina12@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6462 Wexford Drive', 'NULL', '1 (11) 500 555-0148', '2013-06-15', '0-1 Miles'], ['26933', '167', 'AW00026933', 'NULL', 'Jessie', 'NULL', 'Sanz', '0', '1965-11-11', 'M', 'NULL', 'F', 'jessie39@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Unter Linden 924', 'NULL', '1 (11) 500 555-0142', '2013-04-01', '1-2 Miles'], ['26934', '276', 'AW00026934', 'NULL', 'Kelli', 'NULL', 'Chander', '0', '1965-09-13', 'S', 'NULL', 'F', 'kelli39@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '891 Peachwillow Lane', 'NULL', '1 (11) 500 555-0135', '2013-06-11', '0-1 Miles'], ['26935', '196', 'AW00026935', 'NULL', 'Gabriel', 'NULL', 'Butler', '0', '1964-09-02', 'S', 'NULL', 'M', 'gabriel11@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '861 Napa Ct.', 'NULL', '1 (11) 500 555-0122', '2013-08-19', '2-5 Miles'], ['26936', '128', 'AW00026936', 'NULL', 'Jaclyn', 'NULL', 'He', '0', '1964-08-20', 'S', 'NULL', 'F', 'jaclyn20@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Brunnenstr 95', 'NULL', '1 (11) 500 555-0184', '2013-05-23', '2-5 Miles'], ['26937', '244', 'AW00026937', 'NULL', 'Audrey', 'S', 'Navarro', '0', '1965-05-20', 'S', 'NULL', 'F', 'audrey11@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '4407 Hobby Court', 'NULL', '1 (11) 500 555-0127', '2013-06-29', '2-5 Miles'], ['26938', '256', 'AW00026938', 'NULL', 'Maurice', 'L', 'Shen', '0', '1964-08-15', 'M', 'NULL', 'M', 'maurice2@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1676 Valley Crest Drive', 'NULL', '1 (11) 500 555-0157', '2013-06-06', '0-1 Miles'], ['26939', '221', 'AW00026939', 'NULL', 'Craig', 'M', 'Diaz', '0', '1969-08-21', 'M', 'NULL', 'M', 'craig5@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '801, rue de Terre Neuve', 'NULL', '1 (11) 500 555-0193', '2013-05-26', '1-2 Miles'], ['26940', '154', 'AW00026940', 'NULL', 'Franklin', 'N', 'Tang', '0', '1963-12-07', 'S', 'NULL', 'M', 'franklin22@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Marienplatz 321', 'NULL', '1 (11) 500 555-0160', '2013-05-25', '0-1 Miles'], ['26941', '215', 'AW00026941', 'NULL', 'Gerald', 'NULL', 'Vazquez', '0', '1970-05-02', 'M', 'NULL', 'M', 'gerald23@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '88, impasse Notre-Dame', 'NULL', '1 (11) 500 555-0117', '2013-06-19', '0-1 Miles'], ['26942', '268', 'AW00026942', 'NULL', 'Tanya', 'K', 'Alonso', '0', '1964-05-03', 'S', 'NULL', 'F', 'tanya4@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '457 Ryan Rd.', 'NULL', '1 (11) 500 555-0144', '2013-06-24', '0-1 Miles'], ['26943', '184', 'AW00026943', 'NULL', 'Ashlee', 'S', 'Xie', '0', '1975-07-27', 'S', 'NULL', 'F', 'ashlee10@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '92, rue Ste-Honoré', 'NULL', '1 (11) 500 555-0159', '2013-10-15', '0-1 Miles'], ['26944', '259', 'AW00026944', 'NULL', 'Drew', 'A', 'Nara', '0', '1981-01-12', 'S', 'NULL', 'M', 'drew18@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '9471 Laguna Circle', 'NULL', '1 (11) 500 555-0137', '2013-06-11', '0-1 Miles'], ['26945', '220', 'AW00026945', 'NULL', 'Katelyn', 'NULL', 'Hill', '0', '1976-01-10', 'S', 'NULL', 'F', 'katelyn36@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '33, allée des Princes', 'NULL', '1 (11) 500 555-0160', '2013-05-30', '0-1 Miles'], ['26946', '140', 'AW00026946', 'NULL', 'Andre', 'C', 'Madan', '0', '1981-06-04', 'S', 'NULL', 'M', 'andre7@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Hochstr 7736', 'NULL', '1 (11) 500 555-0194', '2013-06-04', '2-5 Miles'], ['26947', '235', 'AW00026947', 'NULL', 'Suzanne', 'A', 'Ma', '0', '1976-05-09', 'S', 'NULL', 'F', 'suzanne17@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1005 Matterhorn Ct.', 'NULL', '1 (11) 500 555-0143', '2013-06-03', '2-5 Miles'], ['26948', '157', 'AW00026948', 'NULL', 'Abby', 'A', 'Garcia', '0', '1975-12-19', 'S', 'NULL', 'F', 'abby12@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Wasserstr 43222', 'NULL', '1 (11) 500 555-0154', '2013-06-09', '2-5 Miles'], ['26949', '252', 'AW00026949', 'NULL', 'Lindsey', 'NULL', 'Chander', '0', '1975-08-25', 'S', 'NULL', 'F', 'lindsey17@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '5407 Oakgrove', 'NULL', '1 (11) 500 555-0127', '2013-07-26', '2-5 Miles'], ['26950', '183', 'AW00026950', 'NULL', 'Dominic', 'NULL', 'Suri', '0', '1975-04-06', 'M', 'NULL', 'M', 'dominic1@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '80, rue des Berges', 'NULL', '1 (11) 500 555-0188', '2013-06-25', '0-1 Miles'], ['26951', '149', 'AW00026951', 'NULL', 'Trisha', 'C', 'Hu', '0', '1980-11-17', 'S', 'NULL', 'F', 'trisha15@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Hans-Rosenthal-Platz 4297', 'NULL', '1 (11) 500 555-0161', '2014-01-03', '0-1 Miles'], ['26952', '187', 'AW00026952', 'Mr.', 'Mircea', 'Radu', 'Singer', '0', '1981-01-30', 'M', 'NULL', 'F', 'mircea0@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7, impasse Ste-Madeleine', 'NULL', '575-555-0100', '2013-06-14', '0-1 Miles'], ['26953', '189', 'AW00026953', 'NULL', 'Roy', 'C', 'Rubio', '0', '1976-05-10', 'M', 'NULL', 'M', 'roy41@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '28, rue Montcalm', 'NULL', '1 (11) 500 555-0118', '2013-06-11', '0-1 Miles'], ['26954', '172', 'AW00026954', 'NULL', 'Gerald', 'M', 'Torres', '0', '1975-08-30', 'S', 'NULL', 'M', 'gerald20@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Viktoria-Luise-Platz 75', 'Kreditorenbuchhaltung', '1 (11) 500 555-0116', '2013-06-18', '0-1 Miles'], ['26955', '271', 'AW00026955', 'NULL', 'Carlos', 'R', 'Cook', '0', '1975-09-05', 'M', 'NULL', 'M', 'carlos24@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3916 Blue Jay Dr.', 'NULL', '1 (11) 500 555-0140', '2013-08-01', '0-1 Miles'], ['26956', '262', 'AW00026956', 'NULL', 'Kristin', 'E', 'Pal', '0', '1980-09-28', 'S', 'NULL', 'F', 'kristin13@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1644 Via Media', 'NULL', '1 (11) 500 555-0117', '2013-07-05', '2-5 Miles'], ['26957', '124', 'AW00026957', 'NULL', 'Kristina', 'NULL', 'Sai', '0', '1980-07-09', 'S', 'NULL', 'F', 'kristina6@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Räuscherweg 391', 'NULL', '1 (11) 500 555-0194', '2013-12-11', '0-1 Miles'], ['26958', '183', 'AW00026958', 'NULL', 'Jerry', 'NULL', 'Xu', '0', '1980-05-24', 'M', 'NULL', 'M', 'jerry5@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '25, avenue de la Gare', 'NULL', '1 (11) 500 555-0158', '2013-12-23', '0-1 Miles'], ['26959', '256', 'AW00026959', 'NULL', 'Alisha', 'D', 'Nara', '0', '1975-01-23', 'M', 'NULL', 'F', 'alisha41@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6021 Ellis St.', 'NULL', '1 (11) 500 555-0183', '2013-09-18', '0-1 Miles'], ['26960', '271', 'AW00026960', 'NULL', 'Jose', 'A', 'Thomas', '0', '1958-05-16', 'S', 'NULL', 'M', 'jose72@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '2511 Via Appia', 'NULL', '1 (11) 500 555-0186', '2013-07-17', '0-1 Miles'], ['26961', '158', 'AW00026961', 'NULL', 'Carly', 'C', 'Chander', '0', '1974-03-21', 'M', 'NULL', 'F', 'carly14@adventure-works.com', '10000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Postfach 22 99 99', 'NULL', '1 (11) 500 555-0197', '2013-06-24', '0-1 Miles'], ['26962', '267', 'AW00026962', 'NULL', 'Francis', 'A', 'Moreno', '0', '1974-03-26', 'M', 'NULL', 'M', 'francis4@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '8634 Lake Meadow Circle', 'NULL', '1 (11) 500 555-0114', '2013-07-19', '1-2 Miles'], ['26963', '120', 'AW00026963', 'NULL', 'Meredith', 'H', 'Arun', '0', '1979-03-02', 'S', 'NULL', 'F', 'meredith5@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Viktoria-Luise-Platz 442', 'NULL', '1 (11) 500 555-0135', '2013-07-15', '2-5 Miles'], ['26964', '184', 'AW00026964', 'NULL', 'Kelli', 'G', 'Tang', '0', '1974-04-08', 'S', 'NULL', 'F', 'kelli27@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '24, rue Saint Denis', 'NULL', '1 (11) 500 555-0120', '2013-06-04', '0-1 Miles'], ['26965', '187', 'AW00026965', 'NULL', 'Jordan', 'J', 'Nelson', '0', '1979-04-18', 'M', 'NULL', 'F', 'jordan38@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6300 Lighthouse Way', 'NULL', '1 (11) 500 555-0127', '2013-06-29', '1-2 Miles'], ['26966', '271', 'AW00026966', 'NULL', 'Cedric', 'D', 'Zhang', '0', '1973-08-08', 'S', 'NULL', 'M', 'cedric0@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '41 Third Ave East', 'NULL', '1 (11) 500 555-0116', '2013-07-27', '1-2 Miles'], ['26967', '5', 'AW00026967', 'NULL', 'Edwin', 'NULL', 'Li', '0', '1973-10-12', 'S', 'NULL', 'M', 'edwin3@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9518 Stanley Dollar Dr.', 'NULL', '1 (11) 500 555-0159', '2012-10-23', '5-10 Miles'], ['26968', '16', 'AW00026968', 'NULL', 'Henry', 'NULL', 'Sanchez', '0', '1974-02-12', 'M', 'NULL', 'M', 'henry21@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '4334 Fremont Street', 'NULL', '1 (11) 500 555-0147', '2013-09-16', '0-1 Miles'], ['26969', '151', 'AW00026969', 'NULL', 'Cedric', 'NULL', 'Hu', '0', '1978-10-14', 'S', 'NULL', 'M', 'cedric20@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Hauptstr 6057', 'NULL', '1 (11) 500 555-0142', '2013-07-18', '1-2 Miles'], ['26970', '234', 'AW00026970', 'NULL', 'Kara', 'D', 'Rai', '0', '1979-05-03', 'S', 'NULL', 'F', 'kara15@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '4296 Mountaire Pkwy.', 'NULL', '1 (11) 500 555-0115', '2013-08-19', '0-1 Miles'], ['26971', '278', 'AW00026971', 'NULL', 'Douglas', 'NULL', 'Madan', '0', '1978-11-12', 'S', 'NULL', 'M', 'douglas11@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '9589 Rae Anne Dr', 'NULL', '1 (11) 500 555-0162', '2013-09-15', '1-2 Miles'], ['26972', '192', 'AW00026972', 'NULL', 'Kristopher', 'T', 'Sara', '0', '1984-05-22', 'S', 'NULL', 'M', 'kristopher9@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '775, quai Paul Doumer', 'NULL', '1 (11) 500 555-0173', '2013-03-27', '0-1 Miles'], ['26973', '236', 'AW00026973', 'NULL', 'Alberto', 'W', 'Rowe', '0', '1978-11-24', 'M', 'NULL', 'M', 'alberto20@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '9650 Valley View Road', 'NULL', '1 (11) 500 555-0191', '2013-05-12', '1-2 Miles'], ['26974', '176', 'AW00026974', 'NULL', 'Philip', 'M', 'Suarez', '0', '1986-05-13', 'S', 'NULL', 'M', 'philip18@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Lützowplatz 46', 'NULL', '1 (11) 500 555-0111', '2013-07-21', '0-1 Miles'], ['26975', '186', 'AW00026975', 'NULL', 'Janet', 'NULL', 'Ward', '0', '1984-10-04', 'S', 'NULL', 'F', 'janet29@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '2802, boulevard Beau Marchais', 'NULL', '1 (11) 500 555-0175', '2013-07-07', '1-2 Miles'], ['26976', '224', 'AW00026976', 'NULL', 'Erik', 'NULL', 'Serrano', '0', '1984-02-11', 'S', 'NULL', 'M', 'erik17@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '2646, avenue de l´Europe', 'NULL', '1 (11) 500 555-0122', '2013-07-20', '1-2 Miles'], ['26977', '147', 'AW00026977', 'NULL', 'Barry', 'NULL', 'Madan', '0', '1984-02-19', 'S', 'NULL', 'M', 'barry8@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Conesweg 89', 'NULL', '1 (11) 500 555-0118', '2013-07-29', '1-2 Miles'], ['26978', '246', 'AW00026978', 'NULL', 'Cassie', 'A', 'Sharma', '0', '1980-02-01', 'M', 'NULL', 'F', 'cassie8@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7281 Running Springs Rd.', 'NULL', '1 (11) 500 555-0195', '2013-09-12', '1-2 Miles'], ['26979', '263', 'AW00026979', 'NULL', 'Christy', 'G', 'Jai', '0', '1979-12-22', 'M', 'NULL', 'F', 'christy28@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '8246 Via Del Sol', 'NULL', '1 (11) 500 555-0162', '2013-09-03', '0-1 Miles'], ['26980', '119', 'AW00026980', 'NULL', 'Marc', 'NULL', 'Suarez', '0', '1978-01-05', 'M', 'NULL', 'M', 'marc23@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Winterfeldtstr 29', 'NULL', '1 (11) 500 555-0172', '2013-12-29', '1-2 Miles'], ['26981', '165', 'AW00026981', 'NULL', 'Audrey', 'NULL', 'Suarez', '0', '1983-08-18', 'S', 'NULL', 'F', 'audrey21@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Postfach 99 01 01', 'Leiter der Abteilung', '1 (11) 500 555-0148', '2013-03-22', '1-2 Miles'], ['26982', '190', 'AW00026982', 'NULL', 'Jose', 'R', 'Muñoz', '0', '1977-10-03', 'S', 'NULL', 'M', 'jose35@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '878, rue de Berri', 'NULL', '1 (11) 500 555-0184', '2013-08-04', '0-1 Miles'], ['26983', '153', 'AW00026983', 'NULL', 'Adriana', 'NULL', 'Vance', '0', '1978-09-19', 'M', 'NULL', 'F', 'adriana4@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Am Gallberg 6786', 'NULL', '1 (11) 500 555-0153', '2013-12-27', '1-2 Miles'], ['26984', '115', 'AW00026984', 'NULL', 'Manuel', 'NULL', 'Prasad', '0', '1979-05-09', 'M', 'NULL', 'M', 'manuel8@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Heiderweg 4983', 'NULL', '1 (11) 500 555-0197', '2013-12-07', '0-1 Miles'], ['26985', '119', 'AW00026985', 'NULL', 'Jésus', 'F', 'Diaz', '0', '1979-03-11', 'M', 'NULL', 'M', 'jésus3@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', 'Residenz Straße 944', 'NULL', '1 (11) 500 555-0151', '2013-02-12', '0-1 Miles'], ['26986', '121', 'AW00026986', 'NULL', 'Riley', 'A', 'Watson', '0', '1978-12-14', 'M', 'NULL', 'F', 'riley20@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Haberstr 123', 'NULL', '1 (11) 500 555-0110', '2013-03-13', '1-2 Miles'], ['26987', '134', 'AW00026987', 'NULL', 'Roy', 'I', 'Lopez', '0', '1984-09-16', 'M', 'NULL', 'M', 'roy17@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Welt Platz 7', 'NULL', '1 (11) 500 555-0113', '2013-03-22', '0-1 Miles'], ['26988', '178', 'AW00026988', 'NULL', 'Brandy', 'W', 'Srini', '0', '1979-02-19', 'M', 'NULL', 'F', 'brandy4@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Postfach 11 12 11', 'NULL', '1 (11) 500 555-0147', '2013-05-10', '0-1 Miles'], ['26989', '161', 'AW00026989', 'NULL', 'Mason', 'V', 'Campbell', '0', '1977-11-20', 'M', 'NULL', 'M', 'mason27@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Königsteiner Straße 641', 'NULL', '1 (11) 500 555-0150', '2013-02-02', '0-1 Miles'], ['26990', '120', 'AW00026990', 'NULL', 'Darren', 'C', 'Patel', '0', '1977-07-19', 'M', 'NULL', 'M', 'darren5@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Kulmer Straße 4', 'NULL', '1 (11) 500 555-0116', '2013-04-16', '1-2 Miles'], ['26991', '170', 'AW00026991', 'NULL', 'Rodney', 'A', 'Ortega', '0', '1983-05-06', 'M', 'NULL', 'M', 'rodney16@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Auf den Kuhlen Straße 5677', 'Verkaufsabteilung', '1 (11) 500 555-0128', '2013-07-07', '1-2 Miles'], ['26992', '273', 'AW00026992', 'NULL', 'Brad', 'S', 'Andersen', '0', '1977-07-21', 'S', 'NULL', 'M', 'brad13@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '9745 Bonita Ct.', 'NULL', '1 (11) 500 555-0123', '2013-07-23', '1-2 Miles'], ['26993', '257', 'AW00026993', 'NULL', 'Julio', 'R', 'Gill', '0', '1977-03-05', 'S', 'NULL', 'M', 'julio14@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '4155 Star Dr', 'NULL', '1 (11) 500 555-0120', '2013-12-05', '1-2 Miles'], ['26994', '218', 'AW00026994', 'NULL', 'Erika', 'S', 'Torres', '0', '1977-09-22', 'M', 'NULL', 'F', 'erika9@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9, avenue des Ternes', 'NULL', '1 (11) 500 555-0160', '2013-01-05', '0-1 Miles'], ['26995', '209', 'AW00026995', 'NULL', 'Caleb', 'NULL', 'Washington', '0', '1977-07-11', 'M', 'NULL', 'M', 'caleb10@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1102, rue Maillard', 'NULL', '1 (11) 500 555-0132', '2013-01-08', '0-1 Miles'], ['26996', '155', 'AW00026996', 'NULL', 'Natasha', 'NULL', 'Oliver', '0', '1978-02-04', 'S', 'NULL', 'F', 'natasha22@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Pascalstr 5', 'NULL', '1 (11) 500 555-0139', '2013-10-13', '0-1 Miles'], ['26997', '162', 'AW00026997', 'NULL', 'Katie', 'F', 'Becker', '0', '1983-07-20', 'M', 'NULL', 'F', 'katie23@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Husemann Straße 2464', 'NULL', '1 (11) 500 555-0140', '2013-05-24', '1-2 Miles'], ['26998', '155', 'AW00026998', 'NULL', 'Fernando', 'NULL', 'Perry', '0', '1977-03-17', 'M', 'NULL', 'M', 'fernando51@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Wallstr 34', 'Einkaufsabteilung', '1 (11) 500 555-0116', '2013-08-19', '0-1 Miles'], ['26999', '231', 'AW00026999', 'NULL', 'Samuel', 'M', 'Brown', '0', '1977-04-15', 'S', 'NULL', 'M', 'samuel62@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '3337 Pinehurst Court', 'NULL', '1 (11) 500 555-0165', '2013-11-13', '0-1 Miles'], ['27000', '149', 'AW00027000', 'NULL', 'Brandi', 'NULL', 'Dominguez', '0', '1976-12-18', 'S', 'NULL', 'F', 'brandi12@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Marienplatz 123', 'NULL', '1 (11) 500 555-0122', '2013-03-03', '0-1 Miles'], ['27001', '171', 'AW00027001', 'NULL', 'Carla', 'NULL', 'Kapoor', '0', '1982-04-04', 'M', 'NULL', 'F', 'carla4@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Lieblingsweg 54', 'NULL', '1 (11) 500 555-0190', '2013-03-17', '0-1 Miles'], ['27002', '270', 'AW00027002', 'NULL', 'Kelvin', 'T', 'She', '0', '1977-01-07', 'M', 'NULL', 'M', 'kelvin42@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '1059 Kirkwood Ct', 'NULL', '1 (11) 500 555-0192', '2013-02-10', '1-2 Miles'], ['27003', '154', 'AW00027003', 'NULL', 'Roger', 'NULL', 'Jai', '0', '1982-02-21', 'M', 'NULL', 'M', 'roger38@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Altendorfer Straße 395', 'NULL', '1 (11) 500 555-0130', '2013-09-03', '1-2 Miles'], ['27004', '154', 'AW00027004', 'NULL', 'Philip', 'E', 'Moreno', '0', '1976-11-16', 'S', 'NULL', 'M', 'philip6@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Im Himmelsweg 98', 'NULL', '1 (11) 500 555-0135', '2013-08-06', '2-5 Miles'], ['27005', '216', 'AW00027005', 'NULL', 'Susan', 'L', 'Lin', '0', '1976-08-16', 'S', 'NULL', 'F', 'susan17@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '268, avenue de l´Europe', 'NULL', '1 (11) 500 555-0111', '2013-07-30', '2-5 Miles'], ['27006', '215', 'AW00027006', 'NULL', 'Shane', 'NULL', 'Madan', '0', '1976-09-03', 'S', 'NULL', 'M', 'shane11@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '95, avenue des Ternes', 'NULL', '1 (11) 500 555-0173', '2013-07-03', '2-5 Miles'], ['27007', '230', 'AW00027007', 'NULL', 'Joe', 'M', 'Gonzalez', '0', '1976-10-15', 'S', 'NULL', 'M', 'joe21@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '5450 Bellows Ct.', 'NULL', '1 (11) 500 555-0126', '2013-07-18', '0-1 Miles'], ['27008', '234', 'AW00027008', 'NULL', 'Oscar', 'L', 'Blue', '0', '1977-04-02', 'S', 'NULL', 'M', 'oscar11@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7317 Mildred Ln.', 'NULL', '1 (11) 500 555-0172', '2013-09-15', '0-1 Miles'], ['27009', '244', 'AW00027009', 'NULL', 'Erica', 'NULL', 'Lu', '0', '1977-02-22', 'S', 'NULL', 'F', 'erica11@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9577 Santa Fe', 'NULL', '1 (11) 500 555-0169', '2013-10-04', '0-1 Miles'], ['27010', '307', 'AW00027010', 'NULL', 'Jordyn', 'A', 'Patterson', '0', '1981-05-13', 'M', 'NULL', 'F', 'jordyn10@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4438 Chrislend Court', 'NULL', '897-555-0117', '2014-01-12', '1-2 Miles'], ['27011', '637', 'AW00027011', 'NULL', 'Kevin', 'NULL', 'Powell', '0', '1981-06-17', 'M', 'NULL', 'M', 'kevin11@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4630 Adobe Dr', 'NULL', '118-555-0173', '2013-12-27', '1-2 Miles'], ['27012', '536', 'AW00027012', 'NULL', 'Anne', 'NULL', 'Jiménez', '0', '1980-05-22', 'S', 'NULL', 'F', 'anne6@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7623 Cloudview Dr.', 'NULL', '158-555-0176', '2013-10-03', '0-1 Miles'], ['27013', '301', 'AW00027013', 'NULL', 'Alisha', 'M', 'Yuan', '0', '1980-03-26', 'M', 'NULL', 'F', 'alisha31@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7468 Lindley Ct.', 'NULL', '821-555-0195', '2013-12-11', '1-2 Miles'], ['27014', '62', 'AW00027014', 'NULL', 'Luke', 'I', 'Hughes', '0', '1972-02-20', 'M', 'NULL', 'M', 'luke30@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7876 Clinton Dr', 'NULL', '653-555-0159', '2011-11-30', '1-2 Miles'], ['27015', '611', 'AW00027015', 'NULL', 'Jessica', 'NULL', 'Torres', '0', '1972-05-16', 'S', 'NULL', 'F', 'jessica16@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '371 Ridge Place', 'NULL', '187-555-0120', '2013-11-04', '0-1 Miles'], ['27016', '614', 'AW00027016', 'NULL', 'Lauren', 'J', 'Reed', '0', '1971-10-18', 'S', 'NULL', 'F', 'lauren2@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '59 Clay Rd', 'NULL', '233-555-0137', '2013-03-07', '0-1 Miles'], ['27017', '632', 'AW00027017', 'NULL', 'Jonathan', 'NULL', 'Thompson', '0', '1972-04-15', 'S', 'NULL', 'M', 'jonathan69@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9700 Terra Granada', 'NULL', '547-555-0113', '2012-08-04', '1-2 Miles'], ['27018', '307', 'AW00027018', 'NULL', 'Blake', 'NULL', 'Price', '0', '1972-01-23', 'S', 'NULL', 'M', 'blake48@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '7523 Cordoba Way', 'NULL', '638-555-0188', '2013-08-13', '0-1 Miles'], ['27019', '54', 'AW00027019', 'NULL', 'Victoria', 'NULL', 'Jackson', '0', '1970-09-21', 'S', 'NULL', 'F', 'victoria13@adventure-works.com', '20000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '8271 Laverne Way', 'NULL', '152-555-0140', '2013-09-13', '1-2 Miles'], ['27020', '343', 'AW00027020', 'NULL', 'Rachel', 'L', 'Perry', '0', '1959-09-14', 'M', 'NULL', 'F', 'rachel55@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6574 Hemlock Ave.', 'NULL', '635-555-0115', '2012-08-03', '1-2 Miles'], ['27021', '361', 'AW00027021', 'NULL', 'Victoria', 'L', 'Peterson', '0', '1976-10-13', 'M', 'NULL', 'F', 'victoria41@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4217 Almond Avenue', 'NULL', '524-555-0123', '2012-08-23', '1-2 Miles'], ['27022', '71', 'AW00027022', 'NULL', 'Anthony', 'D', 'Johnson', '0', '1966-03-08', 'S', 'NULL', 'M', 'anthony10@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '4185 Keywood Ct.', 'NULL', '730-555-0133', '2013-04-30', '0-1 Miles'], ['27023', '539', 'AW00027023', 'NULL', 'Emily', 'NULL', 'Simmons', '0', '1966-04-06', 'S', 'NULL', 'F', 'emily40@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '280 Calle Verde Dr.', 'NULL', '188-555-0149', '2013-04-13', '1-2 Miles'], ['27024', '49', 'AW00027024', 'NULL', 'Austin', 'O', 'Patterson', '0', '1960-11-10', 'S', 'NULL', 'M', 'austin6@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9330 Sinclair Ave', 'NULL', '245-555-0172', '2013-12-13', '0-1 Miles'], ['27025', '552', 'AW00027025', 'NULL', 'Jasmine', 'A', 'Rivera', '0', '1966-03-20', 'S', 'NULL', 'F', 'jasmine28@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1320 Pacheco St', 'NULL', '246-555-0144', '2013-03-17', '1-2 Miles'], ['27026', '54', 'AW00027026', 'NULL', 'Jonathan', 'T', 'Perry', '0', '1961-01-07', 'S', 'NULL', 'M', 'jonathan7@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '1', '4651 Brownstone Rd', 'NULL', '909-555-0148', '2011-12-01', '10+ Miles'], ['27027', '59', 'AW00027027', 'NULL', 'Jennifer', 'S', 'White', '0', '1961-01-10', 'S', 'NULL', 'F', 'jennifer41@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '1', '878 Megan Dr.', 'NULL', '927-555-0128', '2012-02-05', '10+ Miles'], ['27028', '52', 'AW00027028', 'NULL', 'Sarah', 'A', 'Robinson', '0', '1961-04-22', 'S', 'NULL', 'F', 'sarah20@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4435 Schenone Court', 'NULL', '838-555-0120', '2013-04-20', '1-2 Miles'], ['27029', '358', 'AW00027029', 'NULL', 'Elizabeth', 'NULL', 'Hughes', '0', '1961-03-17', 'S', 'NULL', 'F', 'elizabeth41@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '2', '4809 Ward Court', 'NULL', '702-555-0195', '2014-01-12', '1-2 Miles'], ['27030', '637', 'AW00027030', 'NULL', 'Jan', 'M', 'Gray', '0', '1971-11-13', 'S', 'NULL', 'F', 'jan5@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '2', '4663 Glenside Ct', 'NULL', '460-555-0194', '2013-06-23', '1-2 Miles'], ['27031', '326', 'AW00027031', 'NULL', 'Jessica', 'NULL', 'Garcia', '0', '1961-05-09', 'S', 'NULL', 'F', 'jessica64@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5659 Tehaschapi Way', 'NULL', '468-555-0120', '2013-11-07', '1-2 Miles'], ['27032', '359', 'AW00027032', 'NULL', 'Miguel', 'L', 'Garcia', '0', '1966-09-06', 'S', 'NULL', 'M', 'miguel16@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7324 Mt. Tri-state Ct.', 'NULL', '772-555-0148', '2014-01-18', '1-2 Miles'], ['27033', '609', 'AW00027033', 'NULL', 'Ernest', 'NULL', 'Harrison', '0', '1973-03-12', 'S', 'NULL', 'M', 'ernest18@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '8364 St. Paul Circle', 'NULL', '839-555-0134', '2013-05-27', '1-2 Miles'], ['27034', '611', 'AW00027034', 'NULL', 'Corey', 'NULL', 'Nara', '0', '1962-02-20', 'S', 'NULL', 'M', 'corey15@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3140 Gingham Way', 'NULL', '144-555-0133', '2013-09-05', '1-2 Miles'], ['27035', '372', 'AW00027035', 'NULL', 'Ana', 'NULL', 'Long', '0', '1961-10-13', 'S', 'NULL', 'F', 'ana9@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7560 Big Canyon Road', 'NULL', '468-555-0163', '2013-07-25', '1-2 Miles'], ['27036', '607', 'AW00027036', 'NULL', 'Hunter', 'NULL', 'Brown', '0', '1961-07-17', 'S', 'NULL', 'M', 'hunter63@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '850 Crystal Ave.', 'NULL', '706-555-0110', '2013-03-01', '0-1 Miles'], ['27037', '329', 'AW00027037', 'NULL', 'Lauren', 'NULL', 'Rodriguez', '0', '1962-02-11', 'M', 'NULL', 'F', 'lauren38@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2262 Kirkwood Ct.', 'NULL', '451-555-0150', '2013-03-13', '1-2 Miles'], ['27038', '334', 'AW00027038', 'NULL', 'Eduardo', 'NULL', 'Reed', '0', '1962-06-13', 'M', 'NULL', 'M', 'eduardo87@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2674 Ridge Circle', 'NULL', '321-555-0168', '2013-11-09', '1-2 Miles'], ['27039', '374', 'AW00027039', 'NULL', 'Jonathan', 'C', 'Lewis', '0', '1967-04-24', 'S', 'NULL', 'M', 'jonathan75@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2269 Mcelroy', 'NULL', '923-555-0152', '2013-08-29', '0-1 Miles'], ['27040', '524', 'AW00027040', 'Mr.', 'Paul', 'NULL', 'Singh', '0', '1962-12-04', 'M', 'NULL', 'M', 'paul5@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '371 Westwood Court', 'NULL', '390-555-0100', '2013-02-02', '1-2 Miles'], ['27041', '623', 'AW00027041', 'NULL', 'Edward', 'NULL', 'Smith', '0', '1963-05-18', 'S', 'NULL', 'M', 'edward22@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5760 Las Palmas', 'NULL', '377-555-0180', '2013-10-24', '0-1 Miles'], ['27042', '55', 'AW00027042', 'NULL', 'Noah', 'S', 'Roberts', '0', '1963-01-10', 'M', 'NULL', 'M', 'noah31@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6469 Collins Dr.', 'NULL', '622-555-0142', '2013-12-11', '1-2 Miles'], ['27043', '59', 'AW00027043', 'NULL', 'Dalton', 'N', 'Murphy', '0', '1963-12-07', 'S', 'NULL', 'M', 'dalton86@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4955 Royal Oak Rd.', 'NULL', '678-555-0194', '2012-02-14', '1-2 Miles'], ['27044', '372', 'AW00027044', 'NULL', 'Carol', 'J', 'Long', '0', '1963-10-22', 'S', 'NULL', 'F', 'carol6@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2303 Rosebuck Way', 'NULL', '292-555-0140', '2012-08-27', '1-2 Miles'], ['27045', '634', 'AW00027045', 'NULL', 'Angel', 'D', 'Brooks', '0', '1964-03-04', 'S', 'NULL', 'M', 'angel0@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1276 Carlisle Way', 'NULL', '223-555-0156', '2012-08-17', '0-1 Miles'], ['27046', '315', 'AW00027046', 'NULL', 'Allison', 'NULL', 'Howard', '0', '1969-06-12', 'M', 'NULL', 'F', 'allison10@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '8788 Green Leaf Drive', 'NULL', '548-555-0110', '2013-04-16', '0-1 Miles'], ['27047', '536', 'AW00027047', 'NULL', 'Yolanda', 'NULL', 'Rai', '0', '1964-04-11', 'M', 'NULL', 'F', 'yolanda16@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '805 Willow Lane', 'NULL', '538-555-0135', '2012-08-19', '1-2 Miles'], ['27048', '627', 'AW00027048', 'NULL', 'Melanie', 'C', 'Watson', '0', '1969-10-02', 'M', 'NULL', 'F', 'melanie11@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '8154 Pheasant Circle', 'NULL', '286-555-0111', '2013-11-13', '0-1 Miles'], ['27049', '43', 'AW00027049', 'NULL', 'Faith', 'NULL', 'Sanchez', '0', '1969-03-01', 'M', 'NULL', 'F', 'faith34@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '7356 Walnut Lane', 'NULL', '414-555-0175', '2013-05-03', '0-1 Miles'], ['27050', '542', 'AW00027050', 'NULL', 'Chloe', 'NULL', 'Turner', '0', '1969-02-01', 'S', 'NULL', 'F', 'chloe2@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7199 Santa Fe Dr.', 'NULL', '175-555-0122', '2012-08-11', '1-2 Miles'], ['27051', '355', 'AW00027051', 'NULL', 'Charles', 'NULL', 'Brown', '0', '1964-11-07', 'S', 'NULL', 'M', 'charles7@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '4601 Sundance Drive', 'NULL', '358-555-0111', '2012-08-20', '1-2 Miles'], ['27052', '637', 'AW00027052', 'NULL', 'Jada', 'W', 'Bailey', '0', '1970-08-21', 'S', 'NULL', 'F', 'jada7@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '7449 Dover Way', 'NULL', '486-555-0159', '2013-08-01', '0-1 Miles'], ['27053', '59', 'AW00027053', 'NULL', 'Steven', 'J', 'Cook', '0', '1981-03-16', 'S', 'NULL', 'M', 'steven31@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2385 Dallis Dr.', 'NULL', '796-555-0127', '2012-03-15', '1-2 Miles'], ['27054', '298', 'AW00027054', 'NULL', 'Shawn', 'NULL', 'Sharma', '0', '1965-06-04', 'M', 'NULL', 'M', 'shawn11@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '7801 Esperanza', 'NULL', '926-555-0117', '2012-07-31', '0-1 Miles'], ['27055', '310', 'AW00027055', 'NULL', 'Isabella', 'D', 'Sanchez', '0', '1964-09-19', 'S', 'NULL', 'F', 'isabella82@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '6992 Mt. Whitney Way', 'NULL', '917-555-0121', '2013-03-20', '0-1 Miles'], ['27056', '338', 'AW00027056', 'NULL', 'Mackenzie', 'L', 'James', '0', '1965-02-11', 'S', 'NULL', 'F', 'mackenzie6@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9517 Village Road', 'NULL', '157-555-0155', '2012-08-08', '1-2 Miles'], ['27057', '648', 'AW00027057', 'NULL', 'Brooke', 'NULL', 'Morris', '0', '1978-02-13', 'S', 'NULL', 'F', 'brooke16@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '2916 Hill Dr.', 'NULL', '698-555-0129', '2014-01-10', '0-1 Miles'], ['27058', '635', 'AW00027058', 'NULL', 'Nathan', 'K', 'Butler', '0', '1977-08-20', 'S', 'NULL', 'M', 'nathan10@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8219 Moraga Road', 'NULL', '141-555-0126', '2012-08-05', '1-2 Miles'], ['27059', '299', 'AW00027059', 'NULL', 'Hunter', 'NULL', 'Perry', '0', '1983-10-01', 'M', 'NULL', 'M', 'hunter4@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '1942 Rock Drive', 'NULL', '679-555-0115', '2013-02-25', '0-1 Miles'], ['27060', '60', 'AW00027060', 'NULL', 'Lucas', 'A', 'Coleman', '0', '1978-09-25', 'M', 'NULL', 'M', 'lucas55@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9218 Dalis Dr.', 'NULL', '734-555-0189', '2012-03-25', '1-2 Miles'], ['27061', '60', 'AW00027061', 'NULL', 'Gabrielle', 'NULL', 'Scott', '0', '1979-03-02', 'S', 'NULL', 'F', 'gabrielle56@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '6028 D St.', 'NULL', '189-555-0173', '2013-07-30', '0-1 Miles'], ['27062', '66', 'AW00027062', 'NULL', 'Edward', 'NULL', 'Harris', '0', '1978-10-01', 'S', 'NULL', 'M', 'edward36@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8380 Forte Way', 'NULL', '235-555-0137', '2012-03-27', '1-2 Miles'], ['27063', '611', 'AW00027063', 'NULL', 'Taylor', 'W', 'Flores', '0', '1978-10-18', 'M', 'NULL', 'F', 'taylor37@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6057 Hill Street', 'NULL', '412-555-0116', '2012-08-14', '1-2 Miles'], ['27064', '612', 'AW00027064', 'NULL', 'Barbara', 'NULL', 'Chande', '0', '1978-12-18', 'M', 'NULL', 'F', 'barbara44@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1780 Oily Road', 'NULL', '433-555-0119', '2012-07-31', '1-2 Miles'], ['27065', '322', 'AW00027065', 'NULL', 'Jordan', 'E', 'Wright', '0', '1978-08-10', 'M', 'NULL', 'M', 'jordan74@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3697 Leland Way', 'NULL', '341-555-0111', '2013-07-01', '1-2 Miles'], ['27066', '343', 'AW00027066', 'NULL', 'Cole', 'NULL', 'Murphy', '0', '1979-06-25', 'S', 'NULL', 'M', 'cole15@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2668 Trailview Circle', 'NULL', '740-555-0127', '2013-01-30', '1-2 Miles'], ['27067', '372', 'AW00027067', 'NULL', 'Jennifer', 'T', 'Rodriguez', '0', '1978-10-09', 'S', 'NULL', 'F', 'jennifer47@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '6005 Hackamore Lane', 'NULL', '444-555-0139', '2012-08-20', '0-1 Miles'], ['27068', '374', 'AW00027068', 'NULL', 'Jade', 'NULL', 'Kelly', '0', '1984-02-03', 'S', 'NULL', 'F', 'jade1@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4735 E St.', 'NULL', '496-555-0134', '2012-08-16', '1-2 Miles'], ['27069', '374', 'AW00027069', 'NULL', 'Gabriella', 'A', 'Perez', '0', '1978-10-14', 'M', 'NULL', 'F', 'gabriella35@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '1045 Lolita Drive', 'NULL', '216-555-0141', '2012-08-18', '0-1 Miles'], ['27070', '616', 'AW00027070', 'NULL', 'Nathan', 'D', 'Davis', '0', '1977-07-08', 'M', 'NULL', 'M', 'nathan63@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9643 Weatherly Way', 'NULL', '706-555-0168', '2013-12-20', '0-1 Miles'], ['27071', '58', 'AW00027071', 'NULL', 'Anthony', 'NULL', 'Clark', '0', '1976-07-08', 'S', 'NULL', 'M', 'anthony5@adventure-works.com', '40000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '5468 Boxwood Drive', 'NULL', '212-555-0121', '2012-03-07', '10+ Miles'], ['27072', '632', 'AW00027072', 'NULL', 'Alex', 'NULL', 'Baker', '0', '1976-12-31', 'M', 'NULL', 'M', 'alex36@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5237 Babel Lane', 'NULL', '778-555-0178', '2013-05-02', '0-1 Miles'], ['27073', '539', 'AW00027073', 'NULL', 'Sydney', 'NULL', 'Sanders', '0', '1982-11-13', 'M', 'NULL', 'F', 'sydney22@adventure-works.com', '70000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1148 Thornwood Drive', 'NULL', '383-555-0136', '2012-08-04', '0-1 Miles'], ['27074', '607', 'AW00027074', 'NULL', 'Kristi', 'M', 'Sanchez', '0', '1976-09-18', 'M', 'NULL', 'F', 'kristi38@adventure-works.com', '70000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8970 Birchwood', 'NULL', '791-555-0126', '2012-08-06', '0-1 Miles'], ['27075', '66', 'AW00027075', 'NULL', 'Jackson', 'S', 'Chen', '0', '1977-04-12', 'M', 'NULL', 'M', 'jackson27@adventure-works.com', '70000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '561 Lewis Way', 'NULL', '132-555-0146', '2012-03-22', '0-1 Miles'], ['27076', '326', 'AW00027076', 'NULL', 'Dakota', 'A', 'Russell', '0', '1977-03-21', 'M', 'NULL', 'M', 'dakota16@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1134 Concord Pl.', 'NULL', '447-555-0132', '2012-08-18', '1-2 Miles'], ['27077', '302', 'AW00027077', 'NULL', 'Robert', 'K', 'Henderson', '0', '1978-03-03', 'S', 'NULL', 'M', 'robert18@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '2617 St. George Dr', 'NULL', '259-555-0116', '2012-08-11', '0-1 Miles'], ['27078', '361', 'AW00027078', 'NULL', 'Chloe', 'A', 'Scott', '0', '1976-04-16', 'M', 'NULL', 'F', 'chloe11@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7818 Lorie Lane', 'NULL', '104-555-0152', '2012-08-04', '2-5 Miles'], ['27079', '369', 'AW00027079', 'NULL', 'Natalie', 'E', 'Lewis', '0', '1976-03-16', 'M', 'NULL', 'F', 'natalie88@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8837 Via Appia', 'NULL', '952-555-0151', '2012-09-08', '0-1 Miles'], ['27080', '311', 'AW00027080', 'NULL', 'Nathan', 'W', 'Campbell', '0', '1975-12-01', 'M', 'NULL', 'M', 'nathan36@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '406 Chinquapin Ct.', 'NULL', '131-555-0151', '2012-09-09', '2-5 Miles'], ['27081', '307', 'AW00027081', 'NULL', 'Jason', 'L', 'Ross', '0', '1975-08-24', 'M', 'NULL', 'M', 'jason2@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2540 Waterview Place', 'NULL', '964-555-0148', '2012-09-10', '2-5 Miles'], ['27082', '60', 'AW00027082', 'NULL', 'Zachary', 'M', 'Taylor', '0', '1975-09-05', 'M', 'NULL', 'M', 'zachary38@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7598 Holland Circle', 'NULL', '483-555-0176', '2012-04-22', '2-5 Miles'], ['27083', '627', 'AW00027083', 'NULL', 'Kevin', 'NULL', 'Perry', '0', '1975-08-02', 'M', 'NULL', 'M', 'kevin10@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9208 West Rd', 'Unit E1', '638-555-0180', '2012-09-08', '0-1 Miles'], ['27084', '71', 'AW00027084', 'NULL', 'Fernando', 'NULL', 'Russell', '0', '1975-08-31', 'M', 'NULL', 'M', 'fernando61@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '2818 Raymond Dr.', 'NULL', '558-555-0131', '2012-03-30', '0-1 Miles'], ['27085', '58', 'AW00027085', 'NULL', 'Christian', 'NULL', 'Wilson', '0', '1976-03-31', 'M', 'NULL', 'M', 'christian37@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '410 Cardinet Drive', 'NULL', '202-555-0153', '2012-05-26', '2-5 Miles'], ['27086', '644', 'AW00027086', 'NULL', 'Lauren', 'NULL', 'Howard', '0', '1975-07-04', 'M', 'NULL', 'F', 'lauren12@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8721 Nahua', 'NULL', '814-555-0134', '2012-09-16', '2-5 Miles'], ['27087', '359', 'AW00027087', 'NULL', 'Justin', 'G', 'Clark', '0', '1975-10-13', 'M', 'NULL', 'M', 'justin47@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6315 Olive Ave.', 'NULL', '942-555-0113', '2012-08-29', '2-5 Miles'], ['27088', '548', 'AW00027088', 'NULL', 'Tristan', 'NULL', 'Patterson', '0', '1981-05-18', 'S', 'NULL', 'M', 'tristan11@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4367 Citrus Ave.', 'NULL', '984-555-0123', '2012-09-04', '2-5 Miles'], ['27089', '611', 'AW00027089', 'NULL', 'Janelle', 'NULL', 'Garcia', '0', '1975-02-15', 'S', 'NULL', 'F', 'janelle11@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '9433 Athene Drive', 'NULL', '890-555-0135', '2012-09-27', '0-1 Miles'], ['27090', '336', 'AW00027090', 'NULL', 'Elizabeth', 'H', 'Brown', '0', '1974-12-14', 'M', 'NULL', 'F', 'elizabeth8@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2039 Dallis Dr.', 'NULL', '427-555-0177', '2012-09-24', '2-5 Miles'], ['27091', '616', 'AW00027091', 'NULL', 'Miguel', 'A', 'Martin', '0', '1977-04-18', 'M', 'NULL', 'M', 'miguel14@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '9206 West Rd.', 'NULL', '710-555-0152', '2012-09-22', '0-1 Miles'], ['27092', '307', 'AW00027092', 'NULL', 'Marissa', 'NULL', 'Ross', '0', '1982-03-07', 'S', 'NULL', 'F', 'marissa2@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '9130 Pine Valley Rd', 'NULL', '850-555-0189', '2012-09-01', '0-1 Miles'], ['27093', '314', 'AW00027093', 'NULL', 'Alexandra', 'C', 'Martin', '0', '1977-05-14', 'S', 'NULL', 'F', 'alexandra78@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5241 Miguel Drive', 'NULL', '134-555-0119', '2012-09-25', '2-5 Miles'], ['27094', '348', 'AW00027094', 'NULL', 'Sean', 'NULL', 'Kelly', '0', '1985-10-07', 'S', 'NULL', 'M', 'sean9@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5259 Prestwick Dr.', 'NULL', '607-555-0126', '2012-09-21', '2-5 Miles'], ['27095', '374', 'AW00027095', 'NULL', 'Spencer', 'NULL', 'Flores', '0', '1974-10-09', 'M', 'NULL', 'M', 'spencer14@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2350 Winthrop St.', 'NULL', '362-555-0138', '2012-09-14', '2-5 Miles'], ['27096', '627', 'AW00027096', 'NULL', 'Chase', 'NULL', 'Watson', '0', '1979-11-16', 'M', 'NULL', 'M', 'chase1@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4406 Glenside Court', 'NULL', '387-555-0176', '2012-09-27', '2-5 Miles'], ['27097', '623', 'AW00027097', 'NULL', 'Kaitlyn', 'NULL', 'Gonzales', '0', '1973-09-19', 'M', 'NULL', 'F', 'kaitlyn84@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3692 Morales', 'NULL', '116-555-0192', '2012-09-06', '2-5 Miles'], ['27098', '607', 'AW00027098', 'NULL', 'Sarah', 'C', 'Wilson', '0', '1973-12-14', 'M', 'NULL', 'F', 'sarah9@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3581 Rising Dawn Way', 'NULL', '563-555-0177', '2013-08-18', '2-5 Miles'], ['27099', '50', 'AW00027099', 'NULL', 'Zachary', 'B', 'Williams', '0', '1976-04-01', 'M', 'NULL', 'M', 'zachary32@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '388 Mt. Everest Court', 'NULL', '658-555-0114', '2012-05-26', '2-5 Miles'], ['27100', '50', 'AW00027100', 'NULL', 'Hunter', 'NULL', 'Walker', '0', '1981-02-23', 'M', 'NULL', 'M', 'hunter56@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '30 Sun View Terr.', 'NULL', '612-555-0176', '2013-04-05', '0-1 Miles'], ['27101', '51', 'AW00027101', 'NULL', 'Eduardo', 'NULL', 'Bell', '0', '1975-09-02', 'S', 'NULL', 'M', 'eduardo81@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3095 Seabourne Ct', 'NULL', '150-555-0175', '2012-05-26', '2-5 Miles'], ['27102', '55', 'AW00027102', 'NULL', 'Katherine', 'B', 'Miller', '0', '1976-01-09', 'S', 'NULL', 'F', 'katherine76@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '9817 Sanford St.', 'NULL', '779-555-0135', '2012-05-27', '0-1 Miles'], ['27103', '632', 'AW00027103', 'NULL', 'Chloe', 'M', 'Brooks', '0', '1975-08-30', 'S', 'NULL', 'F', 'chloe63@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4710 Northridge Drive', 'NULL', '331-555-0117', '2012-09-22', '2-5 Miles'], ['27104', '298', 'AW00027104', 'NULL', 'Randy', 'B', 'Zhu', '0', '1976-04-01', 'M', 'NULL', 'M', 'randy16@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '388 Mt. Everest Court', 'NULL', '837-555-0157', '2012-09-05', '2-5 Miles'], ['27105', '302', 'AW00027105', 'NULL', 'Sean', 'NULL', 'Perez', '0', '1975-12-11', 'S', 'NULL', 'M', 'sean35@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1343 Grenola Dr.', 'NULL', '620-555-0199', '2012-09-03', '2-5 Miles'], ['27106', '338', 'AW00027106', 'NULL', 'Jennifer', 'NULL', 'Allen', '0', '1975-07-25', 'S', 'NULL', 'F', 'jennifer26@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '7248 Holiday Hills Dr.', 'NULL', '214-555-0118', '2012-09-15', '0-1 Miles'], ['27107', '338', 'AW00027107', 'NULL', 'Alexa', 'D', 'Stewart', '0', '1976-02-19', 'M', 'NULL', 'F', 'alexa21@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '9534 Hartnell Court', 'NULL', '776-555-0128', '2012-08-30', '0-1 Miles'], ['27108', '315', 'AW00027108', 'NULL', 'Rachel', 'B', 'Thompson', '0', '1973-05-16', 'S', 'NULL', 'F', 'rachel18@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '581 Tobi Dr.', 'NULL', '859-555-0150', '2012-09-11', '0-1 Miles'], ['27109', '536', 'AW00027109', 'NULL', 'Mandy', 'A', 'Cai', '0', '1972-05-12', 'M', 'NULL', 'F', 'mandy22@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2461 Prancing Drive', 'NULL', '608-555-0117', '2013-03-14', '2-5 Miles'], ['27110', '49', 'AW00027110', 'NULL', 'Andrew', 'C', 'Miller', '0', '1971-11-06', 'M', 'NULL', 'M', 'andrew15@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2214 Solano', 'NULL', '193-555-0162', '2013-11-14', '2-5 Miles'], ['27111', '68', 'AW00027111', 'NULL', 'Gabriel', 'NULL', 'Flores', '0', '1972-02-12', 'M', 'NULL', 'M', 'gabriel9@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9070 Muir Road', 'NULL', '574-555-0191', '2013-06-08', '2-5 Miles'], ['27112', '50', 'AW00027112', 'NULL', 'Caleb', 'NULL', 'Foster', '0', '1971-10-05', 'S', 'NULL', 'M', 'caleb13@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '6982 Duck Horn Court', 'NULL', '296-555-0115', '2013-06-26', '0-1 Miles'], ['27113', '618', 'AW00027113', 'NULL', 'Ashley', 'C', 'Diaz', '0', '1971-08-29', 'M', 'NULL', 'F', 'ashley49@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6697 Roslyn Drive', 'NULL', '913-555-0129', '2013-09-10', '2-5 Miles'], ['27114', '310', 'AW00027114', 'NULL', 'Alexander', 'NULL', 'Thompson', '0', '1977-11-07', 'M', 'NULL', 'M', 'alexander19@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1710 Boyd Road', 'NULL', '899-555-0135', '2012-10-21', '2-5 Miles'], ['27115', '536', 'AW00027115', 'NULL', 'Kristi', 'NULL', 'Navarro', '0', '1971-11-15', 'M', 'NULL', 'F', 'kristi5@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2373 Mt .whitney Way', 'NULL', '251-555-0127', '2013-11-03', '2-5 Miles'], ['27116', '609', 'AW00027116', 'NULL', 'Regina', 'L', 'Gonzalez', '0', '1971-07-25', 'S', 'NULL', 'F', 'regina17@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1077 Laurel Drive', 'NULL', '578-555-0110', '2012-10-08', '2-5 Miles'], ['27117', '609', 'AW00027117', 'NULL', 'Jermaine', 'H', 'Prasad', '0', '1971-12-11', 'M', 'NULL', 'M', 'jermaine7@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5935 Seawind Dr.', 'NULL', '590-555-0169', '2012-10-15', '2-5 Miles'], ['27118', '205', 'AW00027118', 'NULL', 'Tina', 'NULL', 'Kapoor', '0', '1981-07-02', 'M', 'NULL', 'F', 'tina3@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8787, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0147', '2013-07-03', '0-1 Miles'], ['27119', '157', 'AW00027119', 'NULL', 'Mayra', 'T', 'Gonzalez', '0', '1981-09-23', 'M', 'NULL', 'F', 'mayra18@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Kapellstr 4924', 'NULL', '1 (11) 500 555-0114', '2013-09-05', '0-1 Miles'], ['27120', '150', 'AW00027120', 'NULL', 'Clarence', 'NULL', 'Kumar', '0', '1981-02-23', 'M', 'NULL', 'M', 'clarence22@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Hunzinger Allee 675', 'NULL', '1 (11) 500 555-0187', '2013-09-02', '0-1 Miles'], ['27121', '248', 'AW00027121', 'NULL', 'Teresa', 'R', 'Rubio', '0', '1980-02-02', 'S', 'NULL', 'F', 'teresa20@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '2253 Bel Air Dr.', 'NULL', '1 (11) 500 555-0152', '2013-07-14', '2-5 Miles'], ['27122', '216', 'AW00027122', 'NULL', 'Ernest', 'N', 'Liang', '0', '1975-01-01', 'S', 'NULL', 'M', 'ernest16@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '11, quai de l´ Iton', 'NULL', '1 (11) 500 555-0165', '2013-08-12', '2-5 Miles'], ['27123', '185', 'AW00027123', 'NULL', 'Jaclyn', 'NULL', 'Xie', '0', '1980-11-07', 'S', 'NULL', 'F', 'jaclyn26@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '195, rue de Varenne', 'NULL', '1 (11) 500 555-0172', '2013-08-25', '0-1 Miles'], ['27124', '184', 'AW00027124', 'NULL', 'Raymond', 'E', 'Kovar', '0', '1974-10-03', 'M', 'NULL', 'M', 'raymond5@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '8783, place du Tertre', 'NULL', '1 (11) 500 555-0168', '2013-09-22', '0-1 Miles'], ['27125', '233', 'AW00027125', 'NULL', 'Albert', 'NULL', 'Dominguez', '0', '1974-11-18', 'M', 'NULL', 'M', 'albert13@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7344 Raymond Dr', 'NULL', '1 (11) 500 555-0155', '2013-08-17', '1-2 Miles'], ['27126', '210', 'AW00027126', 'NULL', 'Derek', 'I', 'Sharma', '0', '1986-04-06', 'S', 'NULL', 'M', 'derek8@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', "11, rue de l'Espace De Schengen", 'NULL', '1 (11) 500 555-0128', '2013-02-26', '0-1 Miles'], ['27127', '151', 'AW00027127', 'NULL', 'Misty', 'NULL', 'Black', '0', '1974-08-30', 'S', 'NULL', 'F', 'misty22@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Platz des Landtags 550', 'Kreditorenbuchhaltung', '1 (11) 500 555-0112', '2013-05-29', '0-1 Miles'], ['27128', '182', 'AW00027128', 'NULL', 'Heather', 'NULL', 'Cai', '0', '1980-08-05', 'S', 'NULL', 'F', 'heather20@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '224, boulevard Beau Marchais', 'NULL', '1 (11) 500 555-0146', '2013-02-22', '0-1 Miles'], ['27129', '167', 'AW00027129', 'NULL', 'Mindy', 'NULL', 'Tang', '0', '1986-04-21', 'S', 'NULL', 'F', 'mindy8@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', 'Buergermeister-ulrich-str 2945', 'NULL', '1 (11) 500 555-0157', '2013-05-04', '0-1 Miles'], ['27130', '237', 'AW00027130', 'NULL', 'Eric', 'H', 'Parker', '0', '1974-12-30', 'S', 'NULL', 'M', 'eric41@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3268 Hilltop Dr.', 'NULL', '1 (11) 500 555-0175', '2013-10-26', '0-1 Miles'], ['27131', '259', 'AW00027131', 'NULL', 'Edgar', 'M', 'Madan', '0', '1980-08-12', 'S', 'NULL', 'M', 'edgar8@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '742 Grasswood Ct.', 'NULL', '1 (11) 500 555-0178', '2013-10-21', '0-1 Miles'], ['27132', '231', 'AW00027132', 'NULL', 'Eduardo', 'NULL', 'Gonzalez', '0', '1958-04-10', 'S', 'NULL', 'M', 'eduardo32@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '8474 Carmel Drive', 'NULL', '1 (11) 500 555-0165', '2013-08-24', '0-1 Miles'], ['27133', '190', 'AW00027133', 'NULL', 'Phillip', 'A', 'Arun', '0', '1958-01-15', 'M', 'NULL', 'M', 'phillip7@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '69bis, rue des Peupliers', 'NULL', '1 (11) 500 555-0115', '2013-09-15', '1-2 Miles'], ['27134', '200', 'AW00027134', 'NULL', 'Glenn', 'K', 'Chen', '0', '1957-09-30', 'S', 'NULL', 'M', 'glenn3@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '368, avenue du Québec', 'NULL', '1 (11) 500 555-0137', '2013-08-31', '0-1 Miles'], ['27135', '209', 'AW00027135', 'NULL', 'David', 'B', 'Martin', '0', '1959-02-08', 'S', 'NULL', 'M', 'david73@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '88, place de la République', 'NULL', '1 (11) 500 555-0199', '2013-07-08', '0-1 Miles'], ['27136', '161', 'AW00027136', 'NULL', 'Isabella', 'D', 'Coleman', '0', '1974-05-22', 'M', 'NULL', 'F', 'isabella17@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Platz des Landtags 404', 'NULL', '1 (11) 500 555-0159', '2013-09-25', '0-1 Miles'], ['27137', '255', 'AW00027137', 'NULL', 'Cindy', 'L', 'Lopez', '0', '1973-09-14', 'S', 'NULL', 'F', 'cindy16@adventure-works.com', '10000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '9845 Barberry Court', 'NULL', '1 (11) 500 555-0145', '2013-08-16', '0-1 Miles'], ['27138', '219', 'AW00027138', 'NULL', 'Veronica', 'NULL', 'Sara', '0', '1979-01-07', 'M', 'NULL', 'F', 'veronica11@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '1718, chaussée de Tournai', 'NULL', '1 (11) 500 555-0185', '2013-09-21', '2-5 Miles'], ['27139', '123', 'AW00027139', 'NULL', 'Jon', 'NULL', 'Liu', '0', '1984-07-19', 'S', 'NULL', 'M', 'jon23@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Brunnenstr 9510', 'NULL', '1 (11) 500 555-0160', '2013-10-26', '0-1 Miles'], ['27140', '235', 'AW00027140', 'NULL', 'Roger', 'NULL', 'Holt', '0', '1974-01-22', 'S', 'NULL', 'M', 'roger24@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '9271 Prestwick Ave.', 'NULL', '1 (11) 500 555-0191', '2013-08-17', '2-5 Miles'], ['27141', '271', 'AW00027141', 'NULL', 'Tonya', 'A', 'Anand', '0', '1974-06-04', 'M', 'NULL', 'F', 'tonya22@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6928 N. 8th Street', 'NULL', '1 (11) 500 555-0119', '2013-08-12', '1-2 Miles'], ['27142', '222', 'AW00027142', 'NULL', 'Lindsay', 'NULL', 'Andersen', '0', '1978-12-31', 'S', 'NULL', 'F', 'lindsay13@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7, impasse Ste-Madeleine', 'NULL', '1 (11) 500 555-0178', '2013-09-24', '1-2 Miles'], ['27143', '221', 'AW00027143', 'NULL', 'Alvin', 'C', 'Deng', '0', '1974-01-29', 'S', 'NULL', 'M', 'alvin23@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7, rue de Maubeuge', 'NULL', '1 (11) 500 555-0121', '2013-03-16', '0-1 Miles'], ['27144', '2', 'AW00027144', 'NULL', 'Franklin', 'NULL', 'Shen', '0', '1982-04-20', 'S', 'NULL', 'M', 'franklin20@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '38 First Ave.', 'NULL', '1 (11) 500 555-0188', '2013-09-09', '2-5 Miles'], ['27145', '27', 'AW00027145', 'NULL', 'Pamela', 'L', 'Chapman', '0', '1982-05-21', 'S', 'NULL', 'F', 'pamela5@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1025 Yosemite Dr.', 'NULL', '1 (11) 500 555-0137', '2013-08-10', '2-5 Miles'], ['27146', '26', 'AW00027146', 'NULL', 'Danny', 'NULL', 'Hernandez', '0', '1971-02-18', 'S', 'NULL', 'M', 'danny4@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '856 Summit View Dr', 'NULL', '1 (11) 500 555-0164', '2013-06-05', '5-10 Miles'], ['27147', '29', 'AW00027147', 'NULL', 'Melvin', 'E', 'Nara', '0', '1971-05-03', 'S', 'NULL', 'M', 'melvin15@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '8192 Scenic Ct', 'NULL', '1 (11) 500 555-0126', '2013-11-05', '10+ Miles'], ['27148', '24', 'AW00027148', 'NULL', 'Edwin', 'NULL', 'Zhu', '0', '1971-06-20', 'S', 'NULL', 'M', 'edwin15@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6854 Muir Road', 'NULL', '1 (11) 500 555-0112', '2013-06-30', '5-10 Miles'], ['27149', '40', 'AW00027149', 'NULL', 'Jeffery', 'M', 'She', '0', '1969-10-10', 'M', 'NULL', 'M', 'jeffery23@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '5587 D St.', 'NULL', '1 (11) 500 555-0138', '2013-10-06', '5-10 Miles'], ['27150', '17', 'AW00027150', 'NULL', 'Lacey', 'J', 'Anand', '0', '1969-11-23', 'M', 'NULL', 'F', 'lacey11@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '133 Lorie Ln.', 'NULL', '1 (11) 500 555-0153', '2013-05-14', '5-10 Miles'], ['27151', '274', 'AW00027151', 'NULL', 'Carrie', 'W', 'Moreno', '0', '1984-01-17', 'S', 'NULL', 'F', 'carrie6@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '3152 Greystone Drive', 'NULL', '1 (11) 500 555-0159', '2013-10-08', '1-2 Miles'], ['27152', '252', 'AW00027152', 'NULL', 'Dawn', 'L', 'Wang', '0', '1979-04-17', 'S', 'NULL', 'F', 'dawn2@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '284 Hidden Oak Ct', 'NULL', '1 (11) 500 555-0134', '2013-03-31', '1-2 Miles'], ['27153', '211', 'AW00027153', 'NULL', 'Gina', 'NULL', 'Ruiz', '0', '1980-02-08', 'S', 'NULL', 'F', 'gina2@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '44, rue Saint Denis', 'NULL', '1 (11) 500 555-0160', '2013-03-26', '0-1 Miles'], ['27154', '121', 'AW00027154', 'NULL', 'Holly', 'NULL', 'Arun', '0', '1980-06-18', 'S', 'NULL', 'F', 'holly8@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Wallstr 24', 'NULL', '1 (11) 500 555-0162', '2013-10-20', '2-5 Miles'], ['27155', '196', 'AW00027155', 'NULL', 'Eric', 'C', 'Hall', '0', '1985-07-23', 'M', 'NULL', 'M', 'eric61@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '408, avenue du Québec', 'NULL', '1 (11) 500 555-0122', '2013-03-15', '1-2 Miles'], ['27156', '271', 'AW00027156', 'NULL', 'Makayla', 'C', 'Morgan', '0', '1986-02-20', 'M', 'NULL', 'F', 'makayla17@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '3337 Northpoint Ct', 'NULL', '1 (11) 500 555-0160', '2013-05-23', '0-1 Miles'], ['27157', '170', 'AW00027157', 'NULL', 'Raul', 'NULL', 'Xu', '0', '1985-11-23', 'M', 'NULL', 'M', 'raul5@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Alderstr 2757', 'NULL', '1 (11) 500 555-0163', '2013-06-11', '1-2 Miles'], ['27158', '238', 'AW00027158', 'NULL', 'Lucas', 'NULL', 'Jones', '0', '1985-09-16', 'M', 'NULL', 'M', 'lucas16@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '48, place de la Concorde', 'NULL', '1 (11) 500 555-0118', '2013-09-27', '1-2 Miles'], ['27159', '214', 'AW00027159', 'NULL', 'Veronica', 'NULL', 'Rodriguez', '0', '1985-09-18', 'S', 'NULL', 'F', 'veronica21@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '88, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0193', '2013-08-30', '1-2 Miles'], ['27160', '128', 'AW00027160', 'NULL', 'Brandi', 'NULL', 'Vazquez', '0', '1983-07-18', 'M', 'NULL', 'F', 'brandi14@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Im Himmelsweg 89', 'NULL', '1 (11) 500 555-0145', '2013-10-08', '1-2 Miles'], ['27161', '126', 'AW00027161', 'NULL', 'Reginald', 'NULL', 'Gill', '0', '1984-02-04', 'S', 'NULL', 'M', 'reginald21@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Heiderweg 4983', 'Einkaufsabteilung', '1 (11) 500 555-0115', '2013-11-28', '2-5 Miles'], ['27162', '266', 'AW00027162', 'NULL', 'Phillip', 'NULL', 'Madan', '0', '1980-03-25', 'M', 'NULL', 'M', 'phillip8@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4667 Chilpancingo Pk', 'NULL', '1 (11) 500 555-0123', '2013-11-11', '1-2 Miles'], ['27163', '197', 'AW00027163', 'NULL', 'Wayne', 'L', 'Luo', '0', '1983-05-16', 'S', 'NULL', 'M', 'wayne7@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '9, rue des Vendangeurs', 'NULL', '1 (11) 500 555-0117', '2013-05-03', '1-2 Miles'], ['27164', '231', 'AW00027164', 'NULL', 'Micheal', 'E', 'Carlson', '0', '1977-11-20', 'S', 'NULL', 'M', 'micheal14@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '1782 Gold Crest Ct', 'NULL', '1 (11) 500 555-0198', '2013-05-12', '1-2 Miles'], ['27165', '243', 'AW00027165', 'NULL', 'Bruce', 'NULL', 'Patel', '0', '1977-09-12', 'S', 'NULL', 'M', 'bruce3@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '5677 William Reed Dr.', 'NULL', '1 (11) 500 555-0169', '2013-08-12', '0-1 Miles'], ['27166', '215', 'AW00027166', 'NULL', 'Trisha', 'R', 'Ye', '0', '1979-01-07', 'S', 'NULL', 'F', 'trisha4@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '899 Park Blvd.', 'NULL', '1 (11) 500 555-0120', '2013-10-17', '1-2 Miles'], ['27167', '210', 'AW00027167', 'NULL', 'Tanya', 'NULL', 'Vazquez', '0', '1978-09-24', 'M', 'NULL', 'F', 'tanya11@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2, place de Brazaville', 'NULL', '1 (11) 500 555-0113', '2013-05-13', '0-1 Miles'], ['27168', '267', 'AW00027168', 'NULL', 'Donald', 'R', 'Madan', '0', '1983-04-06', 'M', 'NULL', 'M', 'donald9@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '2720 Freya Way', 'NULL', '1 (11) 500 555-0150', '2013-10-18', '1-2 Miles'], ['27169', '171', 'AW00027169', 'NULL', 'Louis', 'NULL', 'Xu', '0', '1977-07-08', 'S', 'NULL', 'M', 'louis22@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Postfach 55 00 00', 'NULL', '1 (11) 500 555-0188', '2013-12-03', '2-5 Miles'], ['27170', '219', 'AW00027170', 'NULL', 'Douglas', 'S', 'Sara', '0', '1978-04-13', 'M', 'NULL', 'M', 'douglas14@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '811bis, rue des Peupliers', 'NULL', '1 (11) 500 555-0148', '2013-10-11', '1-2 Miles'], ['27171', '263', 'AW00027171', 'NULL', 'Kristi', 'A', 'Gill', '0', '1978-04-16', 'S', 'NULL', 'F', 'kristi9@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6630 Cook Pk.', 'NULL', '1 (11) 500 555-0165', '2013-08-11', '2-5 Miles'], ['27172', '130', 'AW00027172', 'NULL', 'Jessie', 'NULL', 'Navarro', '0', '1977-02-05', 'S', 'NULL', 'F', 'jessie24@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Postfach 11 00 99', 'NULL', '1 (11) 500 555-0165', '2013-10-26', '1-2 Miles'], ['27173', '144', 'AW00027173', 'NULL', 'Suzanne', 'NULL', 'Ye', '0', '1977-06-23', 'M', 'NULL', 'F', 'suzanne11@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Klara Straße 8463', 'NULL', '1 (11) 500 555-0165', '2013-03-07', '0-1 Miles'], ['27174', '160', 'AW00027174', 'NULL', 'Fernando', 'M', 'Bennett', '0', '1977-08-05', 'S', 'NULL', 'M', 'fernando45@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Räuscherweg 675', 'NULL', '1 (11) 500 555-0150', '2013-09-10', '0-1 Miles'], ['27175', '248', 'AW00027175', 'NULL', 'Marshall', 'L', 'Raji', '0', '1977-12-08', 'S', 'NULL', 'M', 'marshall41@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9312 Algiers Dr.', 'NULL', '1 (11) 500 555-0155', '2013-11-16', '1-2 Miles'], ['27176', '176', 'AW00027176', 'NULL', 'Erik', 'NULL', 'Martin', '0', '1976-09-17', 'M', 'NULL', 'M', 'erik1@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Winterfeldtstr 4446', 'NULL', '1 (11) 500 555-0149', '2013-02-18', '0-1 Miles'], ['27177', '266', 'AW00027177', 'NULL', 'Henry', 'L', 'Arun', '0', '1976-10-18', 'M', 'NULL', 'M', 'henry7@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '8501 Second Ave.', 'NULL', '1 (11) 500 555-0173', '2013-12-03', '1-2 Miles'], ['27178', '143', 'AW00027178', 'NULL', 'Terrance', 'NULL', 'Mehta', '0', '1977-03-08', 'S', 'NULL', 'M', 'terrance11@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Hochstr 8111', 'NULL', '1 (11) 500 555-0117', '2013-12-20', '1-2 Miles'], ['27179', '231', 'AW00027179', 'NULL', 'Jamie', 'W', 'Rubio', '0', '1982-03-19', 'S', 'NULL', 'M', 'jamie43@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '3550 Bernauer', 'NULL', '1 (11) 500 555-0172', '2013-08-22', '2-5 Miles'], ['27180', '119', 'AW00027180', 'NULL', 'Joe', 'L', 'Diaz', '0', '1982-01-30', 'S', 'NULL', 'M', 'joe26@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Kurfürstenstr 5994', 'NULL', '1 (11) 500 555-0124', '2013-11-29', '2-5 Miles'], ['27181', '218', 'AW00027181', 'NULL', 'Rafael', 'M', 'Deng', '0', '1975-11-16', 'S', 'NULL', 'M', 'rafael24@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '440, rue de Linois', 'NULL', '1 (11) 500 555-0157', '2013-06-27', '1-2 Miles'], ['27182', '201', 'AW00027182', 'NULL', 'Jarrod', 'NULL', 'Srini', '0', '1976-02-22', 'M', 'NULL', 'M', 'jarrod8@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '39, rue Descartes', 'NULL', '1 (11) 500 555-0136', '2013-06-24', '1-2 Miles'], ['27183', '120', 'AW00027183', 'NULL', 'Geoffrey', 'NULL', 'Garcia', '0', '1982-05-05', 'S', 'NULL', 'M', 'geoffrey12@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Dunckerstr 4822', 'NULL', '1 (11) 500 555-0112', '2013-06-03', '1-2 Miles'], ['27184', '173', 'AW00027184', 'NULL', 'Donald', 'C', 'Subram', '0', '1977-05-12', 'S', 'NULL', 'M', 'donald14@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Auf der Krone 456', 'NULL', '1 (11) 500 555-0112', '2013-02-01', '0-1 Miles'], ['27185', '236', 'AW00027185', 'NULL', 'Haley', 'NULL', 'Nelson', '0', '1977-04-17', 'S', 'NULL', 'F', 'haley49@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3104 Shakespeare Drive', 'NULL', '1 (11) 500 555-0167', '2013-11-08', '0-1 Miles'], ['27186', '278', 'AW00027186', 'NULL', 'Lindsay', 'NULL', 'Shan', '0', '1976-07-03', 'S', 'NULL', 'F', 'lindsay10@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3803 Frayne Lane', 'NULL', '1 (11) 500 555-0115', '2013-11-09', '0-1 Miles'], ['27187', '162', 'AW00027187', 'NULL', 'Lucas', 'NULL', 'Diaz', '0', '1976-04-08', 'M', 'NULL', 'M', 'lucas69@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Postfach 22 11 11', 'NULL', '1 (11) 500 555-0110', '2013-12-16', '1-2 Miles'], ['27188', '170', 'AW00027188', 'NULL', 'Claudia', 'C', 'She', '0', '1981-07-02', 'S', 'NULL', 'F', 'claudia20@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Residenz Straße 744', 'NULL', '1 (11) 500 555-0143', '2013-10-07', '1-2 Miles'], ['27189', '343', 'AW00027189', 'NULL', 'Elizabeth', 'T', 'Diaz', '0', '1981-05-19', 'M', 'NULL', 'F', 'elizabeth50@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5415 Beechwood Dr.', 'NULL', '288-555-0158', '2013-09-10', '1-2 Miles'], ['27190', '301', 'AW00027190', 'NULL', 'Shelby', 'M', 'Reed', '0', '1979-10-24', 'M', 'NULL', 'F', 'shelby20@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9420 Fillet Ave', 'NULL', '833-555-0126', '2014-01-04', '1-2 Miles'], ['27191', '58', 'AW00027191', 'NULL', 'David', 'J', 'Brown', '0', '1980-03-12', 'S', 'NULL', 'M', 'david77@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3883 Pheasant Ct.', 'NULL', '355-555-0148', '2014-01-19', '0-1 Miles'], ['27192', '337', 'AW00027192', 'NULL', 'Angelica', 'K', 'Gonzales', '0', '1980-04-14', 'S', 'NULL', 'F', 'angelica16@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3885 Castle Court', 'NULL', '533-555-0147', '2013-02-13', '0-1 Miles'], ['27193', '336', 'AW00027193', 'NULL', 'Daniel', 'V', 'Miller', '0', '1979-11-15', 'S', 'NULL', 'M', 'daniel24@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6885 Auburn', 'NULL', '623-555-0156', '2012-09-29', '1-2 Miles'], ['27194', '542', 'AW00027194', 'NULL', 'Chase', 'NULL', 'Cooper', '0', '1936-11-10', 'M', 'NULL', 'M', 'chase8@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9353 N Lucile Lane', 'NULL', '834-555-0111', '2013-05-02', '1-2 Miles'], ['27195', '360', 'AW00027195', 'NULL', 'Robert', 'D', 'Perez', '0', '1942-12-06', 'M', 'NULL', 'M', 'robert46@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2163 Angi Lane', 'NULL', '824-555-0119', '2012-10-11', '0-1 Miles'], ['27196', '66', 'AW00027196', 'NULL', 'Lauren', 'NULL', 'Robinson', '0', '1977-02-15', 'S', 'NULL', 'F', 'lauren36@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '4144 Show Rd.', 'NULL', '543-555-0149', '2013-03-20', '0-1 Miles'], ['27197', '611', 'AW00027197', 'NULL', 'Isaiah', 'W', 'Bell', '0', '1977-11-20', 'M', 'NULL', 'M', 'isaiah13@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '1157 Chilpancingo Pk.', 'NULL', '112-555-0176', '2013-05-26', '0-1 Miles'], ['27198', '612', 'AW00027198', 'NULL', 'Jocelyn', 'NULL', 'Flores', '0', '1971-10-04', 'S', 'NULL', 'F', 'jocelyn13@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '8543 Meadowbrook Drive', 'NULL', '429-555-0119', '2013-07-17', '0-1 Miles'], ['27199', '616', 'AW00027199', 'NULL', 'Jesse', 'E', 'Wright', '0', '1971-09-15', 'M', 'NULL', 'M', 'jesse45@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2746 F Street', 'NULL', '118-555-0137', '2012-09-29', '1-2 Miles'], ['27200', '543', 'AW00027200', 'NULL', 'Anna', 'NULL', 'Thompson', '0', '1972-04-12', 'S', 'NULL', 'F', 'anna53@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '6183 Robbins Place', 'NULL', '840-555-0155', '2013-11-16', '0-1 Miles'], ['27201', '627', 'AW00027201', 'NULL', 'Jose', 'NULL', 'Taylor', '0', '1972-06-05', 'M', 'NULL', 'M', 'jose69@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7459 D Apling Court', 'NULL', '820-555-0130', '2012-10-02', '1-2 Miles'], ['27202', '638', 'AW00027202', 'NULL', 'James', 'NULL', 'Hall', '0', '1971-10-29', 'S', 'NULL', 'M', 'james71@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '969 Stanley Dollar Dr.', 'NULL', '989-555-0189', '2013-03-09', '0-1 Miles'], ['27203', '547', 'AW00027203', 'NULL', 'Jennifer', 'J', 'Sanchez', '0', '1965-08-23', 'S', 'NULL', 'F', 'jennifer53@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2487 Riverside Drive', 'NULL', '963-555-0148', '2013-10-17', '0-1 Miles'], ['27204', '307', 'AW00027204', 'NULL', 'Devin', 'NULL', 'Hall', '0', '1959-11-29', 'S', 'NULL', 'M', 'devin21@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '1', '912 Valley Blvd.', 'NULL', '351-555-0129', '2013-07-27', '5-10 Miles'], ['27205', '312', 'AW00027205', 'NULL', 'Erin', 'NULL', 'Murphy', '0', '1960-03-30', 'M', 'NULL', 'F', 'erin19@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5949 Laurel Drive', 'NULL', '164-555-0186', '2012-10-23', '2-5 Miles'], ['27206', '360', 'AW00027206', 'NULL', 'Marcus', 'NULL', 'Mitchell', '0', '1960-03-20', 'M', 'NULL', 'M', 'marcus39@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9887 W. 39th Street', '# 24', '957-555-0196', '2012-10-13', '1-2 Miles'], ['27207', '609', 'AW00027207', 'NULL', 'Taylor', 'V', 'Morris', '0', '1966-10-21', 'S', 'NULL', 'F', 'taylor2@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3378 Muy Verde', 'NULL', '912-555-0182', '2013-03-06', '1-2 Miles'], ['27208', '70', 'AW00027208', 'NULL', 'David', 'NULL', 'Chen', '0', '1966-05-18', 'S', 'NULL', 'M', 'david57@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7801 Foxhill Dr', '#505', '981-555-0164', '2013-12-25', '0-1 Miles'], ['27209', '302', 'AW00027209', 'NULL', 'Erick', 'D', 'Rodriguez', '0', '1966-07-09', 'S', 'NULL', 'M', 'erick19@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9986 Pinto', 'NULL', '897-555-0178', '2013-07-30', '1-2 Miles'], ['27210', '301', 'AW00027210', 'NULL', 'Hunter', 'NULL', 'Flores', '0', '1966-02-13', 'S', 'NULL', 'M', 'hunter9@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2837 Hacienda Drive', 'NULL', '958-555-0156', '2013-04-14', '1-2 Miles'], ['27211', '545', 'AW00027211', 'NULL', 'Isaiah', 'M', 'Roberts', '0', '1961-04-10', 'M', 'NULL', 'M', 'isaiah27@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6394 Market Pl.', 'NULL', '433-555-0119', '2012-10-08', '2-5 Miles'], ['27212', '337', 'AW00027212', 'NULL', 'Sophia', 'M', 'Roberts', '0', '1961-04-15', 'M', 'NULL', 'F', 'sophia2@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '1', '8384 Happy Valley Road', 'NULL', '621-555-0142', '2012-10-12', '1-2 Miles'], ['27213', '641', 'AW00027213', 'NULL', 'Julia', 'NULL', 'Lewis', '0', '1961-07-06', 'S', 'NULL', 'F', 'julia42@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5619 Saddlehill Lane', 'NULL', '321-555-0157', '2013-10-12', '0-1 Miles'], ['27214', '300', 'AW00027214', 'NULL', 'Bianca', 'A', 'Zimmerman', '0', '1961-12-01', 'M', 'NULL', 'F', 'bianca0@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5834 Vine Circle', 'NULL', '679-555-0113', '2013-05-01', '0-1 Miles'], ['27215', '60', 'AW00027215', 'NULL', 'Samantha', 'NULL', 'Hughes', '0', '1961-11-17', 'S', 'NULL', 'F', 'samantha37@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2888 Woodbury Place', 'NULL', '481-555-0115', '2013-10-21', '0-1 Miles'], ['27216', '361', 'AW00027216', 'NULL', 'Ana', 'D', 'Diaz', '0', '1962-04-26', 'M', 'NULL', 'F', 'ana20@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1271 Mills Place', 'NULL', '157-555-0145', '2014-01-23', '0-1 Miles'], ['27217', '635', 'AW00027217', 'NULL', 'Julia', 'NULL', 'Walker', '0', '1962-07-05', 'S', 'NULL', 'F', 'julia44@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3229 Gloria Terr.', 'NULL', '180-555-0148', '2013-05-29', '0-1 Miles'], ['27218', '369', 'AW00027218', 'NULL', 'Bailey', 'F', 'Allen', '0', '1963-05-07', 'M', 'NULL', 'F', 'bailey43@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3581 Schenone Court', 'NULL', '160-555-0110', '2013-04-13', '0-1 Miles'], ['27219', '335', 'AW00027219', 'NULL', 'Benjamin', 'NULL', 'Yang', '0', '1963-03-19', 'S', 'NULL', 'M', 'benjamin29@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '4216 Stonehedge Dr', 'NULL', '672-555-0135', '2013-05-27', '0-1 Miles'], ['27220', '374', 'AW00027220', 'NULL', 'Jackson', 'NULL', 'Long', '0', '1962-11-22', 'S', 'NULL', 'M', 'jackson12@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5647 Larch Ct', 'NULL', '773-555-0117', '2013-09-12', '0-1 Miles'], ['27221', '642', 'AW00027221', 'NULL', 'Matthew', 'J', 'Jones', '0', '1963-01-07', 'S', 'NULL', 'M', 'matthew9@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7594 Alexander Pl.', 'NULL', '753-555-0152', '2013-04-29', '1-2 Miles'], ['27222', '307', 'AW00027222', 'NULL', 'Virginia', 'NULL', 'Sai', '0', '1963-04-19', 'M', 'NULL', 'F', 'virginia7@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9256 Santa Fe Street', 'NULL', '540-555-0129', '2013-02-15', '1-2 Miles'], ['27223', '644', 'AW00027223', 'NULL', 'Jeremy', 'S', 'Wright', '0', '1962-08-26', 'M', 'NULL', 'M', 'jeremy9@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7654 Heather Pl.', 'NULL', '211-555-0116', '2013-03-26', '1-2 Miles'], ['27224', '552', 'AW00027224', 'NULL', 'Jessica', 'A', 'Griffin', '0', '1963-04-08', 'M', 'NULL', 'F', 'jessica45@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '4487 Coldwater Drive', 'NULL', '424-555-0117', '2013-04-02', '0-1 Miles'], ['27225', '368', 'AW00027225', 'NULL', 'Isaac', 'L', 'Murphy', '0', '1962-11-05', 'M', 'NULL', 'M', 'isaac14@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5018 Rio Blanco Dr.', 'NULL', '123-555-0129', '2013-09-09', '1-2 Miles'], ['27226', '542', 'AW00027226', 'NULL', 'Christian', 'NULL', 'Wang', '0', '1964-01-02', 'M', 'NULL', 'M', 'christian11@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9076 Inverness Drive', 'NULL', '186-555-0185', '2012-10-05', '1-2 Miles'], ['27227', '316', 'AW00027227', 'NULL', 'Emily', 'NULL', 'Bryant', '0', '1963-09-04', 'S', 'NULL', 'F', 'emily43@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7675 Palisade Court', 'NULL', '808-555-0115', '2012-10-22', '0-1 Miles'], ['27228', '618', 'AW00027228', 'NULL', 'Amanda', 'NULL', 'Young', '0', '1969-03-16', 'M', 'NULL', 'F', 'amanda68@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2726 Rising Dawn Way', 'NULL', '841-555-0164', '2012-10-09', '1-2 Miles'], ['27229', '360', 'AW00027229', 'NULL', 'Zachary', 'NULL', 'Zhang', '0', '1964-05-02', 'M', 'NULL', 'M', 'zachary22@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '3369 N Lanky Lane', 'NULL', '756-555-0120', '2013-02-22', '0-1 Miles'], ['27230', '60', 'AW00027230', 'NULL', 'Hunter', 'R', 'Wilson', '0', '1969-04-11', 'S', 'NULL', 'M', 'hunter66@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '9769 Thistle Circle', 'NULL', '155-555-0111', '2013-07-18', '0-1 Miles'], ['27231', '310', 'AW00027231', 'NULL', 'Tyrone', 'NULL', 'Ramos', '0', '1964-08-27', 'S', 'NULL', 'M', 'tyrone16@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1121 Boynton Avenue', 'NULL', '345-555-0116', '2012-10-04', '1-2 Miles'], ['27232', '633', 'AW00027232', 'Mr.', 'Ram', 'NULL', 'Thirunavukkarasu', '0', '1976-05-13', 'S', 'NULL', 'M', 'ram1@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '2088 Amanda Circle', 'NULL', '970-555-0173', '2012-10-10', '1-2 Miles'], ['27233', '372', 'AW00027233', 'NULL', 'Seth', 'E', 'Ward', '0', '1965-04-08', 'S', 'NULL', 'M', 'seth77@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '4992 Sycamore Dr.', 'NULL', '472-555-0119', '2013-05-03', '0-1 Miles'], ['27234', '638', 'AW00027234', 'NULL', 'Gabriel', 'M', 'Jenkins', '0', '1964-09-12', 'S', 'NULL', 'M', 'gabriel3@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2061 Hill Dr', 'NULL', '334-555-0131', '2012-10-11', '1-2 Miles'], ['27235', '635', 'AW00027235', 'NULL', 'Robert', 'L', 'Li', '0', '1964-08-15', 'S', 'NULL', 'M', 'robert38@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '1676 Valley Crest Drive', 'NULL', '787-555-0152', '2012-10-21', '1-2 Miles'], ['27236', '631', 'AW00027236', 'NULL', 'Nicole', 'J', 'Alexander', '0', '1964-08-14', 'S', 'NULL', 'F', 'nicole68@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '928 Old Mountain View Dr.', 'NULL', '324-555-0137', '2013-11-09', '0-1 Miles'], ['27237', '322', 'AW00027237', 'NULL', 'Jasmine', 'NULL', 'Ramirez', '0', '1970-05-22', 'M', 'NULL', 'F', 'jasmine35@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '598 Marfargoa Drive', 'NULL', '411-555-0117', '2013-04-29', '0-1 Miles'], ['27238', '311', 'AW00027238', 'NULL', 'Jesse', 'D', 'Hernandez', '0', '1965-05-20', 'S', 'NULL', 'M', 'jesse44@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '2065 Rosina Court', 'NULL', '126-555-0150', '2013-11-14', '0-1 Miles'], ['27239', '326', 'AW00027239', 'NULL', 'Noah', 'NULL', 'Simmons', '0', '1970-01-30', 'S', 'NULL', 'M', 'noah12@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '8553 Calhoun Court', 'NULL', '165-555-0173', '2012-10-16', '1-2 Miles'], ['27240', '648', 'AW00027240', 'NULL', 'Dalton', 'NULL', 'Cooper', '0', '1983-05-25', 'S', 'NULL', 'M', 'dalton79@adventure-works.com', '40000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9958 Ronda Ct.', 'NULL', '776-555-0130', '2012-10-08', '1-2 Miles'], ['27241', '383', 'AW00027241', 'NULL', 'Oscar', 'NULL', 'Butler', '0', '1983-12-14', 'M', 'NULL', 'M', 'oscar22@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '9926 Atchinson Stage Ct.', 'NULL', '522-555-0168', '2013-06-01', '0-1 Miles'], ['27242', '59', 'AW00027242', 'NULL', 'Hunter', 'S', 'Diaz', '0', '1978-12-17', 'M', 'NULL', 'M', 'hunter17@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5828 Clark Creek Lane', 'NULL', '423-555-0118', '2012-06-24', '1-2 Miles'], ['27243', '68', 'AW00027243', 'NULL', 'Mariah', 'L', 'Bailey', '0', '1979-04-18', 'S', 'NULL', 'F', 'mariah40@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '2779 Ram Circle', 'NULL', '126-555-0175', '2013-04-17', '0-1 Miles'], ['27244', '553', 'AW00027244', 'NULL', 'Arianna', 'NULL', 'Kelly', '0', '1979-03-16', 'M', 'NULL', 'F', 'arianna23@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5122 Fernando Court', 'NULL', '725-555-0128', '2013-12-26', '1-2 Miles'], ['27245', '331', 'AW00027245', 'NULL', 'Lauren', 'R', 'Jones', '0', '1984-03-02', 'M', 'NULL', 'F', 'lauren21@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7332 Saddlewood', 'NULL', '988-555-0133', '2013-10-31', '1-2 Miles'], ['27246', '335', 'AW00027246', 'NULL', 'Aaron', 'K', 'Hall', '0', '1979-01-09', 'M', 'NULL', 'M', 'aaron54@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7707 Jemco Court', 'NULL', '655-555-0154', '2013-05-14', '1-2 Miles'], ['27247', '335', 'AW00027247', 'NULL', 'Blake', 'D', 'Hughes', '0', '1979-01-22', 'M', 'NULL', 'M', 'blake59@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2789 Ranchford Court', 'NULL', '726-555-0168', '2013-05-18', '1-2 Miles'], ['27248', '633', 'AW00027248', 'NULL', 'Kayla', 'NULL', 'Taylor', '0', '1978-02-17', 'M', 'NULL', 'F', 'kayla9@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6780 Longbrook Way', 'NULL', '275-555-0165', '2013-08-11', '0-1 Miles'], ['27249', '369', 'AW00027249', 'NULL', 'Emma', 'R', 'Cox', '0', '1977-01-12', 'M', 'NULL', 'F', 'emma37@adventure-works.com', '70000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6703 Milburn Dr.', 'NULL', '818-555-0195', '2013-02-23', '1-2 Miles'], ['27250', '612', 'AW00027250', 'NULL', 'Virginia', 'E', 'Vance', '0', '1977-02-05', 'M', 'NULL', 'F', 'virginia5@adventure-works.com', '70000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7022 Muth Dr.', 'NULL', '417-555-0168', '2012-10-25', '1-2 Miles'], ['27251', '326', 'AW00027251', 'NULL', 'Jessica', 'R', 'Flores', '0', '1976-09-03', 'M', 'NULL', 'F', 'jessica37@adventure-works.com', '50000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '799 Northwood Drive', 'NULL', '148-555-0148', '2012-10-02', '0-1 Miles'], ['27252', '59', 'AW00027252', 'NULL', 'Andrea', 'M', 'Stewart', '0', '1977-01-13', 'M', 'NULL', 'F', 'andrea27@adventure-works.com', '50000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3299 Blenheim Way', 'NULL', '614-555-0139', '2012-06-27', '0-1 Miles'], ['27253', '49', 'AW00027253', 'NULL', 'Connor', 'D', 'Jai', '0', '1977-10-13', 'M', 'NULL', 'M', 'connor27@adventure-works.com', '50000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7581 Whiteaben Drive', 'NULL', '259-555-0181', '2012-06-27', '1-2 Miles'], ['27254', '611', 'AW00027254', 'NULL', 'Theodore', 'M', 'Jimenez', '0', '1978-04-11', 'M', 'NULL', 'M', 'theodore6@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '423 East 33rd Street', 'NULL', '698-555-0113', '2012-10-20', '2-5 Miles'], ['27255', '542', 'AW00027255', 'NULL', 'Xavier', 'L', 'Rivera', '0', '1977-12-08', 'M', 'NULL', 'M', 'xavier74@adventure-works.com', '50000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9312 Algiers Dr.', 'NULL', '587-555-0162', '2012-10-10', '2-5 Miles'], ['27256', '632', 'AW00027256', 'NULL', 'Caleb', 'NULL', 'Lopez', '0', '1978-01-23', 'M', 'NULL', 'M', 'caleb49@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4763 Palisade Court', 'NULL', '918-555-0154', '2012-10-21', '2-5 Miles'], ['27257', '307', 'AW00027257', 'NULL', 'Rebekah', 'L', 'Sara', '0', '1983-03-16', 'S', 'NULL', 'F', 'rebekah10@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '4951 Carlos Dr.', 'NULL', '642-555-0150', '2012-10-27', '0-1 Miles'], ['27258', '311', 'AW00027258', 'NULL', 'Christian', 'E', 'Flores', '0', '1978-02-02', 'S', 'NULL', 'M', 'christian27@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '9647 C Wharton Way', 'NULL', '171-555-0119', '2012-11-02', '0-1 Miles'], ['27259', '62', 'AW00027259', 'NULL', 'Angela', 'K', 'Diaz', '0', '1981-02-24', 'M', 'NULL', 'F', 'angela24@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5069 Kipling Court', 'NULL', '180-555-0159', '2012-06-18', '2-5 Miles'], ['27260', '301', 'AW00027260', 'NULL', 'Candice', 'NULL', 'Ma', '0', '1975-09-02', 'M', 'NULL', 'F', 'candice22@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4440 Keywood Ct', 'NULL', '172-555-0137', '2012-11-01', '0-1 Miles'], ['27261', '612', 'AW00027261', 'NULL', 'Omar', 'M', 'Chande', '0', '1976-01-15', 'M', 'NULL', 'M', 'omar35@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1065 Coachman Pl.', 'NULL', '502-555-0195', '2012-11-18', '0-1 Miles'], ['27262', '634', 'AW00027262', 'NULL', 'Courtney', 'NULL', 'Hill', '0', '1976-04-02', 'M', 'NULL', 'F', 'courtney10@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9376 Cross Road', 'NULL', '735-555-0119', '2012-11-22', '0-1 Miles'], ['27263', '359', 'AW00027263', 'NULL', 'Aaron', 'M', 'Kumar', '0', '1976-01-25', 'M', 'NULL', 'M', 'aaron28@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9627 N. Civic Drive', 'NULL', '841-555-0194', '2012-10-31', '2-5 Miles'], ['27264', '635', 'AW00027264', 'NULL', 'Jacob', 'NULL', 'Clark', '0', '1975-05-04', 'S', 'NULL', 'M', 'jacob15@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1579 Plaza Rosa', 'NULL', '181-555-0162', '2012-11-16', '2-5 Miles'], ['27265', '53', 'AW00027265', 'NULL', 'Isabella', 'M', 'Thomas', '0', '1975-03-08', 'S', 'NULL', 'F', 'isabella66@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '5749 Kiska Court', 'NULL', '640-555-0116', '2012-06-03', '0-1 Miles'], ['27266', '361', 'AW00027266', 'NULL', 'Riley', 'B', 'Gonzales', '0', '1980-09-09', 'S', 'NULL', 'F', 'riley14@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '4593 Camino Peral', 'NULL', '132-555-0116', '2012-11-02', '0-1 Miles'], ['27267', '63', 'AW00027267', 'NULL', 'Emily', 'NULL', 'Davis', '0', '1980-08-20', 'S', 'NULL', 'F', 'emily5@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '7326 Kenmore', 'NULL', '512-555-0123', '2012-08-14', '0-1 Miles'], ['27268', '307', 'AW00027268', 'NULL', 'Latasha', 'NULL', 'Serrano', '0', '1974-08-15', 'S', 'NULL', 'F', 'latasha16@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4303 Athene Drive', 'NULL', '424-555-0119', '2012-11-04', '2-5 Miles'], ['27269', '644', 'AW00027269', 'NULL', 'Victoria', 'NULL', 'Lee', '0', '1980-03-12', 'S', 'NULL', 'F', 'victoria21@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '1048 Las Quebradas Lane', 'NULL', '690-555-0140', '2012-11-10', '0-1 Miles'], ['27270', '55', 'AW00027270', 'NULL', 'Connor', 'J', 'Collins', '0', '1976-12-12', 'M', 'NULL', 'M', 'connor31@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8048 Shepberry Court', 'NULL', '184-555-0123', '2012-09-20', '2-5 Miles'], ['27271', '614', 'AW00027271', 'NULL', 'Anna', 'S', 'Reed', '0', '1982-09-09', 'M', 'NULL', 'F', 'anna6@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8209 Green View Court', 'NULL', '114-555-0181', '2012-11-23', '2-5 Miles'], ['27272', '545', 'AW00027272', 'NULL', 'Elijah', 'NULL', 'Chen', '0', '1982-04-23', 'M', 'NULL', 'M', 'elijah27@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5691 Lexington Road', 'NULL', '699-555-0198', '2012-11-08', '2-5 Miles'], ['27273', '334', 'AW00027273', 'NULL', 'Marcus', 'NULL', 'Miller', '0', '1976-09-11', 'S', 'NULL', 'M', 'marcus6@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '3941 Teakwood Dr', 'NULL', '838-555-0136', '2012-11-04', '0-1 Miles'], ['27274', '336', 'AW00027274', 'NULL', 'Marcus', 'NULL', 'Morris', '0', '1976-09-30', 'S', 'NULL', 'M', 'marcus93@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '5748 Hacienda Dr.', 'NULL', '128-555-0117', '2012-11-22', '0-1 Miles'], ['27275', '372', 'AW00027275', 'NULL', 'Aidan', 'NULL', 'Powell', '0', '1974-10-06', 'M', 'NULL', 'M', 'aidan9@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1141 Panoramic Dr.', 'NULL', '115-555-0190', '2012-11-27', '2-5 Miles'], ['27276', '299', 'AW00027276', 'NULL', 'Faith', 'A', 'Alexander', '0', '1974-07-16', 'S', 'NULL', 'F', 'faith18@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9471 Laguna Circle', 'NULL', '175-555-0147', '2012-11-22', '2-5 Miles'], ['27277', '316', 'AW00027277', 'NULL', 'Jeremy', 'C', 'Wood', '0', '1980-12-08', 'M', 'NULL', 'M', 'jeremy23@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '6924 Santa Barbara', 'NULL', '245-555-0114', '2012-11-25', '0-1 Miles'], ['27278', '347', 'AW00027278', 'NULL', 'Brian', 'O', 'Cook', '0', '1979-01-23', 'M', 'NULL', 'M', 'brian33@adventure-works.com', '40000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '1820 Payot Court', 'NULL', '168-555-0129', '2013-11-12', '10+ Miles'], ['27279', '618', 'AW00027279', 'NULL', 'Katelyn', 'NULL', 'Brooks', '0', '1974-01-12', 'S', 'NULL', 'F', 'katelyn0@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '291 Ironwood Way', 'NULL', '772-555-0169', '2012-11-16', '2-5 Miles'], ['27280', '301', 'AW00027280', 'NULL', 'Naomi', 'S', 'Gutierrez', '0', '1973-09-04', 'M', 'NULL', 'F', 'naomi11@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5109 Fawn Glen Circle', 'NULL', '278-555-0177', '2012-11-08', '2-5 Miles'], ['27281', '403', 'AW00027281', 'NULL', 'Jenny', 'NULL', 'Nath', '0', '1974-05-21', 'S', 'NULL', 'F', 'jenny41@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '2530 Willow Court', 'NULL', '110-555-0167', '2012-11-25', '0-1 Miles'], ['27282', '41', 'AW00027282', 'NULL', 'Barry', 'M', 'Perez', '0', '1978-09-10', 'M', 'NULL', 'M', 'barry20@adventure-works.com', '40000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6350 Plumas Court', 'NULL', '930-555-0130', '2013-10-08', '0-1 Miles'], ['27283', '49', 'AW00027283', 'NULL', 'Jamie', 'NULL', 'Hernandez', '0', '1973-03-08', 'S', 'NULL', 'M', 'jamie27@adventure-works.com', '40000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4194 Baywood Drive', 'NULL', '134-555-0153', '2013-02-09', '2-5 Miles'], ['27284', '637', 'AW00027284', 'NULL', 'Danielle', 'Y', 'Bailey', '0', '1972-08-31', 'M', 'NULL', 'F', 'danielle18@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9372 Colfax Street', '#303', '927-555-0190', '2013-05-24', '0-1 Miles'], ['27285', '60', 'AW00027285', 'NULL', 'Zachary', 'J', 'Jones', '0', '1976-03-18', 'S', 'NULL', 'M', 'zachary33@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2391 Pepperidge Place', 'NULL', '707-555-0175', '2012-09-17', '2-5 Miles'], ['27286', '432', 'AW00027286', 'NULL', 'Shawn', 'NULL', 'Pal', '0', '1976-05-23', 'S', 'NULL', 'M', 'shawn14@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '231 C Mt. Hood Circle', 'NULL', '430-555-0120', '2012-11-20', '0-1 Miles'], ['27287', '338', 'AW00027287', 'NULL', 'Samuel', 'E', 'Perez', '0', '1981-02-23', 'M', 'NULL', 'M', 'samuel43@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '1948 Ohara Avenue', 'NULL', '231-555-0144', '2012-11-22', '0-1 Miles'], ['27288', '345', 'AW00027288', 'NULL', 'Destiny', 'L', 'Richardson', '0', '1976-03-20', 'S', 'NULL', 'F', 'destiny35@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '7739 Pineknoll', 'NULL', '916-555-0161', '2012-11-10', '0-1 Miles'], ['27289', '343', 'AW00027289', 'NULL', 'Anna', 'NULL', 'Long', '0', '1972-10-01', 'S', 'NULL', 'F', 'anna34@adventure-works.com', '50000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9530 Vine Lane', 'NULL', '247-555-0113', '2012-10-29', '2-5 Miles'], ['27290', '633', 'AW00027290', 'NULL', 'Marcus', 'NULL', 'Evans', '0', '1977-02-10', 'M', 'NULL', 'M', 'marcus46@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '101 Adobe Dr', 'NULL', '597-555-0163', '2013-07-26', '2-5 Miles'], ['27291', '612', 'AW00027291', 'NULL', 'Bobby', 'M', 'Mehta', '0', '1972-01-22', 'S', 'NULL', 'M', 'bobby10@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '7489 Briowes Valley Rd.', 'NULL', '735-555-0115', '2012-10-28', '0-1 Miles'], ['27292', '546', 'AW00027292', 'NULL', 'Julia', 'NULL', 'Evans', '0', '1972-05-12', 'S', 'NULL', 'F', 'julia2@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9104 Jacobsen Street', 'NULL', '910-555-0138', '2012-10-31', '2-5 Miles'], ['27293', '325', 'AW00027293', 'NULL', 'Kaitlyn', 'NULL', 'Jackson', '0', '1971-11-15', 'M', 'NULL', 'F', 'kaitlyn34@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2373 Mt. Whitney Way', 'NULL', '208-555-0174', '2013-02-19', '2-5 Miles'], ['27294', '358', 'AW00027294', 'NULL', 'Ana', 'NULL', 'Bradley', '0', '1972-02-15', 'S', 'NULL', 'F', 'ana1@adventure-works.com', '70000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2901 Ninth Avenue SW Court', 'NULL', '408-555-0126', '2012-11-24', '2-5 Miles'], ['27295', '626', 'AW00027295', 'NULL', 'Wyatt', 'NULL', 'Taylor', '0', '1971-11-15', 'S', 'NULL', 'M', 'wyatt9@adventure-works.com', '70000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6752 Covington Court', 'NULL', '343-555-0182', '2012-11-17', '2-5 Miles'], ['27296', '316', 'AW00027296', 'NULL', 'Rodrigo', 'D', 'Ready', '0', '1971-10-20', 'S', 'NULL', 'M', 'rodrigo0@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '3783 Steven Circle', 'NULL', '642-555-0190', '2012-11-25', '0-1 Miles'], ['27297', '49', 'AW00027297', 'NULL', 'Ashley', 'NULL', 'Coleman', '0', '1975-06-23', 'S', 'NULL', 'F', 'ashley32@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '330 Shenandoah Dr.', 'NULL', '162-555-0123', '2012-09-23', '0-1 Miles'], ['27298', '50', 'AW00027298', 'NULL', 'Jennifer', 'L', 'Coleman', '0', '1980-12-08', 'S', 'NULL', 'F', 'jennifer80@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '7902 Bates Court', 'NULL', '236-555-0137', '2012-09-22', '0-1 Miles'], ['27299', '13', 'AW00027299', 'NULL', 'Micheal', 'S', 'Gutierrez', '0', '1982-09-09', 'M', 'NULL', 'M', 'micheal6@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Management', 'Gestión', 'Direction', '1', '4', '8209 Green View Court', 'NULL', '1 (11) 500 555-0145', '2012-10-19', '10+ Miles'], ['27300', '51', 'AW00027300', 'NULL', 'Robert', 'A', 'Baker', '0', '1958-08-25', 'M', 'NULL', 'M', 'robert58@adventure-works.com', '70000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '526 Oak Street', 'NULL', '943-555-0177', '2013-03-18', '10+ Miles'], ['27301', '302', 'AW00027301', 'NULL', 'Clarence', 'NULL', 'Zhou', '0', '1959-03-15', 'M', 'NULL', 'M', 'clarence4@adventure-works.com', '70000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6566 Serene Ct.', 'NULL', '102-555-0122', '2013-10-24', '10+ Miles'], ['27302', '207', 'AW00027302', 'NULL', 'Charles', 'M', 'Smith', '0', '1962-09-23', 'M', 'NULL', 'M', 'charles3@adventure-works.com', '100000.00', '2', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '1416, place de la Concorde', 'NULL', '1 (11) 500 555-0195', '2013-12-13', '5-10 Miles'], ['27303', '200', 'AW00027303', 'NULL', 'Arturo', 'NULL', 'Yang', '0', '1963-04-21', 'M', 'NULL', 'M', 'arturo5@adventure-works.com', '110000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '75, avenue de la Gare', 'NULL', '1 (11) 500 555-0168', '2013-07-22', '5-10 Miles'], ['27304', '189', 'AW00027304', 'NULL', 'Alexandra', 'A', 'Robinson', '0', '1968-11-08', 'S', 'NULL', 'F', 'alexandra82@adventure-works.com', '110000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '22, quai Paul Doumer', 'NULL', '1 (11) 500 555-0134', '2013-09-30', '5-10 Miles'], ['27305', '265', 'AW00027305', 'NULL', 'Terry', 'NULL', 'Nara', '0', '1963-04-05', 'M', 'NULL', 'M', 'terry19@adventure-works.com', '170000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '3056 C Northwood Dr', 'NULL', '1 (11) 500 555-0110', '2013-12-15', '0-1 Miles'], ['27306', '195', 'AW00027306', 'NULL', 'Tony', 'R', 'Black', '0', '1962-02-01', 'S', 'NULL', 'M', 'tony22@adventure-works.com', '110000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '53, rue Henri Gagnon', 'NULL', '1 (11) 500 555-0120', '2013-08-16', '5-10 Miles'], ['27307', '151', 'AW00027307', 'NULL', 'Andre', 'NULL', 'Prasad', '0', '1962-02-02', 'M', 'NULL', 'M', 'andre9@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Potsdamer Straße 757', 'NULL', '1 (11) 500 555-0111', '2013-07-18', '5-10 Miles'], ['27308', '231', 'AW00027308', 'NULL', 'Marie', 'A', 'Rana', '0', '1961-11-23', 'S', 'NULL', 'F', 'marie13@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '4', '3989 Crestwood Circle', 'NULL', '1 (11) 500 555-0177', '2013-04-07', '5-10 Miles'], ['27309', '149', 'AW00027309', 'NULL', 'Tony', 'NULL', 'Deng', '0', '1961-01-12', 'M', 'NULL', 'M', 'tony4@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', 'Alte Landstr 3', 'NULL', '1 (11) 500 555-0171', '2013-03-01', '0-1 Miles'], ['27310', '121', 'AW00027310', 'NULL', 'Isabella', 'P', 'Hill', '0', '1960-04-16', 'M', 'NULL', 'F', 'isabella53@adventure-works.com', '80000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', 'Klara Straße 8422', 'NULL', '1 (11) 500 555-0119', '2013-10-18', '2-5 Miles'], ['27311', '190', 'AW00027311', 'NULL', 'Jenna', 'L', 'Adams', '0', '1965-05-20', 'M', 'NULL', 'F', 'jenna15@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '3403bis, boulevard Saint Germain', 'NULL', '1 (11) 500 555-0162', '2013-07-18', '10+ Miles'], ['27312', '172', 'AW00027312', 'NULL', 'Sandra', 'L', 'Sun', '0', '1950-06-27', 'S', 'NULL', 'F', 'sandra20@adventure-works.com', '110000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', 'Am Grossen Dern 2547', 'NULL', '1 (11) 500 555-0198', '2013-10-09', '10+ Miles'], ['27313', '209', 'AW00027313', 'NULL', 'Diane', 'S', 'Moreno', '0', '1951-02-17', 'M', 'NULL', 'F', 'diane11@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '7, rue de la Centenaire', 'NULL', '1 (11) 500 555-0118', '2013-05-05', '10+ Miles'], ['27314', '165', 'AW00027314', 'NULL', 'Jarrod', 'R', 'Arthur', '0', '1956-05-05', 'S', 'NULL', 'M', 'jarrod6@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', 'Hans-Rosenthal-Platz 4108', 'NULL', '1 (11) 500 555-0119', '2013-07-17', '2-5 Miles'], ['27315', '175', 'AW00027315', 'NULL', 'James', 'NULL', 'Mitchell', '0', '1950-12-17', 'M', 'NULL', 'M', 'james61@adventure-works.com', '100000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', 'Am Gallberg 6626', 'NULL', '1 (11) 500 555-0161', '2014-01-06', '10+ Miles'], ['27316', '161', 'AW00027316', 'NULL', 'Jarrod', 'E', 'Malhotra', '0', '1952-03-05', 'M', 'NULL', 'M', 'jarrod5@adventure-works.com', '120000.00', '4', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', 'Parise Straße 644', 'NULL', '1 (11) 500 555-0171', '2013-03-03', '10+ Miles'], ['27317', '259', 'AW00027317', 'NULL', 'Raymond', 'G', 'Lopez', '0', '1952-04-21', 'M', 'NULL', 'M', 'raymond17@adventure-works.com', '150000.00', '3', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '8600 Camelot Court', 'NULL', '1 (11) 500 555-0135', '2013-10-23', '0-1 Miles'], ['27318', '196', 'AW00027318', 'NULL', 'James', 'NULL', 'Bryant', '0', '1965-11-07', 'M', 'NULL', 'M', 'james33@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '11, avenue du Président-Kennedy', 'NULL', '1 (11) 500 555-0122', '2014-01-04', '10+ Miles'], ['27319', '279', 'AW00027319', 'NULL', 'Ian', 'NULL', 'Bryant', '0', '1976-05-13', 'M', 'NULL', 'M', 'ian58@adventure-works.com', '90000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '8871 Likins Ave.', 'NULL', '1 (11) 500 555-0117', '2013-12-25', '2-5 Miles'], ['27320', '161', 'AW00027320', 'NULL', 'Jose', 'C', 'Green', '0', '1959-03-04', 'M', 'NULL', 'M', 'jose49@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', 'Pascalstr 6', 'NULL', '1 (11) 500 555-0150', '2013-11-17', '10+ Miles'], ['27321', '175', 'AW00027321', 'NULL', 'Dylan', 'L', 'Zhang', '0', '1958-08-26', 'M', 'NULL', 'M', 'dylan23@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Hunzinger Allee 664', 'NULL', '1 (11) 500 555-0179', '2013-02-23', '2-5 Miles'], ['27322', '204', 'AW00027322', 'NULL', 'Derrick', 'NULL', 'Bradley', '0', '1970-04-07', 'S', 'NULL', 'M', 'derrick14@adventure-works.com', '90000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '24, rue Philibert-Delorme', 'NULL', '1 (11) 500 555-0111', '2013-04-02', '2-5 Miles'], ['27323', '189', 'AW00027323', 'NULL', 'Michele', 'NULL', 'Shan', '0', '1958-02-24', 'S', 'NULL', 'F', 'michele10@adventure-works.com', '80000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '101, rue de Cambrai', 'NULL', '1 (11) 500 555-0179', '2013-02-03', '10+ Miles'], ['27324', '190', 'AW00027324', 'NULL', 'Candice', 'W', 'Xu', '0', '1958-01-25', 'S', 'NULL', 'F', 'candice18@adventure-works.com', '80000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '3, rue Pierre-Demoulin', 'NULL', '1 (11) 500 555-0156', '2013-12-09', '2-5 Miles'], ['27325', '157', 'AW00027325', 'NULL', 'Todd', 'L', 'Liang', '0', '1957-09-08', 'M', 'NULL', 'M', 'todd16@adventure-works.com', '100000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Reiherweg 5234', 'NULL', '1 (11) 500 555-0118', '2013-03-13', '10+ Miles'], ['27326', '224', 'AW00027326', 'NULL', 'Ashlee', 'NULL', 'Goel', '0', '1957-03-21', 'S', 'NULL', 'F', 'ashlee3@adventure-works.com', '80000.00', '5', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6964, rue des Grands Champs', 'NULL', '1 (11) 500 555-0163', '2013-07-17', '10+ Miles'], ['27327', '175', 'AW00027327', 'NULL', 'Melody', 'NULL', 'Nicholls', '0', '1961-08-15', 'S', 'NULL', 'F', 'melody10@adventure-works.com', '110000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '2', 'Herzogstr 4662', 'NULL', '1 (11) 500 555-0135', '2013-05-25', '10+ Miles'], ['27328', '187', 'AW00027328', 'NULL', 'Edgar', 'NULL', 'Srini', '0', '1954-09-24', 'S', 'NULL', 'M', 'edgar9@adventure-works.com', '80000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '92, rue Mazagran', 'NULL', '1 (11) 500 555-0130', '2014-01-21', '10+ Miles'], ['27329', '188', 'AW00027329', 'NULL', 'Gloria', 'M', 'Vazquez', '0', '1955-01-20', 'M', 'NULL', 'F', 'gloria15@adventure-works.com', '80000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '3', '874, avenue des Ternes', 'NULL', '1 (11) 500 555-0118', '2013-06-15', '5-10 Miles'], ['27330', '147', 'AW00027330', 'NULL', 'Brendan', 'A', 'Nara', '0', '1960-07-17', 'M', 'NULL', 'M', 'brendan14@adventure-works.com', '120000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', 'Königstr 284', 'NULL', '1 (11) 500 555-0132', '2013-12-27', '10+ Miles'], ['27331', '231', 'AW00027331', 'NULL', 'Julia', 'N', 'Richardson', '0', '1955-03-07', 'M', 'NULL', 'F', 'julia54@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '1830 Shore Rd.', 'NULL', '1 (11) 500 555-0160', '2013-02-02', '10+ Miles'], ['27332', '179', 'AW00027332', 'NULL', 'Tony', 'K', 'Raji', '0', '1953-08-24', 'M', 'NULL', 'M', 'tony23@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '205bis, boulevard Saint Germain', 'NULL', '1 (11) 500 555-0170', '2013-09-11', '10+ Miles'], ['27333', '176', 'AW00027333', 'NULL', 'Kathryn', 'NULL', 'Luo', '0', '1954-03-22', 'M', 'NULL', 'F', 'kathryn5@adventure-works.com', '100000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '4', 'Hochstr 2666', 'NULL', '1 (11) 500 555-0186', '2013-10-26', '10+ Miles'], ['27334', '219', 'AW00027334', 'NULL', 'Corey', 'NULL', 'Yuan', '0', '1952-11-22', 'S', 'NULL', 'M', 'corey6@adventure-works.com', '90000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1234, rue Ste-Honoré', 'NULL', '1 (11) 500 555-0111', '2013-09-01', '5-10 Miles'], ['27335', '224', 'AW00027335', 'NULL', 'Ricardo', 'NULL', 'Raji', '0', '1953-02-17', 'M', 'NULL', 'M', 'ricardo20@adventure-works.com', '90000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1, place Beaubernard', 'NULL', '1 (11) 500 555-0189', '2013-12-18', '10+ Miles'], ['27336', '162', 'AW00027336', 'NULL', 'George', 'NULL', 'Suri', '0', '1953-04-11', 'S', 'NULL', 'M', 'george6@adventure-works.com', '120000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', 'Knaackstr 246', 'NULL', '1 (11) 500 555-0134', '2013-04-12', '10+ Miles'], ['27337', '273', 'AW00027337', 'NULL', 'Julia', 'R', 'Hall', '0', '1953-03-14', 'M', 'NULL', 'F', 'julia20@adventure-works.com', '150000.00', '5', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '9995 Altura Drive', 'NULL', '1 (11) 500 555-0124', '2013-08-28', '0-1 Miles'], ['27338', '12', 'AW00027338', 'NULL', 'Virginia', 'J', 'Lopez', '0', '1981-05-16', 'M', 'NULL', 'F', 'virginia19@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '5778 Mt Tri-state Court', 'NULL', '1 (11) 500 555-0134', '2012-09-30', '10+ Miles'], ['27339', '15', 'AW00027339', 'NULL', 'Ann', 'NULL', 'Sai', '0', '1981-04-16', 'S', 'NULL', 'F', 'ann11@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '1929 Many Lane', 'NULL', '1 (11) 500 555-0119', '2012-10-30', '5-10 Miles'], ['27340', '16', 'AW00027340', 'NULL', 'Francis', 'NULL', 'Carlson', '0', '1981-12-03', 'S', 'NULL', 'M', 'francis16@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '7792 Woodruff Lane', 'NULL', '1 (11) 500 555-0166', '2012-11-16', '10+ Miles'], ['27341', '6', 'AW00027341', 'NULL', 'Kari', 'V', 'Sanz', '0', '1982-03-21', 'S', 'NULL', 'F', 'kari41@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '1884 Scottsdale Road', 'NULL', '1 (11) 500 555-0142', '2012-11-17', '10+ Miles'], ['27342', '35', 'AW00027342', 'NULL', 'Henry', 'NULL', 'Rana', '0', '1982-02-15', 'M', 'NULL', 'M', 'henry12@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '125 Keller Ridge', 'NULL', '1 (11) 500 555-0162', '2012-11-13', '10+ Miles'], ['27343', '26', 'AW00027343', 'NULL', 'Dale', 'B', 'Nath', '0', '1986-04-06', 'S', 'NULL', 'M', 'dale16@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '9467 Morning Glory Dr', 'NULL', '1 (11) 500 555-0163', '2013-07-06', '10+ Miles'], ['27344', '34', 'AW00027344', 'NULL', 'Hector', 'NULL', 'Sanz', '0', '1980-03-15', 'S', 'NULL', 'M', 'hector18@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '7915 McFaul Dr.', 'NULL', '1 (11) 500 555-0168', '2013-05-21', '10+ Miles'], ['27345', '13', 'AW00027345', 'NULL', 'Darrell', 'J', 'Shan', '0', '1986-02-13', 'S', 'NULL', 'M', 'darrell18@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '3980 Park Glenn', 'NULL', '1 (11) 500 555-0117', '2013-10-27', '10+ Miles'], ['27346', '24', 'AW00027346', 'NULL', 'Leslie', 'NULL', 'Dominguez', '0', '1981-04-14', 'S', 'NULL', 'F', 'leslie13@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '245 Blue Jay Drive', 'NULL', '1 (11) 500 555-0118', '2012-11-09', '10+ Miles'], ['27347', '31', 'AW00027347', 'NULL', 'Jeffery', 'J', 'Lin', '0', '1985-05-11', 'M', 'NULL', 'M', 'jeffery8@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', 'P.O. Box 4559', 'NULL', '1 (11) 500 555-0167', '2013-06-14', '10+ Miles'], ['27348', '24', 'AW00027348', 'NULL', 'Clayton', 'NULL', 'Zhou', '0', '1979-10-18', 'M', 'NULL', 'M', 'clayton7@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '3616 Gonzalez Court', 'NULL', '1 (11) 500 555-0152', '2012-11-09', '10+ Miles'], ['27349', '39', 'AW00027349', 'NULL', 'Sheila', 'B', 'Diaz', '0', '1985-08-11', 'M', 'NULL', 'F', 'sheila3@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '986 Roundhouse Pl.', 'NULL', '1 (11) 500 555-0124', '2014-01-10', '10+ Miles'], ['27350', '37', 'AW00027350', 'NULL', 'Arthur', 'E', 'Subram', '0', '1980-06-25', 'S', 'NULL', 'M', 'arthur15@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '9255 Westover Dr.', 'NULL', '1 (11) 500 555-0145', '2013-04-01', '10+ Miles'], ['27351', '3', 'AW00027351', 'NULL', 'Jenny', 'S', 'Liang', '0', '1985-08-02', 'M', 'NULL', 'F', 'jenny18@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', '9601 Rainier Dr', 'NULL', '1 (11) 500 555-0185', '2013-06-05', '10+ Miles'], ['27352', '29', 'AW00027352', 'NULL', 'Douglas', 'NULL', 'Subram', '0', '1979-09-02', 'S', 'NULL', 'M', 'douglas17@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', 'P.O. Box 8070', 'NULL', '1 (11) 500 555-0196', '2012-11-08', '10+ Miles'], ['27353', '31', 'AW00027353', 'NULL', 'Gilbert', 'T', 'Andersen', '0', '1979-08-22', 'S', 'NULL', 'M', 'gilbert34@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', '1914 Creekside Dr.', 'NULL', '1 (11) 500 555-0192', '2012-11-01', '10+ Miles'], ['27354', '15', 'AW00027354', 'NULL', 'Deanna', 'H', 'Patel', '0', '1985-08-18', 'S', 'NULL', 'F', 'deanna6@adventure-works.com', '120000.00', '5', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '4', '4525 Benedict Ct.', 'NULL', '1 (11) 500 555-0133', '2012-11-10', '10+ Miles'], ['27355', '18', 'AW00027355', 'NULL', 'Nelson', 'NULL', 'Suarez', '0', '1978-12-25', 'M', 'NULL', 'M', 'nelson18@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '2', '4117 Mitchell Canyon Court', 'NULL', '1 (11) 500 555-0161', '2012-11-08', '10+ Miles'], ['27356', '15', 'AW00027356', 'NULL', 'Mayra', 'E', 'Lopez', '0', '1978-08-10', 'M', 'NULL', 'F', 'mayra16@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '3697 Lane Way', 'NULL', '1 (11) 500 555-0190', '2012-11-26', '10+ Miles'], ['27357', '34', 'AW00027357', 'NULL', 'Victor', 'J', 'Gutierrez', '0', '1983-09-07', 'M', 'NULL', 'M', 'victor11@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '3758 Springwood Way', 'NULL', '1 (11) 500 555-0123', '2013-09-16', '10+ Miles'], ['27358', '25', 'AW00027358', 'NULL', 'Devon', 'G', 'Shen', '0', '1983-03-10', 'M', 'NULL', 'M', 'devon1@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '3275 Corrinne Court', 'NULL', '1 (11) 500 555-0132', '2013-04-27', '10+ Miles'], ['27359', '40', 'AW00027359', 'NULL', 'Morgan', 'J', 'Davis', '0', '1983-03-20', 'S', 'NULL', 'F', 'morgan28@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '9306 Green Street', 'NULL', '1 (11) 500 555-0158', '2012-11-20', '10+ Miles'], ['27360', '29', 'AW00027360', 'NULL', 'Kurt', 'L', 'Kumar', '0', '1976-08-19', 'M', 'NULL', 'M', 'kurt7@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '2578 South Creek Drive', 'NULL', '1 (11) 500 555-0179', '2013-04-14', '10+ Miles'], ['27361', '9', 'AW00027361', 'NULL', 'Valerie', 'L', 'Yang', '0', '1977-01-07', 'S', 'NULL', 'F', 'valerie6@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '7568 Prestwick Court', 'NULL', '1 (11) 500 555-0195', '2013-09-19', '10+ Miles'], ['27362', '34', 'AW00027362', 'NULL', 'Alex', 'L', 'Cooper', '0', '1977-10-20', 'S', 'NULL', 'M', 'alex12@adventure-works.com', '110000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '3', '9739 Victory Lane', 'NULL', '1 (11) 500 555-0166', '2012-11-27', '10+ Miles'], ['27363', '2', 'AW00027363', 'NULL', 'Tara', 'E', 'Jai', '0', '1983-08-08', 'M', 'NULL', 'F', 'tara11@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '4148 Valley Ave.', 'NULL', '1 (11) 500 555-0115', '2013-07-09', '10+ Miles'], ['27364', '37', 'AW00027364', 'NULL', 'Cedric', 'NULL', 'Li', '0', '1982-08-23', 'S', 'NULL', 'M', 'cedric3@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '3944 Kingsford Dr', 'NULL', '1 (11) 500 555-0190', '2013-03-01', '10+ Miles'], ['27365', '22', 'AW00027365', 'NULL', 'Jimmy', 'NULL', 'Jimenez', '0', '1976-11-11', 'S', 'NULL', 'M', 'jimmy8@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '38 Shangri-la Rd.', 'NULL', '1 (11) 500 555-0116', '2012-11-18', '10+ Miles'], ['27366', '38', 'AW00027366', 'NULL', 'Bob', 'A', 'Alan', '0', '1982-04-06', 'S', 'NULL', 'M', 'bob6@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '2371 Deerfield Dr.', 'NULL', '1 (11) 500 555-0179', '2012-11-13', '10+ Miles'], ['27367', '25', 'AW00027367', 'NULL', 'Sydney', 'NULL', 'Adams', '0', '1981-10-05', 'S', 'NULL', 'F', 'sydney56@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '8128 Kane Circle', 'NULL', '1 (11) 500 555-0124', '2013-08-08', '10+ Miles'], ['27368', '20', 'AW00027368', 'NULL', 'Brandy', 'NULL', 'Gonzalez', '0', '1976-02-29', 'M', 'NULL', 'F', 'brandy15@adventure-works.com', '100000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '4', '1899 Mission Drive', 'NULL', '1 (11) 500 555-0175', '2013-03-06', '10+ Miles'], ['27369', '22', 'AW00027369', 'NULL', 'Pamela', 'C', 'Raman', '0', '1976-04-17', 'M', 'NULL', 'F', 'pamela15@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '91 Yukon St.', 'NULL', '1 (11) 500 555-0173', '2013-05-20', '10+ Miles'], ['27370', '27', 'AW00027370', 'NULL', 'Stephanie', 'A', 'Bell', '0', '1976-07-07', 'S', 'NULL', 'F', 'stephanie10@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '5866 Military E', 'NULL', '1 (11) 500 555-0193', '2012-11-09', '10+ Miles'], ['27371', '34', 'AW00027371', 'NULL', 'Carolyn', 'S', 'Srini', '0', '1977-04-24', 'S', 'NULL', 'F', 'carolyn8@adventure-works.com', '110000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '4', '3589 G Street', 'NULL', '1 (11) 500 555-0130', '2012-11-01', '10+ Miles'], ['27372', '402', 'AW00027372', 'NULL', 'Andre', 'NULL', 'Sai', '0', '1953-07-31', 'S', 'NULL', 'M', 'andre5@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '2530 C Del Rio Circle', 'NULL', '724-555-0116', '2013-12-30', '1-2 Miles'], ['27373', '553', 'AW00027373', 'NULL', 'Eduardo', 'E', 'Rivera', '0', '1953-10-17', 'S', 'NULL', 'M', 'eduardo76@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '7361 Quiet Place Drive', 'NULL', '253-555-0188', '2013-05-24', '1-2 Miles'], ['27374', '611', 'AW00027374', 'NULL', 'Robert', 'NULL', 'Phillips', '0', '1965-05-21', 'S', 'NULL', 'M', 'robert49@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2110 Elm St.', 'NULL', '946-555-0162', '2013-11-16', '5-10 Miles'], ['27375', '633', 'AW00027375', 'NULL', 'Nicole', 'NULL', 'Wilson', '0', '1959-08-31', 'M', 'NULL', 'F', 'nicole7@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1740 Calpine Place', 'NULL', '498-555-0167', '2013-03-20', '5-10 Miles'], ['27376', '627', 'AW00027376', 'NULL', 'Courtney', 'NULL', 'Gonzalez', '0', '1954-01-24', 'S', 'NULL', 'F', 'courtney6@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8818 Attic Rd.', 'NULL', '457-555-0199', '2013-11-13', '5-10 Miles'], ['27377', '51', 'AW00027377', 'NULL', 'Melanie', 'N', 'Alexander', '0', '1952-08-04', 'S', 'NULL', 'F', 'melanie6@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2420 Union St', 'NULL', '742-555-0138', '2014-01-03', '5-10 Miles'], ['27378', '54', 'AW00027378', 'NULL', 'Samantha', 'B', 'Lee', '0', '1958-03-15', 'M', 'NULL', 'F', 'samantha23@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3836 Birchbark Place', 'NULL', '936-555-0162', '2013-10-14', '5-10 Miles'], ['27379', '329', 'AW00027379', 'NULL', 'Isabel', 'NULL', 'Ross', '0', '1952-12-06', 'S', 'NULL', 'F', 'isabel4@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '5370 Belmont Rd', 'NULL', '555-555-0166', '2013-08-05', '1-2 Miles'], ['27380', '51', 'AW00027380', 'NULL', 'Eric', 'NULL', 'Green', '0', '1958-11-12', 'S', 'NULL', 'M', 'eric56@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5872 L St.', 'NULL', '289-555-0121', '2013-05-25', '5-10 Miles'], ['27381', '301', 'AW00027381', 'NULL', 'Miguel', 'J', 'Sanz', '0', '1943-02-20', 'S', 'NULL', 'F', 'miguel70@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8969 Royal Links Ct.', 'NULL', '914-555-0138', '2013-11-18', '5-10 Miles'], ['27382', '310', 'AW00027382', 'NULL', 'Kaitlin', 'R', 'Chapman', '0', '1942-12-14', 'S', 'NULL', 'F', 'kaitlin2@adventure-works.com', '50000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3320 North 5th St', 'NULL', '830-555-0157', '2013-04-13', '10+ Miles'], ['27383', '311', 'AW00027383', 'NULL', 'Jay', 'NULL', 'Hernandez', '0', '1943-08-30', 'S', 'NULL', 'M', 'jay33@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '651 Melody Dr.', 'NULL', '109-555-0158', '2014-01-23', '10+ Miles'], ['27384', '60', 'AW00027384', 'NULL', 'Eric', 'A', 'Patterson', '0', '1943-10-13', 'M', 'NULL', 'M', 'eric19@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1732 Parakeet', 'NULL', '774-555-0131', '2013-06-06', '10+ Miles'], ['27385', '301', 'AW00027385', 'NULL', 'Jonathon', 'A', 'Ramos', '0', '1950-10-15', 'M', 'NULL', 'M', 'jonathon13@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '4001 Fawn Glen Circle', 'NULL', '783-555-0118', '2013-09-16', '1-2 Miles'], ['27386', '302', 'AW00027386', 'NULL', 'James', 'C', 'Garcia', '0', '1945-01-23', 'M', 'NULL', 'M', 'james89@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6232 Gumwood', 'NULL', '254-555-0158', '2013-08-01', '10+ Miles'], ['27387', '546', 'AW00027387', 'NULL', 'Noah', 'NULL', 'Washington', '0', '1944-11-05', 'S', 'NULL', 'M', 'noah10@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '690 Carmel Drive', 'NULL', '324-555-0153', '2013-03-27', '10+ Miles'], ['27388', '641', 'AW00027388', 'NULL', 'Xavier', 'R', 'Cox', '0', '1945-10-12', 'M', 'NULL', 'M', 'xavier77@adventure-works.com', '60000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '5934 Warmcastle Ct.', 'NULL', '250-555-0123', '2013-04-12', '1-2 Miles'], ['27389', '385', 'AW00027389', 'NULL', 'Lucas', 'NULL', 'Henderson', '0', '1946-04-15', 'S', 'NULL', 'M', 'lucas54@adventure-works.com', '60000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '7976 Stonedale', 'NULL', '903-555-0112', '2013-03-06', '1-2 Miles'], ['27390', '612', 'AW00027390', 'NULL', 'Leah', 'NULL', 'Zeng', '0', '1946-01-10', 'S', 'NULL', 'F', 'leah18@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '9255 Katharyn Drive', 'NULL', '543-555-0158', '2013-12-08', '1-2 Miles'], ['27391', '623', 'AW00027391', 'NULL', 'Logan', 'NULL', 'Young', '0', '1952-08-17', 'S', 'NULL', 'M', 'logan43@adventure-works.com', '50000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2413 Roanwood Way', 'NULL', '193-555-0125', '2013-07-15', '10+ Miles'], ['27392', '298', 'AW00027392', 'NULL', 'Felicia', 'NULL', 'Romero', '0', '1947-02-22', 'M', 'NULL', 'F', 'felicia8@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1797 Victory Lane', 'NULL', '198-555-0116', '2014-01-27', '10+ Miles'], ['27393', '49', 'AW00027393', 'NULL', 'Sierra', 'NULL', 'Hernandez', '0', '1948-06-10', 'M', 'NULL', 'F', 'sierra16@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6076 Glen Arms Drive', 'NULL', '153-555-0114', '2013-03-12', '10+ Miles'], ['27394', '543', 'AW00027394', 'NULL', 'Kyle', 'NULL', 'Alexander', '0', '1948-03-21', 'S', 'NULL', 'M', 'kyle14@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '1813 Cashew Ln', 'NULL', '902-555-0132', '2013-09-04', '1-2 Miles'], ['27395', '536', 'AW00027395', 'NULL', 'Jenny', 'J', 'Lu', '0', '1953-08-08', 'S', 'NULL', 'F', 'jenny13@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8136 Michele Drive', 'NULL', '784-555-0140', '2013-10-03', '10+ Miles'], ['27396', '614', 'AW00027396', 'NULL', 'Adrian', 'S', 'Cook', '0', '1948-11-22', 'S', 'NULL', 'M', 'adrian20@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9261 S Royal Links Circle', 'NULL', '117-555-0111', '2013-08-15', '10+ Miles'], ['27397', '325', 'AW00027397', 'NULL', 'Alex', 'L', 'James', '0', '1948-07-03', 'S', 'NULL', 'M', 'alex11@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4370 Trafalgar Circle', 'NULL', '131-555-0195', '2013-11-23', '10+ Miles'], ['27398', '374', 'AW00027398', 'NULL', 'Alexis', 'L', 'Lee', '0', '1949-02-28', 'S', 'NULL', 'F', 'alexis19@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '1006 Deercreek Ln', 'NULL', '362-555-0194', '2013-09-29', '1-2 Miles'], ['27399', '312', 'AW00027399', 'NULL', 'Thomas', 'NULL', 'Parker', '0', '1949-05-22', 'S', 'NULL', 'M', 'thomas36@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '6443 Claudia Dr.', 'NULL', '711-555-0151', '2013-04-24', '1-2 Miles'], ['27400', '71', 'AW00027400', 'NULL', 'Miguel', 'D', 'Coleman', '0', '1948-10-06', 'M', 'NULL', 'M', 'miguel52@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5000 Bryce Dr.', 'NULL', '315-555-0187', '2013-02-03', '10+ Miles'], ['27401', '49', 'AW00027401', 'NULL', 'Micah', 'NULL', 'He', '0', '1950-03-06', 'M', 'NULL', 'M', 'micah6@adventure-works.com', '30000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6542 Stonewood Drive', 'NULL', '329-555-0157', '2013-04-30', '1-2 Miles'], ['27402', '68', 'AW00027402', 'NULL', 'Adam', 'B', 'Nelson', '0', '1955-06-16', 'S', 'NULL', 'M', 'adam40@adventure-works.com', '30000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '616 Sweeney Road', 'NULL', '680-555-0153', '2013-10-21', '1-2 Miles'], ['27403', '54', 'AW00027403', 'NULL', 'Dylan', 'NULL', 'Coleman', '0', '1950-11-17', 'S', 'NULL', 'M', 'dylan4@adventure-works.com', '30000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4513 Ten Penny Lane', '#3', '609-555-0146', '2013-11-16', '1-2 Miles'], ['27404', '68', 'AW00027404', 'NULL', 'Maria', 'D', 'Mitchell', '0', '1957-10-30', 'M', 'NULL', 'F', 'maria54@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '1906 Adobe Dr.', 'NULL', '500-555-0122', '2012-09-23', '2-5 Miles'], ['27405', '361', 'AW00027405', 'NULL', 'Jackson', 'NULL', 'Shan', '0', '1951-12-06', 'M', 'NULL', 'M', 'jackson4@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '1264 Eureka Lane', 'NULL', '379-555-0190', '2012-10-30', '10+ Miles'], ['27406', '71', 'AW00027406', 'NULL', 'Richard', 'L', 'Sanchez', '0', '1952-04-15', 'S', 'NULL', 'M', 'richard98@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '2447 Pacifica Ave.', 'NULL', '275-555-0119', '2012-10-10', '10+ Miles'], ['27407', '547', 'AW00027407', 'NULL', 'Faith', 'L', 'Griffin', '0', '1957-02-01', 'S', 'NULL', 'F', 'faith20@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '4426 Scenic Avenue', 'Unit D9', '185-555-0142', '2012-11-02', '10+ Miles'], ['27408', '311', 'AW00027408', 'NULL', 'Tabitha', 'E', 'Sanchez', '0', '1952-02-07', 'M', 'NULL', 'F', 'tabitha17@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '1466 Aspen Drive', 'NULL', '355-555-0162', '2013-09-03', '10+ Miles'], ['27409', '310', 'AW00027409', 'NULL', 'Preston', 'J', 'Smith', '0', '1953-05-03', 'M', 'NULL', 'M', 'preston7@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '3448 Sun View Terr.', 'NULL', '590-555-0192', '2013-06-19', '10+ Miles'], ['27410', '358', 'AW00027410', 'NULL', 'Brianna', 'B', 'Patterson', '0', '1958-03-22', 'S', 'NULL', 'F', 'brianna56@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '2134 Royal Links Ct', 'NULL', '575-555-0138', '2013-05-19', '2-5 Miles'], ['27411', '539', 'AW00027411', 'NULL', 'Mason', 'J', 'Bendixen', '0', '1953-03-16', 'S', 'NULL', 'M', 'mason1@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '610 Fountainhead Ct.', 'NULL', '466-555-0144', '2013-06-04', '10+ Miles'], ['27412', '329', 'AW00027412', 'NULL', 'Miguel', 'NULL', 'Price', '0', '1953-03-03', 'S', 'NULL', 'M', 'miguel46@adventure-works.com', '70000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '4712 Golden Rain Road', 'NULL', '157-555-0111', '2013-10-25', '10+ Miles'], ['27413', '51', 'AW00027413', 'NULL', 'Kaitlyn', 'H', 'Reed', '0', '1953-04-17', 'M', 'NULL', 'F', 'kaitlyn50@adventure-works.com', '70000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '9321 Quiet Place Drive', 'NULL', '625-555-0158', '2013-05-30', '10+ Miles'], ['27414', '63', 'AW00027414', 'NULL', 'Julia', 'J', 'Young', '0', '1953-05-03', 'M', 'NULL', 'F', 'julia21@adventure-works.com', '70000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '3448 Sun View Terr.', 'NULL', '993-555-0183', '2013-07-18', '10+ Miles'], ['27415', '63', 'AW00027415', 'NULL', 'Trevor', 'NULL', 'Butler', '0', '1953-08-02', 'M', 'NULL', 'M', 'trevor14@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '54 Morgan Ave.', 'NULL', '641-555-0185', '2013-02-01', '10+ Miles'], ['27416', '638', 'AW00027416', 'NULL', 'Jeremiah', 'NULL', 'Morris', '0', '1959-01-07', 'S', 'NULL', 'M', 'jeremiah46@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '9847 Twinview Dr.', 'NULL', '717-555-0165', '2012-11-23', '2-5 Miles'], ['27417', '312', 'AW00027417', 'NULL', 'Edwin', 'NULL', 'She', '0', '1953-07-12', 'M', 'NULL', 'M', 'edwin22@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '3515 Sutton Circle', 'NULL', '187-555-0111', '2013-10-21', '10+ Miles'], ['27418', '385', 'AW00027418', 'NULL', 'Mya', 'NULL', 'Coleman', '0', '1954-03-22', 'S', 'NULL', 'F', 'mya8@adventure-works.com', '70000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '4808 Ward Court', 'NULL', '576-555-0139', '2012-11-15', '1-2 Miles'], ['27419', '49', 'AW00027419', 'NULL', 'Rebekah', 'B', 'Mehta', '0', '1955-06-01', 'S', 'NULL', 'F', 'rebekah13@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '641 J Ave.', 'NULL', '629-555-0165', '2013-06-08', '10+ Miles'], ['27420', '60', 'AW00027420', 'NULL', 'Samuel', 'NULL', 'Turner', '0', '1955-03-03', 'S', 'NULL', 'M', 'samuel35@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3576 Court St.', 'NULL', '602-555-0165', '2013-02-09', '10+ Miles'], ['27421', '453', 'AW00027421', 'NULL', 'Mindy', 'NULL', 'Chander', '0', '1960-02-01', 'S', 'NULL', 'F', 'mindy20@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '5458 Gladstone Drive', 'NULL', '145-555-0167', '2012-11-05', '2-5 Miles'], ['27422', '553', 'AW00027422', 'NULL', 'Evan', 'NULL', 'Gonzalez', '0', '1955-01-14', 'M', 'NULL', 'M', 'evan33@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2556 La Cadena', 'NULL', '631-555-0197', '2013-10-05', '10+ Miles'], ['27423', '312', 'AW00027423', 'NULL', 'Dakota', 'NULL', 'Butler', '0', '1954-11-13', 'S', 'NULL', 'M', 'dakota11@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '0', '1838 Canyon Way', 'NULL', '501-555-0165', '2012-11-15', '2-5 Miles'], ['27424', '331', 'AW00027424', 'NULL', 'Luis', 'P', 'Mitchell', '0', '1954-10-09', 'S', 'NULL', 'M', 'luis44@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '8605 Avalon Court', 'NULL', '579-555-0178', '2012-11-20', '10+ Miles'], ['27425', '338', 'AW00027425', 'NULL', 'Steven', 'NULL', 'Morris', '0', '1955-01-06', 'S', 'NULL', 'M', 'steven28@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '916 Sandview Dr.', 'NULL', '125-555-0178', '2012-10-29', '2-5 Miles'], ['27426', '343', 'AW00027426', 'NULL', 'Evan', 'M', 'Stewart', '0', '1960-12-18', 'S', 'NULL', 'M', 'evan27@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '5616 Steele Dr.', 'NULL', '456-555-0116', '2013-08-04', '10+ Miles'], ['27427', '369', 'AW00027427', 'NULL', 'Mason', 'NULL', 'Young', '0', '1960-02-05', 'S', 'NULL', 'M', 'mason39@adventure-works.com', '70000.00', '5', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '265 Maria Vega Court', 'NULL', '550-555-0187', '2012-11-27', '1-2 Miles'], ['27428', '62', 'AW00027428', 'NULL', 'Paige', 'NULL', 'Foster', '0', '1955-09-08', 'S', 'NULL', 'F', 'paige15@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4854 Parkside Dr', 'NULL', '292-555-0170', '2013-06-29', '10+ Miles'], ['27429', '70', 'AW00027429', 'NULL', 'Stephanie', 'A', 'Ward', '0', '1955-07-20', 'S', 'NULL', 'F', 'stephanie18@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6928 Woodland Drive', 'NULL', '982-555-0151', '2012-10-23', '10+ Miles'], ['27430', '611', 'AW00027430', 'NULL', 'Stephanie', 'N', 'Young', '0', '1955-11-23', 'M', 'NULL', 'F', 'stephanie69@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'P.O. Box #2513', 'NULL', '837-555-0130', '2013-07-24', '10+ Miles'], ['27431', '546', 'AW00027431', 'NULL', 'Ethan', 'F', 'Jenkins', '0', '1961-09-08', 'S', 'NULL', 'M', 'ethan3@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '8454 Candy Rd', 'NULL', '375-555-0173', '2012-11-25', '2-5 Miles'], ['27432', '307', 'AW00027432', 'NULL', 'Craig', 'C', 'Ruiz', '0', '1961-05-05', 'S', 'NULL', 'M', 'craig4@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '144 Castro Street', 'NULL', '195-555-0183', '2013-11-12', '10+ Miles'], ['27433', '310', 'AW00027433', 'NULL', 'Barry', 'NULL', 'Garcia', '0', '1956-02-17', 'S', 'NULL', 'M', 'barry15@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '3831 Golden Gate Way', '# 203', '774-555-0124', '2013-07-28', '2-5 Miles'], ['27434', '336', 'AW00027434', 'NULL', 'David', 'S', 'Patterson', '0', '1955-12-23', 'S', 'NULL', 'M', 'david43@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7547 Payot Court', 'NULL', '926-555-0172', '2014-01-23', '10+ Miles'], ['27435', '339', 'AW00027435', 'NULL', 'Alexandra', 'J', 'Johnson', '0', '1956-06-07', 'M', 'NULL', 'F', 'alexandra64@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '3104 Shakespeare Drive', 'NULL', '178-555-0137', '2013-05-09', '10+ Miles'], ['27436', '49', 'AW00027436', 'NULL', 'Carmen', 'C', 'Mehta', '0', '1962-11-07', 'S', 'NULL', 'F', 'carmen17@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3926 Cactus Court', 'NULL', '396-555-0186', '2013-11-16', '10+ Miles'], ['27437', '53', 'AW00027437', 'NULL', 'Gabriella', 'A', 'Reed', '0', '1956-08-02', 'S', 'NULL', 'F', 'gabriella18@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1516 Redbird Lane', 'NULL', '355-555-0115', '2013-04-02', '10+ Miles'], ['27438', '298', 'AW00027438', 'NULL', 'Alejandro', 'NULL', 'Shan', '0', '1957-01-02', 'M', 'NULL', 'M', 'alejandro37@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '385 Joan Ave', 'NULL', '185-555-0163', '2013-05-21', '10+ Miles'], ['27439', '325', 'AW00027439', 'NULL', 'Chase', 'A', 'Ramirez', '0', '1958-05-04', 'S', 'NULL', 'M', 'chase7@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '5087 Edwards Ave.', 'NULL', '499-555-0141', '2012-11-20', '2-5 Miles'], ['27440', '631', 'AW00027440', 'NULL', 'Trinity', 'A', 'Howard', '0', '1958-01-08', 'S', 'NULL', 'F', 'trinity11@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4573 Beauty Street', 'NULL', '801-555-0116', '2012-11-01', '2-5 Miles'], ['27441', '64', 'AW00027441', 'NULL', 'Jose', 'NULL', 'Ross', '0', '1958-10-31', 'M', 'NULL', 'M', 'jose27@adventure-works.com', '60000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '181 Buena Vista', 'NULL', '502-555-0179', '2013-02-06', '2-5 Miles'], ['27442', '310', 'AW00027442', 'NULL', 'Janelle', 'C', 'Raman', '0', '1959-04-22', 'M', 'NULL', 'F', 'janelle9@adventure-works.com', '60000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3591 East 18th Street', 'NULL', '719-555-0119', '2013-05-28', '10+ Miles'], ['27443', '347', 'AW00027443', 'NULL', 'Jessica', 'M', 'Jackson', '0', '1959-06-09', 'S', 'NULL', 'F', 'jessica59@adventure-works.com', '60000.00', '3', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '330 Jamie Way', 'NULL', '520-555-0187', '2013-04-27', '10+ Miles'], ['27444', '644', 'AW00027444', 'NULL', 'Kayla', 'E', 'Martinez', '0', '1974-07-14', 'M', 'NULL', 'F', 'kayla18@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '2', '5366 Terry Lynn Lane', 'NULL', '332-555-0166', '2013-10-22', '0-1 Miles'], ['27445', '310', 'AW00027445', 'NULL', 'Shaun', 'S', 'Tang', '0', '1975-04-12', 'M', 'NULL', 'M', 'shaun5@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '9106 Edwards Ave.', 'NULL', '890-555-0118', '2013-10-26', '0-1 Miles'], ['27446', '369', 'AW00027446', 'NULL', 'Tyler', 'NULL', 'Jones', '0', '1980-06-04', 'S', 'NULL', 'M', 'tyler8@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7776 Partridge Dr.', 'NULL', '295-555-0171', '2012-11-11', '0-1 Miles'], ['27447', '385', 'AW00027447', 'NULL', 'Miranda', 'D', 'Hayes', '0', '1974-10-26', 'M', 'NULL', 'F', 'miranda23@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3140 Park Tree Ct', 'NULL', '272-555-0199', '2012-10-28', '0-1 Miles'], ['27448', '285', 'AW00027448', 'NULL', 'Marc', 'NULL', 'Romero', '0', '1970-10-30', 'S', 'NULL', 'M', 'marc13@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7656 Ramsey Circle', 'NULL', '835-555-0161', '2012-11-19', '2-5 Miles'], ['27449', '358', 'AW00027449', 'NULL', 'Bryan', 'NULL', 'Cox', '0', '1973-08-04', 'S', 'NULL', 'M', 'bryan11@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '8457 East 63rd Street', 'NULL', '658-555-0173', '2012-10-29', '1-2 Miles'], ['27450', '644', 'AW00027450', 'NULL', 'Abigail', 'I', 'Ross', '0', '1973-01-11', 'M', 'NULL', 'F', 'abigail72@adventure-works.com', '100000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8715 Birchwood', 'NULL', '264-555-0199', '2012-11-24', '1-2 Miles'], ['27451', '51', 'AW00027451', 'NULL', 'Thomas', 'C', 'Washington', '0', '1973-05-20', 'S', 'NULL', 'M', 'thomas15@adventure-works.com', '100000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '3089 Hayes Court', 'NULL', '848-555-0128', '2013-07-31', '0-1 Miles'], ['27452', '385', 'AW00027452', 'NULL', 'Evan', 'A', 'Watson', '0', '1972-11-16', 'S', 'NULL', 'M', 'evan0@adventure-works.com', '120000.00', '0', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '4833 Maine Dr.', 'NULL', '736-555-0126', '2012-11-22', '0-1 Miles'], ['27453', '312', 'AW00027453', 'NULL', 'Carson', 'NULL', 'Henderson', '0', '1974-10-30', 'S', 'NULL', 'M', 'carson3@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '7186 N. Thompson Rd.', 'NULL', '347-555-0137', '2012-11-12', '1-2 Miles'], ['27454', '52', 'AW00027454', 'NULL', 'Benjamin', 'R', 'Wang', '0', '1979-12-05', 'M', 'NULL', 'M', 'benjamin26@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '1439 Brock Lane', 'NULL', '485-555-0113', '2013-06-14', '1-2 Miles'], ['27455', '543', 'AW00027455', 'NULL', 'Brianna', 'P', 'Jenkins', '0', '1974-05-17', 'S', 'NULL', 'F', 'brianna52@adventure-works.com', '100000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '6406 Marlesta Rd.', 'NULL', '422-555-0117', '2012-11-27', '0-1 Miles'], ['27456', '627', 'AW00027456', 'NULL', 'Jackson', 'NULL', 'Hughes', '0', '1973-08-14', 'M', 'NULL', 'M', 'jackson14@adventure-works.com', '100000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '6928 Jason Ct', 'NULL', '669-555-0150', '2013-10-15', '1-2 Miles'], ['27457', '546', 'AW00027457', 'NULL', 'Elizabeth', 'NULL', 'Walker', '0', '1973-12-05', 'S', 'NULL', 'F', 'elizabeth27@adventure-works.com', '100000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '4348 Lilac Circle', 'NULL', '391-555-0152', '2013-08-29', '1-2 Miles'], ['27458', '299', 'AW00027458', 'NULL', 'Roger', 'R', 'Liang', '0', '1979-12-13', 'M', 'NULL', 'M', 'roger21@adventure-works.com', '110000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '8494 Miwok Way', 'NULL', '395-555-0198', '2013-07-02', '1-2 Miles'], ['27459', '301', 'AW00027459', 'NULL', 'Kevin', 'NULL', 'Kumar', '0', '1979-11-23', 'M', 'NULL', 'M', 'kevin31@adventure-works.com', '130000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9359 Smiling Tree Court', 'NULL', '110-555-0111', '2012-12-18', '0-1 Miles'], ['27460', '307', 'AW00027460', 'NULL', 'Grant', 'S', 'Goel', '0', '1979-10-24', 'S', 'NULL', 'M', 'grant21@adventure-works.com', '130000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '363 Corrie Lane', 'NULL', '126-555-0163', '2012-12-17', '0-1 Miles'], ['27461', '648', 'AW00027461', 'NULL', 'Arianna', 'NULL', 'Coleman', '0', '1985-04-04', 'S', 'NULL', 'F', 'arianna6@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '197 Adobe Dr', '# 999', '679-555-0142', '2013-07-10', '5-10 Miles'], ['27462', '298', 'AW00027462', 'NULL', 'Xavier', 'NULL', 'Rodriguez', '0', '1984-10-29', 'S', 'NULL', 'M', 'xavier18@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8384 Golden Rain Road', 'NULL', '753-555-0181', '2013-11-05', '5-10 Miles'], ['27463', '307', 'AW00027463', 'NULL', 'Rachel', 'NULL', 'Morgan', '0', '1985-05-01', 'S', 'NULL', 'F', 'rachel33@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6199 Mcelroy', 'NULL', '145-555-0150', '2013-03-11', '1-2 Miles'], ['27464', '13', 'AW00027464', 'NULL', 'Jacquelyn', 'P', 'Torres', '0', '1950-04-17', 'M', 'NULL', 'F', 'jacquelyn12@adventure-works.com', '20000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8192 Seagull Court', 'NULL', '1 (11) 500 555-0116', '2013-09-18', '1-2 Miles'], ['27465', '553', 'AW00027465', 'NULL', 'Seth', 'L', 'Garcia', '0', '1984-04-23', 'S', 'NULL', 'M', 'seth16@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5972 Donegal Court', 'NULL', '984-555-0197', '2013-06-09', '5-10 Miles'], ['27466', '648', 'AW00027466', 'NULL', 'Abigail', 'NULL', 'Murphy', '0', '1983-09-09', 'S', 'NULL', 'F', 'abigail10@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '2899 Cimarron Drive', 'NULL', '386-555-0151', '2013-06-09', '1-2 Miles'], ['27467', '312', 'AW00027467', 'NULL', 'Jackson', 'S', 'Coleman', '0', '1983-09-13', 'M', 'NULL', 'M', 'jackson8@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9919 MacArthur Avenue', 'NULL', '159-555-0145', '2012-12-20', '5-10 Miles'], ['27468', '316', 'AW00027468', 'NULL', 'Robert', 'C', 'Powell', '0', '1984-04-10', 'M', 'NULL', 'M', 'robert22@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7836 Roux Court', 'NULL', '619-555-0166', '2012-12-16', '1-2 Miles'], ['27469', '12', 'AW00027469', 'NULL', 'Anne', 'NULL', 'Gill', '0', '1951-08-22', 'S', 'NULL', 'F', 'anne15@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7634 Via Alta', 'NULL', '1 (11) 500 555-0162', '2012-11-24', '5-10 Miles'], ['27470', '16', 'AW00027470', 'NULL', 'Raquel', 'A', 'Dominguez', '0', '1952-09-16', 'M', 'NULL', 'F', 'raquel9@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5457 Woodcrest Dr.', 'NULL', '1 (11) 500 555-0147', '2012-12-19', '1-2 Miles'], ['27471', '30', 'AW00027471', 'NULL', 'Susan', 'NULL', 'Gao', '0', '1953-09-14', 'S', 'NULL', 'F', 'susan25@adventure-works.com', '20000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3507 Olive Dr.', 'NULL', '1 (11) 500 555-0158', '2012-12-18', '5-10 Miles'], ['27472', '27', 'AW00027472', 'NULL', 'Mindy', 'V', 'Chande', '0', '1953-08-10', 'S', 'NULL', 'F', 'mindy19@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '7591 Signal Court', 'NULL', '1 (11) 500 555-0169', '2012-12-18', '5-10 Miles'], ['27473', '40', 'AW00027473', 'NULL', 'Gabriel', 'NULL', 'Lal', '0', '1964-07-05', 'S', 'NULL', 'M', 'gabriel26@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3770 Dos Encinas', 'NULL', '1 (11) 500 555-0193', '2012-12-08', '5-10 Miles'], ['27474', '612', 'AW00027474', 'NULL', 'Alexandria', 'C', 'Hayes', '0', '1982-07-24', 'S', 'NULL', 'F', 'alexandria23@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '5786 St. George Drive', 'NULL', '322-555-0180', '2013-07-15', '5-10 Miles'], ['27475', '631', 'AW00027475', 'NULL', 'Alexa', 'NULL', 'Bailey', '0', '1982-12-17', 'S', 'NULL', 'F', 'alexa14@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4072 South Hampton Road', 'NULL', '901-555-0158', '2013-12-26', '5-10 Miles'], ['27476', '298', 'AW00027476', 'NULL', 'Alexis', 'L', 'Alexander', '0', '1982-08-14', 'S', 'NULL', 'F', 'alexis42@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6366 Dayton Court', 'NULL', '943-555-0142', '2013-11-24', '5-10 Miles'], ['27477', '299', 'AW00027477', 'NULL', 'Hunter', 'R', 'Wright', '0', '1983-02-09', 'S', 'NULL', 'M', 'hunter46@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1002 N. Spoonwood Court', 'NULL', '683-555-0129', '2013-06-30', '5-10 Miles'], ['27478', '307', 'AW00027478', 'NULL', 'Sheila', 'NULL', 'Alvarez', '0', '1982-12-10', 'M', 'NULL', 'F', 'sheila5@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9322 Sinaloa', 'NULL', '229-555-0150', '2013-04-09', '5-10 Miles'], ['27479', '325', 'AW00027479', 'NULL', 'Kaitlyn', 'T', 'Sanders', '0', '1982-09-08', 'S', 'NULL', 'F', 'kaitlyn67@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9713 Amhurst Way', 'NULL', '541-555-0188', '2013-03-28', '1-2 Miles'], ['27480', '336', 'AW00027480', 'NULL', 'Chloe', 'J', 'Parker', '0', '1982-12-05', 'S', 'NULL', 'F', 'chloe5@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3983 Crane Court', 'NULL', '360-555-0121', '2014-01-23', '5-10 Miles'], ['27481', '361', 'AW00027481', 'NULL', 'Oscar', 'H', 'Gonzales', '0', '1982-11-24', 'S', 'NULL', 'M', 'oscar3@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9396 Viera Avenue', 'NULL', '968-555-0111', '2013-08-08', '5-10 Miles'], ['27482', '2', 'AW00027482', 'NULL', 'Gary', 'NULL', 'Diaz', '0', '1960-01-19', 'M', 'NULL', 'M', 'gary13@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9956 Mcneil Place', 'NULL', '1 (11) 500 555-0185', '2013-03-06', '5-10 Miles'], ['27483', '25', 'AW00027483', 'NULL', 'Thomas', 'N', 'Shan', '0', '1960-08-22', 'M', 'NULL', 'M', 'thomas34@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6120 Apple Court', 'NULL', '1 (11) 500 555-0122', '2012-12-02', '5-10 Miles'], ['27484', '35', 'AW00027484', 'NULL', 'Kristen', 'NULL', 'Zhang', '0', '1954-09-13', 'S', 'NULL', 'F', 'kristen0@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '593 Willow Pass Road', 'NULL', '1 (11) 500 555-0146', '2012-12-11', '5-10 Miles'], ['27485', '9', 'AW00027485', 'NULL', 'Nina', 'NULL', 'Tang', '0', '1961-07-08', 'S', 'NULL', 'F', 'nina4@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2851 Ward Street', 'NULL', '1 (11) 500 555-0183', '2012-12-18', '1-2 Miles'], ['27486', '6', 'AW00027486', 'NULL', 'Mathew', 'M', 'Gill', '0', '1961-05-06', 'S', 'NULL', 'M', 'mathew9@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5014 S. Villa Way', 'NULL', '1 (11) 500 555-0155', '2012-12-23', '1-2 Miles'], ['27487', '16', 'AW00027487', 'NULL', 'Cedric', 'R', 'Guo', '0', '1968-03-30', 'M', 'NULL', 'M', 'cedric17@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '973 MarvelLane', 'NULL', '1 (11) 500 555-0166', '2012-11-28', '5-10 Miles'], ['27488', '14', 'AW00027488', 'NULL', 'Sheila', 'NULL', 'Munoz', '0', '1956-12-29', 'M', 'NULL', 'F', 'sheila7@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '1207 Concerto Circle', 'NULL', '1 (11) 500 555-0116', '2012-11-30', '1-2 Miles'], ['27489', '40', 'AW00027489', 'NULL', 'Haley', 'NULL', 'Hall', '0', '1957-02-10', 'S', 'NULL', 'F', 'haley57@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5296 Birchwood', 'NULL', '1 (11) 500 555-0147', '2012-11-30', '5-10 Miles'], ['27490', '40', 'AW00027490', 'NULL', 'Natasha', 'N', 'Martin', '0', '1956-09-30', 'S', 'NULL', 'F', 'natasha0@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9234 Paso Del Rio Court', 'NULL', '1 (11) 500 555-0114', '2012-11-30', '5-10 Miles'], ['27491', '8', 'AW00027491', 'NULL', 'Maurice', 'C', 'Luo', '0', '1957-09-01', 'M', 'NULL', 'M', 'maurice6@adventure-works.com', '20000.00', '3', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '4', '2855 Playa', 'NULL', '1 (11) 500 555-0131', '2013-07-12', '1-2 Miles'], ['27492', '35', 'AW00027492', 'NULL', 'Clayton', 'M', 'Lin', '0', '1957-07-25', 'M', 'NULL', 'M', 'clayton6@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4966 Santa Barbara Rd.', 'NULL', '1 (11) 500 555-0114', '2012-12-11', '5-10 Miles'], ['27493', '38', 'AW00027493', 'NULL', 'Barbara', 'NULL', 'Zheng', '0', '1958-05-23', 'M', 'NULL', 'F', 'barbara28@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8964 Dumbarton Street', 'NULL', '1 (11) 500 555-0166', '2012-12-02', '5-10 Miles'], ['27494', '15', 'AW00027494', 'NULL', 'Virginia', 'A', 'Perez', '0', '1964-07-11', 'S', 'NULL', 'F', 'virginia23@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8633 Donegal Road', 'NULL', '1 (11) 500 555-0119', '2012-12-25', '1-2 Miles'], ['27495', '14', 'AW00027495', 'NULL', 'Nina', 'NULL', 'Luo', '0', '1960-02-21', 'S', 'NULL', 'F', 'nina6@adventure-works.com', '40000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6650 Contuti Avenue', '# 135', '1 (11) 500 555-0150', '2013-09-18', '1-2 Miles'], ['27496', '35', 'AW00027496', 'NULL', 'Stanley', 'J', 'Suri', '0', '1965-08-23', 'S', 'NULL', 'M', 'stanley1@adventure-works.com', '40000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2487 Riverside Drive', 'NULL', '1 (11) 500 555-0196', '2013-04-29', '1-2 Miles'], ['27497', '2', 'AW00027497', 'NULL', 'Johnathan', 'R', 'Rana', '0', '1960-01-31', 'S', 'NULL', 'M', 'johnathan13@adventure-works.com', '40000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2258 Pablo Neruda', 'NULL', '1 (11) 500 555-0178', '2013-06-13', '1-2 Miles'], ['27498', '10', 'AW00027498', 'NULL', 'Marie', 'J', 'Ruiz', '0', '1972-06-17', 'S', 'NULL', 'F', 'marie26@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3279 W 46th St', 'NULL', '1 (11) 500 555-0165', '2012-12-02', '1-2 Miles'], ['27499', '14', 'AW00027499', 'NULL', 'Barbara', 'N', 'Kumar', '0', '1961-01-04', 'M', 'NULL', 'F', 'barbara39@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7371 Cali', 'NULL', '1 (11) 500 555-0136', '2012-12-03', '5-10 Miles'], ['27500', '36', 'AW00027500', 'NULL', 'Luis', 'NULL', 'Hill', '0', '1966-09-09', 'S', 'NULL', 'M', 'luis46@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5203 Foothill Way', 'NULL', '1 (11) 500 555-0139', '2012-12-25', '5-10 Miles'], ['27501', '6', 'AW00027501', 'NULL', 'Darren', 'NULL', 'Alonso', '0', '1966-02-21', 'M', 'NULL', 'M', 'darren30@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3265 E. 62nd Street', 'NULL', '1 (11) 500 555-0112', '2013-07-11', '5-10 Miles'], ['27502', '71', 'AW00027502', 'NULL', 'Tyler', 'NULL', 'Thompson', '0', '1981-04-26', 'S', 'NULL', 'M', 'tyler7@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4144 Tahoe Place', 'NULL', '191-555-0138', '2013-01-30', '5-10 Miles'], ['27503', '432', 'AW00027503', 'NULL', 'Warren', 'D', 'Shen', '0', '1981-06-14', 'S', 'NULL', 'M', 'warren37@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6963 Santa Monica Drive', 'NULL', '496-555-0127', '2013-08-03', '5-10 Miles'], ['27504', '542', 'AW00027504', 'NULL', 'Rebecca', 'F', 'Lopez', '0', '1981-03-16', 'S', 'NULL', 'F', 'rebecca22@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '156 East Lake Court', 'NULL', '494-555-0141', '2012-12-07', '1-2 Miles'], ['27505', '302', 'AW00027505', 'Ms.', 'Bonnie', 'L.', 'Skelly', '0', '1981-06-17', 'S', 'NULL', 'F', 'bonnie3@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6091 MountainAire Parkway', 'NULL', '641-555-0100', '2013-08-28', '5-10 Miles'], ['27506', '302', 'AW00027506', 'NULL', 'Carla', 'NULL', 'Srini', '0', '1980-12-10', 'M', 'NULL', 'F', 'carla11@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4399 Shuey Ave', 'NULL', '124-555-0170', '2013-07-15', '5-10 Miles'], ['27507', '310', 'AW00027507', 'NULL', 'Valerie', 'R', 'Li', '0', '1980-12-24', 'M', 'NULL', 'F', 'valerie4@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6749 East 23rd Street', 'NULL', '417-555-0198', '2014-01-07', '5-10 Miles'], ['27508', '299', 'AW00027508', 'NULL', 'James', 'K', 'Edwards', '0', '1978-08-10', 'S', 'NULL', 'M', 'james51@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1819 Weston Court', 'NULL', '731-555-0151', '2012-12-14', '1-2 Miles'], ['27509', '648', 'AW00027509', 'NULL', 'Zachary', 'G', 'Johnson', '0', '1981-12-16', 'S', 'NULL', 'M', 'zachary31@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '1959 Altura Drive', 'NULL', '142-555-0144', '2013-03-20', '1-2 Miles'], ['27510', '302', 'AW00027510', 'NULL', 'Cole', 'Q', 'Bailey', '0', '1982-04-02', 'S', 'NULL', 'M', 'cole16@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '6253 Panorama Dr.', 'NULL', '350-555-0145', '2013-10-27', '1-2 Miles'], ['27511', '13', 'AW00027511', 'NULL', 'Bethany', 'NULL', 'Goel', '0', '1978-01-30', 'S', 'NULL', 'F', 'bethany0@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1474 Bentley Ct.', 'NULL', '1 (11) 500 555-0172', '2013-07-25', '1-2 Miles'], ['27512', '14', 'AW00027512', 'NULL', 'Joe', 'L', 'Lopez', '0', '1961-12-01', 'S', 'NULL', 'M', 'joe19@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1996 Glenhaven Ave South', 'NULL', '1 (11) 500 555-0182', '2013-07-02', '1-2 Miles'], ['27513', '39', 'AW00027513', 'NULL', 'Cara', 'L', 'Zheng', '0', '1962-07-15', 'S', 'NULL', 'F', 'cara15@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3586 Orchid Ct.', 'NULL', '1 (11) 500 555-0114', '2013-07-05', '1-2 Miles'], ['27514', '32', 'AW00027514', 'NULL', 'Daisy', 'NULL', 'Navarro', '0', '1962-10-22', 'S', 'NULL', 'F', 'daisy6@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7427 Grove Way', 'NULL', '1 (11) 500 555-0120', '2013-07-22', '1-2 Miles'], ['27515', '2', 'AW00027515', 'NULL', 'Keith', 'P', 'Becker', '0', '1963-09-09', 'S', 'NULL', 'M', 'keith24@adventure-works.com', '100000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '4077 Chinquapin Ct', 'NULL', '1 (11) 500 555-0111', '2013-07-01', '0-1 Miles'], ['27516', '18', 'AW00027516', 'NULL', 'Charles', 'M', 'Murphy', '0', '1970-05-08', 'S', 'NULL', 'M', 'charles63@adventure-works.com', '100000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '8586 Mellowood Street', 'NULL', '1 (11) 500 555-0120', '2014-01-02', '2-5 Miles'], ['27517', '32', 'AW00027517', 'NULL', 'Jessie', 'R', 'Xu', '0', '1964-11-01', 'M', 'NULL', 'M', 'jessie17@adventure-works.com', '100000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '6917 Delaware Court', 'NULL', '1 (11) 500 555-0175', '2013-07-30', '2-5 Miles'], ['27518', '38', 'AW00027518', 'NULL', 'Stefanie', 'NULL', 'Perez', '0', '1964-11-07', 'M', 'NULL', 'F', 'stefanie18@adventure-works.com', '100000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '4601 Sundance Drive', 'NULL', '1 (11) 500 555-0170', '2013-05-06', '2-5 Miles'], ['27519', '8', 'AW00027519', 'NULL', 'Alejandro', 'A', 'Li', '0', '1964-09-30', 'S', 'NULL', 'M', 'alejandro5@adventure-works.com', '110000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '5086 Coachman Place', 'NULL', '1 (11) 500 555-0150', '2013-11-30', '0-1 Miles'], ['27520', '30', 'AW00027520', 'NULL', 'Francis', 'J', 'Navarro', '0', '1964-08-13', 'S', 'NULL', 'M', 'francis7@adventure-works.com', '110000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '1289 Pine St', 'NULL', '1 (11) 500 555-0111', '2013-05-18', '0-1 Miles'], ['27521', '307', 'AW00027521', 'NULL', 'Gabriel', 'G', 'Foster', '0', '1979-04-18', 'S', 'NULL', 'M', 'gabriel13@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '8470 Cliffside Drive', 'NULL', '195-555-0181', '2012-12-26', '2-5 Miles'], ['27522', '53', 'AW00027522', 'NULL', 'Madeline', 'A', 'Carter', '0', '1980-02-01', 'M', 'NULL', 'F', 'madeline10@adventure-works.com', '50000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '7281 Running Springs Rd.', 'NULL', '976-555-0125', '2013-08-02', '5-10 Miles'], ['27523', '609', 'AW00027523', 'NULL', 'Kayla', 'E', 'Martin', '0', '1979-09-17', 'S', 'NULL', 'F', 'kayla15@adventure-works.com', '50000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '7207 Peabody Road', 'NULL', '998-555-0163', '2012-12-19', '1-2 Miles'], ['27524', '612', 'AW00027524', 'NULL', 'Denise', 'C', 'Suri', '0', '1980-05-10', 'S', 'NULL', 'F', 'denise3@adventure-works.com', '50000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7177 Danesta Dr.', 'NULL', '863-555-0122', '2012-12-23', '1-2 Miles'], ['27525', '614', 'AW00027525', 'NULL', 'Ariana', 'K', 'Sanders', '0', '1979-12-12', 'M', 'NULL', 'F', 'ariana3@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '8742 Twinview Place', 'NULL', '736-555-0192', '2013-03-08', '1-2 Miles'], ['27526', '300', 'AW00027526', 'NULL', 'Ramon', 'D', 'Ma', '0', '1980-06-08', 'M', 'NULL', 'M', 'ramon14@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8565 Marie Drive', 'NULL', '410-555-0133', '2013-03-22', '5-10 Miles'], ['27527', '311', 'AW00027527', 'NULL', 'Tina', 'NULL', 'Sanchez', '0', '1983-04-03', 'S', 'NULL', 'F', 'tina22@adventure-works.com', '120000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '4155 Bayberry Dr.', 'NULL', '785-555-0116', '2012-12-15', '0-1 Miles'], ['27528', '338', 'AW00027528', 'NULL', 'Jade', 'D', 'Stewart', '0', '1977-04-20', 'M', 'NULL', 'F', 'jade18@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '2058 Richard Ave', 'NULL', '160-555-0117', '2013-09-10', '0-1 Miles'], ['27529', '358', 'AW00027529', 'NULL', 'Rachel', 'S', 'White', '0', '1971-08-15', 'M', 'NULL', 'F', 'rachel15@adventure-works.com', '130000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '9512 Adria Dr.', 'NULL', '454-555-0144', '2013-08-22', '0-1 Miles'], ['27530', '372', 'AW00027530', 'NULL', 'Maria', 'NULL', 'Ross', '0', '1962-11-19', 'M', 'NULL', 'F', 'maria27@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7134 Oakwood Cir', 'NULL', '669-555-0171', '2013-03-24', '5-10 Miles'], ['27531', '635', 'AW00027531', 'NULL', 'Abigail', 'E', 'Bailey', '0', '1975-02-08', 'S', 'NULL', 'F', 'abigail11@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '2431 Keith Court', 'NULL', '329-555-0153', '2012-12-12', '0-1 Miles'], ['27532', '626', 'AW00027532', 'NULL', 'Kaitlyn', 'NULL', 'Flores', '0', '1975-04-02', 'S', 'NULL', 'F', 'kaitlyn79@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1596 Bryce Dr', 'NULL', '713-555-0121', '2013-12-29', '2-5 Miles'], ['27533', '298', 'AW00027533', 'NULL', 'Allison', 'C', 'Perez', '0', '1969-09-21', 'M', 'NULL', 'F', 'allison35@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4890 Hacienda', 'NULL', '235-555-0114', '2013-04-16', '2-5 Miles'], ['27534', '302', 'AW00027534', 'NULL', 'Candace', 'NULL', 'Chapman', '0', '1970-01-18', 'S', 'NULL', 'F', 'candace1@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '7173 Oak Creek Ct', 'NULL', '338-555-0171', '2012-12-07', '5-10 Miles'], ['27535', '360', 'AW00027535', 'NULL', 'Ian', 'K', 'Cook', '0', '1969-10-24', 'S', 'NULL', 'M', 'ian79@adventure-works.com', '60000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '9234 Westbury Drive', 'NULL', '561-555-0115', '2012-12-05', '10+ Miles'], ['27536', '69', 'AW00027536', 'NULL', 'Victoria', 'R', 'Wilson', '0', '1980-11-21', 'M', 'NULL', 'F', 'victoria8@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '794 Singingwood Court', 'NULL', '291-555-0145', '2012-11-25', '2-5 Miles'], ['27537', '348', 'AW00027537', 'NULL', 'Amanda', 'A', 'Bryant', '0', '1974-02-18', 'M', 'NULL', 'F', 'amanda39@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '5520 Sierra Ridge', 'NULL', '628-555-0156', '2012-12-05', '2-5 Miles'], ['27538', '536', 'AW00027538', 'NULL', 'José', 'J', 'Jackson', '0', '1968-08-13', 'M', 'NULL', 'M', 'josé73@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '508 Somerset Place', 'NULL', '132-555-0136', '2014-01-20', '2-5 Miles'], ['27539', '310', 'AW00027539', 'NULL', 'Samuel', 'L', 'Winston', '0', '1974-01-06', 'S', 'NULL', 'M', 'samuel69@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3372 Mobile Lane', 'NULL', '618-555-0112', '2012-12-26', '2-5 Miles'], ['27540', '325', 'AW00027540', 'NULL', 'Jacqueline', 'L', 'Butler', '0', '1974-05-03', 'S', 'NULL', 'F', 'jacqueline15@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3995 Sudden Loop', 'NULL', '669-555-0115', '2012-12-18', '0-1 Miles'], ['27541', '347', 'AW00027541', 'NULL', 'Samantha', 'NULL', 'Martin', '0', '1974-04-11', 'S', 'NULL', 'F', 'samantha16@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2381 Tupelo Drive', 'NULL', '706-555-0194', '2012-12-07', '2-5 Miles'], ['27542', '616', 'AW00027542', 'NULL', 'Jessica', 'M', 'Rivera', '0', '1967-11-01', 'M', 'NULL', 'F', 'jessica10@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1329 San Jose', 'NULL', '732-555-0142', '2012-12-06', '2-5 Miles'], ['27543', '348', 'AW00027543', 'NULL', 'Katherine', 'P', 'Griffin', '0', '1967-08-23', 'M', 'NULL', 'F', 'katherine47@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '8374 Vista Del Diablo', 'NULL', '816-555-0118', '2012-12-09', '2-5 Miles'], ['27544', '299', 'AW00027544', 'NULL', 'Marissa', 'NULL', 'Hayes', '0', '1967-01-16', 'M', 'NULL', 'F', 'marissa18@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8275 Tea Lane', 'NULL', '125-555-0155', '2012-12-19', '0-1 Miles'], ['27545', '52', 'AW00027545', 'NULL', 'Lucas', 'NULL', 'Garcia', '0', '1972-01-08', 'M', 'NULL', 'M', 'lucas30@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8308 Fox Way', '# 147', '143-555-0184', '2012-11-25', '0-1 Miles'], ['27546', '334', 'AW00027546', 'NULL', 'Jackson', 'A', 'Ross', '0', '1965-11-11', 'S', 'NULL', 'M', 'jackson6@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5473 Sunshine', 'NULL', '897-555-0173', '2012-12-21', '2-5 Miles'], ['27547', '374', 'AW00027547', 'NULL', 'Kevin', 'C', 'Hill', '0', '1966-01-31', 'M', 'NULL', 'M', 'kevin51@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5146 Shadow Falls Drive', 'NULL', '330-555-0168', '2012-12-03', '0-1 Miles'], ['27548', '607', 'AW00027548', 'NULL', 'Mason', 'NULL', 'Green', '0', '1977-05-24', 'M', 'NULL', 'M', 'mason37@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3909 Lavetta Way', 'NULL', '654-555-0178', '2013-12-23', '2-5 Miles'], ['27549', '644', 'AW00027549', 'NULL', 'Hunter', 'M', 'Johnson', '0', '1966-06-03', 'M', 'NULL', 'M', 'hunter60@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1958 Weaver Court', 'NULL', '436-555-0161', '2012-11-28', '2-5 Miles'], ['27550', '71', 'AW00027550', 'NULL', 'Marcus', 'L', 'Blue', '0', '1978-11-18', 'S', 'NULL', 'M', 'marcus90@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4631 Hilltop Dr.', 'NULL', '445-555-0150', '2012-11-27', '2-5 Miles'], ['27551', '539', 'AW00027551', 'NULL', 'Antonio', 'E', 'Long', '0', '1973-04-15', 'M', 'NULL', 'M', 'antonio9@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4024 Dos Encinas', 'NULL', '568-555-0165', '2012-12-06', '0-1 Miles'], ['27552', '312', 'AW00027552', 'NULL', 'Shannon', 'C', 'Guo', '0', '1972-08-10', 'S', 'NULL', 'F', 'shannon16@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '9277 Ridgewood Court', 'NULL', '362-555-0132', '2012-12-07', '2-5 Miles'], ['27553', '358', 'AW00027553', 'NULL', 'Julia', 'M', 'Sanders', '0', '1973-05-30', 'S', 'NULL', 'F', 'julia65@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '9520 Milburn Dr.', 'NULL', '140-555-0190', '2012-11-29', '2-5 Miles'], ['27554', '331', 'AW00027554', 'NULL', 'Jordyn', 'J', 'West', '0', '1971-07-22', 'M', 'NULL', 'F', 'jordyn13@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4051 Sun View Terrace', 'NULL', '967-555-0110', '2012-12-16', '2-5 Miles'], ['27555', '374', 'AW00027555', 'NULL', 'Isabella', 'NULL', 'Alexander', '0', '1966-02-09', 'M', 'NULL', 'F', 'isabella29@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8714 St. Paul Way', 'NULL', '973-555-0151', '2012-12-10', '2-5 Miles'], ['27556', '552', 'AW00027556', 'NULL', 'Amanda', 'NULL', 'Cox', '0', '1965-12-06', 'M', 'NULL', 'F', 'amanda10@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '643 Tri-state Ave.', 'NULL', '724-555-0144', '2012-12-26', '2-5 Miles'], ['27557', '53', 'AW00027557', 'NULL', 'Richard', 'NULL', 'Thomas', '0', '1966-05-15', 'M', 'NULL', 'M', 'richard51@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9790 Deer Creek Lane', 'NULL', '536-555-0180', '2012-11-02', '0-1 Miles'], ['27558', '638', 'AW00027558', 'NULL', 'Caleb', 'J', 'Kumar', '0', '1965-08-02', 'M', 'NULL', 'M', 'caleb24@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7415 Chaparral Court', 'NULL', '445-555-0186', '2012-12-06', '2-5 Miles'], ['27559', '641', 'AW00027559', 'NULL', 'Emily', 'R', 'Rodriguez', '0', '1971-02-22', 'M', 'NULL', 'F', 'emily21@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8826 D Argyll', 'NULL', '726-555-0111', '2012-12-24', '2-5 Miles'], ['27560', '59', 'AW00027560', 'NULL', 'Grace', 'M', 'Patterson', '0', '1965-07-12', 'M', 'NULL', 'F', 'grace58@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9011 Blackburn Ct.', 'NULL', '259-555-0112', '2012-11-22', '2-5 Miles'], ['27561', '383', 'AW00027561', 'NULL', 'Kimberly', 'L', 'Brooks', '0', '1964-08-19', 'S', 'NULL', 'F', 'kimberly4@adventure-works.com', '60000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '1526 Green Road', 'NULL', '562-555-0198', '2013-02-26', '2-5 Miles'], ['27562', '68', 'AW00027562', 'NULL', 'Haley', 'S', 'Bailey', '0', '1970-06-19', 'M', 'NULL', 'F', 'haley7@adventure-works.com', '60000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5643 Palms Dr.', 'NULL', '569-555-0170', '2014-01-24', '2-5 Miles'], ['27563', '552', 'AW00027563', 'NULL', 'Devin', 'NULL', 'Bennett', '0', '1964-07-22', 'M', 'NULL', 'M', 'devin67@adventure-works.com', '60000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1154 Regina Lane', 'NULL', '978-555-0168', '2013-06-28', '2-5 Miles'], ['27564', '301', 'AW00027564', 'NULL', 'Kevin', 'NULL', 'Lal', '0', '1965-02-17', 'S', 'NULL', 'M', 'kevin32@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '856 Summit View Dr', 'NULL', '624-555-0194', '2013-05-26', '2-5 Miles'], ['27565', '315', 'AW00027565', 'NULL', 'Kayla', 'L', 'Wood', '0', '1964-12-02', 'M', 'NULL', 'F', 'kayla26@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '1142 Firestone Dr.', 'NULL', '310-555-0119', '2013-02-27', '0-1 Miles'], ['27566', '374', 'AW00027566', 'NULL', 'Tristan', 'NULL', 'Long', '0', '1965-03-26', 'M', 'NULL', 'M', 'tristan10@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '6035 Lacorso Dr.', 'NULL', '591-555-0118', '2013-06-19', '2-5 Miles'], ['27567', '638', 'AW00027567', 'NULL', 'Miranda', 'J', 'Foster', '0', '1965-06-21', 'M', 'NULL', 'F', 'miranda16@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '9761 Martindale Drive', 'NULL', '350-555-0169', '2013-11-10', '0-1 Miles'], ['27568', '545', 'AW00027568', 'NULL', 'Miguel', 'NULL', 'Evans', '0', '1970-03-07', 'S', 'NULL', 'M', 'miguel43@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '5766 Newcastle Road', 'NULL', '726-555-0187', '2012-12-25', '0-1 Miles'], ['27569', '385', 'AW00027569', 'NULL', 'Jocelyn', 'E', 'Wood', '0', '1970-10-30', 'S', 'NULL', 'F', 'jocelyn2@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '8192 Scenic Ct', 'NULL', '538-555-0197', '2012-12-10', '2-5 Miles'], ['27570', '612', 'AW00027570', 'NULL', 'Natasha', 'NULL', 'Navarro', '0', '1976-05-09', 'S', 'NULL', 'F', 'natasha9@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '1029 Birchwood Dr', 'NULL', '219-555-0118', '2012-12-04', '0-1 Miles'], ['27571', '310', 'AW00027571', 'NULL', 'Shannon', 'NULL', 'Gao', '0', '1981-04-13', 'M', 'NULL', 'F', 'shannon14@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '7772 Golden Meadow', 'NULL', '784-555-0116', '2012-12-27', '0-1 Miles'], ['27572', '316', 'AW00027572', 'NULL', 'Isaiah', 'NULL', 'Carter', '0', '1975-03-06', 'M', 'NULL', 'M', 'isaiah34@adventure-works.com', '80000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9136 San Remo Ct.', 'NULL', '776-555-0160', '2012-12-09', '0-1 Miles'], ['27573', '374', 'AW00027573', 'NULL', 'Hunter', 'NULL', 'Lal', '0', '1963-12-19', 'M', 'NULL', 'M', 'hunter24@adventure-works.com', '80000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8299 Leed Court West', 'NULL', '152-555-0134', '2012-12-05', '2-5 Miles'], ['27574', '369', 'AW00027574', 'NULL', 'Madeline', 'D', 'Hill', '0', '1974-10-06', 'M', 'NULL', 'F', 'madeline19@adventure-works.com', '80000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3064 Whyte Park Ave.', 'NULL', '779-555-0187', '2012-12-17', '2-5 Miles'], ['27575', '301', 'AW00027575', 'NULL', 'Emma', 'J', 'Wilson', '0', '1969-08-01', 'S', 'NULL', 'F', 'emma6@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '8195 Geary Ct.', 'NULL', '165-555-0188', '2012-11-30', '0-1 Miles'], ['27576', '545', 'AW00027576', 'NULL', 'Caroline', 'NULL', 'Gonzales', '0', '1969-08-30', 'M', 'NULL', 'F', 'caroline18@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '2562 Meadowbrook Drive', 'NULL', '602-555-0120', '2012-12-11', '0-1 Miles'], ['27577', '632', 'AW00027577', 'NULL', 'Patrick', 'K', 'Cook', '0', '1963-12-02', 'S', 'NULL', 'M', 'patrick26@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3488 Cook St.', 'NULL', '979-555-0159', '2011-01-06', '0-1 Miles'], ['27578', '334', 'AW00027578', 'NULL', 'Courtney', 'NULL', 'Carter', '0', '1964-05-07', 'M', 'NULL', 'F', 'courtney8@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6681 Golf Club Rd.', 'NULL', '172-555-0126', '2011-01-14', '2-5 Miles'], ['27579', '307', 'AW00027579', 'NULL', 'Bruce', 'NULL', 'Suarez', '0', '1963-09-11', 'M', 'NULL', 'M', 'bruce40@adventure-works.com', '70000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '2943 Eagle Peak Road', 'NULL', '347-555-0197', '2013-10-18', '2-5 Miles'], ['27580', '18', 'AW00027580', 'NULL', 'Krista', 'L', 'Blanco', '0', '1975-04-19', 'M', 'NULL', 'F', 'krista15@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '4215 Greenhills Circle', 'NULL', '1 (11) 500 555-0198', '2013-10-06', '0-1 Miles'], ['27581', '25', 'AW00027581', 'NULL', 'Phillip', 'NULL', 'Kapoor', '0', '1975-05-05', 'M', 'NULL', 'M', 'phillip2@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '1907 Pinecrest Dr', 'NULL', '1 (11) 500 555-0136', '2013-08-10', '0-1 Miles'], ['27582', '20', 'AW00027582', 'NULL', 'Latoya', 'A', 'Nath', '0', '1975-09-09', 'S', 'NULL', 'F', 'latoya17@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '1362 Geary Road', 'NULL', '1 (11) 500 555-0183', '2013-08-08', '0-1 Miles'], ['27583', '28', 'AW00027583', 'NULL', 'Calvin', 'E', 'Xu', '0', '1975-09-06', 'M', 'NULL', 'M', 'calvin5@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '1779 Rose Drive', 'NULL', '1 (11) 500 555-0160', '2013-08-08', '2-5 Miles'], ['27584', '38', 'AW00027584', 'NULL', 'Tina', 'C', 'Malhotra', '0', '1981-03-09', 'S', 'NULL', 'F', 'tina6@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '7076 Sol Street', 'NULL', '1 (11) 500 555-0164', '2013-08-21', '0-1 Miles'], ['27585', '31', 'AW00027585', 'NULL', 'Candace', 'NULL', 'Subram', '0', '1981-02-23', 'M', 'NULL', 'F', 'candace13@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '30 Sun View Terr.', 'NULL', '1 (11) 500 555-0196', '2013-08-14', '0-1 Miles'], ['27586', '2', 'AW00027586', 'NULL', 'Jenny', 'NULL', 'She', '0', '1974-02-12', 'M', 'NULL', 'F', 'jenny25@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3829 Baltic Sea Ct.', 'NULL', '1 (11) 500 555-0123', '2013-11-16', '2-5 Miles'], ['27587', '15', 'AW00027587', 'NULL', 'Cara', 'NULL', 'Li', '0', '1973-09-13', 'S', 'NULL', 'F', 'cara2@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4315 Glenside Ct.', 'NULL', '1 (11) 500 555-0183', '2013-11-24', '0-1 Miles'], ['27588', '6', 'AW00027588', 'NULL', 'Virginia', 'M', 'Chandra', '0', '1974-05-13', 'S', 'NULL', 'F', 'virginia3@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '3120 Levee Rd.', 'NULL', '1 (11) 500 555-0141', '2013-11-23', '10+ Miles'], ['27589', '19', 'AW00027589', 'NULL', 'Derek', 'L', 'Yuan', '0', '1978-05-20', 'S', 'NULL', 'M', 'derek6@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1407 Leslie Ave.', 'NULL', '1 (11) 500 555-0143', '2013-12-01', '0-1 Miles'], ['27590', '35', 'AW00027590', 'NULL', 'Dominic', 'B', 'Lopez', '0', '1972-10-19', 'M', 'NULL', 'M', 'dominic17@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '4092 Meager Dr.', 'NULL', '1 (11) 500 555-0147', '2013-12-23', '2-5 Miles'], ['27591', '3', 'AW00027591', 'NULL', 'Gerald', 'M', 'Serrano', '0', '1973-02-13', 'M', 'NULL', 'M', 'gerald24@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '4107 St. Raphael Drive', 'NULL', '1 (11) 500 555-0118', '2013-12-21', '10+ Miles'], ['27592', '10', 'AW00027592', 'NULL', 'Hector', 'NULL', 'Ruiz', '0', '1973-05-26', 'S', 'NULL', 'M', 'hector0@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '3623 Houston Ct.', 'NULL', '1 (11) 500 555-0164', '2013-08-10', '10+ Miles'], ['27593', '3', 'AW00027593', 'NULL', 'Jorge', 'NULL', 'Lin', '0', '1978-12-12', 'M', 'NULL', 'M', 'jorge9@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '2369 Whitehaven Dr.', 'NULL', '1 (11) 500 555-0132', '2013-09-15', '10+ Miles'], ['27594', '12', 'AW00027594', 'NULL', 'Nicolas', 'A', 'Andersen', '0', '1972-11-10', 'S', 'NULL', 'M', 'nicolas11@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '5473 Sunshine', 'NULL', '1 (11) 500 555-0112', '2013-03-12', '0-1 Miles'], ['27595', '7', 'AW00027595', 'NULL', 'Jamie', 'S', 'Wu', '0', '1972-03-21', 'M', 'NULL', 'F', 'jamie9@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '5435 Jacobsen Street', 'NULL', '1 (11) 500 555-0143', '2013-12-18', '0-1 Miles'], ['27596', '21', 'AW00027596', 'NULL', 'Edgar', 'A', 'Raman', '0', '1977-03-11', 'M', 'NULL', 'M', 'edgar13@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '283 Winterberry Ct', 'NULL', '1 (11) 500 555-0127', '2013-04-20', '0-1 Miles'], ['27597', '27', 'AW00027597', 'NULL', 'Carl', 'NULL', 'Jai', '0', '1972-03-04', 'S', 'NULL', 'M', 'carl11@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '6242 Cleveland Avenue', 'NULL', '1 (11) 500 555-0116', '2013-09-28', '0-1 Miles'], ['27598', '40', 'AW00027598', 'NULL', 'Marco', 'NULL', 'Gonzalez', '0', '1971-11-11', 'S', 'NULL', 'M', 'marco19@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '5951 Balance Ct.', 'NULL', '1 (11) 500 555-0173', '2013-09-01', '1-2 Miles'], ['27599', '39', 'AW00027599', 'NULL', 'Cory', 'B', 'Subram', '0', '1971-08-01', 'M', 'NULL', 'M', 'cory11@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '1240 Hitchcock', 'NULL', '1 (11) 500 555-0163', '2013-09-11', '1-2 Miles'], ['27600', '372', 'AW00027600', 'NULL', 'Destiny', 'J', 'Sanchez', '0', '1959-03-20', 'S', 'NULL', 'F', 'destiny24@adventure-works.com', '60000.00', '3', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8380 Paso Del Rio Court', 'NULL', '547-555-0191', '2013-10-17', '2-5 Miles'], ['27601', '301', 'AW00027601', 'NULL', 'Sydney', 'C', 'Rogers', '0', '1970-05-06', 'S', 'NULL', 'F', 'sydney3@adventure-works.com', '60000.00', '3', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '1016 Park Avenue', 'NULL', '958-555-0163', '2011-01-02', '2-5 Miles'], ['27602', '52', 'AW00027602', 'NULL', 'Wyatt', 'C', 'Campbell', '0', '1958-10-05', 'S', 'NULL', 'M', 'wyatt44@adventure-works.com', '60000.00', '3', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '1578 Grand Drive', 'NULL', '627-555-0133', '2012-12-17', '2-5 Miles'], ['27603', '347', 'AW00027603', 'NULL', 'Mya', 'L', 'Barnes', '0', '1962-09-08', 'M', 'NULL', 'F', 'mya5@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5195 Donald Dr', 'NULL', '872-555-0133', '2013-07-06', '5-10 Miles'], ['27604', '632', 'AW00027604', 'NULL', 'Richard', 'NULL', 'Brooks', '0', '1962-08-31', 'M', 'NULL', 'M', 'richard81@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5005 Appalachian Dr.', 'NULL', '163-555-0120', '2011-01-07', '5-10 Miles'], ['27605', '638', 'AW00027605', 'NULL', 'Miguel', 'NULL', 'Martinez', '0', '1973-07-18', 'M', 'NULL', 'M', 'miguel17@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5656 Via Delaware', 'NULL', '455-555-0163', '2011-01-26', '5-10 Miles'], ['27606', '545', 'AW00027606', 'NULL', 'Courtney', 'A', 'Edwards', '0', '1962-11-24', 'S', 'NULL', 'F', 'courtney1@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '0', '1627 Ashford Court', 'NULL', '257-555-0188', '2011-01-01', '0-1 Miles'], ['27607', '53', 'AW00027607', 'NULL', 'Joshua', 'A', 'Martin', '0', '1962-02-08', 'M', 'NULL', 'M', 'joshua16@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1826 Corte Del Sol', 'NULL', '194-555-0131', '2013-03-21', '5-10 Miles'], ['27608', '609', 'AW00027608', 'NULL', 'Hector', 'E', 'Hernandez', '0', '1967-07-21', 'M', 'NULL', 'M', 'hector2@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9204 Lexington Road', 'NULL', '914-555-0151', '2013-11-04', '5-10 Miles'], ['27609', '300', 'AW00027609', 'NULL', 'Audrey', 'J', 'Alonso', '0', '1967-11-01', 'M', 'NULL', 'F', 'audrey9@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1961 Sahara Drive', 'NULL', '143-555-0118', '2013-07-02', '5-10 Miles'], ['27610', '372', 'AW00027610', 'NULL', 'Jeremy', 'NULL', 'Washington', '0', '1961-08-24', 'S', 'NULL', 'M', 'jeremy28@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2189 Alamo Way', 'NULL', '243-555-0117', '2013-05-18', '1-2 Miles'], ['27611', '316', 'AW00027611', 'NULL', 'Jack', 'W', 'Edwards', '0', '1962-06-02', 'M', 'NULL', 'M', 'jack36@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6177 Golf Club Road', 'NULL', '576-555-0121', '2011-01-26', '5-10 Miles'], ['27612', '299', 'AW00027612', 'NULL', 'Lucas', 'NULL', 'Hill', '0', '1978-11-18', 'M', 'NULL', 'M', 'lucas45@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8521 C Mt. Hood Circle', 'NULL', '219-555-0196', '2011-01-03', '5-10 Miles'], ['27613', '59', 'AW00027613', 'NULL', 'Alexia', 'NULL', 'Washington', '0', '1973-03-14', 'S', 'NULL', 'F', 'alexia11@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', 'P.O. Box 1052', 'NULL', '507-555-0147', '2012-12-04', '1-2 Miles'], ['27614', '609', 'AW00027614', 'NULL', 'Warren', 'NULL', 'Ye', '0', '1962-01-05', 'M', 'NULL', 'M', 'warren25@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '4224 Almond Avve', 'NULL', '381-555-0192', '2011-01-16', '1-2 Miles'], ['27615', '331', 'AW00027615', 'NULL', 'Maria', 'E', 'Henderson', '0', '1970-09-30', 'M', 'NULL', 'F', 'maria28@adventure-works.com', '120000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '9830 Corcoran Road', 'NULL', '479-555-0163', '2011-01-20', '2-5 Miles'], ['27616', '335', 'AW00027616', 'NULL', 'Emma', 'W', 'Brown', '0', '1971-06-10', 'S', 'NULL', 'F', 'emma3@adventure-works.com', '120000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '3455 Southbrook Dr.', 'NULL', '231-555-0147', '2010-12-31', '2-5 Miles'], ['27617', '631', 'AW00027617', 'NULL', 'Morgan', 'NULL', 'Phillips', '0', '1980-07-18', 'S', 'NULL', 'F', 'morgan4@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '9191 Camelback Ct.', 'NULL', '179-555-0167', '2011-01-12', '5-10 Miles'], ['27618', '641', 'AW00027618', 'NULL', 'Melanie', 'NULL', 'Diaz', '0', '1975-09-19', 'M', 'NULL', 'F', 'melanie9@adventure-works.com', '100000.00', '5', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '1525 Waterhigh St', '# 198', '208-555-0139', '2013-08-03', '0-1 Miles'], ['27619', '307', 'AW00027619', 'NULL', 'Joseph', 'F', 'Lee', '0', '1975-11-24', 'S', 'NULL', 'M', 'joseph29@adventure-works.com', '120000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '8713 Yosemite Ct.', 'NULL', '157-555-0165', '2013-07-11', '2-5 Miles'], ['27620', '310', 'AW00027620', 'NULL', 'Nicole', 'A', 'Hughes', '0', '1975-09-02', 'S', 'NULL', 'F', 'nicole60@adventure-works.com', '130000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '9472 Juliet Court', 'NULL', '470-555-0112', '2013-09-22', '0-1 Miles'], ['27621', '369', 'AW00027621', 'NULL', 'Edward', 'NULL', 'Brown', '0', '1975-01-23', 'S', 'NULL', 'M', 'edward26@adventure-works.com', '160000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '4', '2226 Cleveland Avenue', 'NULL', '238-555-0128', '2010-12-31', '1-2 Miles'], ['27622', '611', 'AW00027622', 'NULL', 'Lucas', 'NULL', 'Wilson', '0', '1967-06-15', 'M', 'NULL', 'M', 'lucas20@adventure-works.com', '70000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '0', '1555 Lace Drive', 'NULL', '434-555-0196', '2013-09-02', '0-1 Miles'], ['27623', '336', 'AW00027623', 'NULL', 'Christian', 'L', 'Jackson', '0', '1962-06-02', 'S', 'NULL', 'M', 'christian47@adventure-works.com', '80000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '6059 Dutch Slough Rd.', 'NULL', '766-555-0176', '2011-01-11', '0-1 Miles'], ['27624', '361', 'AW00027624', 'NULL', 'Connor', 'NULL', 'Russell', '0', '1967-01-08', 'M', 'NULL', 'M', 'connor14@adventure-works.com', '80000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '359 Pleasant Hill Rd', 'NULL', '529-555-0118', '2013-02-01', '2-5 Miles'], ['27625', '542', 'AW00027625', 'NULL', 'Alexandria', 'W', 'Hughes', '0', '1961-09-29', 'S', 'NULL', 'F', 'alexandria11@adventure-works.com', '90000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '0', '3407 Oak Brook Place', 'NULL', '638-555-0128', '2011-01-11', '10+ Miles'], ['27626', '315', 'AW00027626', 'NULL', 'Connor', 'NULL', 'Hayes', '0', '1940-02-29', 'S', 'NULL', 'M', 'connor17@adventure-works.com', '90000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '1681 Lighthouse Way', 'NULL', '468-555-0178', '2013-11-22', '5-10 Miles'], ['27627', '337', 'AW00027627', 'NULL', 'Jason', 'M', 'Yang', '0', '1940-01-17', 'S', 'NULL', 'M', 'jason25@adventure-works.com', '130000.00', '1', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '2441 Talbart St.', 'NULL', '379-555-0177', '2013-08-11', '1-2 Miles'], ['27628', '51', 'AW00027628', 'NULL', 'Jasmine', 'NULL', 'Hughes', '0', '1974-06-17', 'S', 'NULL', 'F', 'jasmine50@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '4650 Carlos Dr.', 'NULL', '620-555-0130', '2013-08-05', '0-1 Miles'], ['27629', '632', 'AW00027629', 'NULL', 'Jose', 'D', 'Bryant', '0', '1969-01-18', 'M', 'NULL', 'M', 'jose12@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '9082 Rolling Green Circle', 'NULL', '931-555-0117', '2013-12-30', '10+ Miles'], ['27630', '307', 'AW00027630', 'NULL', 'Xavier', 'A', 'Coleman', '0', '1969-04-23', 'S', 'NULL', 'M', 'xavier47@adventure-works.com', '110000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '6682 Fountainhead Ct.', 'NULL', '133-555-0143', '2013-05-19', '1-2 Miles'], ['27631', '348', 'AW00027631', 'NULL', 'Gabriella', 'NULL', 'Phillips', '0', '1980-04-30', 'S', 'NULL', 'F', 'gabriella28@adventure-works.com', '130000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '8434 Kenmore', 'NULL', '133-555-0169', '2013-03-17', '1-2 Miles'], ['27632', '49', 'AW00027632', 'NULL', 'Sheila', 'M', 'Ortega', '0', '1967-11-07', 'M', 'NULL', 'F', 'sheila20@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4501 Terrace Road', 'NULL', '274-555-0130', '2013-09-29', '5-10 Miles'], ['27633', '69', 'AW00027633', 'NULL', 'Richard', 'NULL', 'Russell', '0', '1967-12-13', 'M', 'NULL', 'M', 'richard75@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '8155 Arnold Dr.', 'NULL', '372-555-0160', '2013-07-12', '0-1 Miles'], ['27634', '70', 'AW00027634', 'NULL', 'Jacqueline', 'S', 'Cooper', '0', '1968-05-22', 'S', 'NULL', 'F', 'jacqueline33@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '3888 Pastime Drive', 'NULL', '991-555-0147', '2013-11-15', '5-10 Miles'], ['27635', '612', 'AW00027635', 'NULL', 'Grace', 'E', 'Perry', '0', '1979-04-02', 'M', 'NULL', 'F', 'grace55@adventure-works.com', '90000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '7943 Cunha Ct.', 'NULL', '142-555-0147', '2013-12-15', '5-10 Miles'], ['27636', '618', 'AW00027636', 'NULL', 'Paige', 'NULL', 'Murphy', '0', '1968-04-03', 'M', 'NULL', 'F', 'paige39@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '8650 Branch Street', 'NULL', '762-555-0198', '2011-01-11', '5-10 Miles'], ['27637', '543', 'AW00027637', 'NULL', 'Gabrielle', 'NULL', 'Cook', '0', '1967-07-07', 'S', 'NULL', 'F', 'gabrielle4@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '2786 Class Avenue', 'NULL', '297-555-0143', '2013-07-04', '1-2 Miles'], ['27638', '627', 'AW00027638', 'NULL', 'Marcus', 'T', 'Brooks', '0', '1973-03-12', 'S', 'NULL', 'M', 'marcus75@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '7008 Buckingham Dr.', 'NULL', '134-555-0197', '2013-06-02', '1-2 Miles'], ['27639', '644', 'AW00027639', 'NULL', 'Emma', 'H', 'Price', '0', '1968-03-19', 'S', 'NULL', 'F', 'emma48@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '3886 Delta View Ln.', 'NULL', '695-555-0138', '2013-07-28', '1-2 Miles'], ['27640', '311', 'AW00027640', 'NULL', 'Lauren', 'NULL', 'Thomas', '0', '1968-06-19', 'S', 'NULL', 'F', 'lauren29@adventure-works.com', '120000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '8786 Croyden Dr.', 'NULL', '937-555-0159', '2014-01-27', '1-2 Miles'], ['27641', '316', 'AW00027641', 'NULL', 'Miranda', 'NULL', 'Alexander', '0', '1967-11-07', 'S', 'NULL', 'F', 'miranda19@adventure-works.com', '120000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '3740 Azalea Avenue', 'NULL', '299-555-0161', '2011-01-28', '5-10 Miles'], ['27642', '331', 'AW00027642', 'NULL', 'Kayla', 'G', 'Johnson', '0', '1967-08-14', 'S', 'NULL', 'F', 'kayla1@adventure-works.com', '120000.00', '1', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '4', '290 Shale Drive', 'NULL', '152-555-0190', '2013-09-21', '2-5 Miles'], ['27643', '64', 'AW00027643', 'NULL', 'Austin', 'NULL', 'Henderson', '0', '1967-06-27', 'S', 'NULL', 'M', 'austin0@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '5485 Wee Donegal', 'NULL', '246-555-0175', '2013-10-12', '2-5 Miles'], ['27644', '618', 'AW00027644', 'NULL', 'Alexandria', 'A', 'Sanchez', '0', '1972-08-06', 'M', 'NULL', 'F', 'alexandria44@adventure-works.com', '90000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '9411 Glenwood Dr.', 'NULL', '778-555-0194', '2013-09-18', '1-2 Miles'], ['27645', '312', 'AW00027645', 'NULL', 'Colin', 'G', 'Anand', '0', '1972-08-14', 'M', 'NULL', 'M', 'colin45@adventure-works.com', '120000.00', '1', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '7626 Sinclair Avenue', 'NULL', '199-555-0186', '2010-12-30', '5-10 Miles'], ['27646', '329', 'AW00027646', 'NULL', 'Jackson', 'L', 'Li', '0', '1967-05-13', 'S', 'NULL', 'M', 'jackson28@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '7182 Benedict Ct', 'NULL', '584-555-0167', '2011-01-13', '2-5 Miles'], ['27647', '361', 'AW00027647', 'NULL', 'Daniel', 'L', 'Moore', '0', '1972-09-21', 'M', 'NULL', 'M', 'daniel3@adventure-works.com', '150000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '8672 Price Lane', 'NULL', '433-555-0110', '2014-01-11', '2-5 Miles'], ['27648', '644', 'AW00027648', 'NULL', 'Chase', 'NULL', 'Rogers', '0', '1961-05-08', 'S', 'NULL', 'M', 'chase20@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1862 Court Lane', 'NULL', '713-555-0135', '2013-07-12', '1-2 Miles'], ['27649', '637', 'AW00027649', 'NULL', 'Evan', 'C', 'Bailey', '0', '1960-12-05', 'M', 'NULL', 'M', 'evan17@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '8546 Wilson Court', 'NULL', '572-555-0125', '2011-01-16', '1-2 Miles'], ['27650', '542', 'AW00027650', 'NULL', 'Richard', 'NULL', 'Griffin', '0', '1960-08-14', 'M', 'NULL', 'M', 'richard76@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '0', '4524 P St.', 'NULL', '111-555-0166', '2013-09-21', '5-10 Miles'], ['27651', '311', 'AW00027651', 'NULL', 'Jeremy', 'NULL', 'Murphy', '0', '1961-05-05', 'M', 'NULL', 'M', 'jeremy43@adventure-works.com', '90000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '4487 Ahwanee Lane', 'NULL', '182-555-0163', '2011-01-25', '10+ Miles'], ['27652', '553', 'AW00027652', 'NULL', 'Miguel', 'G', 'Foster', '0', '1960-01-15', 'M', 'NULL', 'M', 'miguel62@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2397 Hamlet', 'NULL', '305-555-0196', '2013-08-05', '5-10 Miles'], ['27653', '49', 'AW00027653', 'NULL', 'Kellie', 'NULL', 'Rubio', '0', '1940-11-06', 'M', 'NULL', 'F', 'kellie18@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8323 Rock Oak Road', 'NULL', '632-555-0135', '2013-05-18', '5-10 Miles'], ['27654', '299', 'AW00027654', 'NULL', 'Carrie', 'E', 'Diaz', '0', '1940-08-15', 'M', 'NULL', 'F', 'carrie2@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2690 Frayne Ct.', 'NULL', '441-555-0166', '2013-03-28', '5-10 Miles'], ['27655', '312', 'AW00027655', 'NULL', 'Melinda', 'NULL', 'Alvarez', '0', '1941-06-03', 'S', 'NULL', 'F', 'melinda1@adventure-works.com', '90000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4192 May Rd.', 'NULL', '851-555-0128', '2013-10-11', '5-10 Miles'], ['27656', '68', 'AW00027656', 'NULL', 'Gabriel', 'NULL', 'Bryant', '0', '1942-06-10', 'S', 'NULL', 'M', 'gabriel15@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '6588 St George Dr', 'NULL', '596-555-0113', '2013-08-05', '1-2 Miles'], ['27657', '432', 'AW00027657', 'NULL', 'Frederick', 'NULL', 'Chandra', '0', '1942-04-15', 'M', 'NULL', 'M', 'frederick1@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '5698 Elmonte Drive', 'NULL', '949-555-0166', '2013-11-28', '1-2 Miles'], ['27658', '539', 'AW00027658', 'NULL', 'Cole', 'NULL', 'Gray', '0', '1942-01-03', 'S', 'NULL', 'M', 'cole8@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5988 H Pine Creek Way', 'NULL', '332-555-0128', '2013-04-03', '5-10 Miles'], ['27659', '637', 'AW00027659', 'NULL', 'Jesse', 'NULL', 'Lopez', '0', '1941-12-19', 'M', 'NULL', 'M', 'jesse38@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4800 Atchinson Stage Ct.', 'NULL', '993-555-0117', '2013-01-28', '5-10 Miles'], ['27660', '311', 'AW00027660', 'NULL', 'Gerald', 'A', 'Carlson', '0', '1941-07-24', 'M', 'NULL', 'M', 'gerald26@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2753 Rubiem Ct.', 'NULL', '188-555-0160', '2013-12-24', '5-10 Miles'], ['27661', '343', 'AW00027661', 'NULL', 'Christopher', 'F', 'Martinez', '0', '1942-02-07', 'M', 'NULL', 'M', 'christopher17@adventure-works.com', '120000.00', '1', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '7299 Pheasant Ct.', 'NULL', '491-555-0116', '2013-02-24', '5-10 Miles'], ['27662', '301', 'AW00027662', 'NULL', 'Bianca', 'G', 'Zheng', '0', '1965-12-13', 'S', 'NULL', 'F', 'bianca16@adventure-works.com', '110000.00', '5', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '5149 Thistle Court', 'NULL', '644-555-0149', '2011-01-24', '5-10 Miles'], ['27663', '368', 'AW00027663', 'NULL', 'Aaron', 'P', 'Collins', '0', '1971-09-21', 'S', 'NULL', 'M', 'aaron35@adventure-works.com', '170000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '6767 Stinson', 'NULL', '170-555-0177', '2011-01-25', '0-1 Miles'], ['27664', '383', 'AW00027664', 'NULL', 'Luis', 'NULL', 'Roberts', '0', '1971-04-18', 'M', 'NULL', 'M', 'luis37@adventure-works.com', '170000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '621 Winding Lane', 'NULL', '578-555-0130', '2013-04-15', '0-1 Miles'], ['27665', '314', 'AW00027665', 'NULL', 'Miguel', 'NULL', 'Patterson', '0', '1959-12-13', 'S', 'NULL', 'M', 'miguel57@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5133 Serrana Ct.', 'NULL', '113-555-0189', '2013-05-28', '5-10 Miles'], ['27666', '322', 'AW00027666', 'NULL', 'Alyssa', 'L', 'Garcia', '0', '1960-01-23', 'M', 'NULL', 'F', 'alyssa16@adventure-works.com', '60000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5975 Grove Way', 'NULL', '197-555-0115', '2011-01-06', '5-10 Miles'], ['27667', '314', 'AW00027667', 'NULL', 'Jessica', 'M', 'Sanchez', '0', '1960-06-20', 'M', 'NULL', 'F', 'jessica1@adventure-works.com', '70000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '1', '6670 Del Rey St', 'NULL', '135-555-0163', '2011-01-19', '1-2 Miles'], ['27668', '623', 'AW00027668', 'NULL', 'Kevin', 'NULL', 'Gonzalez', '0', '1959-04-25', 'S', 'NULL', 'M', 'kevin46@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1299 Bundros Court', 'NULL', '499-555-0114', '2011-01-03', '5-10 Miles'], ['27669', '312', 'AW00027669', 'NULL', 'Katelyn', 'I', 'Allen', '0', '1970-05-20', 'M', 'NULL', 'F', 'katelyn47@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9602 C St.', 'NULL', '520-555-0131', '2011-01-25', '5-10 Miles'], ['27670', '347', 'AW00027670', 'NULL', 'Kayla', 'W', 'Long', '0', '1970-01-01', 'S', 'NULL', 'F', 'kayla33@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '2597 Sand Pointe Lane', 'NULL', '156-555-0146', '2011-01-12', '1-2 Miles'], ['27671', '607', 'AW00027671', 'NULL', 'Jeremiah', 'D', 'Martinez', '0', '1958-09-01', 'S', 'NULL', 'M', 'jeremiah8@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '9963 Pacific', 'NULL', '400-555-0193', '2011-01-09', '1-2 Miles'], ['27672', '59', 'AW00027672', 'NULL', 'Justin', 'W', 'Brown', '0', '1958-10-05', 'S', 'NULL', 'M', 'justin35@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2038 Sundance Drive', 'NULL', '986-555-0154', '2011-08-25', '5-10 Miles'], ['27673', '611', 'AW00027673', 'NULL', 'Jennifer', 'M', 'Young', '0', '1958-11-20', 'S', 'NULL', 'F', 'jennifer27@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4943 Tupelo Drive', 'NULL', '366-555-0167', '2011-01-28', '5-10 Miles'], ['27674', '336', 'AW00027674', 'NULL', 'Gabrielle', 'NULL', 'Rivera', '0', '1957-12-20', 'M', 'NULL', 'F', 'gabrielle8@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3681 South St.', 'NULL', '605-555-0165', '2013-08-20', '5-10 Miles'], ['27675', '548', 'AW00027675', 'NULL', 'Arianna', 'M', 'Bell', '0', '1958-04-13', 'M', 'NULL', 'F', 'arianna36@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6210 Mt. Tooth Place', 'NULL', '408-555-0158', '2013-06-14', '5-10 Miles'], ['27676', '355', 'AW00027676', 'NULL', 'Trevor', 'NULL', 'Flores', '0', '1956-10-07', 'M', 'NULL', 'M', 'trevor12@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5608 Montanya Court', 'NULL', '121-555-0136', '2014-01-13', '5-10 Miles'], ['27677', '612', 'AW00027677', 'NULL', 'Marissa', 'NULL', 'Powell', '0', '1957-02-22', 'M', 'NULL', 'F', 'marissa6@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4644 St. Andrews Way', 'NULL', '833-555-0117', '2013-07-22', '5-10 Miles'], ['27678', '542', 'AW00027678', 'NULL', 'Angel', 'NULL', 'Carter', '0', '1957-03-10', 'S', 'NULL', 'M', 'angel33@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '6440 Co Road', 'NULL', '222-555-0149', '2011-02-17', '1-2 Miles'], ['27679', '633', 'AW00027679', 'NULL', 'Kayla', 'NULL', 'Walker', '0', '1957-06-12', 'M', 'NULL', 'F', 'kayla22@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1867 Royal Ann Lane', 'NULL', '942-555-0136', '2013-07-29', '5-10 Miles'], ['27680', '307', 'AW00027680', 'NULL', 'Benjamin', 'D', 'Foster', '0', '1962-08-02', 'S', 'NULL', 'M', 'benjamin17@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2853 Rollinghill Way', 'NULL', '154-555-0125', '2013-04-07', '5-10 Miles'], ['27681', '307', 'AW00027681', 'NULL', 'Olivia', 'NULL', 'Jackson', '0', '1956-12-07', 'M', 'NULL', 'F', 'olivia11@adventure-works.com', '40000.00', '4', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '9091 Pinecrest Dr.', 'NULL', '483-555-0115', '2011-02-15', '1-2 Miles'], ['27682', '339', 'AW00027682', 'NULL', 'Jennifer', 'NULL', 'Kelly', '0', '1956-05-09', 'S', 'NULL', 'F', 'jennifer73@adventure-works.com', '40000.00', '4', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2775 Delta View Ln.', 'NULL', '130-555-0170', '2013-11-25', '5-10 Miles'], ['27683', '536', 'AW00027683', 'NULL', 'Alexandra', 'C', 'Reed', '0', '1954-08-09', 'M', 'NULL', 'F', 'alexandra4@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '1622 Silver Oaks Place', 'NULL', '747-555-0149', '2013-09-01', '1-2 Miles'], ['27684', '614', 'AW00027684', 'NULL', 'Emma', 'NULL', 'Coleman', '0', '1955-06-25', 'M', 'NULL', 'F', 'emma52@adventure-works.com', '40000.00', '4', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4567 Shannon Lane', 'NULL', '626-555-0148', '2013-09-03', '5-10 Miles'], ['27685', '35', 'AW00027685', 'NULL', 'Alfredo', 'NULL', 'Torres', '0', '1974-11-13', 'M', 'NULL', 'M', 'alfredo13@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '5782 Ringing Court', 'NULL', '1 (11) 500 555-0189', '2013-12-13', '5-10 Miles'], ['27686', '5', 'AW00027686', 'NULL', 'Vincent', 'M', 'Zhang', '0', '1968-11-15', 'M', 'NULL', 'M', 'vincent1@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '5891 Maureen Ln', 'NULL', '1 (11) 500 555-0140', '2014-01-28', '10+ Miles'], ['27687', '38', 'AW00027687', 'NULL', 'Brandy', 'A', 'Madan', '0', '1969-04-25', 'S', 'NULL', 'F', 'brandy3@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '6519 Alier Drive', 'NULL', '1 (11) 500 555-0144', '2013-12-22', '5-10 Miles'], ['27688', '4', 'AW00027688', 'NULL', 'Arthur', 'NULL', 'Sanz', '0', '1974-06-24', 'S', 'NULL', 'M', 'arthur42@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '2707 Virgil Street', 'NULL', '1 (11) 500 555-0193', '2013-01-28', '5-10 Miles'], ['27689', '31', 'AW00027689', 'NULL', 'Seth', 'E', 'Walker', '0', '1968-11-12', 'S', 'NULL', 'M', 'seth22@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5215 Entrada Circle', 'NULL', '1 (11) 500 555-0120', '2013-09-13', '5-10 Miles'], ['27690', '29', 'AW00027690', 'NULL', 'Jaime', 'T', 'Navarro', '0', '1972-12-16', 'M', 'NULL', 'F', 'jaime11@adventure-works.com', '90000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '6034 Bell Dr.', 'NULL', '1 (11) 500 555-0176', '2013-09-18', '0-1 Miles'], ['27691', '4', 'AW00027691', 'NULL', 'Marshall', 'M', 'Goel', '0', '1972-11-14', 'M', 'NULL', 'M', 'marshall39@adventure-works.com', '90000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '5734 Ready Road', 'NULL', '1 (11) 500 555-0116', '2013-09-05', '0-1 Miles'], ['27692', '25', 'AW00027692', 'NULL', 'Isaac', 'NULL', 'Lopez', '0', '1972-12-01', 'M', 'NULL', 'M', 'isaac34@adventure-works.com', '90000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '6214 Piedra Dr.', 'NULL', '1 (11) 500 555-0142', '2013-09-01', '1-2 Miles'], ['27693', '9', 'AW00027693', 'NULL', 'Tyrone', 'K', 'Alvarez', '0', '1973-03-25', 'S', 'NULL', 'M', 'tyrone4@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '7925 Meadow Lane', 'NULL', '1 (11) 500 555-0114', '2013-09-10', '1-2 Miles'], ['27694', '19', 'AW00027694', 'NULL', 'Lee', 'L', 'Gill', '0', '1967-11-14', 'M', 'NULL', 'M', 'lee12@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3573 Holiday Hills', 'NULL', '1 (11) 500 555-0150', '2013-12-18', '5-10 Miles'], ['27695', '16', 'AW00027695', 'NULL', 'Leslie', 'L', 'Blanco', '0', '1973-08-11', 'M', 'NULL', 'F', 'leslie16@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5601 Garrow Drive', 'NULL', '1 (11) 500 555-0157', '2013-11-30', '5-10 Miles'], ['27696', '15', 'AW00027696', 'NULL', 'Ruben', 'NULL', 'Rana', '0', '1968-03-31', 'M', 'NULL', 'M', 'ruben12@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9369 Alovera Road', 'NULL', '1 (11) 500 555-0142', '2013-12-07', '5-10 Miles'], ['27697', '21', 'AW00027697', 'NULL', 'Melvin', 'D', 'Nath', '0', '1966-08-28', 'M', 'NULL', 'M', 'melvin17@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5542 Orchard View Ave', 'NULL', '1 (11) 500 555-0154', '2013-12-07', '5-10 Miles'], ['27698', '26', 'AW00027698', 'NULL', 'Isabella', 'NULL', 'Bell', '0', '1966-07-14', 'M', 'NULL', 'F', 'isabella88@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7280 Greendell Pl', 'NULL', '1 (11) 500 555-0157', '2013-12-08', '5-10 Miles'], ['27699', '20', 'AW00027699', 'NULL', 'Rebecca', 'W', 'Turner', '0', '1972-11-06', 'S', 'NULL', 'F', 'rebecca7@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '110 Katherine Drive', 'NULL', '1 (11) 500 555-0118', '2013-12-19', '5-10 Miles'], ['27700', '34', 'AW00027700', 'NULL', 'Barry', 'NULL', 'Arun', '0', '1936-01-08', 'M', 'NULL', 'M', 'barry7@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '6447 Ranch Road', 'NULL', '1 (11) 500 555-0129', '2013-05-11', '0-1 Miles'], ['27701', '3', 'AW00027701', 'NULL', 'Joel', 'NULL', 'Arthur', '0', '1976-08-05', 'M', 'NULL', 'M', 'joel6@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3613 Eastgate Lane', 'NULL', '1 (11) 500 555-0162', '2013-12-20', '5-10 Miles'], ['27702', '5', 'AW00027702', 'NULL', 'Darryl', 'NULL', 'Lu', '0', '1971-03-14', 'S', 'NULL', 'M', 'darryl11@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3369 Houston Ct.', 'NULL', '1 (11) 500 555-0161', '2013-12-06', '5-10 Miles'], ['27703', '36', 'AW00027703', 'NULL', 'Meredith', 'NULL', 'Navarro', '0', '1965-04-06', 'S', 'NULL', 'F', 'meredith33@adventure-works.com', '90000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7007 Cowell Rd.', 'NULL', '1 (11) 500 555-0135', '2013-06-22', '1-2 Miles'], ['27704', '22', 'AW00027704', 'NULL', 'Jimmy', 'NULL', 'Romero', '0', '1939-05-27', 'S', 'NULL', 'M', 'jimmy12@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3685 Pleasant Hill Rd', 'NULL', '1 (11) 500 555-0182', '2013-03-09', '5-10 Miles'], ['27705', '25', 'AW00027705', 'NULL', 'Roger', 'D', 'Pal', '0', '1976-11-08', 'M', 'NULL', 'M', 'roger39@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '744 Ohara Avenue', 'NULL', '1 (11) 500 555-0167', '2013-12-02', '1-2 Miles'], ['27706', '21', 'AW00027706', 'NULL', 'Brianna', 'NULL', 'Flores', '0', '1969-12-20', 'S', 'NULL', 'F', 'brianna58@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3416 Ravenwood Drive', 'NULL', '1 (11) 500 555-0118', '2013-09-08', '0-1 Miles'], ['27707', '12', 'AW00027707', 'NULL', 'Colleen', 'NULL', 'Raji', '0', '1975-09-19', 'S', 'NULL', 'F', 'colleen44@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1525 Dumbarton St', 'NULL', '1 (11) 500 555-0187', '2013-09-15', '0-1 Miles'], ['27708', '26', 'AW00027708', 'NULL', 'Katie', 'D', 'Goel', '0', '1969-12-19', 'S', 'NULL', 'F', 'katie22@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '2245 Fairfield Ave', 'NULL', '1 (11) 500 555-0153', '2013-08-31', '5-10 Miles'], ['27709', '31', 'AW00027709', 'NULL', 'Clifford', 'E', 'Lopez', '0', '1974-04-09', 'S', 'NULL', 'M', 'clifford15@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '476 Bay Drive', 'NULL', '1 (11) 500 555-0167', '2013-09-02', '5-10 Miles'], ['27710', '27', 'AW00027710', 'NULL', 'Sean', 'L', 'Bailey', '0', '1974-06-17', 'S', 'NULL', 'M', 'sean23@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '7437 Margaret Ct.', 'NULL', '1 (11) 500 555-0158', '2013-10-10', '5-10 Miles'], ['27711', '40', 'AW00027711', 'NULL', 'Barbara', 'NULL', 'Tang', '0', '1968-07-19', 'M', 'NULL', 'F', 'barbara35@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '6991 Mauna Kea Court', 'NULL', '1 (11) 500 555-0120', '2013-09-30', '0-1 Miles'], ['27712', '25', 'AW00027712', 'NULL', 'Teresa', 'R', 'Munoz', '0', '1968-04-06', 'M', 'NULL', 'F', 'teresa7@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '8277 Pinole Valley Rd.', 'NULL', '1 (11) 500 555-0153', '2013-12-26', '0-1 Miles'], ['27713', '33', 'AW00027713', 'NULL', 'Lacey', 'M', 'Zhao', '0', '1966-10-07', 'S', 'NULL', 'F', 'lacey23@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6922 Hamlet', 'NULL', '1 (11) 500 555-0156', '2013-12-08', '5-10 Miles'], ['27714', '4', 'AW00027714', 'NULL', 'Omar', 'NULL', 'Pal', '0', '1966-09-20', 'M', 'NULL', 'M', 'omar32@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4456 Eastgate', 'NULL', '1 (11) 500 555-0193', '2013-12-12', '0-1 Miles'], ['27715', '25', 'AW00027715', 'NULL', 'Mya', 'E', 'Ross', '0', '1977-12-01', 'S', 'NULL', 'F', 'mya6@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '109 Clay Road', 'NULL', '1 (11) 500 555-0122', '2013-12-07', '5-10 Miles'], ['27716', '6', 'AW00027716', 'NULL', 'Albert', 'E', 'Ramos', '0', '1972-09-29', 'S', 'NULL', 'M', 'albert17@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9993 Oak Grove Rd.', 'NULL', '1 (11) 500 555-0145', '2013-06-29', '5-10 Miles'], ['27717', '14', 'AW00027717', 'NULL', 'Ebony', 'A', 'Romero', '0', '1972-02-01', 'M', 'NULL', 'F', 'ebony32@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '53 Odin Dr', 'NULL', '1 (11) 500 555-0186', '2013-12-04', '10+ Miles'], ['27718', '17', 'AW00027718', 'NULL', 'Franklin', 'C', 'Shan', '0', '1983-05-19', 'M', 'NULL', 'M', 'franklin28@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '5869 Heights Avenue', 'NULL', '1 (11) 500 555-0131', '2013-06-11', '5-10 Miles'], ['27719', '32', 'AW00027719', 'NULL', 'Nathan', 'NULL', 'King', '0', '1967-05-13', 'M', 'NULL', 'M', 'nathan46@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '3400 Krueger Drive', 'NULL', '1 (11) 500 555-0174', '2013-10-05', '10+ Miles'], ['27720', '25', 'AW00027720', 'NULL', 'Arturo', 'A', 'Wang', '0', '1971-08-31', 'M', 'NULL', 'M', 'arturo1@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '1707 Poor Ridge Court', 'NULL', '1 (11) 500 555-0191', '2013-03-02', '5-10 Miles'], ['27721', '15', 'AW00027721', 'NULL', 'Clayton', 'NULL', 'Pal', '0', '1961-07-10', 'M', 'NULL', 'M', 'clayton30@adventure-works.com', '80000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6751 Del Rio Ln.', 'NULL', '1 (11) 500 555-0136', '2013-10-23', '5-10 Miles'], ['27722', '17', 'AW00027722', 'NULL', 'Melvin', 'M', 'Jai', '0', '1962-05-02', 'M', 'NULL', 'M', 'melvin9@adventure-works.com', '80000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '8142 Longbrood Way', 'NULL', '1 (11) 500 555-0162', '2013-10-08', '0-1 Miles'], ['27723', '20', 'AW00027723', 'NULL', 'Ruth', 'NULL', 'Sullivan', '0', '1959-04-17', 'S', 'NULL', 'F', 'ruth17@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '4392 Ahneita Dr.', 'NULL', '1 (11) 500 555-0148', '2013-12-20', '5-10 Miles'], ['27724', '65', 'AW00027724', 'NULL', 'Tyler', 'L', 'Martin', '0', '1981-11-22', 'M', 'NULL', 'M', 'tyler5@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3620 Temple Drive', 'NULL', '356-555-0112', '2013-09-26', '5-10 Miles'], ['27725', '54', 'AW00027725', 'NULL', 'Samuel', 'NULL', 'Sharma', '0', '1986-02-09', 'M', 'NULL', 'M', 'samuel27@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1475 Doyle', 'NULL', '488-555-0164', '2013-10-24', '0-1 Miles'], ['27726', '335', 'AW00027726', 'NULL', 'Sophia', 'NULL', 'Hall', '0', '1985-09-23', 'S', 'NULL', 'F', 'sophia20@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8327 Roundhouse Place', 'NULL', '112-555-0152', '2011-02-04', '0-1 Miles'], ['27727', '359', 'AW00027727', 'NULL', 'Chloe', 'R', 'Hill', '0', '1984-09-17', 'S', 'NULL', 'F', 'chloe20@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7551 Santa Lucia', 'NULL', '197-555-0175', '2013-03-22', '5-10 Miles'], ['27728', '25', 'AW00027728', 'NULL', 'Colleen', 'S', 'Deng', '0', '1943-01-29', 'S', 'NULL', 'F', 'colleen25@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7255 Virginia Hills Drive', 'NULL', '1 (11) 500 555-0163', '2013-11-23', '5-10 Miles'], ['27729', '626', 'AW00027729', 'NULL', 'Sophia', 'M', 'Phillips', '0', '1984-05-14', 'S', 'NULL', 'F', 'sophia4@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1328 Castle Hill Road', 'NULL', '199-555-0166', '2013-02-11', '5-10 Miles'], ['27730', '607', 'AW00027730', 'NULL', 'Isabella', 'NULL', 'Cox', '0', '1984-02-25', 'S', 'NULL', 'F', 'isabella0@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4304 Dos Rios Drive', 'NULL', '377-555-0164', '2013-05-06', '5-10 Miles'], ['27731', '64', 'AW00027731', 'NULL', 'Gabriel', 'T', 'Shan', '0', '1984-03-03', 'M', 'NULL', 'M', 'gabriel28@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8724 String Drive', 'NULL', '449-555-0168', '2013-12-12', '5-10 Miles'], ['27732', '644', 'AW00027732', 'NULL', 'Katherine', 'NULL', 'White', '0', '1983-11-24', 'M', 'NULL', 'F', 'katherine83@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6613 Thornhill Place', 'NULL', '205-555-0138', '2013-11-09', '5-10 Miles'], ['27733', '30', 'AW00027733', 'NULL', 'Ronald', 'P', 'Subram', '0', '1944-01-30', 'S', 'NULL', 'M', 'ronald15@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4113 Pershing Dr', 'NULL', '1 (11) 500 555-0148', '2013-12-12', '5-10 Miles'], ['27734', '59', 'AW00027734', 'NULL', 'Aaron', 'J', 'McDonald', '0', '1982-08-06', 'S', 'NULL', 'M', 'aaron53@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3101 South Villa Way', 'NULL', '897-555-0166', '2013-06-05', '5-10 Miles'], ['27735', '616', 'AW00027735', 'NULL', 'Shelby', 'S', 'Sanders', '0', '1982-12-18', 'S', 'NULL', 'F', 'shelby3@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2588 San Vincente Drive', 'NULL', '429-555-0185', '2014-01-24', '0-1 Miles'], ['27736', '553', 'AW00027736', 'NULL', 'Mackenzie', 'NULL', 'Young', '0', '1983-02-18', 'S', 'NULL', 'F', 'mackenzie38@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4257 Crown Court', 'NULL', '746-555-0119', '2013-12-01', '5-10 Miles'], ['27737', '355', 'AW00027737', 'NULL', 'Brandon', 'C', 'Taylor', '0', '1983-03-21', 'S', 'NULL', 'M', 'brandon29@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9574 Bancroft Road', 'NULL', '394-555-0190', '2013-05-22', '0-1 Miles'], ['27738', '49', 'AW00027738', 'NULL', 'Kaylee', 'M', 'Parker', '0', '1984-08-12', 'S', 'NULL', 'F', 'kaylee29@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '8392 Carrick Ct.', 'NULL', '737-555-0141', '2013-09-20', '5-10 Miles'], ['27739', '49', 'AW00027739', 'NULL', 'Marie', 'NULL', 'Moreno', '0', '1984-09-01', 'S', 'NULL', 'F', 'marie30@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '121 Keith Court', 'NULL', '411-555-0132', '2013-05-15', '5-10 Miles'], ['27740', '612', 'AW00027740', 'NULL', 'Jodi', 'NULL', 'Nath', '0', '1984-07-08', 'M', 'NULL', 'F', 'jodi19@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5496 Village Pl.', 'NULL', '883-555-0128', '2013-03-17', '5-10 Miles'], ['27741', '612', 'AW00027741', 'NULL', 'Gabrielle', 'NULL', 'Foster', '0', '1985-02-11', 'S', 'NULL', 'F', 'gabrielle38@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1488 Guadalupe Dr.', 'NULL', '121-555-0120', '2014-01-21', '5-10 Miles'], ['27742', '543', 'AW00027742', 'NULL', 'Devin', 'H', 'Jones', '0', '1984-09-08', 'S', 'NULL', 'M', 'devin3@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3394 Near Drive', 'NULL', '260-555-0183', '2013-11-03', '5-10 Miles'], ['27743', '34', 'AW00027743', 'NULL', 'Stefanie', 'E', 'Garcia', '0', '1952-07-24', 'M', 'NULL', 'F', 'stefanie12@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4494 El Campo Ct', 'NULL', '1 (11) 500 555-0122', '2013-12-09', '5-10 Miles'], ['27744', '16', 'AW00027744', 'NULL', 'Gilbert', 'NULL', 'Pal', '0', '1948-06-14', 'M', 'NULL', 'M', 'gilbert33@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '5707 Bellwood Court', 'NULL', '1 (11) 500 555-0112', '2013-01-21', '5-10 Miles'], ['27745', '6', 'AW00027745', 'NULL', 'Levi', 'A', 'Sanchez', '0', '1948-09-09', 'S', 'NULL', 'M', 'levi18@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7226 Casa Real', 'NULL', '1 (11) 500 555-0117', '2013-01-06', '5-10 Miles'], ['27746', '17', 'AW00027746', 'NULL', 'Dale', 'H', 'Raje', '0', '1948-08-09', 'S', 'NULL', 'M', 'dale11@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '9925 Wildberry Court', 'NULL', '1 (11) 500 555-0150', '2013-02-27', '1-2 Miles'], ['27747', '614', 'AW00027747', 'NULL', 'Edward', 'NULL', 'Henderson', '0', '1981-10-09', 'M', 'NULL', 'M', 'edward53@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7234 Relief Valley Ct.', 'NULL', '145-555-0177', '2013-12-01', '1-2 Miles'], ['27748', '545', 'AW00027748', 'NULL', 'Luis', 'J', 'Patterson', '0', '1982-01-23', 'S', 'NULL', 'M', 'luis9@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6500 South Street', 'NULL', '180-555-0196', '2013-10-02', '1-2 Miles'], ['27749', '301', 'AW00027749', 'NULL', 'Alexis', 'A', 'Brown', '0', '1982-05-21', 'S', 'NULL', 'F', 'alexis4@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8876 Wawona Lane', 'NULL', '793-555-0192', '2013-08-14', '5-10 Miles'], ['27750', '302', 'AW00027750', 'NULL', 'Carlos', 'D', 'Phillips', '0', '1981-12-08', 'S', 'NULL', 'M', 'carlos33@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1728 Woodside Ct.', 'NULL', '407-555-0187', '2013-09-16', '5-10 Miles'], ['27751', '322', 'AW00027751', 'NULL', 'Zoe', 'L', 'Cooper', '0', '1982-05-05', 'S', 'NULL', 'F', 'zoe16@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1456 Lake Pl.', 'NULL', '377-555-0144', '2013-05-29', '5-10 Miles'], ['27752', '69', 'AW00027752', 'NULL', 'Christian', 'NULL', 'Butler', '0', '1980-11-19', 'S', 'NULL', 'M', 'christian29@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '929 Birchbark Place', 'NULL', '302-555-0121', '2011-08-19', '1-2 Miles'], ['27753', '552', 'AW00027753', 'NULL', 'Steven', 'NULL', 'Morgan', '0', '1981-05-22', 'M', 'NULL', 'M', 'steven22@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7623 Cloudview Dr.', 'NULL', '245-555-0124', '2013-03-21', '1-2 Miles'], ['27754', '331', 'AW00027754', 'NULL', 'Marcus', 'A', 'Gonzalez', '0', '1979-07-14', 'S', 'NULL', 'M', 'marcus36@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '7364 Mason Dr', 'NULL', '127-555-0119', '2013-08-22', '1-2 Miles'], ['27755', '385', 'AW00027755', 'NULL', 'Alyssa', 'L', 'Jenkins', '0', '1980-03-12', 'S', 'NULL', 'F', 'alyssa53@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '734 Selena Court', 'NULL', '139-555-0181', '2013-05-06', '1-2 Miles'], ['27756', '66', 'AW00027756', 'NULL', 'Angela', 'M', 'Ward', '0', '1971-03-25', 'S', 'NULL', 'F', 'angela38@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '7822 Mt. Tooth Place', 'NULL', '929-555-0126', '2013-07-17', '0-1 Miles'], ['27757', '49', 'AW00027757', 'NULL', 'Bobby', 'NULL', 'Van', '0', '1971-01-17', 'M', 'NULL', 'M', 'bobby3@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '20 Estudello', 'NULL', '882-555-0118', '2013-03-25', '10+ Miles'], ['27758', '68', 'AW00027758', 'NULL', 'Sara', 'P', 'Cox', '0', '1981-09-10', 'M', 'NULL', 'F', 'sara11@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '7218 Canyon Way', 'NULL', '382-555-0179', '2013-03-25', '10+ Miles'], ['27759', '635', 'AW00027759', 'NULL', 'Alexandria', 'NULL', 'Brooks', '0', '1976-05-06', 'S', 'NULL', 'F', 'alexandria25@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '325 Meager Dr', 'NULL', '532-555-0146', '2011-02-17', '10+ Miles'], ['27760', '222', 'AW00027760', 'NULL', 'Latasha', 'C', 'Bradley', '0', '1979-12-06', 'S', 'NULL', 'F', 'latasha15@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '6, place de Fontenoy', 'NULL', '1 (11) 500 555-0165', '2013-05-30', '0-1 Miles'], ['27761', '163', 'AW00027761', 'NULL', 'Monica', 'G', 'Madan', '0', '1973-11-29', 'M', 'NULL', 'F', 'monica8@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Postfach 8 77 8', 'NULL', '1 (11) 500 555-0153', '2013-06-11', '0-1 Miles'], ['27762', '229', 'AW00027762', 'NULL', 'Shawn', 'P', 'Yuan', '0', '1973-12-20', 'M', 'NULL', 'M', 'shawn9@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '8661 Peabody Road', 'NULL', '1 (11) 500 555-0137', '2013-11-06', '0-1 Miles'], ['27763', '223', 'AW00027763', 'NULL', 'Stephanie', 'V', 'Wright', '0', '1984-03-06', 'M', 'NULL', 'F', 'stephanie65@adventure-works.com', '10000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '2, avenue des Laurentides', 'NULL', '1 (11) 500 555-0165', '2013-10-05', '0-1 Miles'], ['27764', '197', 'AW00027764', 'NULL', 'Jaclyn', 'NULL', 'Becker', '0', '1984-05-10', 'S', 'NULL', 'F', 'jaclyn42@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '2141, rue Saint-Lazare', 'NULL', '1 (11) 500 555-0196', '2013-10-14', '2-5 Miles'], ['27765', '118', 'AW00027765', 'NULL', 'Jerry', 'NULL', 'Tang', '0', '1973-01-14', 'S', 'NULL', 'M', 'jerry4@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Postfach 22 99 99', 'NULL', '1 (11) 500 555-0154', '2013-01-20', '2-5 Miles'], ['27766', '128', 'AW00027766', 'NULL', 'Joel', 'NULL', 'Vance', '0', '1983-10-04', 'S', 'NULL', 'M', 'joel3@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Erlenweg 5194', 'NULL', '1 (11) 500 555-0118', '2013-01-03', '2-5 Miles'], ['27767', '161', 'AW00027767', 'NULL', 'Brandy', 'J', 'Arun', '0', '1973-04-08', 'S', 'NULL', 'F', 'brandy2@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Hans-Rosenthal-Platz 4612', 'NULL', '1 (11) 500 555-0157', '2012-12-28', '2-5 Miles'], ['27768', '183', 'AW00027768', 'NULL', 'Deanna', 'C', 'Madan', '0', '1972-09-16', 'S', 'NULL', 'F', 'deanna11@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '3, rue Jean Mermoz', 'NULL', '1 (11) 500 555-0177', '2013-10-17', '0-1 Miles'], ['27769', '193', 'AW00027769', 'NULL', 'Marie', 'NULL', 'Madan', '0', '1972-10-31', 'S', 'NULL', 'F', 'marie12@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '91, rue Royale', 'NULL', '1 (11) 500 555-0181', '2013-10-23', '1-2 Miles'], ['27770', '117', 'AW00027770', 'NULL', 'Autumn', 'J', 'Zhao', '0', '1972-10-31', 'S', 'NULL', 'F', 'autumn9@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Moritzstr 4500', 'NULL', '1 (11) 500 555-0112', '2013-02-22', '0-1 Miles'], ['27771', '189', 'AW00027771', 'NULL', 'Terrance', 'M', 'Subram', '0', '1973-01-13', 'S', 'NULL', 'M', 'terrance10@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', '98, rue Montcalm', 'NULL', '1 (11) 500 555-0181', '2013-10-05', '1-2 Miles'], ['27772', '212', 'AW00027772', 'NULL', 'Darrell', 'NULL', 'Goel', '0', '1971-09-20', 'S', 'NULL', 'M', 'darrell7@adventure-works.com', '10000.00', '5', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1, rue de l´Avenir', 'NULL', '1 (11) 500 555-0165', '2013-03-07', '0-1 Miles'], ['27773', '225', 'AW00027773', 'NULL', 'Alan', 'M', 'Li', '0', '1972-06-02', 'S', 'NULL', 'M', 'alan7@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '82, cours Mirabeau', 'NULL', '1 (11) 500 555-0173', '2013-11-20', '2-5 Miles'], ['27774', '176', 'AW00027774', 'NULL', 'Marc', 'W', 'Munoz', '0', '1977-04-20', 'S', 'NULL', 'M', 'marc11@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Carlsplatz 41', 'NULL', '1 (11) 500 555-0156', '2013-02-20', '0-1 Miles'], ['27775', '117', 'AW00027775', 'NULL', 'Nina', 'R', 'Shen', '0', '1973-06-12', 'S', 'NULL', 'F', 'nina2@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Zollstr 68', 'NULL', '1 (11) 500 555-0123', '2013-06-24', '0-1 Miles'], ['27776', '193', 'AW00027776', 'NULL', 'Audrey', 'NULL', 'Gomez', '0', '1971-11-02', 'S', 'NULL', 'F', 'audrey2@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '1', '909, rue Saint Denis', 'NULL', '1 (11) 500 555-0197', '2013-11-13', '2-5 Miles'], ['27777', '150', 'AW00027777', 'NULL', 'Jarred', 'NULL', 'Martin', '0', '1971-11-01', 'M', 'NULL', 'M', 'jarred0@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Husemann Straße 7574', 'NULL', '1 (11) 500 555-0157', '2013-02-20', '2-5 Miles'], ['27778', '244', 'AW00027778', 'NULL', 'Tabitha', 'NULL', 'Garcia', '0', '1972-04-21', 'M', 'NULL', 'F', 'tabitha12@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8671 Westwood Lane', 'NULL', '1 (11) 500 555-0129', '2013-08-01', '1-2 Miles'], ['27779', '207', 'AW00027779', 'NULL', 'Jordan', 'NULL', 'Washington', '0', '1970-08-26', 'M', 'NULL', 'M', 'jordan10@adventure-works.com', '10000.00', '5', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '1861, boulevard Beau Marchais', 'NULL', '1 (11) 500 555-0183', '2013-11-15', '0-1 Miles'], ['27780', '186', 'AW00027780', 'NULL', 'Christy', 'A', 'Andersen', '0', '1976-03-15', 'M', 'NULL', 'F', 'christy30@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '42, boulevard Tremblay', 'NULL', '1 (11) 500 555-0122', '2013-11-14', '0-1 Miles'], ['27781', '252', 'AW00027781', 'NULL', 'Allen', 'E', 'Sai', '0', '1976-01-08', 'S', 'NULL', 'M', 'allen5@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '9491 Toyon Dr', 'NULL', '1 (11) 500 555-0160', '2013-08-27', '0-1 Miles'], ['27782', '273', 'AW00027782', 'NULL', 'Mason', 'C', 'Hernandez', '0', '1976-02-20', 'S', 'NULL', 'M', 'mason41@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '1292 Bola Raton Court', 'NULL', '1 (11) 500 555-0114', '2013-02-25', '0-1 Miles'], ['27783', '273', 'AW00027783', 'NULL', 'Isabel', 'NULL', 'Bradley', '0', '1970-08-14', 'M', 'NULL', 'F', 'isabel1@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2340 Jill Ave', 'NULL', '1 (11) 500 555-0142', '2013-04-02', '0-1 Miles'], ['27784', '190', 'AW00027784', 'NULL', 'Shane', 'NULL', 'Arun', '0', '1970-05-02', 'S', 'NULL', 'M', 'shane10@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '33, rue du Puits Dixme', 'NULL', '1 (11) 500 555-0121', '2013-11-20', '0-1 Miles'], ['27785', '237', 'AW00027785', 'NULL', 'Sebastian', 'D', 'Bell', '0', '1937-04-03', 'M', 'NULL', 'M', 'sebastian14@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3039 Eagle Way', 'NULL', '1 (11) 500 555-0113', '2013-07-24', '2-5 Miles'], ['27786', '265', 'AW00027786', 'NULL', 'Cynthia', 'P', 'Raman', '0', '1970-04-04', 'S', 'NULL', 'F', 'cynthia17@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '6766 Sea Ranch Ct.', 'NULL', '1 (11) 500 555-0185', '2013-09-05', '0-1 Miles'], ['27787', '157', 'AW00027787', 'NULL', 'Gerald', 'NULL', 'Ramos', '0', '1969-11-05', 'M', 'NULL', 'M', 'gerald25@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', 'Winter der Böck 345', 'NULL', '1 (11) 500 555-0137', '2013-02-25', '0-1 Miles'], ['27788', '272', 'AW00027788', 'NULL', 'Brent', 'L', 'Lin', '0', '1985-08-16', 'S', 'NULL', 'M', 'brent7@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '1674 Castle Hill Road', 'NULL', '1 (11) 500 555-0141', '2013-03-11', '0-1 Miles'], ['27789', '270', 'AW00027789', 'NULL', 'Nicolas', 'NULL', 'Goldberg', '0', '1969-01-30', 'M', 'NULL', 'M', 'nicolas17@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '9513 Ridge Park Drive', 'NULL', '1 (11) 500 555-0149', '2013-08-30', '0-1 Miles'], ['27790', '257', 'AW00027790', 'NULL', 'Molly', 'L', 'Srini', '0', '1968-12-06', 'S', 'NULL', 'F', 'molly8@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '8066 Peach Place', 'NULL', '1 (11) 500 555-0139', '2013-09-05', '0-1 Miles'], ['27791', '134', 'AW00027791', 'NULL', 'Shawna', 'C', 'Deng', '0', '1980-03-05', 'S', 'NULL', 'F', 'shawna1@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Lindenalle 7524', 'NULL', '1 (11) 500 555-0111', '2013-03-02', '0-1 Miles'], ['27792', '133', 'AW00027792', 'NULL', 'Jacquelyn', 'A', 'Alonso', '0', '1969-02-17', 'S', 'NULL', 'F', 'jacquelyn8@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Am Gallberg 456', 'NULL', '1 (11) 500 555-0118', '2013-03-10', '0-1 Miles'], ['27793', '215', 'AW00027793', 'NULL', 'Mitchell', 'NULL', 'Shan', '0', '1939-03-07', 'S', 'NULL', 'M', 'mitchell9@adventure-works.com', '10000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '5, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0187', '2014-01-05', '0-1 Miles'], ['27794', '266', 'AW00027794', 'NULL', 'Dawn', 'W', 'Kumar', '0', '1938-10-09', 'M', 'NULL', 'F', 'dawn31@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7386 Rolph Park Drive', 'NULL', '1 (11) 500 555-0170', '2013-03-03', '0-1 Miles'], ['27795', '192', 'AW00027795', 'NULL', 'Holly', 'S', 'Vance', '0', '1972-03-01', 'S', 'NULL', 'F', 'holly5@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '15bis, boulevard Saint Germain', 'NULL', '1 (11) 500 555-0138', '2013-07-03', '0-1 Miles'], ['27796', '200', 'AW00027796', 'NULL', 'Jarrod', 'E', 'Patel', '0', '1971-12-05', 'S', 'NULL', 'M', 'jarrod3@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '3bis, boulevard Saint Germain', 'NULL', '1 (11) 500 555-0171', '2013-08-03', '0-1 Miles'], ['27797', '130', 'AW00027797', 'NULL', 'Melvin', 'C', 'Deng', '0', '1971-12-30', 'M', 'NULL', 'M', 'melvin1@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', 'Viktoria-Luise-Platz 4', 'NULL', '1 (11) 500 555-0169', '2013-05-30', '0-1 Miles'], ['27798', '171', 'AW00027798', 'NULL', 'Brandon', 'NULL', 'Bryant', '0', '1971-11-08', 'M', 'NULL', 'M', 'brandon15@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', 'Essener Straße 126', 'NULL', '1 (11) 500 555-0193', '2013-07-13', '0-1 Miles'], ['27799', '273', 'AW00027799', 'NULL', 'Bryce', 'NULL', 'Watson', '0', '1983-03-23', 'S', 'NULL', 'M', 'bryce1@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3632 Ramsay Circle', 'NULL', '1 (11) 500 555-0117', '2013-01-18', '0-1 Miles'], ['27800', '277', 'AW00027800', 'NULL', 'Regina', 'NULL', 'Suri', '0', '1972-04-15', 'S', 'NULL', 'F', 'regina0@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9700 Terra Grand', 'NULL', '1 (11) 500 555-0187', '2013-02-02', '0-1 Miles'], ['27801', '131', 'AW00027801', 'NULL', 'Kaitlyn', 'V', 'Cooper', '0', '1974-10-30', 'M', 'NULL', 'F', 'kaitlyn56@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Husemann Straße 4424', 'NULL', '1 (11) 500 555-0139', '2013-02-28', '0-1 Miles'], ['27802', '236', 'AW00027802', 'NULL', 'Robyn', 'C', 'Romero', '0', '1969-04-02', 'S', 'NULL', 'F', 'robyn7@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8514 Bounty Way', 'NULL', '1 (11) 500 555-0149', '2013-09-17', '0-1 Miles'], ['27803', '222', 'AW00027803', 'NULL', 'Theresa', 'E', 'Suarez', '0', '1968-08-18', 'S', 'NULL', 'F', 'theresa15@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '0', '8, avenue de Villiers', 'NULL', '1 (11) 500 555-0113', '2013-05-13', '0-1 Miles'], ['27804', '239', 'AW00027804', 'NULL', 'Shaun', 'N', 'Xu', '0', '1978-10-05', 'S', 'NULL', 'M', 'shaun6@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '6205 Lorie Lane', 'NULL', '1 (11) 500 555-0185', '2013-09-25', '0-1 Miles'], ['27805', '185', 'AW00027805', 'NULL', 'Barbara', 'A', 'Ye', '0', '1968-03-13', 'S', 'NULL', 'F', 'barbara19@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '8201, rue Malar', 'NULL', '1 (11) 500 555-0198', '2013-11-11', '2-5 Miles'], ['27806', '258', 'AW00027806', 'NULL', 'Krista', 'NULL', 'Sanz', '0', '1973-02-17', 'S', 'NULL', 'F', 'krista19@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '1522 Azalea Ave.', 'NULL', '1 (11) 500 555-0166', '2013-02-19', '2-5 Miles'], ['27807', '214', 'AW00027807', 'NULL', 'Shaun', 'G', 'Kumar', '0', '1940-06-03', 'S', 'NULL', 'M', 'shaun8@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1, rue de Varenne', 'NULL', '1 (11) 500 555-0177', '2013-02-17', '2-5 Miles'], ['27808', '207', 'AW00027808', 'NULL', 'Christopher', 'R', 'Clark', '0', '1976-11-03', 'M', 'NULL', 'M', 'christopher19@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '951, rue de Cambrai', 'NULL', '1 (11) 500 555-0188', '2013-11-13', '0-1 Miles'], ['27809', '162', 'AW00027809', 'NULL', 'Arianna', 'NULL', 'Sanchez', '0', '1976-10-28', 'M', 'NULL', 'F', 'arianna40@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Curieweg 42', 'NULL', '1 (11) 500 555-0188', '2013-07-18', '0-1 Miles'], ['27810', '238', 'AW00027810', 'NULL', 'Meghan', 'P', 'Munoz', '0', '1969-11-21', 'M', 'NULL', 'F', 'meghan7@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2680 Corte Del Sol', 'NULL', '1 (11) 500 555-0120', '2013-12-14', '0-1 Miles'], ['27811', '133', 'AW00027811', 'NULL', 'Darren', 'NULL', 'Vazquez', '0', '1969-02-07', 'M', 'NULL', 'M', 'darren37@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Kurfürstenstr 23', 'NULL', '1 (11) 500 555-0149', '2013-07-20', '0-1 Miles'], ['27812', '202', 'AW00027812', 'NULL', 'Alison', 'NULL', 'Lal', '0', '1982-10-29', 'S', 'NULL', 'F', 'alison8@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6658, avenue de Villiers', 'NULL', '1 (11) 500 555-0177', '2013-08-18', '1-2 Miles'], ['27813', '118', 'AW00027813', 'NULL', 'Roy', 'NULL', 'Vance', '0', '1982-08-02', 'S', 'NULL', 'M', 'roy4@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Nonnendamm 22', 'NULL', '1 (11) 500 555-0179', '2013-08-18', '2-5 Miles'], ['27814', '170', 'AW00027814', 'NULL', 'Katrina', 'C', 'Shan', '0', '1985-04-23', 'S', 'NULL', 'F', 'katrina9@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Charlottenstr 57272', 'Verkaufsabteilung', '1 (11) 500 555-0189', '2013-03-16', '0-1 Miles'], ['27815', '265', 'AW00027815', 'NULL', 'Jamie', 'NULL', 'Chow', '0', '1985-06-24', 'M', 'NULL', 'F', 'jamie4@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9759 Dover Way', 'NULL', '1 (11) 500 555-0112', '2013-02-15', '0-1 Miles'], ['27816', '185', 'AW00027816', 'NULL', 'Erick', 'J', 'Kapoor', '0', '1984-06-21', 'S', 'NULL', 'M', 'erick1@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '28, avenue de la Gare', 'NULL', '1 (11) 500 555-0193', '2013-05-24', '1-2 Miles'], ['27817', '268', 'AW00027817', 'NULL', 'Sandra', 'N', 'Hu', '0', '1974-04-23', 'M', 'NULL', 'F', 'sandra28@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5872 Whiteaben Drive', 'NULL', '1 (11) 500 555-0113', '2013-12-17', '0-1 Miles'], ['27818', '272', 'AW00027818', 'NULL', 'Candice', 'NULL', 'Hu', '0', '1974-03-04', 'M', 'NULL', 'F', 'candice4@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7279 Michael Ln.', 'NULL', '1 (11) 500 555-0123', '2013-12-27', '0-1 Miles'], ['27819', '273', 'AW00027819', 'NULL', 'Michele', 'J', 'Martin', '0', '1968-09-02', 'M', 'NULL', 'F', 'michele35@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7983 Pinecrest Dr.', 'NULL', '1 (11) 500 555-0121', '2013-01-14', '0-1 Miles'], ['27820', '276', 'AW00027820', 'NULL', 'Joel', 'NULL', 'Patel', '0', '1969-01-06', 'M', 'NULL', 'M', 'joel2@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '413 Miller Dr', 'NULL', '1 (11) 500 555-0112', '2012-12-29', '0-1 Miles'], ['27821', '279', 'AW00027821', 'NULL', 'Leonard', 'NULL', 'Deng', '0', '1969-03-15', 'M', 'NULL', 'M', 'leonard2@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7013 Cimarron Drive', '# 110', '1 (11) 500 555-0180', '2013-02-12', '0-1 Miles'], ['27822', '277', 'AW00027822', 'NULL', 'Jerry', 'L', 'Lal', '0', '1973-03-14', 'S', 'NULL', 'M', 'jerry9@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '3663 Palm Avenue', 'NULL', '1 (11) 500 555-0156', '2013-07-24', '2-5 Miles'], ['27823', '147', 'AW00027823', 'NULL', 'Joan', 'M', 'Gao', '0', '1984-12-09', 'M', 'NULL', 'F', 'joan18@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Curieweg 2994', 'NULL', '1 (11) 500 555-0114', '2013-07-05', '0-1 Miles'], ['27824', '183', 'AW00027824', 'NULL', 'Michele', 'P', 'Moreno', '0', '1983-10-31', 'S', 'NULL', 'F', 'michele41@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '42, impasse Ste-Madeleine', 'NULL', '1 (11) 500 555-0189', '2013-11-01', '0-1 Miles'], ['27825', '155', 'AW00027825', 'NULL', 'Christy', 'A', 'Zimmerman', '0', '1984-05-02', 'S', 'NULL', 'F', 'christy0@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Roßstr 5538', 'NULL', '1 (11) 500 555-0185', '2013-04-25', '0-1 Miles'], ['27826', '159', 'AW00027826', 'NULL', 'Nicolas', 'M', 'Xu', '0', '1984-04-09', 'S', 'NULL', 'M', 'nicolas3@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Buergermeister-ulrich-str 5000', 'NULL', '1 (11) 500 555-0155', '2013-04-21', '0-1 Miles'], ['27827', '232', 'AW00027827', 'NULL', 'Meagan', 'L', 'Malhotra', '0', '1984-05-26', 'M', 'NULL', 'F', 'meagan5@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '8370 Birchwood Dr', 'NULL', '1 (11) 500 555-0145', '2013-11-07', '0-1 Miles'], ['27828', '246', 'AW00027828', 'NULL', 'Ernest', 'NULL', 'Gao', '0', '1983-12-24', 'M', 'NULL', 'M', 'ernest15@adventure-works.com', '30000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6208 ViewPoint Court', 'NULL', '1 (11) 500 555-0177', '2013-03-23', '0-1 Miles'], ['27829', '199', 'AW00027829', 'NULL', 'Jorge', 'M', 'Wang', '0', '1983-03-27', 'S', 'NULL', 'M', 'jorge2@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '55, quai de l´ Iton', 'NULL', '1 (11) 500 555-0156', '2013-12-03', '2-5 Miles'], ['27830', '160', 'AW00027830', 'NULL', 'Caleb', 'M', 'Hall', '0', '1982-06-12', 'S', 'NULL', 'M', 'caleb50@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Charlottenstr 572', 'NULL', '1 (11) 500 555-0137', '2013-11-08', '1-2 Miles'], ['27831', '142', 'AW00027831', 'NULL', 'Clinton', 'C', 'Vazquez', '0', '1982-05-09', 'S', 'NULL', 'M', 'clinton11@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Am Gallberg 6186', 'NULL', '1 (11) 500 555-0196', '2014-01-23', '5-10 Miles'], ['27832', '117', 'AW00027832', 'NULL', 'Margaret', 'R', 'Powell', '0', '1981-10-06', 'S', 'NULL', 'F', 'margaret3@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Wallstr 8834', 'NULL', '1 (11) 500 555-0113', '2013-08-11', '2-5 Miles'], ['27833', '246', 'AW00027833', 'NULL', 'Dawn', 'G', 'Lu', '0', '1979-08-05', 'S', 'NULL', 'F', 'dawn13@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '3782 Sweetwater Drive', 'NULL', '1 (11) 500 555-0141', '2013-11-18', '0-1 Miles'], ['27834', '183', 'AW00027834', 'NULL', 'Diana', 'J', 'Suarez', '0', '1979-12-02', 'S', 'NULL', 'F', 'diana18@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '172, place de la Concorde', 'NULL', '1 (11) 500 555-0183', '2013-07-09', '0-1 Miles'], ['27835', '179', 'AW00027835', 'NULL', 'Darren', 'A', 'Ruiz', '0', '1980-02-21', 'M', 'NULL', 'M', 'darren23@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '988, rue Marbeuf', 'NULL', '1 (11) 500 555-0199', '2013-02-23', '0-1 Miles'], ['27836', '216', 'AW00027836', 'NULL', 'Pedro', 'NULL', 'Navarro', '0', '1980-06-17', 'M', 'NULL', 'M', 'pedro30@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '6, avenue de Norvege', 'NULL', '1 (11) 500 555-0193', '2013-03-17', '1-2 Miles'], ['27837', '244', 'AW00027837', 'NULL', 'Kelsey', 'J', 'Jai', '0', '1980-04-02', 'S', 'NULL', 'F', 'kelsey11@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '4598 Manila Avenue', 'NULL', '1 (11) 500 555-0129', '2013-02-15', '1-2 Miles'], ['27838', '176', 'AW00027838', 'NULL', 'Janelle', 'NULL', 'Sai', '0', '1980-03-18', 'M', 'NULL', 'F', 'janelle5@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Viktoria-Luise-Platz 64', 'NULL', '1 (11) 500 555-0111', '2013-11-24', '0-1 Miles'], ['27839', '269', 'AW00027839', 'NULL', 'Susan', 'NULL', 'Li', '0', '1980-10-23', 'M', 'NULL', 'F', 'susan12@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4444 Pepperidge Way', 'NULL', '1 (11) 500 555-0131', '2013-03-13', '0-1 Miles'], ['27840', '207', 'AW00027840', 'NULL', 'John', 'A', 'Johnson', '0', '1984-03-12', 'S', 'NULL', 'M', 'john38@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '40, place de Fontenoy', 'NULL', '1 (11) 500 555-0123', '2013-05-30', '1-2 Miles'], ['27841', '251', 'AW00027841', 'NULL', 'Gerald', 'M', 'Vance', '0', '1967-08-09', 'M', 'NULL', 'M', 'gerald33@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '2235 Craig Drive', 'NULL', '1 (11) 500 555-0148', '2013-03-19', '0-1 Miles'], ['27842', '252', 'AW00027842', 'NULL', 'Evelyn', 'NULL', 'Arun', '0', '1972-05-01', 'M', 'NULL', 'F', 'evelyn7@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '4635 Woodside Court', 'NULL', '1 (11) 500 555-0153', '2013-06-28', '0-1 Miles'], ['27843', '119', 'AW00027843', 'NULL', 'Gerald', 'NULL', 'Navarro', '0', '1941-02-11', 'S', 'NULL', 'M', 'gerald18@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Husemann Straße 4424', 'NULL', '1 (11) 500 555-0177', '2013-07-09', '0-1 Miles'], ['27844', '194', 'AW00027844', 'NULL', 'Arturo', 'NULL', 'Li', '0', '1942-04-25', 'M', 'NULL', 'M', 'arturo3@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '936, rue Léo Delibes', 'NULL', '1 (11) 500 555-0182', '2013-06-18', '0-1 Miles'], ['27845', '221', 'AW00027845', 'NULL', 'Angel', 'NULL', 'Wright', '0', '1973-02-28', 'S', 'NULL', 'M', 'angel42@adventure-works.com', '30000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '48, rue Montcalm', 'NULL', '1 (11) 500 555-0117', '2013-11-02', '0-1 Miles'], ['27846', '201', 'AW00027846', 'NULL', 'Albert', 'NULL', 'Rubio', '0', '1968-03-13', 'M', 'NULL', 'M', 'albert21@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8011, rue de Cambrai', 'NULL', '1 (11) 500 555-0194', '2013-12-03', '0-1 Miles'], ['27847', '271', 'AW00027847', 'NULL', 'Kristina', 'NULL', 'Rana', '0', '1963-04-25', 'M', 'NULL', 'F', 'kristina11@adventure-works.com', '10000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '2096 Blackwood Drive', 'NULL', '1 (11) 500 555-0117', '2013-06-18', '0-1 Miles'], ['27848', '279', 'AW00027848', 'NULL', 'Fernando', 'NULL', 'Perez', '0', '1962-02-22', 'M', 'NULL', 'M', 'fernando37@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '1797 Victory Lane', 'NULL', '1 (11) 500 555-0184', '2013-10-28', '1-2 Miles'], ['27849', '220', 'AW00027849', 'NULL', 'Dalton', 'NULL', 'Adams', '0', '1966-05-01', 'M', 'NULL', 'M', 'dalton31@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3738, chaussée de Tournai', 'NULL', '1 (11) 500 555-0111', '2013-11-07', '0-1 Miles'], ['27850', '223', 'AW00027850', 'NULL', 'Jason', 'D', 'Green', '0', '1960-07-10', 'S', 'NULL', 'M', 'jason43@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '48bis, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0140', '2013-03-27', '0-1 Miles'], ['27851', '197', 'AW00027851', 'NULL', 'Diana', 'NULL', 'Martin', '0', '1943-07-04', 'M', 'NULL', 'F', 'diana0@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '9554, rue des Pyrenees', 'NULL', '1 (11) 500 555-0154', '2013-04-08', '0-1 Miles'], ['27852', '251', 'AW00027852', 'NULL', 'Jamie', 'L', 'Ramos', '0', '1944-10-19', 'M', 'NULL', 'M', 'jamie39@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1394 Firestone', 'NULL', '1 (11) 500 555-0117', '2013-09-11', '0-1 Miles'], ['27853', '208', 'AW00027853', 'NULL', 'Amy', 'R', 'Zheng', '0', '1946-03-15', 'S', 'NULL', 'F', 'amy26@adventure-works.com', '10000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '1', '9944/998, rue Faubourg St Antoine', 'NULL', '1 (11) 500 555-0152', '2013-09-22', '0-1 Miles'], ['27854', '204', 'AW00027854', 'NULL', 'Marc', 'I', 'Rubio', '0', '1947-01-08', 'S', 'NULL', 'M', 'marc25@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '757, rue de la Centenaire', 'NULL', '1 (11) 500 555-0152', '2013-12-02', '1-2 Miles'], ['27855', '121', 'AW00027855', 'NULL', 'Lisa', 'L', 'Ye', '0', '1947-06-21', 'S', 'NULL', 'F', 'lisa13@adventure-works.com', '20000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Carlsplatz 45', 'NULL', '1 (11) 500 555-0112', '2013-11-02', '0-1 Miles'], ['27856', '267', 'AW00027856', 'NULL', 'Bonnie', 'W', 'Tang', '0', '1946-07-14', 'M', 'NULL', 'F', 'bonnie9@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7744 Lacorso Drive', 'NULL', '1 (11) 500 555-0187', '2013-09-26', '0-1 Miles'], ['27857', '205', 'AW00027857', 'NULL', 'Brandi', 'M', 'Munoz', '0', '1947-08-23', 'S', 'NULL', 'F', 'brandi7@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6, rue Léo Delibes', 'NULL', '1 (11) 500 555-0153', '2013-03-14', '2-5 Miles'], ['27858', '143', 'AW00027858', 'Mr.', 'Anders', 'B', 'Skjønaa', '0', '1948-05-01', 'S', 'NULL', 'F', 'anders0@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Alderstr 8139', 'NULL', '685-555-0100', '2013-07-20', '2-5 Miles'], ['27859', '135', 'AW00027859', 'NULL', 'Danny', 'NULL', 'Carlson', '0', '1948-06-23', 'M', 'NULL', 'M', 'danny19@adventure-works.com', '20000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Am Kreuz 4164', 'NULL', '1 (11) 500 555-0168', '2013-04-12', '0-1 Miles'], ['27860', '5', 'AW00027860', 'NULL', 'Hector', 'NULL', 'Martin', '0', '1985-12-19', 'M', 'NULL', 'M', 'hector20@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '7640 First Ave.', 'NULL', '1 (11) 500 555-0115', '2013-12-21', '2-5 Miles'], ['27861', '39', 'AW00027861', 'NULL', 'Karen', 'C', 'He', '0', '1985-07-20', 'S', 'NULL', 'F', 'karen28@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '478 McFaul Drive', 'NULL', '1 (11) 500 555-0112', '2013-12-20', '1-2 Miles'], ['27862', '24', 'AW00027862', 'NULL', 'Joanna', 'M', 'Alonso', '0', '1985-02-06', 'M', 'NULL', 'F', 'joanna7@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5416 Thornwood Dr.', 'NULL', '1 (11) 500 555-0194', '2013-12-21', '2-5 Miles'], ['27863', '10', 'AW00027863', 'NULL', 'Carolyn', 'M', 'Ruiz', '0', '1986-01-22', 'M', 'NULL', 'F', 'carolyn24@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '746 Whiteaben Drive', 'NULL', '1 (11) 500 555-0167', '2013-12-18', '0-1 Miles'], ['27864', '11', 'AW00027864', 'NULL', 'Shaun', 'NULL', 'Luo', '0', '1985-11-20', 'S', 'NULL', 'M', 'shaun7@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8819 Camino Norte', 'NULL', '1 (11) 500 555-0145', '2013-06-02', '0-1 Miles'], ['27865', '13', 'AW00027865', 'NULL', 'Destiny', 'NULL', 'Butler', '0', '1983-01-25', 'M', 'NULL', 'F', 'destiny62@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '7045 Creekside Drive', 'NULL', '1 (11) 500 555-0155', '2013-06-07', '0-1 Miles'], ['27866', '38', 'AW00027866', 'NULL', 'Sergio', 'NULL', 'Raman', '0', '1983-04-18', 'S', 'NULL', 'M', 'sergio12@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '5232 Fourth St.', 'NULL', '1 (11) 500 555-0187', '2013-07-06', '0-1 Miles'], ['27867', '6', 'AW00027867', 'NULL', 'Alberto', 'R', 'Blanco', '0', '1981-11-02', 'M', 'NULL', 'M', 'alberto15@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '9597 Sweeney Road', 'NULL', '1 (11) 500 555-0126', '2013-08-07', '0-1 Miles'], ['27868', '10', 'AW00027868', 'NULL', 'Jessie', 'J', 'Rubio', '0', '1982-03-13', 'S', 'NULL', 'F', 'jessie40@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '3883 Pheasant Ct.', 'NULL', '1 (11) 500 555-0113', '2013-09-29', '1-2 Miles'], ['27869', '5', 'AW00027869', 'NULL', 'Shawna', 'K', 'Shan', '0', '1981-12-07', 'S', 'NULL', 'F', 'shawna11@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '4480 N. Lanky Lane', 'NULL', '1 (11) 500 555-0170', '2013-10-23', '2-5 Miles'], ['27870', '40', 'AW00027870', 'NULL', 'Ryan', 'C', 'Davis', '0', '1985-01-14', 'S', 'NULL', 'M', 'ryan44@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '3966 Mahogany Way', 'NULL', '1 (11) 500 555-0178', '2013-11-12', '2-5 Miles'], ['27871', '27', 'AW00027871', 'NULL', 'Faith', 'NULL', 'Cook', '0', '1984-09-10', 'M', 'NULL', 'F', 'faith37@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '6980 Tanager Circle', 'NULL', '1 (11) 500 555-0159', '2013-12-23', '1-2 Miles'], ['27872', '26', 'AW00027872', 'NULL', 'Ivan', 'NULL', 'Martinez', '0', '1984-08-01', 'S', 'NULL', 'M', 'ivan14@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4021 Rosemarie Place', 'NULL', '1 (11) 500 555-0192', '2013-12-17', '0-1 Miles'], ['27873', '19', 'AW00027873', 'NULL', 'Dawn', 'NULL', 'Xu', '0', '1983-10-01', 'M', 'NULL', 'F', 'dawn14@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5551 Orinda Court', 'NULL', '1 (11) 500 555-0149', '2012-12-28', '0-1 Miles'], ['27874', '2', 'AW00027874', 'NULL', 'Randy', 'J', 'Zhao', '0', '1983-12-16', 'S', 'NULL', 'M', 'randy12@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'P .o. Box 2162', 'NULL', '1 (11) 500 555-0116', '2013-03-11', '0-1 Miles'], ['27875', '26', 'AW00027875', 'NULL', 'Pamela', 'G', 'Patel', '0', '1983-03-20', 'S', 'NULL', 'F', 'pamela6@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '4147 Alamo Court', 'NULL', '1 (11) 500 555-0128', '2013-03-11', '2-5 Miles'], ['27876', '32', 'AW00027876', 'NULL', 'Willie', 'J', 'Deng', '0', '1982-11-10', 'M', 'NULL', 'M', 'willie21@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '5990 Curletto Drive', 'NULL', '1 (11) 500 555-0143', '2013-06-27', '1-2 Miles'], ['27877', '40', 'AW00027877', 'NULL', 'Rebekah', 'NULL', 'Dominguez', '0', '1982-08-16', 'S', 'NULL', 'F', 'rebekah33@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '2028 Revision Dr.', 'NULL', '1 (11) 500 555-0173', '2013-07-11', '0-1 Miles'], ['27878', '25', 'AW00027878', 'NULL', 'Dennis', 'J', 'He', '0', '1983-06-11', 'S', 'NULL', 'M', 'dennis20@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '6790 Loma Linda', 'NULL', '1 (11) 500 555-0171', '2013-08-03', '0-1 Miles'], ['27879', '36', 'AW00027879', 'NULL', 'Kelvin', 'E', 'Chander', '0', '1982-11-01', 'M', 'NULL', 'M', 'kelvin12@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '4657 Roundhouse Place', 'NULL', '1 (11) 500 555-0188', '2013-08-11', '0-1 Miles'], ['27880', '269', 'AW00027880', 'NULL', 'Curtis', 'G', 'Hu', '0', '1949-02-08', 'S', 'NULL', 'M', 'curtis17@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '4252 Alpine Rd.', 'NULL', '1 (11) 500 555-0161', '2013-04-11', '0-1 Miles'], ['27881', '193', 'AW00027881', 'NULL', 'Raul', 'NULL', 'Nath', '0', '1972-04-03', 'S', 'NULL', 'M', 'raul16@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '33, place de la République', 'NULL', '1 (11) 500 555-0134', '2013-12-16', '0-1 Miles'], ['27882', '117', 'AW00027882', 'NULL', 'Franklin', 'H', 'Hu', '0', '1972-07-23', 'M', 'NULL', 'M', 'franklin18@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Buergermeister-ulrich-str 123', 'NULL', '1 (11) 500 555-0127', '2013-04-12', '0-1 Miles'], ['27883', '119', 'AW00027883', 'NULL', 'Marc', 'NULL', 'Hernandez', '0', '1966-11-03', 'S', 'NULL', 'M', 'marc7@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Kulmer Straße 22', 'NULL', '1 (11) 500 555-0147', '2013-04-22', '0-1 Miles'], ['27884', '147', 'AW00027884', 'NULL', 'Jill', 'NULL', 'Alonso', '0', '1978-01-30', 'M', 'NULL', 'F', 'jill16@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Postenweg 2428', 'NULL', '1 (11) 500 555-0124', '2013-04-15', '0-1 Miles'], ['27885', '255', 'AW00027885', 'NULL', 'Marvin', 'J', 'Torres', '0', '1967-02-18', 'M', 'NULL', 'M', 'marvin12@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '438 Mt. Etna', 'NULL', '1 (11) 500 555-0111', '2013-09-28', '0-1 Miles'], ['27886', '222', 'AW00027886', 'NULL', 'Denise', 'P', 'Gonzalez', '0', '1971-09-21', 'S', 'NULL', 'F', 'denise19@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '80, avenue de Malakoff', 'NULL', '1 (11) 500 555-0116', '2013-11-06', '2-5 Miles'], ['27887', '204', 'AW00027887', 'NULL', 'Eugene', 'C', 'Zhang', '0', '1966-03-07', 'S', 'NULL', 'M', 'eugene4@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '338, rue Faubourg St Antoine', 'NULL', '1 (11) 500 555-0168', '2013-05-05', '2-5 Miles'], ['27888', '192', 'AW00027888', 'NULL', 'Tina', 'NULL', 'Rodriguez', '0', '1965-12-12', 'S', 'NULL', 'F', 'tina21@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '39, place de Fontenoy', 'NULL', '1 (11) 500 555-0180', '2013-12-17', '2-5 Miles'], ['27889', '203', 'AW00027889', 'NULL', 'Jodi', 'K', 'Xie', '0', '1965-11-19', 'S', 'NULL', 'F', 'jodi3@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '54, avenue du Port', 'NULL', '1 (11) 500 555-0126', '2013-10-25', '2-5 Miles'], ['27890', '237', 'AW00027890', 'NULL', 'Kyle', 'NULL', 'Evans', '0', '1966-02-07', 'S', 'NULL', 'M', 'kyle30@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '7367 Walters Way', 'NULL', '1 (11) 500 555-0185', '2013-09-12', '0-1 Miles'], ['27891', '243', 'AW00027891', 'NULL', 'Carlos', 'NULL', 'Howard', '0', '1971-10-19', 'M', 'NULL', 'M', 'carlos13@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '8711 Pepper Dr.', 'NULL', '1 (11) 500 555-0193', '2013-09-13', '0-1 Miles'], ['27892', '265', 'AW00027892', 'NULL', 'Isabella', 'NULL', 'Foster', '0', '1966-04-10', 'M', 'NULL', 'F', 'isabella26@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '9355 Slow Creek Road', 'NULL', '1 (11) 500 555-0188', '2013-10-02', '0-1 Miles'], ['27893', '190', 'AW00027893', 'NULL', 'Clinton', 'D', 'Jiménez', '0', '1965-05-20', 'S', 'NULL', 'M', 'clinton2@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '98, rue des Berges', 'NULL', '1 (11) 500 555-0151', '2013-09-30', '2-5 Miles'], ['27894', '243', 'AW00027894', 'NULL', 'Gerald', 'L', 'Sai', '0', '1965-02-02', 'S', 'NULL', 'M', 'gerald35@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '7144 Flagstone Way', 'NULL', '1 (11) 500 555-0182', '2013-10-18', '2-5 Miles'], ['27895', '220', 'AW00027895', 'NULL', 'Colin', 'NULL', 'Pal', '0', '1963-09-04', 'S', 'NULL', 'M', 'colin35@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '876, rue de Berri', 'NULL', '1 (11) 500 555-0131', '2013-12-15', '0-1 Miles'], ['27896', '267', 'AW00027896', 'NULL', 'Orlando', 'H', 'Torres', '0', '1966-03-27', 'M', 'NULL', 'M', 'orlando11@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9564 Pennsylvania Blvd.', 'NULL', '1 (11) 500 555-0181', '2013-10-27', '0-1 Miles'], ['27897', '156', 'AW00027897', 'NULL', 'Robin', 'E', 'Munoz', '0', '1966-03-08', 'M', 'NULL', 'F', 'robin4@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Rykestr 8105', 'NULL', '1 (11) 500 555-0179', '2013-05-25', '0-1 Miles'], ['27898', '208', 'AW00027898', 'NULL', 'Trinity', 'NULL', 'Bell', '0', '1965-12-06', 'M', 'NULL', 'F', 'trinity12@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4, rue Philibert-Delorme', 'NULL', '1 (11) 500 555-0169', '2013-12-13', '0-1 Miles'], ['27899', '226', 'AW00027899', 'NULL', 'Mandy', 'NULL', 'Xu', '0', '1965-04-01', 'S', 'NULL', 'F', 'mandy14@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '44, rue du Départ', 'NULL', '1 (11) 500 555-0197', '2013-12-09', '0-1 Miles'], ['27900', '173', 'AW00027900', 'NULL', 'Toni', 'NULL', 'Prasad', '0', '1970-06-16', 'S', 'NULL', 'F', 'toni9@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Viktoria-Luise-Platz 576', 'NULL', '1 (11) 500 555-0160', '2013-05-18', '0-1 Miles'], ['27901', '267', 'AW00027901', 'NULL', 'Mariah', 'J', 'Cooper', '0', '1965-02-15', 'M', 'NULL', 'F', 'mariah33@adventure-works.com', '40000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7865 Mt. Diablo St', 'NULL', '1 (11) 500 555-0138', '2013-04-19', '0-1 Miles'], ['27902', '147', 'AW00027902', 'NULL', 'Carolyn', 'NULL', 'Alonso', '0', '1965-01-01', 'S', 'NULL', 'F', 'carolyn29@adventure-works.com', '40000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Dunckerstr 4825', 'NULL', '1 (11) 500 555-0134', '2013-07-30', '0-1 Miles'], ['27903', '222', 'AW00027903', 'NULL', 'Janelle', 'NULL', 'Suri', '0', '1976-02-16', 'M', 'NULL', 'F', 'janelle0@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6268, chaussée de Tournai', 'NULL', '1 (11) 500 555-0152', '2013-03-28', '1-2 Miles'], ['27904', '238', 'AW00027904', 'NULL', 'Andre', 'NULL', 'Rana', '0', '1976-03-08', 'M', 'NULL', 'M', 'andre11@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '194 Barberry Court', 'NULL', '1 (11) 500 555-0121', '2013-02-24', '1-2 Miles'], ['27905', '271', 'AW00027905', 'NULL', 'Mario', 'M', 'Black', '0', '1976-03-11', 'S', 'NULL', 'M', 'mario19@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '8349 Roxbury Drive', 'NULL', '1 (11) 500 555-0162', '2013-06-18', '0-1 Miles'], ['27906', '264', 'AW00027906', 'NULL', 'Gilbert', 'E', 'Chen', '0', '1981-04-13', 'M', 'NULL', 'M', 'gilbert1@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '8247 Crescent Avenue', 'NULL', '1 (11) 500 555-0170', '2013-10-21', '0-1 Miles'], ['27907', '237', 'AW00027907', 'NULL', 'Michael', 'NULL', 'Taylor', '0', '1981-04-13', 'S', 'NULL', 'M', 'michael41@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Rt. 470 Box A', 'NULL', '1 (11) 500 555-0113', '2013-10-24', '2-5 Miles'], ['27908', '165', 'AW00027908', 'NULL', 'Adriana', 'NULL', 'Sanchez', '0', '1981-11-01', 'S', 'NULL', 'F', 'adriana21@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Knaackstr 956', 'Leiter der Abteilung', '1 (11) 500 555-0127', '2013-05-28', '0-1 Miles'], ['27909', '245', 'AW00027909', 'NULL', 'Mayra', 'NULL', 'Randall', '0', '1981-11-09', 'S', 'NULL', 'F', 'mayra11@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '8079 Precipice Drive', 'NULL', '1 (11) 500 555-0119', '2013-10-10', '2-5 Miles'], ['27910', '35', 'AW00027910', 'NULL', 'Arturo', 'F', 'Zhou', '0', '1948-08-11', 'M', 'NULL', 'M', 'arturo9@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', 'Knaackstr 2', 'NULL', '1 (11) 500 555-0129', '2013-02-13', '5-10 Miles'], ['27911', '626', 'AW00027911', 'NULL', 'Robert', 'L', 'Moore', '0', '1981-08-06', 'S', 'NULL', 'M', 'robert66@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8436 L St.', 'NULL', '237-555-0192', '2014-01-06', '1-2 Miles'], ['27912', '634', 'AW00027912', 'NULL', 'Caitlin', 'NULL', 'Ramirez', '0', '1981-09-07', 'M', 'NULL', 'F', 'caitlin5@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3304 East Narrows Drive', '# 103', '280-555-0149', '2013-12-19', '5-10 Miles'], ['27913', '300', 'AW00027913', 'NULL', 'Brittney', 'B', 'Zheng', '0', '1982-06-20', 'M', 'NULL', 'F', 'brittney18@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7861 Yosemite Dr.', 'NULL', '736-555-0130', '2013-08-11', '5-10 Miles'], ['27914', '312', 'AW00027914', 'NULL', 'Jasmine', 'NULL', 'Foster', '0', '1980-02-07', 'S', 'NULL', 'F', 'jasmine55@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '419 Mills Dr.', 'NULL', '131-555-0177', '2013-04-12', '5-10 Miles'], ['27915', '329', 'AW00027915', 'NULL', 'Jordan', 'L', 'Green', '0', '1985-04-21', 'S', 'NULL', 'F', 'jordan43@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '5310 Buena Vista Ave.', 'NULL', '457-555-0134', '2013-10-15', '1-2 Miles'], ['27916', '385', 'AW00027916', 'NULL', 'Aaron', 'J', 'Carter', '0', '1979-09-16', 'S', 'NULL', 'M', 'aaron43@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3450 Rio Grande Dr.', 'NULL', '180-555-0167', '2013-12-22', '5-10 Miles'], ['27917', '337', 'AW00027917', 'NULL', 'Andrea', 'L', 'Sanders', '0', '1984-10-29', 'S', 'NULL', 'F', 'andrea4@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5405 Glenellen Court', 'NULL', '203-555-0110', '2011-02-18', '5-10 Miles'], ['27918', '302', 'AW00027918', 'NULL', 'Samantha', 'R', 'Ross', '0', '1983-08-16', 'M', 'NULL', 'F', 'samantha29@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1433 Manila Avenue', 'NULL', '956-555-0151', '2011-02-16', '5-10 Miles'], ['27919', '618', 'AW00027919', 'NULL', 'Ryan', 'NULL', 'Lal', '0', '1978-04-19', 'S', 'NULL', 'M', 'ryan33@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7512 Sanford Street', 'NULL', '505-555-0116', '2011-02-27', '5-10 Miles'], ['27920', '385', 'AW00027920', 'NULL', 'Mary', 'W', 'Howard', '0', '1978-06-18', 'S', 'NULL', 'F', 'mary39@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8157 W. Buchanan', 'NULL', '120-555-0183', '2011-02-15', '5-10 Miles'], ['27921', '49', 'AW00027921', 'NULL', 'Sydney', 'NULL', 'Long', '0', '1958-10-08', 'M', 'NULL', 'F', 'sydney32@adventure-works.com', '70000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '5425 Highland Circle', 'NULL', '287-555-0110', '2013-08-19', '2-5 Miles'], ['27922', '611', 'AW00027922', 'NULL', 'Isabella', 'E', 'King', '0', '1964-06-10', 'M', 'NULL', 'F', 'isabella50@adventure-works.com', '70000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '233 Heights Ave.', 'NULL', '557-555-0146', '2013-10-19', '2-5 Miles'], ['27923', '178', 'AW00027923', 'NULL', 'Douglas', 'M', 'Arun', '0', '1964-03-18', 'S', 'NULL', 'M', 'douglas10@adventure-works.com', '130000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', 'Pascalstr 241', 'NULL', '1 (11) 500 555-0112', '2013-10-23', '5-10 Miles'], ['27924', '168', 'AW00027924', 'NULL', 'Jeffery', 'NULL', 'He', '0', '1962-11-22', 'S', 'NULL', 'M', 'jeffery18@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Postenweg 2428', 'NULL', '1 (11) 500 555-0135', '2013-03-29', '5-10 Miles'], ['27925', '238', 'AW00027925', 'NULL', 'Adam', 'NULL', 'Butler', '0', '1962-08-10', 'S', 'NULL', 'M', 'adam12@adventure-works.com', '150000.00', '2', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '4', '4799 Buena Vista', 'NULL', '1 (11) 500 555-0118', '2013-11-13', '0-1 Miles'], ['27926', '208', 'AW00027926', 'NULL', 'Eduardo', 'B', 'Mitchell', '0', '1961-07-06', 'S', 'NULL', 'M', 'eduardo35@adventure-works.com', '100000.00', '2', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '10, rue des Vendangeurs', 'NULL', '1 (11) 500 555-0178', '2013-03-17', '5-10 Miles'], ['27927', '232', 'AW00027927', 'NULL', 'Omar', 'NULL', 'Zhao', '0', '1961-10-02', 'M', 'NULL', 'M', 'omar10@adventure-works.com', '120000.00', '3', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '4', '9038 Ida Drive', 'NULL', '1 (11) 500 555-0147', '2013-12-24', '5-10 Miles'], ['27928', '258', 'AW00027928', 'Ms.', 'Dianne', 'K.', 'Slattengren', '0', '1961-12-06', 'S', 'NULL', 'F', 'dianne0@adventure-works.com', '160000.00', '2', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '1574 Hudson Ave.', 'NULL', '204-555-0100', '2013-08-27', '5-10 Miles'], ['27929', '271', 'AW00027929', 'NULL', 'Ross', 'C', 'Madan', '0', '1961-12-26', 'S', 'NULL', 'M', 'ross7@adventure-works.com', '170000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '8390 E. 32nd Street', 'NULL', '1 (11) 500 555-0151', '2013-03-23', '0-1 Miles'], ['27930', '126', 'AW00027930', 'NULL', 'Clarence', 'A', 'Sharma', '0', '1961-04-22', 'S', 'NULL', 'M', 'clarence24@adventure-works.com', '110000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Kalkweg 4435', 'NULL', '1 (11) 500 555-0158', '2013-04-01', '10+ Miles'], ['27931', '138', 'AW00027931', 'NULL', 'Tabitha', 'R', 'Patel', '0', '1961-01-14', 'M', 'NULL', 'F', 'tabitha2@adventure-works.com', '110000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', 'Wertheimer Straße 899', 'NULL', '1 (11) 500 555-0171', '2013-11-22', '10+ Miles'], ['27932', '144', 'AW00027932', 'NULL', 'Leslie', 'M', 'Diaz', '0', '1972-01-08', 'S', 'NULL', 'F', 'leslie3@adventure-works.com', '110000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', 'Am Kreuz 950', 'NULL', '1 (11) 500 555-0111', '2013-08-09', '5-10 Miles'], ['27933', '223', 'AW00027933', 'NULL', 'Amber', 'NULL', 'Evans', '0', '1959-08-19', 'S', 'NULL', 'F', 'amber0@adventure-works.com', '80000.00', '3', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '9363, rue Saint-Lazare', 'NULL', '1 (11) 500 555-0131', '2013-11-20', '2-5 Miles'], ['27934', '211', 'AW00027934', 'Ms.', 'Lanna', 'A.', 'Slaven', '0', '1955-12-07', 'M', 'NULL', 'F', 'lanna0@adventure-works.com', '70000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '70, rue de Cambrai', 'NULL', '962-555-0100', '2013-12-13', '2-5 Miles'], ['27935', '180', 'AW00027935', 'NULL', 'Johnny', 'NULL', 'Chander', '0', '1950-10-21', 'M', 'NULL', 'M', 'johnny17@adventure-works.com', '60000.00', '3', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '62, cours Mirabeau', 'NULL', '1 (11) 500 555-0137', '2013-08-26', '10+ Miles'], ['27936', '185', 'AW00027936', 'NULL', 'Bruce', 'D', 'Martin', '0', '1951-01-04', 'M', 'NULL', 'M', 'bruce22@adventure-works.com', '60000.00', '3', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '4', '2080, quai de Grenelle', 'NULL', '1 (11) 500 555-0135', '2013-06-17', '2-5 Miles'], ['27937', '147', 'AW00027937', 'NULL', 'Kristine', 'F', 'Alvarez', '0', '1950-11-19', 'S', 'NULL', 'F', 'kristine6@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Am Gallberg 2345', 'NULL', '1 (11) 500 555-0146', '2013-03-18', '2-5 Miles'], ['27938', '254', 'AW00027938', 'NULL', 'Ricky', 'NULL', 'Serrano', '0', '1950-09-23', 'S', 'NULL', 'M', 'ricky17@adventure-works.com', '130000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '1226 Linden Lane', 'NULL', '1 (11) 500 555-0117', '2013-07-12', '5-10 Miles'], ['27939', '264', 'AW00027939', 'NULL', 'Lawrence', 'NULL', 'Navarro', '0', '1951-06-19', 'M', 'NULL', 'M', 'lawrence8@adventure-works.com', '130000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '7386 Ironwood Drive', 'NULL', '1 (11) 500 555-0174', '2013-04-10', '5-10 Miles'], ['27940', '250', 'AW00027940', 'NULL', 'Ross', 'C', 'Suarez', '0', '1952-04-26', 'S', 'NULL', 'M', 'ross37@adventure-works.com', '130000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '622 Medina Dr.', 'NULL', '1 (11) 500 555-0183', '2013-05-11', '5-10 Miles'], ['27941', '119', 'AW00027941', 'NULL', 'Margaret', 'F', 'Chen', '0', '1958-12-07', 'M', 'NULL', 'F', 'margaret9@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Hochstr 8444', 'NULL', '1 (11) 500 555-0172', '2013-06-24', '2-5 Miles'], ['27942', '216', 'AW00027942', 'NULL', 'Marvin', 'NULL', 'Diaz', '0', '1965-06-18', 'S', 'NULL', 'M', 'marvin3@adventure-works.com', '90000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '1', '777, rue de Terre Neuve', 'NULL', '1 (11) 500 555-0184', '2013-01-30', '2-5 Miles'], ['27943', '121', 'AW00027943', 'NULL', 'Sabrina', 'NULL', 'Alvarez', '0', '1960-04-17', 'S', 'NULL', 'F', 'sabrina2@adventure-works.com', '120000.00', '2', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Pflugstr 2525', 'NULL', '1 (11) 500 555-0123', '2013-04-19', '5-10 Miles'], ['27944', '133', 'AW00027944', 'NULL', 'Dalton', 'NULL', 'Bell', '0', '1960-06-08', 'S', 'NULL', 'M', 'dalton85@adventure-works.com', '120000.00', '2', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Königsteiner Straße 109', 'NULL', '1 (11) 500 555-0173', '2013-05-28', '5-10 Miles'], ['27945', '250', 'AW00027945', 'NULL', 'Christine', 'A', 'Andersen', '0', '1965-04-08', 'S', 'NULL', 'F', 'christine8@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '1', '4750 Bay View Dr.', 'NULL', '1 (11) 500 555-0138', '2013-04-26', '0-1 Miles'], ['27946', '272', 'AW00027946', 'NULL', 'Katie', 'NULL', 'Holt', '0', '1959-10-31', 'M', 'NULL', 'F', 'katie14@adventure-works.com', '170000.00', '0', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '4', '9355 Stanley Dollar Dr.', 'NULL', '1 (11) 500 555-0195', '2013-11-19', '10+ Miles'], ['27947', '134', 'AW00027947', 'NULL', 'Alison', 'NULL', 'Andersen', '0', '1959-04-09', 'S', 'NULL', 'F', 'alison13@adventure-works.com', '110000.00', '2', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Hansaallee 2', 'NULL', '1 (11) 500 555-0119', '2013-10-28', '10+ Miles'], ['27948', '150', 'AW00027948', 'Ms.', 'Cathy', 'J.', 'Sloan', '0', '1964-07-22', 'M', 'NULL', 'M', 'cathy0@adventure-works.com', '120000.00', '2', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', 'Marketplatz 75', 'NULL', '756-555-0100', '2013-05-30', '10+ Miles'], ['27949', '279', 'AW00027949', 'NULL', 'Jason', 'A', 'Russell', '0', '1958-08-26', 'S', 'NULL', 'M', 'jason17@adventure-works.com', '170000.00', '0', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '4035 Red Maple Ct', 'NULL', '1 (11) 500 555-0118', '2013-01-04', '0-1 Miles'], ['27950', '184', 'AW00027950', 'NULL', 'Shannon', 'NULL', 'Sanz', '0', '1957-10-26', 'M', 'NULL', 'M', 'shannon40@adventure-works.com', '80000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '74, rue Descartes', 'NULL', '1 (11) 500 555-0122', '2013-11-06', '10+ Miles'], ['27951', '204', 'AW00027951', 'NULL', 'Roy', 'NULL', 'Torres', '0', '1958-01-09', 'S', 'NULL', 'M', 'roy31@adventure-works.com', '80000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '839, rue Mazagran', 'NULL', '1 (11) 500 555-0142', '2013-12-14', '2-5 Miles'], ['27952', '144', 'AW00027952', 'NULL', 'Roy', 'NULL', 'Perez', '0', '1957-12-19', 'M', 'NULL', 'M', 'roy21@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', 'Haberstr 900', 'NULL', '1 (11) 500 555-0124', '2013-06-27', '2-5 Miles'], ['27953', '262', 'AW00027953', 'NULL', 'Marie', 'NULL', 'Garcia', '0', '1963-05-11', 'M', 'NULL', 'F', 'marie16@adventure-works.com', '160000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4003 Sugarland Circle', 'NULL', '1 (11) 500 555-0159', '2013-02-12', '0-1 Miles'], ['27954', '192', 'AW00027954', 'NULL', 'Brenda', 'Q', 'Saunders', '0', '1957-01-29', 'S', 'NULL', 'F', 'brenda14@adventure-works.com', '80000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '87, rue des Vendangeurs', 'NULL', '1 (11) 500 555-0121', '2013-08-21', '2-5 Miles'], ['27955', '231', 'AW00027955', 'NULL', 'Ramon', 'M', 'Wu', '0', '1962-05-24', 'M', 'NULL', 'M', 'ramon6@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '62 Yolanda Circle', 'NULL', '1 (11) 500 555-0181', '2013-06-20', '10+ Miles'], ['27956', '258', 'AW00027956', 'NULL', 'Terrence', 'NULL', 'Jai', '0', '1956-10-11', 'M', 'NULL', 'M', 'terrence11@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '5050 Mt. Diablo St.', 'NULL', '1 (11) 500 555-0151', '2013-02-21', '0-1 Miles'], ['27957', '262', 'AW00027957', 'NULL', 'Tabitha', 'NULL', 'Suri', '0', '1956-08-19', 'S', 'NULL', 'F', 'tabitha0@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '2870 Park Glenn', 'NULL', '1 (11) 500 555-0141', '2013-03-31', '10+ Miles'], ['27958', '265', 'AW00027958', 'NULL', 'Marcus', 'G', 'Clark', '0', '1968-02-16', 'S', 'NULL', 'M', 'marcus20@adventure-works.com', '150000.00', '4', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '101, avenue de la Gare', 'NULL', '1 (11) 500 555-0147', '2013-12-16', '10+ Miles'], ['27959', '158', 'AW00027959', 'NULL', 'Armando', 'F', 'Ramos', '0', '1961-09-08', 'S', 'NULL', 'M', 'armando17@adventure-works.com', '110000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '2', 'Lieblingsweg 245', 'NULL', '1 (11) 500 555-0117', '2013-08-01', '10+ Miles'], ['27960', '160', 'AW00027960', 'NULL', 'Randall', 'NULL', 'Alonso', '0', '1956-05-21', 'M', 'NULL', 'M', 'randall9@adventure-works.com', '110000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '2', 'Hansaallee 57', 'NULL', '1 (11) 500 555-0116', '2013-04-20', '10+ Miles'], ['27961', '191', 'AW00027961', 'NULL', 'Alejandro', 'K', 'Zheng', '0', '1954-11-21', 'M', 'NULL', 'M', 'alejandro22@adventure-works.com', '70000.00', '5', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6, rue Philibert-Delorme', 'NULL', '1 (11) 500 555-0134', '2013-03-23', '10+ Miles'], ['27962', '187', 'AW00027962', 'NULL', 'Rebekah', 'M', 'Martin', '0', '1955-05-05', 'S', 'NULL', 'F', 'rebekah20@adventure-works.com', '80000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '8, rue des Vendangeurs', 'NULL', '1 (11) 500 555-0123', '2013-07-30', '10+ Miles'], ['27963', '132', 'AW00027963', 'NULL', 'Kendra', 'N', 'Dominguez', '0', '1960-08-22', 'M', 'NULL', 'F', 'kendra12@adventure-works.com', '120000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '3', 'Platz des Landtags 12', 'NULL', '1 (11) 500 555-0118', '2013-12-12', '10+ Miles'], ['27964', '243', 'AW00027964', 'NULL', 'Alicia', 'NULL', 'Shan', '0', '1954-11-11', 'S', 'NULL', 'F', 'alicia8@adventure-works.com', '150000.00', '3', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '388 Frayne Lane', 'NULL', '1 (11) 500 555-0175', '2013-05-04', '10+ Miles'], ['27965', '260', 'AW00027965', 'NULL', 'Meredith', 'NULL', 'Gomez', '0', '1960-05-09', 'S', 'NULL', 'F', 'meredith23@adventure-works.com', '160000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '5175 Elm Rd.', 'NULL', '1 (11) 500 555-0111', '2013-03-09', '0-1 Miles'], ['27966', '211', 'AW00027966', 'NULL', 'Jenny', 'NULL', 'Chen', '0', '1953-08-12', 'S', 'NULL', 'F', 'jenny4@adventure-works.com', '80000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '3738, chaussée de Tournai', 'NULL', '1 (11) 500 555-0178', '2013-03-24', '10+ Miles'], ['27967', '278', 'AW00027967', 'NULL', 'Stefanie', 'NULL', 'Patel', '0', '1953-06-23', 'S', 'NULL', 'F', 'stefanie2@adventure-works.com', '170000.00', '5', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '4', '8980 Logan Court', 'NULL', '1 (11) 500 555-0113', '2013-04-18', '10+ Miles'], ['27968', '17', 'AW00027968', 'NULL', 'Roger', 'NULL', 'Xu', '0', '1981-12-04', 'M', 'NULL', 'M', 'roger32@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '4816 Condor Dr', 'NULL', '1 (11) 500 555-0130', '2013-02-02', '10+ Miles'], ['27969', '20', 'AW00027969', 'NULL', 'Bryant', 'L', 'Patel', '0', '1982-03-28', 'M', 'NULL', 'M', 'bryant3@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '7107 Vista Valley Rd.', 'NULL', '1 (11) 500 555-0117', '2013-11-25', '10+ Miles'], ['27970', '11', 'AW00027970', 'NULL', 'Willie', 'M', 'Andersen', '0', '1981-03-08', 'M', 'NULL', 'M', 'willie32@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '8000 Kiska Court', 'NULL', '1 (11) 500 555-0150', '2013-04-04', '10+ Miles'], ['27971', '4', 'AW00027971', 'NULL', 'Jodi', 'M', 'Jai', '0', '1979-08-29', 'S', 'NULL', 'F', 'jodi11@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '7446 The Alameda', 'NULL', '1 (11) 500 555-0121', '2013-10-30', '10+ Miles'], ['27972', '13', 'AW00027972', 'Mr.', 'Leonard', 'J.', 'Smith', '0', '1979-01-30', 'M', 'NULL', 'M', 'leonard0@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '8483 Arizona Drive', 'NULL', '128-555-0100', '2013-11-23', '10+ Miles'], ['27973', '37', 'AW00027973', 'NULL', 'Randall', 'NULL', 'Serrano', '0', '1984-11-22', 'M', 'NULL', 'M', 'randall18@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '2', '1095 Collins Drive', 'NULL', '1 (11) 500 555-0182', '2013-11-24', '10+ Miles'], ['27974', '23', 'AW00027974', 'NULL', 'Dustin', 'NULL', 'Shen', '0', '1978-11-19', 'S', 'NULL', 'M', 'dustin2@adventure-works.com', '160000.00', '2', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '5469 Poor Ridge Court', 'NULL', '1 (11) 500 555-0110', '2013-11-16', '0-1 Miles'], ['27975', '4', 'AW00027975', 'NULL', 'Jay', 'NULL', 'Gill', '0', '1977-11-08', 'S', 'NULL', 'M', 'jay43@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '4932 Reliz Valley Road', 'NULL', '1 (11) 500 555-0135', '2013-09-11', '10+ Miles'], ['27976', '2', 'AW00027976', 'NULL', 'Dominique', 'J', 'Gonzalez', '0', '1977-10-24', 'S', 'NULL', 'F', 'dominique16@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '6685 Norris Court', 'NULL', '1 (11) 500 555-0178', '2013-09-16', '10+ Miles'], ['27977', '6', 'AW00027977', 'NULL', 'Jerome', 'H', 'Alonso', '0', '1977-10-21', 'S', 'NULL', 'M', 'jerome6@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '3', '7805 Peabody Road', 'NULL', '1 (11) 500 555-0162', '2013-11-09', '10+ Miles'], ['27978', '9', 'AW00027978', 'NULL', 'Barbara', 'NULL', 'Luo', '0', '1982-04-09', 'S', 'NULL', 'F', 'barbara37@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '5259 Prestwick Dr.', 'NULL', '1 (11) 500 555-0129', '2013-02-04', '10+ Miles'], ['27979', '10', 'AW00027979', 'NULL', 'Ramon', 'NULL', 'Zeng', '0', '1977-03-22', 'M', 'NULL', 'M', 'ramon20@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '426 San Rafael', 'NULL', '1 (11) 500 555-0111', '2013-08-02', '10+ Miles'], ['27980', '3', 'AW00027980', 'NULL', 'Crystal', 'NULL', 'Hu', '0', '1982-05-01', 'M', 'NULL', 'F', 'crystal21@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '6022 La Salle Ct.', 'NULL', '1 (11) 500 555-0126', '2013-05-16', '10+ Miles'], ['27981', '36', 'AW00027981', 'NULL', 'Aimee', 'R', 'Hu', '0', '1982-01-30', 'S', 'NULL', 'F', 'aimee15@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '9748 Sutherland Dr', 'NULL', '1 (11) 500 555-0141', '2013-01-31', '10+ Miles'], ['27982', '3', 'AW00027982', 'NULL', 'Cesar', 'L', 'Perez', '0', '1983-09-08', 'S', 'NULL', 'M', 'cesar21@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '4', '7106 Cynthia Drive', 'NULL', '1 (11) 500 555-0118', '2013-11-02', '10+ Miles'], ['27983', '28', 'AW00027983', 'NULL', 'Ruben', 'G', 'Saunders', '0', '1977-04-19', 'S', 'NULL', 'M', 'ruben43@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '3', '4796 Aster Dr', 'NULL', '1 (11) 500 555-0151', '2013-10-31', '10+ Miles'], ['27984', '24', 'AW00027984', 'NULL', 'Rebekah', 'L', 'Ramos', '0', '1976-08-29', 'S', 'NULL', 'F', 'rebekah37@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', 'Erlenweg 6664', 'NULL', '1 (11) 500 555-0165', '2013-11-28', '10+ Miles'], ['27985', '7', 'AW00027985', 'NULL', 'Michele', 'NULL', 'Shen', '0', '1976-01-07', 'S', 'NULL', 'F', 'michele2@adventure-works.com', '100000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '4', '4200 Greenbrook Dr.', 'NULL', '1 (11) 500 555-0116', '2013-11-17', '10+ Miles'], ['27986', '6', 'AW00027986', 'NULL', 'Henry', 'NULL', 'Vance', '0', '1975-10-05', 'S', 'NULL', 'M', 'henry6@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '6982 Duck Horn Court', 'NULL', '1 (11) 500 555-0193', '2013-12-09', '10+ Miles'], ['27987', '34', 'AW00027987', 'NULL', 'Wyatt', 'NULL', 'Jenkins', '0', '1975-12-17', 'S', 'NULL', 'M', 'wyatt58@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '611 Hilltop Dr.', 'NULL', '1 (11) 500 555-0132', '2013-12-04', '10+ Miles'], ['27988', '322', 'AW00027988', 'NULL', 'Dylan', 'D', 'Ross', '0', '1955-03-07', 'M', 'NULL', 'M', 'dylan3@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6140 Mt. Whitney Way', 'NULL', '182-555-0178', '2013-10-19', '5-10 Miles'], ['27989', '345', 'AW00027989', 'NULL', 'Joseph', 'P', 'Thomas', '0', '1953-09-05', 'M', 'NULL', 'M', 'joseph17@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '793 Crawford Street', 'NULL', '128-555-0119', '2014-01-07', '5-10 Miles'], ['27990', '347', 'AW00027990', 'NULL', 'Katherine', 'K', 'Thompson', '0', '1954-04-17', 'S', 'NULL', 'F', 'katherine86@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6480 Croyden Dr.', 'NULL', '368-555-0178', '2013-08-14', '5-10 Miles'], ['27991', '546', 'AW00027991', 'NULL', 'Natalie', 'J', 'Rivera', '0', '1954-04-16', 'M', 'NULL', 'F', 'natalie10@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '8286 Willow St.', 'NULL', '806-555-0112', '2013-09-15', '1-2 Miles'], ['27992', '548', 'AW00027992', 'NULL', 'Dylan', 'P', 'Taylor', '0', '1954-03-10', 'S', 'NULL', 'M', 'dylan36@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '9988 Belmont', 'NULL', '303-555-0180', '2013-11-19', '5-10 Miles'], ['27993', '368', 'AW00027993', 'NULL', 'Hunter', 'NULL', 'Miller', '0', '1952-08-13', 'S', 'NULL', 'M', 'hunter65@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '3402 Wawona Lane', 'NULL', '369-555-0184', '2013-05-05', '1-2 Miles'], ['27994', '536', 'AW00027994', 'NULL', 'Jodi', 'L', 'Rai', '0', '1943-01-01', 'M', 'NULL', 'F', 'jodi18@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5680 Camelback Ct.', 'NULL', '622-555-0178', '2013-08-23', '5-10 Miles'], ['27995', '299', 'AW00027995', 'NULL', 'Carlos', 'E', 'Stewart', '0', '1942-10-06', 'S', 'NULL', 'M', 'carlos29@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '3053 W. Watson Court', 'NULL', '494-555-0132', '2013-03-02', '1-2 Miles'], ['27996', '339', 'AW00027996', 'NULL', 'Angela', 'NULL', 'Alexander', '0', '1942-11-18', 'M', 'NULL', 'F', 'angela21@adventure-works.com', '50000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1300 Zebra Street', 'NULL', '768-555-0181', '2013-02-09', '5-10 Miles'], ['27997', '302', 'AW00027997', 'NULL', 'Lydia', 'M', 'Malhotra', '0', '1948-09-21', 'S', 'NULL', 'F', 'lydia4@adventure-works.com', '50000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '1805 Gallagher Circle', 'NULL', '236-555-0166', '2013-11-01', '1-2 Miles'], ['27998', '65', 'AW00027998', 'NULL', 'Ethan', 'NULL', 'Lewis', '0', '1942-08-05', 'S', 'NULL', 'M', 'ethan39@adventure-works.com', '50000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '6149 Minert Rd.', 'NULL', '827-555-0127', '2013-09-10', '1-2 Miles'], ['27999', '547', 'AW00027999', 'NULL', 'Nathan', 'C', 'Shan', '0', '1949-04-20', 'S', 'NULL', 'M', 'nathan28@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '8600 Jocular', 'NULL', '113-555-0134', '2013-11-10', '1-2 Miles'], ['28000', '52', 'AW00028000', 'NULL', 'Rebecca', 'NULL', 'Roberts', '0', '1943-10-01', 'S', 'NULL', 'F', 'rebecca6@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '267 Roland Ct.', 'NULL', '275-555-0158', '2013-09-07', '1-2 Miles'], ['28001', '302', 'AW00028001', 'NULL', 'Sydney', 'C', 'Rodriguez', '0', '1944-11-23', 'M', 'NULL', 'F', 'sydney82@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5586 P St.', 'NULL', '436-555-0185', '2013-10-13', '10+ Miles'], ['28002', '611', 'AW00028002', 'NULL', 'Christy', 'J', 'Kumar', '0', '1944-08-16', 'S', 'NULL', 'F', 'christy25@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9187 Mario Way', 'NULL', '321-555-0111', '2013-04-01', '10+ Miles'], ['28003', '626', 'AW00028003', 'NULL', 'Julia', 'B', 'Sanchez', '0', '1945-05-18', 'M', 'NULL', 'F', 'julia47@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '4180 Valley Manor', 'NULL', '511-555-0168', '2013-02-20', '10+ Miles'], ['28004', '627', 'AW00028004', 'NULL', 'Andrea', 'NULL', 'Edwards', '0', '1945-03-08', 'M', 'NULL', 'F', 'andrea25@adventure-works.com', '60000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8341 Ronda Ct.', 'NULL', '947-555-0180', '2013-04-15', '10+ Miles'], ['28005', '299', 'AW00028005', 'NULL', 'Amber', 'L', 'Young', '0', '1946-02-19', 'M', 'NULL', 'F', 'amber24@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1652 Buskirk Ave', 'NULL', '637-555-0123', '2013-03-27', '10+ Miles'], ['28006', '337', 'AW00028006', 'NULL', 'Seth', 'A', 'Torres', '0', '1946-10-08', 'S', 'NULL', 'M', 'seth78@adventure-works.com', '50000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '9015 G St.', 'NULL', '407-555-0126', '2013-06-09', '1-2 Miles'], ['28007', '300', 'AW00028007', 'NULL', 'Clayton', 'A', 'Ye', '0', '1947-04-03', 'M', 'NULL', 'M', 'clayton8@adventure-works.com', '50000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2918 Pleasant Circle', 'NULL', '556-555-0135', '2013-08-15', '10+ Miles'], ['28008', '548', 'AW00028008', 'NULL', 'Jada', 'G', 'Baker', '0', '1947-05-06', 'S', 'NULL', 'F', 'jada26@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '3854 Wildcat Circle', 'NULL', '976-555-0125', '2013-07-24', '1-2 Miles'], ['28009', '331', 'AW00028009', 'NULL', 'Arianna', 'C', 'Washington', '0', '1959-01-07', 'S', 'NULL', 'F', 'arianna11@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '5323 Stanford St', 'NULL', '822-555-0164', '2013-07-11', '1-2 Miles'], ['28010', '546', 'AW00028010', 'NULL', 'Justin', 'NULL', 'Long', '0', '1947-08-11', 'S', 'NULL', 'M', 'justin6@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7085 North 29th St', 'NULL', '694-555-0182', '2013-08-11', '10+ Miles'], ['28011', '545', 'AW00028011', 'NULL', 'Andrew', 'L', 'Lan', '0', '1948-08-24', 'M', 'NULL', 'M', 'andrew8@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2895 Hill Street', 'NULL', '641-555-0162', '2013-04-24', '10+ Miles'], ['28012', '542', 'AW00028012', 'NULL', 'Ian', 'NULL', 'Stewart', '0', '1954-12-07', 'S', 'NULL', 'M', 'ian88@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '8612 Pembrook Court', 'NULL', '898-555-0150', '2013-08-23', '1-2 Miles'], ['28013', '60', 'AW00028013', 'NULL', 'James', 'J', 'Miller', '0', '1955-04-12', 'M', 'NULL', 'M', 'james81@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4732 Mt. Hood Circle', 'NULL', '529-555-0121', '2011-08-13', '10+ Miles'], ['28014', '300', 'AW00028014', 'NULL', 'Rachel', 'J', 'Robinson', '0', '1950-04-22', 'S', 'NULL', 'F', 'rachel21@adventure-works.com', '30000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6267 Eastgate Lane', 'NULL', '412-555-0111', '2011-02-04', '10+ Miles'], ['28015', '623', 'AW00028015', 'NULL', 'Christian', 'D', 'Chen', '0', '1958-05-15', 'M', 'NULL', 'M', 'christian12@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '572 Coldwater Drive', 'NULL', '277-555-0186', '2013-05-27', '1-2 Miles'], ['28016', '345', 'AW00028016', 'NULL', 'Cody', 'R', 'Sanders', '0', '1951-05-21', 'S', 'NULL', 'M', 'cody3@adventure-works.com', '20000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '4', '5893 Wiget Lane', 'NULL', '480-555-0112', '2013-10-10', '10+ Miles'], ['28017', '611', 'AW00028017', 'NULL', 'Christopher', 'B', 'Martin', '0', '1950-12-22', 'S', 'NULL', 'M', 'christopher15@adventure-works.com', '30000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '3', '4061 Vinewood Dr.', 'NULL', '332-555-0176', '2011-02-11', '1-2 Miles'], ['28018', '355', 'AW00028018', 'NULL', 'Rachel', 'NULL', 'Foster', '0', '1956-03-17', 'S', 'NULL', 'F', 'rachel64@adventure-works.com', '30000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6615 Winterglenn Way', 'NULL', '525-555-0184', '2011-01-30', '10+ Miles'], ['28019', '614', 'AW00028019', 'NULL', 'Melissa', 'NULL', 'Ramirez', '0', '1951-11-30', 'M', 'NULL', 'F', 'melissa29@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '6762 Mission Blvd', 'NULL', '140-555-0130', '2013-12-21', '10+ Miles'], ['28020', '616', 'AW00028020', 'NULL', 'Lucas', 'NULL', 'Griffin', '0', '1957-05-23', 'S', 'NULL', 'M', 'lucas68@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '3374 Edward Ave.', 'NULL', '318-555-0134', '2013-05-08', '2-5 Miles'], ['28021', '60', 'AW00028021', 'NULL', 'Katherine', 'NULL', 'Nelson', '0', '1952-03-14', 'S', 'NULL', 'F', 'katherine57@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '7323 Apple Drive', 'NULL', '606-555-0116', '2013-07-09', '2-5 Miles'], ['28022', '315', 'AW00028022', 'NULL', 'Jason', 'R', 'Lopez', '0', '1951-12-10', 'S', 'NULL', 'M', 'jason48@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '8361 Flora Ave.', 'NULL', '657-555-0127', '2011-02-15', '10+ Miles'], ['28023', '539', 'AW00028023', 'NULL', 'Andrea', 'D', 'James', '0', '1952-03-14', 'S', 'NULL', 'F', 'andrea8@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '3', '4645 Rossmor Parkway', 'NULL', '514-555-0198', '2014-01-03', '2-5 Miles'], ['28024', '302', 'AW00028024', 'NULL', 'Miguel', 'NULL', 'Perry', '0', '1951-10-04', 'M', 'NULL', 'M', 'miguel54@adventure-works.com', '70000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '9446 Camelback Ct.', 'NULL', '203-555-0116', '2014-01-17', '2-5 Miles'], ['28025', '68', 'AW00028025', 'NULL', 'Mya', 'J', 'Russell', '0', '1952-07-24', 'M', 'NULL', 'F', 'mya20@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '3797 Mt. Wilson Way', 'NULL', '891-555-0132', '2014-01-21', '2-5 Miles'], ['28026', '352', 'AW00028026', 'NULL', 'Paige', 'J', 'Ross', '0', '1969-01-18', 'M', 'NULL', 'F', 'paige4@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '796 Rain Drop Circle', 'NULL', '424-555-0112', '2013-11-27', '2-5 Miles'], ['28027', '69', 'AW00028027', 'NULL', 'Destiny', 'P', 'Hughes', '0', '1953-05-05', 'M', 'NULL', 'F', 'destiny59@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '2305 Ravenwood Drive', 'NULL', '117-555-0172', '2013-11-07', '2-5 Miles'], ['28028', '627', 'AW00028028', 'NULL', 'Elijah', 'H', 'Allen', '0', '1953-06-11', 'S', 'NULL', 'M', 'elijah49@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '9161 Viking Drive', 'NULL', '463-555-0119', '2013-04-08', '10+ Miles'], ['28029', '301', 'AW00028029', 'NULL', 'Seth', 'M', 'Price', '0', '1953-05-25', 'M', 'NULL', 'M', 'seth48@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4188 Lodge Dr.', 'NULL', '462-555-0193', '2013-08-24', '10+ Miles'], ['28030', '536', 'AW00028030', 'NULL', 'Jason', 'NULL', 'Gonzalez', '0', '1958-10-01', 'S', 'NULL', 'M', 'jason37@adventure-works.com', '70000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '3567 Sierra Street', 'NULL', '226-555-0143', '2011-02-10', '2-5 Miles'], ['28031', '307', 'AW00028031', 'NULL', 'Kari', 'NULL', 'Navarro', '0', '1952-09-05', 'S', 'NULL', 'F', 'kari30@adventure-works.com', '70000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '2782 Pacific', 'NULL', '575-555-0116', '2011-02-07', '2-5 Miles'], ['28032', '325', 'AW00028032', 'NULL', 'Grace', 'J', 'Coleman', '0', '1953-05-09', 'M', 'NULL', 'F', 'grace53@adventure-works.com', '70000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '9571 Live Oak Dr.', 'NULL', '113-555-0190', '2013-02-21', '10+ Miles'], ['28033', '302', 'AW00028033', 'NULL', 'Gavin', 'NULL', 'Jenkins', '0', '1952-08-19', 'S', 'NULL', 'M', 'gavin6@adventure-works.com', '70000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '3173 Darlene Drive', 'NULL', '942-555-0120', '2013-10-30', '10+ Miles'], ['28034', '51', 'AW00028034', 'NULL', 'Gabriella', 'NULL', 'Stewart', '0', '1959-09-12', 'M', 'NULL', 'F', 'gabriella24@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3433 Roland Dr.', 'NULL', '264-555-0157', '2013-12-04', '10+ Miles'], ['28035', '56', 'AW00028035', 'NULL', 'Gabriella', 'C', 'Green', '0', '1954-02-07', 'M', 'NULL', 'F', 'gabriella38@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '7874 Santa Barbara Rd.', 'NULL', '612-555-0141', '2013-04-29', '10+ Miles'], ['28036', '66', 'AW00028036', 'NULL', 'Jonathan', 'NULL', 'Gonzales', '0', '1953-12-03', 'S', 'NULL', 'M', 'jonathan16@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '7502 Elwood Drive', 'NULL', '419-555-0193', '2011-08-03', '2-5 Miles'], ['28037', '553', 'AW00028037', 'NULL', 'Jeremiah', 'T', 'Gonzales', '0', '1953-12-16', 'M', 'NULL', 'M', 'jeremiah34@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8424 Montanya Court', 'NULL', '140-555-0123', '2013-12-14', '10+ Miles'], ['28038', '298', 'AW00028038', 'NULL', 'Philip', 'NULL', 'Gomez', '0', '1953-08-19', 'M', 'NULL', 'M', 'philip0@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '478 Grant St', 'NULL', '455-555-0120', '2011-02-01', '10+ Miles'], ['28039', '352', 'AW00028039', 'NULL', 'Xavier', 'E', 'Lee', '0', '1959-08-30', 'S', 'NULL', 'M', 'xavier19@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '0', '5994 El Capitan', 'NULL', '303-555-0145', '2011-02-09', '2-5 Miles'], ['28040', '616', 'AW00028040', 'NULL', 'Jack', 'L', 'Mitchell', '0', '1954-08-22', 'M', 'NULL', 'M', 'jack47@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '4160 Saranap', 'NULL', '449-555-0192', '2011-02-08', '2-5 Miles'], ['28041', '631', 'AW00028041', 'NULL', 'Rebecca', 'J', 'Wright', '0', '1954-10-30', 'S', 'NULL', 'F', 'rebecca21@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '5648 Roland Ct.', 'NULL', '883-555-0117', '2011-02-27', '2-5 Miles'], ['28042', '311', 'AW00028042', 'NULL', 'Joseph', 'M', 'Brown', '0', '1960-04-11', 'S', 'NULL', 'M', 'joseph10@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '0', '5452 Corte Gilberto', 'NULL', '207-555-0158', '2011-02-12', '2-5 Miles'], ['28043', '311', 'AW00028043', 'NULL', 'Gabrielle', 'L', 'Young', '0', '1955-05-03', 'M', 'NULL', 'F', 'gabrielle65@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '8961 Abbey Court', 'NULL', '496-555-0194', '2013-04-24', '10+ Miles'], ['28044', '311', 'AW00028044', 'NULL', 'Jimmy', 'E', 'Navarro', '0', '1955-01-09', 'S', 'NULL', 'M', 'jimmy13@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '0', '1506 St. George Court', 'NULL', '499-555-0154', '2011-02-16', '2-5 Miles'], ['28045', '50', 'AW00028045', 'NULL', 'Zachary', 'D', 'Thomas', '0', '1955-07-02', 'M', 'NULL', 'M', 'zachary41@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2262 Main Street', 'NULL', '185-555-0113', '2013-09-07', '10+ Miles'], ['28046', '51', 'AW00028046', 'NULL', 'Michelle', 'NULL', 'Reed', '0', '1955-11-13', 'M', 'NULL', 'F', 'michelle20@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '21 Red Tree Way', 'NULL', '989-555-0127', '2013-12-13', '10+ Miles'], ['28047', '536', 'AW00028047', 'NULL', 'Jay', 'W', 'Sanchez', '0', '1956-06-18', 'S', 'NULL', 'M', 'jay27@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '8297 Dos Encinas', 'NULL', '198-555-0187', '2011-02-15', '2-5 Miles'], ['28048', '335', 'AW00028048', 'NULL', 'Samuel', 'NULL', 'Powell', '0', '1961-10-06', 'M', 'NULL', 'M', 'samuel7@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '8813 Driving Dr', 'NULL', '258-555-0112', '2013-10-31', '10+ Miles'], ['28049', '348', 'AW00028049', 'NULL', 'Xavier', 'T', 'Washington', '0', '1956-04-23', 'S', 'NULL', 'M', 'xavier53@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '1809 Candellero Dr.', 'NULL', '965-555-0186', '2013-02-13', '10+ Miles'], ['28050', '369', 'AW00028050', 'NULL', 'Isaiah', 'J', 'Evans', '0', '1956-04-03', 'M', 'NULL', 'M', 'isaiah22@adventure-works.com', '80000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '6691 Brookview Dr', 'NULL', '546-555-0111', '2013-10-10', '5-10 Miles'], ['28051', '68', 'AW00028051', 'NULL', 'Thomas', 'M', 'Young', '0', '1962-01-11', 'S', 'NULL', 'M', 'thomas53@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '7314 El Capitan Lane', 'NULL', '182-555-0117', '2011-08-28', '2-5 Miles'], ['28052', '611', 'AW00028052', 'NULL', 'Franklin', 'B', 'Li', '0', '1968-02-16', 'M', 'NULL', 'M', 'franklin3@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1771 Coastal Blvd.', 'NULL', '746-555-0127', '2013-11-04', '10+ Miles'], ['28053', '300', 'AW00028053', 'NULL', 'Jared', 'C', 'Howard', '0', '1956-10-25', 'M', 'NULL', 'M', 'jared13@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '7059 Garrow Dr.', 'NULL', '189-555-0162', '2013-04-15', '10+ Miles'], ['28054', '355', 'AW00028054', 'NULL', 'Carol', 'L', 'Cox', '0', '1957-05-07', 'M', 'NULL', 'F', 'carol7@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '885 Shakespeare Drive', 'NULL', '841-555-0161', '2013-03-30', '10+ Miles'], ['28055', '632', 'AW00028055', 'NULL', 'Brooke', 'A', 'Peterson', '0', '1963-10-21', 'S', 'NULL', 'F', 'brooke5@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2083 Lindenwood Drive', 'NULL', '488-555-0117', '2013-06-16', '10+ Miles'], ['28056', '644', 'AW00028056', 'NULL', 'Alex', 'NULL', 'Gray', '0', '1958-05-12', 'M', 'NULL', 'M', 'alex9@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3598 Wildberry Court', 'NULL', '909-555-0170', '2013-11-27', '10+ Miles'], ['28057', '637', 'AW00028057', 'NULL', 'Rachel', 'NULL', 'Anderson', '0', '1957-09-10', 'M', 'NULL', 'F', 'rachel12@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6735 Alet Court', 'NULL', '424-555-0194', '2013-03-25', '10+ Miles'], ['28058', '302', 'AW00028058', 'NULL', 'Jaime', 'C', 'Alvarez', '0', '1957-09-04', 'S', 'NULL', 'F', 'jaime5@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7799 Reality Dr', 'NULL', '523-555-0115', '2013-12-03', '10+ Miles'], ['28059', '298', 'AW00028059', 'NULL', 'Bradley', 'NULL', 'Shen', '0', '1959-05-15', 'S', 'NULL', 'M', 'bradley4@adventure-works.com', '60000.00', '3', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2755 Fairfield Ave', 'NULL', '929-555-0194', '2013-07-23', '10+ Miles'], ['28060', '548', 'AW00028060', 'NULL', 'Blake', 'NULL', 'Rodriguez', '0', '1977-04-13', 'M', 'NULL', 'M', 'blake20@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1378 String Dr', 'NULL', '517-555-0121', '2013-08-08', '2-5 Miles'], ['28061', '302', 'AW00028061', 'NULL', 'Kyle', 'NULL', 'Lopez', '0', '1977-01-05', 'S', 'NULL', 'M', 'kyle49@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '3234 Royal Arch Court', 'NULL', '758-555-0180', '2011-02-16', '0-1 Miles'], ['28062', '369', 'AW00028062', 'NULL', 'Xavier', 'C', 'Roberts', '0', '1971-09-11', 'S', 'NULL', 'M', 'xavier36@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6206 Arthur Rd', 'NULL', '697-555-0137', '2011-02-27', '2-5 Miles'], ['28063', '368', 'AW00028063', 'NULL', 'Gabrielle', 'A', 'Turner', '0', '1972-06-10', 'M', 'NULL', 'F', 'gabrielle49@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9081 Texas Way', '# A5', '827-555-0146', '2011-02-09', '2-5 Miles'], ['28064', '536', 'AW00028064', 'NULL', 'Tamara', 'NULL', 'Nath', '0', '1977-09-09', 'S', 'NULL', 'F', 'tamara28@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4555 Hackney Lane', 'NULL', '961-555-0131', '2011-02-23', '2-5 Miles'], ['28065', '300', 'AW00028065', 'NULL', 'Carrie', 'NULL', 'Gill', '0', '1971-07-04', 'S', 'NULL', 'F', 'carrie12@adventure-works.com', '70000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '9444 Camelback Ct.', 'NULL', '455-555-0168', '2011-02-02', '0-1 Miles'], ['28066', '315', 'AW00028066', 'NULL', 'Justin', 'G', 'Taylor', '0', '1980-04-12', 'M', 'NULL', 'M', 'justin40@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9727 N. Michell Canyon Rd.', 'NULL', '778-555-0170', '2011-01-29', '0-1 Miles'], ['28067', '335', 'AW00028067', 'NULL', 'Olivia', 'D', 'Bennett', '0', '1980-12-08', 'M', 'NULL', 'F', 'olivia48@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9991 El Pintado Road', 'NULL', '740-555-0170', '2011-02-08', '0-1 Miles'], ['28068', '345', 'AW00028068', 'NULL', 'Amanda', 'S', 'Wood', '0', '1975-04-12', 'S', 'NULL', 'F', 'amanda23@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '9106 Edwards Ave.', 'NULL', '380-555-0151', '2011-02-06', '0-1 Miles'], ['28069', '66', 'AW00028069', 'NULL', 'Jacob', 'I', 'Johnson', '0', '1977-12-31', 'S', 'NULL', 'M', 'jacob2@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '2219 Dewing Avenue', 'NULL', '769-555-0172', '2013-11-27', '0-1 Miles'], ['28070', '314', 'AW00028070', 'NULL', 'Ian', 'A', 'Morris', '0', '1979-04-07', 'S', 'NULL', 'M', 'ian85@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '2371 Deerfield Dr.', 'NULL', '364-555-0127', '2011-02-11', '1-2 Miles'], ['28071', '299', 'AW00028071', 'NULL', 'Trevor', 'L', 'Ross', '0', '1985-01-06', 'M', 'NULL', 'M', 'trevor3@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '9956 La Salle St.', 'NULL', '261-555-0142', '2011-02-08', '0-1 Miles'], ['28072', '53', 'AW00028072', 'NULL', 'Alyssa', 'NULL', 'Morris', '0', '1973-08-18', 'M', 'NULL', 'F', 'alyssa26@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '4187 Banbury Loop', 'NULL', '722-555-0183', '2013-10-29', '0-1 Miles'], ['28073', '60', 'AW00028073', 'NULL', 'Mackenzie', 'C', 'Green', '0', '1972-10-10', 'S', 'NULL', 'F', 'mackenzie35@adventure-works.com', '100000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '2961 Ameno Road', 'NULL', '270-555-0150', '2013-05-24', '0-1 Miles'], ['28074', '68', 'AW00028074', 'NULL', 'Justin', 'NULL', 'Davis', '0', '1983-10-19', 'M', 'NULL', 'M', 'justin36@adventure-works.com', '100000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '4601 San Ramon Road', 'NULL', '188-555-0144', '2013-10-17', '0-1 Miles'], ['28075', '641', 'AW00028075', 'NULL', 'Edward', 'NULL', 'Jones', '0', '1978-02-10', 'S', 'NULL', 'M', 'edward25@adventure-works.com', '110000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '7820 S. Rising Ave', 'NULL', '488-555-0131', '2013-11-23', '10+ Miles'], ['28076', '355', 'AW00028076', 'NULL', 'Logan', 'M', 'Williams', '0', '1973-05-11', 'S', 'NULL', 'M', 'logan51@adventure-works.com', '110000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '9604 Ryan Rd.', 'NULL', '310-555-0163', '2011-02-07', '1-2 Miles'], ['28077', '361', 'AW00028077', 'NULL', 'Sarah', 'N', 'Williams', '0', '1972-10-06', 'S', 'NULL', 'F', 'sarah4@adventure-works.com', '120000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '6820 Krueger Drive', 'NULL', '869-555-0167', '2013-06-04', '1-2 Miles'], ['28078', '542', 'AW00028078', 'NULL', 'Jack', 'L', 'Young', '0', '1974-09-09', 'S', 'NULL', 'M', 'jack54@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '1293 Silverwood Drive', 'NULL', '893-555-0174', '2011-02-18', '1-2 Miles'], ['28079', '63', 'AW00028079', 'NULL', 'Haley', 'B', 'Phillips', '0', '1979-03-03', 'M', 'NULL', 'F', 'haley45@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6842 Fernwood Drive', 'NULL', '337-555-0113', '2013-11-30', '1-2 Miles'], ['28080', '69', 'AW00028080', 'NULL', 'Isabella', 'NULL', 'Peterson', '0', '1974-03-25', 'S', 'NULL', 'F', 'isabella4@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6868 Firestone', 'NULL', '182-555-0156', '2013-02-28', '1-2 Miles'], ['28081', '547', 'AW00028081', 'NULL', 'Paige', 'NULL', 'Watson', '0', '1979-09-07', 'M', 'NULL', 'F', 'paige23@adventure-works.com', '100000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '5377 Pine Creek Way', 'NULL', '197-555-0160', '2013-12-14', '1-2 Miles'], ['28082', '633', 'AW00028082', 'NULL', 'Nathaniel', 'R', 'Peterson', '0', '1974-01-29', 'S', 'NULL', 'M', 'nathaniel6@adventure-works.com', '100000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '6237 El Rancho Dr.', 'NULL', '556-555-0155', '2013-03-02', '0-1 Miles'], ['28083', '298', 'AW00028083', 'NULL', 'Kaitlyn', 'M', 'Foster', '0', '1974-02-14', 'M', 'NULL', 'F', 'kaitlyn83@adventure-works.com', '110000.00', '2', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '4159 Apple Drive', 'NULL', '112-555-0196', '2011-02-12', '1-2 Miles'], ['28084', '299', 'AW00028084', 'NULL', 'Cameron', 'NULL', 'McDonald', '0', '1974-02-19', 'S', 'NULL', 'M', 'cameron35@adventure-works.com', '110000.00', '2', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '9761 Fox Way', 'NULL', '366-555-0123', '2013-09-06', '1-2 Miles'], ['28085', '627', 'AW00028085', 'NULL', 'Jeremiah', 'NULL', 'Evans', '0', '1985-01-12', 'M', 'NULL', 'M', 'jeremiah22@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1343 Prospect St', 'NULL', '589-555-0192', '2013-06-02', '5-10 Miles'], ['28086', '298', 'AW00028086', 'NULL', 'Bridget', 'NULL', 'Anand', '0', '1984-08-12', 'S', 'NULL', 'F', 'bridget22@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '313 Park Highlands', 'NULL', '144-555-0110', '2013-04-08', '5-10 Miles'], ['28087', '298', 'AW00028087', 'NULL', 'Maria', 'B', 'Simmons', '0', '1984-10-11', 'S', 'NULL', 'F', 'maria37@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '8727 Logan Court', 'NULL', '500-555-0195', '2013-05-29', '1-2 Miles'], ['28088', '298', 'AW00028088', 'NULL', 'Marshall', 'L', 'Lal', '0', '1984-10-25', 'M', 'NULL', 'M', 'marshall30@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9666 Northridge Ct.', 'NULL', '340-555-0154', '2011-03-06', '5-10 Miles'], ['28089', '307', 'AW00028089', 'NULL', 'Xavier', 'F', 'Campbell', '0', '1985-03-12', 'M', 'NULL', 'M', 'xavier38@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9930 Clinton Dr', 'NULL', '391-555-0120', '2013-09-12', '1-2 Miles'], ['28090', '322', 'AW00028090', 'NULL', 'Edward', 'D', 'Walker', '0', '1984-10-02', 'M', 'NULL', 'M', 'edward45@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5043 San Antonio', 'NULL', '600-555-0151', '2013-04-01', '5-10 Miles'], ['28091', '10', 'AW00028091', 'NULL', 'Valerie', 'NULL', 'Liang', '0', '1949-12-23', 'S', 'NULL', 'F', 'valerie18@adventure-works.com', '20000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7040 Santa Fe Street', 'NULL', '1 (11) 500 555-0177', '2013-11-25', '5-10 Miles'], ['28092', '50', 'AW00028092', 'NULL', 'Morgan', 'NULL', 'Hall', '0', '1984-06-14', 'S', 'NULL', 'F', 'morgan20@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6445 Heartwood Drive', 'NULL', '175-555-0161', '2011-08-11', '1-2 Miles'], ['28093', '609', 'AW00028093', 'NULL', 'Brad', 'NULL', 'Kumar', '0', '1983-08-26', 'M', 'NULL', 'M', 'brad7@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3487 Hill Dr.', 'NULL', '526-555-0171', '2013-09-20', '1-2 Miles'], ['28094', '542', 'AW00028094', 'NULL', 'Melanie', 'NULL', 'Peterson', '0', '1984-05-25', 'M', 'NULL', 'F', 'melanie30@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1113 Ready Road', 'NULL', '254-555-0148', '2013-02-21', '5-10 Miles'], ['28095', '638', 'AW00028095', 'NULL', 'Natalie', 'L', 'Bryant', '0', '1983-08-11', 'M', 'NULL', 'F', 'natalie40@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '561 Park Glenn', 'NULL', '870-555-0114', '2013-06-27', '5-10 Miles'], ['28096', '299', 'AW00028096', 'NULL', 'Alexandra', 'S', 'Stewart', '0', '1984-05-18', 'M', 'NULL', 'F', 'alexandra1@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5935 Isabel', 'NULL', '125-555-0117', '2011-03-15', '5-10 Miles'], ['28097', '307', 'AW00028097', 'NULL', 'Jennifer', 'A', 'Barnes', '0', '1984-03-02', 'S', 'NULL', 'F', 'jennifer78@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2215 La Corte Bonita', 'NULL', '377-555-0139', '2011-03-09', '5-10 Miles'], ['28098', '39', 'AW00028098', 'NULL', 'Roger', 'J', 'Zhu', '0', '1952-07-24', 'M', 'NULL', 'M', 'roger19@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3797 Mt. Wilson Way', 'NULL', '1 (11) 500 555-0164', '2013-11-11', '1-2 Miles'], ['28099', '385', 'AW00028099', 'NULL', 'Jesse', 'NULL', 'Turner', '0', '1984-04-04', 'M', 'NULL', 'M', 'jesse29@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5701 San Miguel Road', 'NULL', '347-555-0113', '2011-03-26', '5-10 Miles'], ['28100', '385', 'AW00028100', 'NULL', 'Kimberly', 'B', 'Gray', '0', '1984-02-22', 'S', 'NULL', 'F', 'kimberly9@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '6238 Mount Circle', 'NULL', '764-555-0141', '2013-08-12', '0-1 Miles'], ['28101', '60', 'AW00028101', 'NULL', 'Timothy', 'J', 'Bell', '0', '1983-03-13', 'S', 'NULL', 'M', 'timothy15@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '7952 El Verano', 'NULL', '850-555-0170', '2013-02-10', '1-2 Miles'], ['28102', '11', 'AW00028102', 'NULL', 'Arturo', 'A', 'Deng', '0', '1953-12-02', 'M', 'NULL', 'M', 'arturo25@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9699 William Reed Dr.', 'NULL', '1 (11) 500 555-0162', '2013-12-27', '5-10 Miles'], ['28103', '15', 'AW00028103', 'NULL', 'Pedro', 'B', 'Martin', '0', '1959-11-17', 'S', 'NULL', 'M', 'pedro20@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6880 N Lucile Lane', 'NULL', '1 (11) 500 555-0125', '2013-12-12', '5-10 Miles'], ['28104', '312', 'AW00028104', 'NULL', 'Hannah', 'R', 'Williams', '0', '1983-02-18', 'M', 'NULL', 'F', 'hannah3@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '495 Alameda Drive', 'NULL', '254-555-0139', '2013-11-29', '5-10 Miles'], ['28105', '315', 'AW00028105', 'NULL', 'Hannah', 'NULL', 'Garcia', '0', '1983-05-23', 'M', 'NULL', 'F', 'hannah14@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5582 Ryan Court', 'NULL', '238-555-0129', '2013-09-10', '1-2 Miles'], ['28106', '326', 'AW00028106', 'NULL', 'Chloe', 'A', 'Williams', '0', '1982-11-24', 'M', 'NULL', 'F', 'chloe36@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1663 Almond Drive', 'NULL', '746-555-0145', '2013-04-15', '5-10 Miles'], ['28107', '34', 'AW00028107', 'NULL', 'Tara', 'K', 'Simpson', '0', '1955-09-22', 'S', 'NULL', 'F', 'tara2@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2855 West F St.', 'NULL', '1 (11) 500 555-0122', '2013-02-14', '5-10 Miles'], ['28108', '34', 'AW00028108', 'NULL', 'Roger', 'A', 'Yang', '0', '1955-11-17', 'S', 'NULL', 'M', 'roger9@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '8328 San Francisco', 'NULL', '1 (11) 500 555-0114', '2013-03-07', '5-10 Miles'], ['28109', '34', 'AW00028109', 'NULL', 'Leonard', 'L', 'Tang', '0', '1955-09-03', 'S', 'NULL', 'M', 'leonard5@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3606 Bolton Circle', 'NULL', '1 (11) 500 555-0181', '2013-03-12', '1-2 Miles'], ['28110', '10', 'AW00028110', 'NULL', 'Cassandra', 'R', 'Sai', '0', '1956-11-03', 'M', 'NULL', 'F', 'cassandra6@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6876 Winthrop Street', 'NULL', '1 (11) 500 555-0148', '2013-03-12', '5-10 Miles'], ['28111', '18', 'AW00028111', 'NULL', 'Jon', 'NULL', 'Zhang', '0', '1957-01-03', 'M', 'NULL', 'M', 'jon19@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6725 Arata Way', 'NULL', '1 (11) 500 555-0135', '2013-03-27', '5-10 Miles'], ['28112', '315', 'AW00028112', 'NULL', 'Savannah', 'K', 'Evans', '0', '1986-01-19', 'M', 'NULL', 'F', 'savannah21@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9069 Muir Road', 'NULL', '696-555-0193', '2011-03-07', '5-10 Miles'], ['28113', '19', 'AW00028113', 'NULL', 'Amanda', 'NULL', 'Powell', '0', '1957-10-11', 'S', 'NULL', 'F', 'amanda30@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8857 Sunshine', 'NULL', '1 (11) 500 555-0150', '2013-04-18', '5-10 Miles'], ['28114', '23', 'AW00028114', 'NULL', 'Jared', 'E', 'Cox', '0', '1958-12-11', 'S', 'NULL', 'M', 'jared12@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3798 Vine Hill Way', 'NULL', '1 (11) 500 555-0149', '2013-02-25', '5-10 Miles'], ['28115', '21', 'AW00028115', 'NULL', 'Deanna', 'NULL', 'Jiménez', '0', '1958-09-04', 'M', 'NULL', 'F', 'deanna31@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6410 Army Drive', 'NULL', '1 (11) 500 555-0112', '2013-03-09', '5-10 Miles'], ['28116', '24', 'AW00028116', 'NULL', 'Sabrina', 'M', 'Dominguez', '0', '1969-08-01', 'S', 'NULL', 'F', 'sabrina8@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8452 Pine Hollow Rd.', 'NULL', '1 (11) 500 555-0187', '2013-04-23', '5-10 Miles'], ['28117', '18', 'AW00028117', 'NULL', 'Craig', 'NULL', 'Vazquez', '0', '1971-02-08', 'S', 'NULL', 'M', 'craig14@adventure-works.com', '40000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3237 Orchid Ct', 'NULL', '1 (11) 500 555-0125', '2013-04-08', '5-10 Miles'], ['28118', '20', 'AW00028118', 'NULL', 'Briana', 'T', 'Jiménez', '0', '1961-01-07', 'M', 'NULL', 'F', 'briana5@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4651 Brownstone Rd', 'NULL', '1 (11) 500 555-0132', '2013-12-22', '5-10 Miles'], ['28119', '9', 'AW00028119', 'NULL', 'Curtis', 'NULL', 'Ma', '0', '1966-04-06', 'S', 'NULL', 'M', 'curtis12@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '280 Calle Verde Dr.', 'NULL', '1 (11) 500 555-0149', '2013-12-10', '5-10 Miles'], ['28120', '17', 'AW00028120', 'NULL', 'Pedro', 'E', 'Alvarez', '0', '1966-07-16', 'S', 'NULL', 'M', 'pedro25@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4451 Carmel Dr.', 'NULL', '1 (11) 500 555-0163', '2013-12-06', '5-10 Miles'], ['28121', '69', 'AW00028121', 'NULL', 'Julia', 'NULL', 'Robinson', '0', '1980-08-14', 'M', 'NULL', 'F', 'julia40@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4551 Thistle Circle', 'NULL', '479-555-0156', '2013-11-06', '5-10 Miles'], ['28122', '634', 'AW00028122', 'NULL', 'Gabriel', 'V', 'King', '0', '1980-12-05', 'M', 'NULL', 'M', 'gabriel50@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3601 Greenbush Drive', 'NULL', '944-555-0131', '2013-05-25', '1-2 Miles'], ['28123', '299', 'AW00028123', 'NULL', 'Daisy', 'NULL', 'Ortega', '0', '1980-08-11', 'S', 'NULL', 'F', 'daisy17@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5065 Cloverleaf Circle', 'NULL', '506-555-0155', '2013-09-28', '5-10 Miles'], ['28124', '314', 'AW00028124', 'NULL', 'Mackenzie', 'E', 'Kelly', '0', '1980-12-29', 'M', 'NULL', 'F', 'mackenzie1@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9603 Houston Ct', 'NULL', '300-555-0149', '2013-11-28', '5-10 Miles'], ['28125', '322', 'AW00028125', 'NULL', 'Dalton', 'NULL', 'Jackson', '0', '1981-03-21', 'M', 'NULL', 'M', 'dalton11@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6598 Hargate Court', 'NULL', '598-555-0113', '2013-12-13', '5-10 Miles'], ['28126', '325', 'AW00028126', 'NULL', 'Anna', 'NULL', 'Johnson', '0', '1980-07-11', 'M', 'NULL', 'F', 'anna62@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2633 Dalis Dr.', 'NULL', '420-555-0145', '2013-04-09', '5-10 Miles'], ['28127', '368', 'AW00028127', 'NULL', 'Fernando', 'NULL', 'Price', '0', '1980-12-15', 'M', 'NULL', 'M', 'fernando44@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8274 Gladstone Drive', 'NULL', '678-555-0146', '2013-04-07', '5-10 Miles'], ['28128', '316', 'AW00028128', 'NULL', 'Jeremiah', 'NULL', 'Lee', '0', '1979-10-18', 'M', 'NULL', 'M', 'jeremiah10@adventure-works.com', '50000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5731 La Mar Ct.', 'NULL', '248-555-0127', '2013-12-01', '5-10 Miles'], ['28129', '66', 'AW00028129', 'NULL', 'Justin', 'NULL', 'Griffin', '0', '1979-09-03', 'S', 'NULL', 'M', 'justin18@adventure-works.com', '50000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4891 Olivera Rd', 'NULL', '430-555-0145', '2011-08-13', '1-2 Miles'], ['28130', '52', 'AW00028130', 'NULL', 'Joshua', 'M', 'Taylor', '0', '1978-08-02', 'S', 'NULL', 'M', 'joshua10@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1145 Paraiso Ct.', 'NULL', '926-555-0140', '2011-08-14', '5-10 Miles'], ['28131', '301', 'AW00028131', 'NULL', 'Todd', 'G', 'Zhu', '0', '1978-10-07', 'S', 'NULL', 'M', 'todd13@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '2071 Concord Blvd.', 'NULL', '337-555-0113', '2011-03-04', '0-1 Miles'], ['28132', '25', 'AW00028132', 'NULL', 'Clinton', 'F', 'Romero', '0', '1978-03-12', 'S', 'NULL', 'M', 'clinton6@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '110 E. Watson Court', 'NULL', '1 (11) 500 555-0136', '2013-12-05', '1-2 Miles'], ['28133', '14', 'AW00028133', 'NULL', 'Willie', 'C', 'Huang', '0', '1962-05-31', 'S', 'NULL', 'M', 'willie5@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3985 Jacqueline Drive', 'NULL', '1 (11) 500 555-0145', '2013-11-30', '5-10 Miles'], ['28134', '5', 'AW00028134', 'NULL', 'Terrance', 'M', 'Rana', '0', '1962-05-23', 'M', 'NULL', 'M', 'terrance8@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6341 Darnett Circle', 'NULL', '1 (11) 500 555-0182', '2013-12-08', '1-2 Miles'], ['28135', '2', 'AW00028135', 'NULL', 'Carla', 'D', 'Madan', '0', '1962-11-06', 'S', 'NULL', 'F', 'carla10@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2782 San Simeon', 'NULL', '1 (11) 500 555-0113', '2013-12-02', '1-2 Miles'], ['28136', '3', 'AW00028136', 'NULL', 'Kelli', 'A', 'Raje', '0', '1962-09-23', 'M', 'NULL', 'F', 'kelli37@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5964 Sepulveda Ct.', 'NULL', '1 (11) 500 555-0116', '2013-01-02', '5-10 Miles'], ['28137', '12', 'AW00028137', 'NULL', 'Kristi', 'NULL', 'Lopez', '0', '1975-03-23', 'S', 'NULL', 'F', 'kristi34@adventure-works.com', '100000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '2390 Brodia Court', 'NULL', '1 (11) 500 555-0159', '2013-10-13', '0-1 Miles'], ['28138', '38', 'AW00028138', 'NULL', 'Marvin', 'NULL', 'Ramos', '0', '1964-05-12', 'S', 'NULL', 'M', 'marvin18@adventure-works.com', '100000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '9641 M St.', 'NULL', '1 (11) 500 555-0156', '2014-01-25', '0-1 Miles'], ['28139', '35', 'AW00028139', 'NULL', 'Carrie', 'C', 'Gutierrez', '0', '1964-01-13', 'M', 'NULL', 'F', 'carrie10@adventure-works.com', '100000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '0', '1695 Valley High Dr', 'NULL', '1 (11) 500 555-0116', '2013-09-01', '10+ Miles'], ['28140', '26', 'AW00028140', 'NULL', 'Gilbert', 'L', 'Kumar', '0', '1969-12-31', 'S', 'NULL', 'M', 'gilbert28@adventure-works.com', '100000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '9482 Rosebrook Ct.', 'NULL', '1 (11) 500 555-0163', '2013-12-28', '2-5 Miles'], ['28141', '69', 'AW00028141', 'NULL', 'Joseph', 'NULL', 'Robinson', '0', '1979-09-13', 'M', 'NULL', 'M', 'joseph25@adventure-works.com', '50000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '9821 Juniper Drive', 'NULL', '637-555-0159', '2013-02-22', '5-10 Miles'], ['28142', '607', 'AW00028142', 'NULL', 'Willie', 'B', 'Lin', '0', '1985-08-10', 'S', 'NULL', 'M', 'willie6@adventure-works.com', '50000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '4469 Rain Drop Circle', 'NULL', '969-555-0166', '2011-03-26', '1-2 Miles'], ['28143', '641', 'AW00028143', 'NULL', 'Samuel', 'L', 'Gonzalez', '0', '1985-05-11', 'S', 'NULL', 'M', 'samuel38@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '1085 Ash Lane', 'NULL', '754-555-0113', '2013-03-18', '5-10 Miles'], ['28144', '648', 'AW00028144', 'NULL', 'Noah', 'NULL', 'Phillips', '0', '1980-02-20', 'S', 'NULL', 'M', 'noah33@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5995 Olivera Rd.', 'NULL', '730-555-0157', '2013-07-17', '5-10 Miles'], ['28145', '301', 'AW00028145', 'NULL', 'Brandon', 'C', 'Jones', '0', '1980-05-10', 'S', 'NULL', 'M', 'brandon41@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '7177 Danesta Dr.', 'NULL', '881-555-0128', '2011-03-02', '1-2 Miles'], ['28146', '339', 'AW00028146', 'NULL', 'Gavin', 'C', 'Washington', '0', '1972-06-10', 'S', 'NULL', 'M', 'gavin12@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '4', '6550 Gregory Dr.', 'NULL', '170-555-0126', '2013-07-07', '0-1 Miles'], ['28147', '298', 'AW00028147', 'NULL', 'Omar', 'NULL', 'Black', '0', '1970-01-15', 'S', 'NULL', 'M', 'omar41@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '6713 Castle Rock', 'NULL', '857-555-0112', '2011-03-30', '5-10 Miles'], ['28148', '611', 'AW00028148', 'NULL', 'Jon', 'NULL', 'Zhao', '0', '1975-02-15', 'S', 'NULL', 'M', 'jon30@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '3682 Macarthur Avenue', 'NULL', '363-555-0147', '2011-03-19', '5-10 Miles'], ['28149', '334', 'AW00028149', 'NULL', 'William', 'NULL', 'Miller', '0', '1975-08-08', 'M', 'NULL', 'M', 'william22@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1063 Pinehurst Court', 'NULL', '222-555-0131', '2011-03-16', '2-5 Miles'], ['28150', '336', 'AW00028150', 'NULL', 'Connor', 'M', 'Chen', '0', '1970-05-06', 'S', 'NULL', 'M', 'connor20@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7622 Mayette Avenue', 'NULL', '238-555-0127', '2011-03-15', '0-1 Miles'], ['28151', '315', 'AW00028151', 'NULL', 'Katherine', 'L', 'Walker', '0', '1974-04-08', 'S', 'NULL', 'F', 'katherine94@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5510 Chickpea Ct.', 'NULL', '349-555-0141', '2013-06-28', '2-5 Miles'], ['28152', '358', 'AW00028152', 'NULL', 'Ian', 'NULL', 'Rivera', '0', '1974-02-25', 'M', 'NULL', 'M', 'ian74@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '9699 Gilardy Drive', 'NULL', '657-555-0114', '2011-03-30', '2-5 Miles'], ['28153', '59', 'AW00028153', 'NULL', 'Mackenzie', 'NULL', 'Torres', '0', '1968-09-20', 'S', 'NULL', 'F', 'mackenzie11@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '9277 Santa Rita Dr', 'NULL', '906-555-0196', '2013-11-03', '2-5 Miles'], ['28154', '337', 'AW00028154', 'NULL', 'Katherine', 'E', 'Patterson', '0', '1973-10-09', 'S', 'NULL', 'F', 'katherine36@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7306 Pastime Drive', 'NULL', '670-555-0187', '2011-03-18', '0-1 Miles'], ['28155', '345', 'AW00028155', 'NULL', 'Taylor', 'NULL', 'Watson', '0', '1974-02-21', 'S', 'NULL', 'F', 'taylor21@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1144 Paradise Ct.', 'NULL', '682-555-0190', '2011-03-23', '2-5 Miles'], ['28156', '368', 'AW00028156', 'NULL', 'Gabrielle', 'J', 'Hall', '0', '1973-12-09', 'S', 'NULL', 'F', 'gabrielle64@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5764 St. Dunstan Ct.', 'NULL', '310-555-0179', '2011-03-01', '0-1 Miles'], ['28157', '55', 'AW00028157', 'NULL', 'Elijah', 'D', 'Edwards', '0', '1974-04-22', 'M', 'NULL', 'M', 'elijah30@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '4722 Carrick Ct.', 'NULL', '169-555-0141', '2013-09-10', '2-5 Miles'], ['28158', '299', 'AW00028158', 'NULL', 'Clarence', 'M', 'Luo', '0', '1967-09-03', 'S', 'NULL', 'M', 'clarence20@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9620 Fallbrook Road', 'NULL', '733-555-0149', '2011-03-10', '2-5 Miles'], ['28159', '299', 'AW00028159', 'NULL', 'Tamara', 'R', 'Yang', '0', '1967-08-27', 'M', 'NULL', 'F', 'tamara35@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '679 Lanton Ave', 'NULL', '862-555-0111', '2011-03-16', '2-5 Miles'], ['28160', '51', 'AW00028160', 'NULL', 'Melanie', 'A', 'Reed', '0', '1968-03-09', 'S', 'NULL', 'F', 'melanie45@adventure-works.com', '70000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '6897 Deerfield Dr.', 'NULL', '816-555-0198', '2013-11-26', '0-1 Miles'], ['28161', '57', 'AW00028161', 'NULL', 'Jessica', 'NULL', 'Perry', '0', '1984-03-06', 'S', 'NULL', 'F', 'jessica32@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1867 Sahara Drive', 'NULL', '435-555-0148', '2011-08-11', '0-1 Miles'], ['28162', '326', 'AW00028162', 'NULL', 'Bruce', 'R', 'Ward', '0', '1967-12-09', 'M', 'NULL', 'M', 'bruce43@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2186 Claycord Ave.', 'NULL', '213-555-0117', '2011-03-17', '0-1 Miles'], ['28163', '553', 'AW00028163', 'NULL', 'Rachel', 'NULL', 'Washington', '0', '1973-03-07', 'M', 'NULL', 'F', 'rachel61@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4092 Tupelp Drive', 'NULL', '104-555-0136', '2011-03-23', '2-5 Miles'], ['28164', '334', 'AW00028164', 'NULL', 'Gabrielle', 'NULL', 'Coleman', '0', '1968-04-19', 'M', 'NULL', 'F', 'gabrielle28@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '419 River Ash Court', '#9', '768-555-0128', '2011-03-14', '0-1 Miles'], ['28165', '49', 'AW00028165', 'NULL', 'Alexa', 'NULL', 'Rivera', '0', '1967-03-09', 'M', 'NULL', 'F', 'alexa15@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9828 Larch Ct', 'NULL', '502-555-0111', '2011-08-12', '0-1 Miles'], ['28166', '312', 'AW00028166', 'NULL', 'Cassidy', 'NULL', 'Coleman', '0', '1967-01-01', 'M', 'NULL', 'F', 'cassidy6@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9784 Mellowood Street', 'NULL', '166-555-0126', '2011-03-20', '2-5 Miles'], ['28167', '338', 'AW00028167', 'NULL', 'Samuel', 'W', 'Hughes', '0', '1966-08-19', 'S', 'NULL', 'M', 'samuel10@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1083 W. Hook Road', 'NULL', '463-555-0170', '2011-03-25', '2-5 Miles'], ['28168', '337', 'AW00028168', 'NULL', 'Jacqueline', 'NULL', 'Ward', '0', '1967-04-09', 'M', 'NULL', 'F', 'jacqueline36@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9104 Melody Drive', 'NULL', '561-555-0115', '2011-03-04', '2-5 Miles'], ['28169', '69', 'AW00028169', 'NULL', 'Lucas', 'G', 'Blue', '0', '1972-03-14', 'M', 'NULL', 'M', 'lucas85@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9330 Georgia Dr.', 'NULL', '876-555-0117', '2011-08-14', '0-1 Miles'], ['28170', '325', 'AW00028170', 'NULL', 'Isabella', 'P', 'Johnson', '0', '1972-01-18', 'M', 'NULL', 'F', 'isabella58@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2251 Temple Drive', 'NULL', '941-555-0186', '2011-03-18', '2-5 Miles'], ['28171', '612', 'AW00028171', 'NULL', 'Aidan', 'NULL', 'Henderson', '0', '1972-10-12', 'M', 'NULL', 'M', 'aidan5@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'P. O. Box 5413', 'NULL', '285-555-0116', '2011-03-27', '0-1 Miles'], ['28172', '301', 'AW00028172', 'NULL', 'Charles', 'NULL', 'Moore', '0', '1972-11-23', 'M', 'NULL', 'M', 'charles11@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4000 Krueger Drive', 'NULL', '799-555-0117', '2011-03-03', '2-5 Miles'], ['28173', '49', 'AW00028173', 'NULL', 'Timothy', 'NULL', 'Young', '0', '1965-07-31', 'S', 'NULL', 'M', 'timothy42@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1547 Larkwood Ct.', 'NULL', '941-555-0117', '2011-08-26', '2-5 Miles'], ['28174', '536', 'AW00028174', 'NULL', 'Marco', 'C', 'Subram', '0', '1971-04-21', 'M', 'NULL', 'M', 'marco13@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '4268 Shadow Court', 'NULL', '732-555-0135', '2014-01-15', '2-5 Miles'], ['28175', '536', 'AW00028175', 'NULL', 'Clifford', 'F', 'Subram', '0', '1965-12-29', 'M', 'NULL', 'M', 'clifford11@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '9903 East Lane', 'NULL', '221-555-0148', '2013-02-24', '2-5 Miles'], ['28176', '56', 'AW00028176', 'NULL', 'Natalie', 'NULL', 'Roberts', '0', '1972-12-31', 'S', 'NULL', 'F', 'natalie47@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3857 Westchester Pl.', 'NULL', '292-555-0119', '2011-08-13', '0-1 Miles'], ['28177', '62', 'AW00028177', 'NULL', 'Cameron', 'J', 'Henderson', '0', '1973-02-14', 'S', 'NULL', 'M', 'cameron0@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '2765 Robbins Place', 'NULL', '143-555-0130', '2011-08-22', '0-1 Miles'], ['28178', '69', 'AW00028178', 'NULL', 'Katherine', 'NULL', 'James', '0', '1978-04-23', 'S', 'NULL', 'F', 'katherine20@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '5806 West Slough Rd', 'NULL', '195-555-0129', '2011-08-06', '2-5 Miles'], ['28179', '536', 'AW00028179', 'NULL', 'Billy', 'A', 'Alvarez', '0', '1973-04-26', 'S', 'NULL', 'M', 'billy6@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4814 Seascape Circle', 'NULL', '159-555-0194', '2011-03-07', '0-1 Miles'], ['28180', '609', 'AW00028180', 'NULL', 'Jerry', 'M', 'Chander', '0', '1973-01-31', 'S', 'NULL', 'M', 'jerry17@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1613 Santa Maria', 'NULL', '278-555-0110', '2011-03-19', '2-5 Miles'], ['28181', '543', 'AW00028181', 'NULL', 'Katherine', 'J', 'Rodriguez', '0', '1976-08-30', 'M', 'NULL', 'F', 'katherine91@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5412 Glenhaven Ave South', 'NULL', '801-555-0134', '2011-03-04', '2-5 Miles'], ['28182', '385', 'AW00028182', 'NULL', 'Fernando', 'NULL', 'Turner', '0', '1966-03-05', 'M', 'NULL', 'M', 'fernando38@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6242 Cleveland Avenue', 'NULL', '878-555-0125', '2011-03-05', '0-1 Miles'], ['28183', '301', 'AW00028183', 'NULL', 'Nicole', 'M', 'Howard', '0', '1966-01-01', 'M', 'NULL', 'F', 'nicole38@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1060 Mcelroy Court', 'NULL', '963-555-0168', '2011-03-07', '2-5 Miles'], ['28184', '345', 'AW00028184', 'NULL', 'Madison', 'NULL', 'Russell', '0', '1976-12-04', 'M', 'NULL', 'F', 'madison32@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5289 Steven Drive', 'NULL', '873-555-0146', '2011-03-22', '2-5 Miles'], ['28185', '301', 'AW00028185', 'NULL', 'Eric', 'S', 'Alexander', '0', '1976-10-13', 'M', 'NULL', 'M', 'eric26@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1773 Royal Palm Lane', 'NULL', '106-555-0117', '2011-03-06', '2-5 Miles'], ['28186', '536', 'AW00028186', 'NULL', 'Jenny', 'M', 'Wagner', '0', '1965-08-05', 'M', 'NULL', 'F', 'jenny3@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2205 Stonehedge Dr.', 'NULL', '893-555-0112', '2011-03-05', '0-1 Miles'], ['28187', '338', 'AW00028187', 'NULL', 'Aaron', 'NULL', 'Chen', '0', '1970-11-09', 'M', 'NULL', 'M', 'aaron25@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '4633 Jefferson Street', 'NULL', '969-555-0160', '2013-07-13', '2-5 Miles'], ['28188', '542', 'AW00028188', 'NULL', 'Kayla', 'NULL', 'Price', '0', '1964-10-13', 'S', 'NULL', 'F', 'kayla24@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '6696 Park Highlands Blvd.', 'NULL', '159-555-0191', '2013-12-04', '2-5 Miles'], ['28189', '54', 'AW00028189', 'NULL', 'James', 'NULL', 'Griffin', '0', '1970-10-22', 'S', 'NULL', 'M', 'james36@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '4610 Pinto Road', 'NULL', '387-555-0113', '2013-12-21', '0-1 Miles'], ['28190', '355', 'AW00028190', 'NULL', 'Kimberly', 'R', 'Cook', '0', '1970-05-17', 'S', 'NULL', 'F', 'kimberly22@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '3432 White Pl.', 'NULL', '610-555-0154', '2011-03-25', '2-5 Miles'], ['28191', '612', 'AW00028191', 'NULL', 'Mya', 'O', 'Long', '0', '1964-12-16', 'S', 'NULL', 'F', 'mya11@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '1', '3700 Lane Way', 'NULL', '364-555-0120', '2011-03-22', '2-5 Miles'], ['28192', '648', 'AW00028192', 'NULL', 'Abigail', 'NULL', 'Sanchez', '0', '1970-09-18', 'M', 'NULL', 'F', 'abigail3@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '3', '977 Delta View Ln.', 'NULL', '808-555-0111', '2013-10-21', '10+ Miles'], ['28193', '335', 'AW00028193', 'NULL', 'Taylor', 'NULL', 'Davis', '0', '1964-10-16', 'S', 'NULL', 'F', 'taylor52@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '3', '4377 Viking Dr.', 'NULL', '194-555-0130', '2011-03-06', '10+ Miles'], ['28194', '536', 'AW00028194', 'NULL', 'Lydia', 'P', 'Garcia', '0', '1964-08-14', 'S', 'NULL', 'F', 'lydia13@adventure-works.com', '80000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '8398 Kathryn Drive', 'NULL', '802-555-0191', '2011-03-27', '0-1 Miles'], ['28195', '43', 'AW00028195', 'NULL', 'Kellie', 'R', 'Martin', '0', '1964-12-30', 'S', 'NULL', 'F', 'kellie0@adventure-works.com', '80000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '5414 Stonehedge Dr.', 'NULL', '564-555-0118', '2013-12-05', '0-1 Miles'], ['28196', '548', 'AW00028196', 'NULL', 'Timothy', 'NULL', 'Cox', '0', '1963-11-15', 'M', 'NULL', 'M', 'timothy11@adventure-works.com', '80000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2303 Rosebrook Ct.', 'NULL', '539-555-0153', '2011-04-27', '0-1 Miles'], ['28197', '68', 'AW00028197', 'NULL', 'Kayla', 'W', 'Rodriguez', '0', '1969-10-02', 'S', 'NULL', 'F', 'kayla19@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '799 Temple Dr.', 'NULL', '581-555-0152', '2011-08-11', '2-5 Miles'], ['28198', '66', 'AW00028198', 'NULL', 'Jared', 'V', 'Moyer', '0', '1963-08-10', 'M', 'NULL', 'M', 'jared16@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '2201 Huston Road', 'NULL', '173-555-0182', '2011-08-12', '0-1 Miles'], ['28199', '360', 'AW00028199', 'NULL', 'Alyssa', 'M', 'Jones', '0', '1963-11-07', 'S', 'NULL', 'F', 'alyssa2@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9682 Morello Court', 'NULL', '446-555-0158', '2011-04-02', '0-1 Miles'], ['28200', '369', 'AW00028200', 'NULL', 'Morgan', 'W', 'Henderson', '0', '1963-09-07', 'M', 'NULL', 'F', 'morgan74@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '8354 Ponderosa Drive', 'NULL', '622-555-0119', '2011-04-06', '2-5 Miles'], ['28201', '25', 'AW00028201', 'NULL', 'Tyler', 'T', 'Martinez', '0', '1975-03-25', 'M', 'NULL', 'M', 'tyler15@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '4478 Rainier Dr.', 'NULL', '1 (11) 500 555-0196', '2013-01-19', '0-1 Miles'], ['28202', '32', 'AW00028202', 'NULL', 'Maria', 'E', 'King', '0', '1974-09-12', 'S', 'NULL', 'F', 'maria60@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '1688 Sudan Loop', 'NULL', '1 (11) 500 555-0124', '2012-12-30', '0-1 Miles'], ['28203', '38', 'AW00028203', 'NULL', 'Victor', 'I', 'Gomez', '0', '1974-12-26', 'M', 'NULL', 'M', 'victor2@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '5805 Nob Hill Drive', 'NULL', '1 (11) 500 555-0173', '2013-01-05', '0-1 Miles'], ['28204', '19', 'AW00028204', 'NULL', 'Peter', 'K', 'Xu', '0', '1980-09-28', 'M', 'NULL', 'M', 'peter12@adventure-works.com', '100000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '6975 Ridgewood Drive', 'NULL', '1 (11) 500 555-0115', '2012-12-31', '2-5 Miles'], ['28205', '22', 'AW00028205', 'NULL', 'Carolyn', 'NULL', 'Mehta', '0', '1973-08-31', 'M', 'NULL', 'F', 'carolyn13@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4644 Rossmor Parkway', 'NULL', '1 (11) 500 555-0123', '2013-04-26', '0-1 Miles'], ['28206', '13', 'AW00028206', 'NULL', 'Angelica', 'C', 'Long', '0', '1976-01-19', 'S', 'NULL', 'F', 'angelica9@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '8758 Garden Ave', 'NULL', '1 (11) 500 555-0161', '2013-01-24', '0-1 Miles'], ['28207', '37', 'AW00028207', 'NULL', 'Larry', 'W', 'Moreno', '0', '1975-11-08', 'M', 'NULL', 'M', 'larry8@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '4487 San Miguel Court', 'NULL', '1 (11) 500 555-0161', '2013-01-05', '0-1 Miles'], ['28208', '30', 'AW00028208', 'NULL', 'Karen', 'C', 'Sun', '0', '1976-01-19', 'S', 'NULL', 'F', 'karen23@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '8758 Garden Ave', 'NULL', '1 (11) 500 555-0192', '2013-02-23', '0-1 Miles'], ['28209', '39', 'AW00028209', 'NULL', 'Krista', 'NULL', 'Carlson', '0', '1974-05-08', 'M', 'NULL', 'F', 'krista17@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5983 Meadowlark Court', 'NULL', '1 (11) 500 555-0153', '2013-04-17', '2-5 Miles'], ['28210', '6', 'AW00028210', 'NULL', 'Meghan', 'I', 'Alan', '0', '1973-11-30', 'M', 'NULL', 'F', 'meghan4@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9730 Krueger Drive', 'NULL', '1 (11) 500 555-0162', '2013-04-15', '2-5 Miles'], ['28211', '26', 'AW00028211', 'NULL', 'Randall', 'M', 'Suarez', '0', '1974-04-23', 'M', 'NULL', 'M', 'randall21@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7787 Olive St.', 'NULL', '1 (11) 500 555-0150', '2013-04-11', '2-5 Miles'], ['28212', '33', 'AW00028212', 'NULL', 'Melody', 'E', 'Hernandez', '0', '1979-04-02', 'M', 'NULL', 'F', 'melody4@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1082 Crivello Avenue', 'NULL', '1 (11) 500 555-0148', '2013-04-19', '2-5 Miles'], ['28213', '35', 'AW00028213', 'NULL', 'Jared', 'A', 'Morgan', '0', '1979-03-09', 'M', 'NULL', 'M', 'jared14@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '4846 Colfax St.', 'NULL', '1 (11) 500 555-0143', '2013-08-11', '10+ Miles'], ['28214', '4', 'AW00028214', 'NULL', 'Hailey', 'A', 'King', '0', '1979-03-09', 'M', 'NULL', 'F', 'hailey59@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '8737 Golf Club Rd.', 'NULL', '1 (11) 500 555-0194', '2013-09-30', '10+ Miles'], ['28215', '40', 'AW00028215', 'NULL', 'Priscilla', 'A', 'Shen', '0', '1973-05-10', 'S', 'NULL', 'F', 'priscilla2@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '359 Candlestick Dr.', 'NULL', '1 (11) 500 555-0120', '2013-04-04', '0-1 Miles'], ['28216', '15', 'AW00028216', 'NULL', 'Adrienne', 'L', 'Ramos', '0', '1972-07-23', 'M', 'NULL', 'F', 'adrienne14@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '1567 Midway Ct', 'NULL', '1 (11) 500 555-0145', '2013-03-02', '10+ Miles'], ['28217', '21', 'AW00028217', 'NULL', 'Kristy', 'NULL', 'Carlson', '0', '1980-10-10', 'S', 'NULL', 'F', 'kristy16@adventure-works.com', '110000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '189 Rae Anne Dr', 'NULL', '1 (11) 500 555-0179', '2013-02-25', '0-1 Miles'], ['28218', '7', 'AW00028218', 'NULL', 'Denise', 'NULL', 'Arun', '0', '1972-12-31', 'M', 'NULL', 'F', 'denise8@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '9784 Mellowood Street', 'NULL', '1 (11) 500 555-0146', '2013-09-08', '10+ Miles'], ['28219', '6', 'AW00028219', 'NULL', 'Chad', 'NULL', 'Goel', '0', '1972-10-16', 'S', 'NULL', 'M', 'chad20@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '4666 Sierra Ridge', 'NULL', '1 (11) 500 555-0145', '2013-11-24', '0-1 Miles'], ['28220', '26', 'AW00028220', 'NULL', 'Kelsey', 'W', 'Xu', '0', '1972-03-19', 'S', 'NULL', 'F', 'kelsey4@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '4769 Mt. View Dr.', 'NULL', '1 (11) 500 555-0196', '2013-11-16', '0-1 Miles'], ['28221', '361', 'AW00028221', 'NULL', 'Isabella', 'NULL', 'Rodriguez', '0', '1963-05-13', 'M', 'NULL', 'F', 'isabella76@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6314 Mota Dr.', 'NULL', '638-555-0163', '2011-04-15', '5-10 Miles'], ['28222', '552', 'AW00028222', 'NULL', 'Eduardo', 'NULL', 'Lewis', '0', '1962-07-05', 'S', 'NULL', 'M', 'eduardo20@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '8769 Haven Drive', 'NULL', '675-555-0112', '2011-03-31', '1-2 Miles'], ['28223', '315', 'AW00028223', 'NULL', 'Jessica', 'NULL', 'Davis', '0', '1968-07-03', 'S', 'NULL', 'F', 'jessica52@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '624 Peabody Road', 'NULL', '186-555-0118', '2011-04-16', '5-10 Miles'], ['28224', '345', 'AW00028224', 'NULL', 'Spencer', 'NULL', 'Henderson', '0', '1962-08-03', 'S', 'NULL', 'M', 'spencer6@adventure-works.com', '90000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '895 Sandalwood Drive', 'NULL', '873-555-0120', '2011-04-15', '2-5 Miles'], ['28225', '359', 'AW00028225', 'NULL', 'Robert', 'NULL', 'Ross', '0', '1979-09-06', 'M', 'NULL', 'M', 'robert17@adventure-works.com', '90000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '4032 La Salle Ave', 'NULL', '904-555-0173', '2013-07-05', '5-10 Miles'], ['28226', '614', 'AW00028226', 'NULL', 'Sebastian', 'C', 'Ramirez', '0', '1961-11-20', 'M', 'NULL', 'M', 'sebastian8@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2951 Dublin', 'NULL', '903-555-0112', '2013-02-01', '5-10 Miles'], ['28227', '632', 'AW00028227', 'NULL', 'Caleb', 'P', 'Wang', '0', '1962-03-14', 'S', 'NULL', 'M', 'caleb21@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8523 Magic Dr', 'NULL', '435-555-0140', '2013-08-27', '1-2 Miles'], ['28228', '633', 'AW00028228', 'NULL', 'Gloria', 'NULL', 'Reed', '0', '1978-01-30', 'S', 'NULL', 'F', 'gloria23@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2569 La Orinda Pl.', 'NULL', '582-555-0119', '2013-09-04', '1-2 Miles'], ['28229', '374', 'AW00028229', 'NULL', 'Samantha', 'NULL', 'Wilson', '0', '1967-09-14', 'S', 'NULL', 'F', 'samantha8@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3582 Juliet Court', 'NULL', '990-555-0116', '2013-08-21', '1-2 Miles'], ['28230', '385', 'AW00028230', 'NULL', 'Stephanie', 'O', 'Morgan', '0', '1967-09-24', 'S', 'NULL', 'F', 'stephanie9@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1462 Summit View Dr.', 'NULL', '227-555-0110', '2013-05-23', '5-10 Miles'], ['28231', '548', 'AW00028231', 'NULL', 'James', 'V', 'Powell', '0', '1978-08-12', 'S', 'NULL', 'M', 'james24@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8358 Azalea Avenue', 'NULL', '380-555-0195', '2013-08-10', '5-10 Miles'], ['28232', '536', 'AW00028232', 'NULL', 'Gavin', 'NULL', 'Russell', '0', '1976-02-20', 'S', 'NULL', 'M', 'gavin18@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '8219 Orwood Rd.', 'NULL', '572-555-0125', '2013-07-04', '0-1 Miles'], ['28233', '644', 'AW00028233', 'NULL', 'Patrick', 'A', 'Richardson', '0', '1976-02-19', 'S', 'NULL', 'M', 'patrick14@adventure-works.com', '100000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '3977 Strasbourg Lane', 'NULL', '472-555-0122', '2013-05-16', '0-1 Miles'], ['28234', '298', 'AW00028234', 'NULL', 'Jack', 'I', 'Nelson', '0', '1970-08-13', 'M', 'NULL', 'M', 'jack45@adventure-works.com', '100000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '3624 Garaventa Drive', 'NULL', '262-555-0139', '2011-04-10', '2-5 Miles'], ['28235', '312', 'AW00028235', 'NULL', 'Cole', 'M', 'Rogers', '0', '1970-08-11', 'S', 'NULL', 'M', 'cole20@adventure-works.com', '120000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '8310 Mountaire Pkwy.', 'NULL', '159-555-0114', '2013-03-16', '1-2 Miles'], ['28236', '314', 'AW00028236', 'NULL', 'Isabel', 'J', 'Diaz', '0', '1976-07-09', 'S', 'NULL', 'F', 'isabel20@adventure-works.com', '120000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '966 Houston Ct', 'NULL', '460-555-0197', '2013-07-26', '1-2 Miles'], ['28237', '315', 'AW00028237', 'NULL', 'Hailey', 'J', 'Foster', '0', '1970-12-10', 'M', 'NULL', 'F', 'hailey36@adventure-works.com', '120000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '8127 Otter Dr.', 'NULL', '464-555-0117', '2013-01-29', '2-5 Miles'], ['28238', '322', 'AW00028238', 'NULL', 'Dalton', 'NULL', 'Flores', '0', '1971-01-04', 'S', 'NULL', 'M', 'dalton58@adventure-works.com', '120000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '4534 Blum Rd.', 'NULL', '344-555-0110', '2013-12-29', '1-2 Miles'], ['28239', '69', 'AW00028239', 'NULL', 'Richard', 'C', 'Ramirez', '0', '1975-04-20', 'S', 'NULL', 'M', 'richard88@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '3302 Alan Dr', 'NULL', '831-555-0160', '2013-03-01', '0-1 Miles'], ['28240', '633', 'AW00028240', 'NULL', 'Eduardo', 'NULL', 'Clark', '0', '1970-01-11', 'M', 'NULL', 'M', 'eduardo18@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '6979 Harvard Drive', 'NULL', '441-555-0118', '2011-04-13', '2-5 Miles'], ['28241', '635', 'AW00028241', 'NULL', 'Charles', 'L', 'King', '0', '1969-12-01', 'M', 'NULL', 'M', 'charles31@adventure-works.com', '100000.00', '5', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '3994 Pinecrest Court', 'NULL', '620-555-0169', '2013-03-06', '2-5 Miles'], ['28242', '307', 'AW00028242', 'NULL', 'Madison', 'NULL', 'Butler', '0', '1969-12-31', 'M', 'NULL', 'F', 'madison26@adventure-works.com', '120000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '8280 Parkway Dr.', 'NULL', '179-555-0128', '2013-08-13', '2-5 Miles'], ['28243', '335', 'AW00028243', 'NULL', 'Marcus', 'NULL', 'Cook', '0', '1981-04-12', 'S', 'NULL', 'M', 'marcus88@adventure-works.com', '130000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '9448 San Marino Ct.', 'NULL', '131-555-0138', '2011-04-07', '0-1 Miles'], ['28244', '374', 'AW00028244', 'NULL', 'Samantha', 'P', 'Davis', '0', '1975-05-14', 'M', 'NULL', 'F', 'samantha6@adventure-works.com', '160000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '5972 Boxwood Dr.', 'NULL', '805-555-0198', '2011-04-07', '0-1 Miles'], ['28245', '50', 'AW00028245', 'NULL', 'Gavin', 'I', 'Henderson', '0', '1961-07-04', 'S', 'NULL', 'M', 'gavin4@adventure-works.com', '80000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '5309 Diane Ct.', 'NULL', '322-555-0195', '2014-01-02', '2-5 Miles'], ['28246', '539', 'AW00028246', 'NULL', 'Alexa', 'NULL', 'Gray', '0', '1967-10-08', 'S', 'NULL', 'F', 'alexa5@adventure-works.com', '80000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '5811 Hillcrest', 'NULL', '629-555-0130', '2011-04-12', '0-1 Miles'], ['28247', '542', 'AW00028247', 'NULL', 'Jonathan', 'NULL', 'Adams', '0', '1962-03-22', 'S', 'NULL', 'M', 'jonathan46@adventure-works.com', '90000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '2835 The Trees Drive', 'NULL', '145-555-0135', '2011-04-27', '5-10 Miles'], ['28248', '53', 'AW00028248', 'NULL', 'Eric', 'NULL', 'Scott', '0', '1968-11-12', 'S', 'NULL', 'M', 'eric55@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '9168 Wellington Ct.', 'NULL', '976-555-0128', '2013-02-21', '0-1 Miles'], ['28249', '545', 'AW00028249', 'NULL', 'Julia', 'M', 'Carter', '0', '1968-08-29', 'M', 'NULL', 'F', 'julia8@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '4638 Chestnut Ave', 'NULL', '934-555-0179', '2013-10-14', '10+ Miles'], ['28250', '298', 'AW00028250', 'NULL', 'Tyrone', 'L', 'Dominguez', '0', '1974-05-14', 'M', 'NULL', 'M', 'tyrone11@adventure-works.com', '100000.00', '0', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8370 Merry Circle', 'NULL', '818-555-0171', '2011-04-09', '2-5 Miles'], ['28251', '300', 'AW00028251', 'NULL', 'Joe', 'NULL', 'Rubio', '0', '1968-07-17', 'M', 'NULL', 'M', 'joe44@adventure-works.com', '100000.00', '0', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2049 Benedict Court', 'NULL', '461-555-0148', '2013-06-14', '2-5 Miles'], ['28252', '345', 'AW00028252', 'NULL', 'Sydney', 'T', 'Murphy', '0', '1969-05-12', 'M', 'NULL', 'F', 'sydney8@adventure-works.com', '130000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '8238 D Crane Ct.', 'NULL', '774-555-0122', '2013-10-19', '0-1 Miles'], ['28253', '383', 'AW00028253', 'NULL', 'Jeremiah', 'S', 'Green', '0', '1974-05-07', 'S', 'NULL', 'M', 'jeremiah18@adventure-works.com', '160000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '2 Fall Creek Road', 'NULL', '939-555-0183', '2013-07-02', '0-1 Miles'], ['28254', '66', 'AW00028254', 'NULL', 'Jacqueline', 'W', 'Brooks', '0', '1973-08-11', 'S', 'NULL', 'F', 'jacqueline25@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '9684 Morello Heights Circle', 'NULL', '182-555-0138', '2013-06-21', '0-1 Miles'], ['28255', '607', 'AW00028255', 'NULL', 'Robert', 'B', 'Clark', '0', '1973-07-18', 'S', 'NULL', 'M', 'robert79@adventure-works.com', '90000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '2461 Stephine Way', 'NULL', '770-555-0169', '2011-04-29', '5-10 Miles'], ['28256', '536', 'AW00028256', 'NULL', 'Colin', 'R', 'Beck', '0', '1968-04-16', 'M', 'NULL', 'M', 'colin43@adventure-works.com', '90000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '1440 Azores Circle', 'NULL', '707-555-0197', '2013-05-27', '5-10 Miles'], ['28257', '648', 'AW00028257', 'NULL', 'Zachary', 'E', 'Martin', '0', '1973-04-14', 'S', 'NULL', 'M', 'zachary45@adventure-works.com', '100000.00', '1', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '2556 San Remo Ct', 'NULL', '404-555-0162', '2011-04-03', '5-10 Miles'], ['28258', '360', 'AW00028258', 'NULL', 'Destiny', 'C', 'Bryant', '0', '1968-03-08', 'S', 'NULL', 'F', 'destiny65@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '2773 Kirkwood Dr', 'NULL', '658-555-0177', '2014-01-01', '2-5 Miles'], ['28259', '369', 'AW00028259', 'NULL', 'Samuel', 'C', 'Mitchell', '0', '1973-11-29', 'M', 'NULL', 'M', 'samuel41@adventure-works.com', '160000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '3663 Colt Ct.', 'NULL', '654-555-0112', '2011-04-08', '0-1 Miles'], ['28260', '50', 'AW00028260', 'NULL', 'Hunter', 'NULL', 'Roberts', '0', '1967-02-19', 'S', 'NULL', 'M', 'hunter33@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '1048 Burwood Way', 'NULL', '181-555-0117', '2013-06-28', '2-5 Miles'], ['28261', '69', 'AW00028261', 'NULL', 'Stephanie', 'L', 'Griffin', '0', '1967-01-19', 'M', 'NULL', 'F', 'stephanie48@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '8682 Hungry Rd', 'NULL', '965-555-0178', '2013-10-28', '5-10 Miles'], ['28262', '616', 'AW00028262', 'NULL', 'Destiny', 'NULL', 'Diaz', '0', '1972-07-03', 'M', 'NULL', 'F', 'destiny68@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '8500 Pinehurst Court', 'NULL', '635-555-0141', '2014-01-21', '5-10 Miles'], ['28263', '616', 'AW00028263', 'NULL', 'Jonathan', 'NULL', 'Lee', '0', '1966-11-04', 'M', 'NULL', 'M', 'jonathan76@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '5474 Jason Ct.', 'NULL', '706-555-0174', '2013-11-19', '5-10 Miles'], ['28264', '623', 'AW00028264', 'NULL', 'Nicole', 'NULL', 'Diaz', '0', '1967-03-27', 'S', 'NULL', 'F', 'nicole71@adventure-works.com', '90000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '1025 R St.', 'NULL', '614-555-0115', '2011-04-26', '1-2 Miles'], ['28265', '548', 'AW00028265', 'NULL', 'Shirleen', 'H', 'Travers', '0', '1967-02-22', 'S', 'NULL', 'M', 'shirleen0@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2791 Orchard View Ave.', 'NULL', '549-555-0158', '2013-11-28', '5-10 Miles'], ['28266', '548', 'AW00028266', 'NULL', 'Wyatt', 'NULL', 'Flores', '0', '1966-09-20', 'S', 'NULL', 'M', 'wyatt62@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '4456 Eastgate', 'NULL', '566-555-0115', '2013-04-02', '1-2 Miles'], ['28267', '302', 'AW00028267', 'NULL', 'Jordan', 'J', 'Young', '0', '1966-09-09', 'M', 'NULL', 'F', 'jordan46@adventure-works.com', '110000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '8824 D Apling Court', 'NULL', '434-555-0159', '2013-02-28', '5-10 Miles'], ['28268', '311', 'AW00028268', 'NULL', 'Jordan', 'T', 'Campbell', '0', '1972-07-09', 'S', 'NULL', 'F', 'jordan35@adventure-works.com', '120000.00', '1', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '473 Heather Road', 'NULL', '603-555-0129', '2011-04-11', '5-10 Miles'], ['28269', '325', 'AW00028269', 'NULL', 'Alexandra', 'M', 'Green', '0', '1966-08-23', 'S', 'NULL', 'F', 'alexandra56@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '5219 Bailey Ln.', 'NULL', '370-555-0149', '2013-03-10', '2-5 Miles'], ['28270', '644', 'AW00028270', 'NULL', 'Samuel', 'A', 'Long', '0', '1966-03-22', 'S', 'NULL', 'M', 'samuel8@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3727 Duck Horn Court', 'NULL', '826-555-0171', '2011-04-20', '5-10 Miles'], ['28271', '300', 'AW00028271', 'NULL', 'Sean', 'NULL', 'Gonzalez', '0', '1960-12-01', 'S', 'NULL', 'M', 'sean40@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5627 Imperial Dr.', 'NULL', '581-555-0113', '2011-04-07', '5-10 Miles'], ['28272', '66', 'AW00028272', 'NULL', 'Hunter', 'M', 'Jai', '0', '1961-04-14', 'M', 'NULL', 'M', 'hunter27@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '9621 Alamo Court', 'NULL', '552-555-0114', '2013-11-12', '5-10 Miles'], ['28273', '355', 'AW00028273', 'NULL', 'Madeline', 'NULL', 'Mitchell', '0', '1961-02-10', 'M', 'NULL', 'F', 'madeline11@adventure-works.com', '90000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '8141 Mitchell Canyon Road', 'NULL', '922-555-0195', '2011-04-04', '10+ Miles'], ['28274', '612', 'AW00028274', 'NULL', 'William', 'NULL', 'Rodriguez', '0', '1965-11-30', 'S', 'NULL', 'M', 'william15@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9562 Tupelo Dr.', 'NULL', '289-555-0172', '2013-01-30', '5-10 Miles'], ['28275', '302', 'AW00028275', 'NULL', 'Ian', 'L', 'Howard', '0', '1959-12-15', 'S', 'NULL', 'M', 'ian78@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3001 Hanson Lane', 'NULL', '535-555-0131', '2013-12-15', '1-2 Miles'], ['28276', '609', 'AW00028276', 'NULL', 'Christy', 'J', 'Deng', '0', '1941-05-24', 'M', 'NULL', 'F', 'christy21@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2574 Red Leaf', 'NULL', '611-555-0170', '2013-09-12', '5-10 Miles'], ['28277', '609', 'AW00028277', 'NULL', 'Katrina', 'NULL', 'Deng', '0', '1940-08-01', 'S', 'NULL', 'F', 'katrina0@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5562 Galindo Street', 'NULL', '613-555-0165', '2014-01-21', '5-10 Miles'], ['28278', '611', 'AW00028278', 'NULL', 'Jaime', 'J', 'Becker', '0', '1941-01-17', 'M', 'NULL', 'M', 'jaime43@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '879 South Royal Links', 'NULL', '778-555-0131', '2013-05-06', '5-10 Miles'], ['28279', '611', 'AW00028279', 'NULL', 'Spencer', 'D', 'Simmons', '0', '1941-05-22', 'M', 'NULL', 'M', 'spencer17@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1963 Palms', 'NULL', '292-555-0142', '2013-05-10', '5-10 Miles'], ['28280', '546', 'AW00028280', 'NULL', 'Tristan', 'G', 'Powell', '0', '1940-08-21', 'S', 'NULL', 'M', 'tristan9@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5995 The Trees Dr.', 'NULL', '814-555-0114', '2013-08-26', '5-10 Miles'], ['28281', '310', 'AW00028281', 'NULL', 'Juan', 'A', 'Cox', '0', '1941-06-24', 'M', 'NULL', 'M', 'juan20@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '9566 River Ash Court', 'NULL', '627-555-0113', '2013-04-27', '5-10 Miles'], ['28282', '548', 'AW00028282', 'NULL', 'Cindy', 'NULL', 'Foster', '0', '1942-01-18', 'S', 'NULL', 'F', 'cindy27@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3348 Del Vista Court', 'NULL', '337-555-0150', '2013-07-10', '5-10 Miles'], ['28283', '54', 'AW00028283', 'NULL', 'Rachel', 'NULL', 'Long', '0', '1971-01-07', 'S', 'NULL', 'F', 'rachel57@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '8364 Pepper Drive', 'NULL', '909-555-0174', '2013-12-21', '1-2 Miles'], ['28284', '62', 'AW00028284', 'NULL', 'Bailey', 'R', 'Kelly', '0', '1965-09-02', 'S', 'NULL', 'F', 'bailey1@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '1780 Abbey Court', 'NULL', '106-555-0198', '2013-12-19', '5-10 Miles'], ['28285', '546', 'AW00028285', 'NULL', 'Savannah', 'H', 'King', '0', '1965-08-26', 'M', 'NULL', 'F', 'savannah42@adventure-works.com', '100000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '9666 Stillwater Ct.', 'NULL', '205-555-0187', '2011-04-08', '5-10 Miles'], ['28286', '634', 'AW00028286', 'NULL', 'Destiny', 'NULL', 'Alexander', '0', '1965-08-24', 'M', 'NULL', 'F', 'destiny66@adventure-works.com', '100000.00', '0', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '7432 Corte Valencia', 'NULL', '683-555-0113', '2013-04-25', '1-2 Miles'], ['28287', '311', 'AW00028287', 'NULL', 'Lauren', 'M', 'Bennett', '0', '1971-05-13', 'M', 'NULL', 'F', 'lauren48@adventure-works.com', '110000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '9687 Shakespeare Drive', 'NULL', '287-555-0119', '2013-04-23', '5-10 Miles'], ['28288', '311', 'AW00028288', 'NULL', 'Marco', 'A', 'Srini', '0', '1971-08-29', 'S', 'NULL', 'M', 'marco9@adventure-works.com', '110000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '4861 Via Valencia', 'NULL', '305-555-0157', '2011-04-27', '5-10 Miles'], ['28289', '355', 'AW00028289', 'NULL', 'Jack', 'L', 'Gonzales', '0', '1966-03-20', 'S', 'NULL', 'M', 'jack17@adventure-works.com', '160000.00', '1', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '920 Holiday Hills Drive', 'NULL', '953-555-0127', '2013-12-16', '2-5 Miles'], ['28290', '49', 'AW00028290', 'NULL', 'Ian', 'W', 'Brooks', '0', '1959-10-13', 'S', 'NULL', 'M', 'ian66@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6286 Mt. Sequoia Ct.', 'NULL', '459-555-0137', '2013-05-12', '1-2 Miles'], ['28291', '611', 'AW00028291', 'NULL', 'David', 'A', 'Miller', '0', '1959-10-19', 'S', 'NULL', 'M', 'david64@adventure-works.com', '70000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5722 Hemlock Ave.', 'NULL', '587-555-0166', '2013-09-14', '1-2 Miles'], ['28292', '55', 'AW00028292', 'NULL', 'Alexandra', 'NULL', 'Smith', '0', '1971-05-03', 'S', 'NULL', 'F', 'alexandra92@adventure-works.com', '70000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2926 Woodside Court', 'NULL', '267-555-0176', '2013-04-29', '5-10 Miles'], ['28293', '369', 'AW00028293', 'NULL', 'Shelby', 'V', 'Cox', '0', '1965-02-11', 'S', 'NULL', 'F', 'shelby11@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4943 Lightwood Drive', 'NULL', '324-555-0129', '2011-04-26', '1-2 Miles'], ['28294', '337', 'AW00028294', 'NULL', 'Alexis', 'NULL', 'Jenkins', '0', '1960-02-01', 'S', 'NULL', 'F', 'alexis29@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3763 Rosemarie Pl.', 'NULL', '767-555-0158', '2011-04-26', '5-10 Miles'], ['28295', '543', 'AW00028295', 'NULL', 'Wyatt', 'J', 'Collins', '0', '1959-08-21', 'M', 'NULL', 'M', 'wyatt48@adventure-works.com', '60000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4650 Big Canyon Road', 'NULL', '124-555-0119', '2011-04-26', '1-2 Miles'], ['28296', '299', 'AW00028296', 'NULL', 'Thomas', 'C', 'Butler', '0', '1964-09-12', 'S', 'NULL', 'M', 'thomas16@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '4839 Belle Dr', 'NULL', '246-555-0115', '2011-04-11', '1-2 Miles'], ['28297', '545', 'AW00028297', 'NULL', 'Gabrielle', 'NULL', 'Edwards', '0', '1964-03-19', 'S', 'NULL', 'F', 'gabrielle46@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '3769 Green Tea Drive', 'NULL', '658-555-0156', '2011-04-07', '1-2 Miles'], ['28298', '335', 'AW00028298', 'NULL', 'Maria', 'G', 'Edwards', '0', '1959-02-19', 'M', 'NULL', 'F', 'maria45@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '565 Oeffler Ln.', 'NULL', '809-555-0163', '2011-04-11', '5-10 Miles'], ['28299', '326', 'AW00028299', 'NULL', 'Jonathan', 'NULL', 'Shan', '0', '1973-06-20', 'S', 'NULL', 'M', 'jonathan28@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '4044 Pine Creek Way', 'NULL', '671-555-0199', '2011-04-15', '1-2 Miles'], ['28300', '641', 'AW00028300', 'NULL', 'Abigail', 'L', 'Bennett', '0', '1960-11-19', 'S', 'NULL', 'F', 'abigail26@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '509 Lynwood Drive', 'NULL', '978-555-0118', '2013-04-11', '5-10 Miles'], ['28301', '312', 'AW00028301', 'NULL', 'Jasmine', 'C', 'Long', '0', '1955-02-24', 'S', 'NULL', 'F', 'jasmine49@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '852 Santa Maria', 'NULL', '911-555-0187', '2013-02-07', '1-2 Miles'], ['28302', '53', 'AW00028302', 'NULL', 'Caroline', 'C', 'Hughes', '0', '1954-08-20', 'M', 'NULL', 'F', 'caroline12@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4561 Thornhill Place', 'NULL', '366-555-0173', '2013-03-06', '5-10 Miles'], ['28303', '40', 'AW00028303', 'NULL', 'Justin', 'L', 'Lewis', '0', '1975-11-24', 'S', 'NULL', 'M', 'justin49@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '5928 First Ave.', 'NULL', '1 (11) 500 555-0163', '2013-07-18', '5-10 Miles'], ['28304', '38', 'AW00028304', 'NULL', 'Colleen', 'L', 'Zeng', '0', '1969-08-15', 'M', 'NULL', 'F', 'colleen23@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '3886 Valencia Place', 'NULL', '1 (11) 500 555-0157', '2013-03-07', '10+ Miles'], ['28305', '32', 'AW00028305', 'NULL', 'Patricia', 'NULL', 'Lopez', '0', '1970-02-04', 'S', 'NULL', 'F', 'patricia19@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '6576 Lime Ridge Dr.', 'NULL', '1 (11) 500 555-0197', '2013-10-08', '10+ Miles'], ['28306', '36', 'AW00028306', 'NULL', 'Elizabeth', 'K', 'Powell', '0', '1974-05-28', 'M', 'NULL', 'F', 'elizabeth38@adventure-works.com', '60000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '5196 Donald Dr.', 'NULL', '1 (11) 500 555-0145', '2013-07-30', '5-10 Miles'], ['28307', '26', 'AW00028307', 'NULL', 'Morgan', 'NULL', 'Gray', '0', '1968-08-22', 'M', 'NULL', 'F', 'morgan63@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2582 California Street', 'NULL', '1 (11) 500 555-0112', '2013-05-05', '5-10 Miles'], ['28308', '21', 'AW00028308', 'NULL', 'Hector', 'K', 'Serrano', '0', '1974-10-03', 'S', 'NULL', 'M', 'hector14@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '3164 San Simeon Dr.', 'NULL', '1 (11) 500 555-0117', '2013-05-03', '5-10 Miles'], ['28309', '23', 'AW00028309', 'NULL', 'Julie', 'A', 'Lal', '0', '1983-10-01', 'M', 'NULL', 'F', 'julie13@adventure-works.com', '90000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '5637 Teak Court', 'NULL', '1 (11) 500 555-0194', '2013-02-20', '0-1 Miles'], ['28310', '36', 'AW00028310', 'NULL', 'Ross', 'NULL', 'Sanchez', '0', '1978-05-20', 'M', 'NULL', 'M', 'ross19@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '4572 Fitzpatrick Drive', 'NULL', '1 (11) 500 555-0147', '2013-11-07', '0-1 Miles'], ['28311', '18', 'AW00028311', 'NULL', 'Terry', 'A', 'Raje', '0', '1972-08-07', 'S', 'NULL', 'M', 'terry16@adventure-works.com', '100000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '3193 Nephi Court', 'NULL', '1 (11) 500 555-0180', '2013-01-28', '1-2 Miles'], ['28312', '6', 'AW00028312', 'NULL', 'Joy', 'NULL', 'Jimenez', '0', '1968-06-23', 'S', 'NULL', 'F', 'joy6@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3647 San Miguel Road', 'NULL', '1 (11) 500 555-0145', '2013-05-13', '0-1 Miles'], ['28313', '27', 'AW00028313', 'NULL', 'Brett', 'M', 'Perez', '0', '1967-09-12', 'S', 'NULL', 'M', 'brett21@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3444 Elkwood Dr.', 'NULL', '1 (11) 500 555-0145', '2013-05-20', '5-10 Miles'], ['28314', '39', 'AW00028314', 'NULL', 'Dwayne', 'NULL', 'Romero', '0', '1973-10-23', 'S', 'NULL', 'M', 'dwayne8@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '160 Kentucky Drive', 'NULL', '1 (11) 500 555-0184', '2013-05-11', '5-10 Miles'], ['28315', '24', 'AW00028315', 'NULL', 'Stacy', 'NULL', 'Alonso', '0', '1968-04-03', 'S', 'NULL', 'F', 'stacy9@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4575 Sandiago Drive', 'NULL', '1 (11) 500 555-0169', '2013-06-09', '0-1 Miles'], ['28316', '35', 'AW00028316', 'NULL', 'Jaime', 'NULL', 'Martin', '0', '1967-12-09', 'M', 'NULL', 'F', 'jaime1@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7292 Preakness Court', 'NULL', '1 (11) 500 555-0132', '2013-06-01', '0-1 Miles'], ['28317', '15', 'AW00028317', 'NULL', 'Ivan', 'NULL', 'Weber', '0', '1972-10-29', 'M', 'NULL', 'M', 'ivan2@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6700 Delta View Ln.', 'NULL', '1 (11) 500 555-0129', '2013-06-05', '0-1 Miles'], ['28318', '25', 'AW00028318', 'NULL', 'Grace', 'J', 'Lee', '0', '1978-01-02', 'M', 'NULL', 'F', 'grace21@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '8012 Dalis Dr.', 'NULL', '1 (11) 500 555-0117', '2013-06-26', '0-1 Miles'], ['28319', '5', 'AW00028319', 'NULL', 'Ashlee', 'NULL', 'She', '0', '1976-11-08', 'S', 'NULL', 'F', 'ashlee7@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '8476 Kingswood Circle', 'NULL', '1 (11) 500 555-0159', '2013-06-21', '0-1 Miles'], ['28320', '12', 'AW00028320', 'NULL', 'Janet', 'J', 'Navarro', '0', '1966-05-19', 'S', 'NULL', 'F', 'janet15@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6227 Oak Creek Ct.', 'NULL', '1 (11) 500 555-0112', '2013-06-13', '5-10 Miles'], ['28321', '20', 'AW00028321', 'NULL', 'Arturo', 'A', 'Wu', '0', '1965-11-07', 'M', 'NULL', 'M', 'arturo7@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '7227 Landing Terrace', 'NULL', '1 (11) 500 555-0116', '2013-06-26', '0-1 Miles'], ['28322', '9', 'AW00028322', 'NULL', 'Willie', 'C', 'Chen', '0', '1980-07-18', 'S', 'NULL', 'M', 'willie3@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7547 Delta Fair Blvd.', 'NULL', '1 (11) 500 555-0121', '2013-04-04', '5-10 Miles'], ['28323', '31', 'AW00028323', 'NULL', 'Nathan', 'N', 'Moore', '0', '1968-11-29', 'S', 'NULL', 'M', 'nathan66@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '9175 Concord Royale', 'NULL', '1 (11) 500 555-0195', '2013-02-14', '5-10 Miles'], ['28324', '3', 'AW00028324', 'NULL', 'Jésus', 'NULL', 'Martin', '0', '1968-04-03', 'M', 'NULL', 'M', 'jésus1@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8650 Babbe Street', 'NULL', '1 (11) 500 555-0179', '2013-06-23', '5-10 Miles'], ['28325', '23', 'AW00028325', 'NULL', 'Drew', 'A', 'Lal', '0', '1967-01-12', 'S', 'NULL', 'M', 'drew9@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3553 Blenheim Way', 'NULL', '1 (11) 500 555-0151', '2013-05-30', '0-1 Miles'], ['28326', '26', 'AW00028326', 'NULL', 'Carla', 'G', 'Lopez', '0', '1975-05-01', 'S', 'NULL', 'F', 'carla19@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7987 Seawind Dr.', 'NULL', '1 (11) 500 555-0139', '2013-02-13', '2-5 Miles'], ['28327', '33', 'AW00028327', 'NULL', 'Tabitha', 'NULL', 'Serrano', '0', '1968-12-13', 'S', 'NULL', 'F', 'tabitha37@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9825 Brodia Court', 'NULL', '1 (11) 500 555-0143', '2013-02-15', '0-1 Miles'], ['28328', '26', 'AW00028328', 'NULL', 'Kyle', 'NULL', 'Green', '0', '1961-10-20', 'M', 'NULL', 'M', 'kyle42@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7980 Firestone Drive', 'NULL', '1 (11) 500 555-0189', '2013-12-02', '5-10 Miles'], ['28329', '27', 'AW00028329', 'NULL', 'Marcus', 'NULL', 'Washington', '0', '1959-05-06', 'S', 'NULL', 'M', 'marcus63@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3457 Hitchcock', 'NULL', '1 (11) 500 555-0118', '2013-09-10', '5-10 Miles'], ['28330', '631', 'AW00028330', 'NULL', 'Charles', 'C', 'Bailey', '0', '1981-09-30', 'M', 'NULL', 'M', 'charles64@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1594 Ethan Ct.', 'NULL', '102-555-0117', '2013-03-22', '5-10 Miles'], ['28331', '301', 'AW00028331', 'NULL', 'Colleen', 'J', 'Beck', '0', '1982-02-02', 'M', 'NULL', 'F', 'colleen43@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1251 Alan Drive', 'NULL', '428-555-0196', '2013-03-07', '0-1 Miles'], ['28332', '62', 'AW00028332', 'NULL', 'Ryan', 'NULL', 'Washington', '0', '1981-12-04', 'M', 'NULL', 'M', 'ryan16@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4816 Condor Dr', 'NULL', '658-555-0142', '2013-06-07', '5-10 Miles'], ['28333', '299', 'AW00028333', 'NULL', 'Jaime', 'J', 'Jimenez', '0', '1985-12-10', 'M', 'NULL', 'F', 'jaime6@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5899 Mt. Wilson Place', 'NULL', '558-555-0139', '2013-02-06', '0-1 Miles'], ['28334', '611', 'AW00028334', 'NULL', 'Marco', 'C', 'Tanara', '0', '1986-05-17', 'S', 'NULL', 'F', 'marco21@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '878 Amador Ct', 'NULL', '430-555-0114', '2013-09-07', '5-10 Miles'], ['28335', '311', 'AW00028335', 'NULL', 'Rebekah', 'NULL', 'Srini', '0', '1986-03-22', 'M', 'NULL', 'F', 'rebekah8@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5751 San Vincente Drive', 'NULL', '908-555-0190', '2013-10-07', '0-1 Miles'], ['28336', '627', 'AW00028336', 'NULL', 'Edward', 'W', 'Martin', '0', '1985-09-05', 'M', 'NULL', 'M', 'edward37@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8675 Mildred Avenue', 'NULL', '508-555-0159', '2013-08-20', '5-10 Miles'], ['28337', '546', 'AW00028337', 'NULL', 'Melissa', 'NULL', 'Bennett', '0', '1986-05-15', 'M', 'NULL', 'F', 'melissa20@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6481 Hastings Drive', 'NULL', '262-555-0128', '2013-12-08', '5-10 Miles'], ['28338', '14', 'AW00028338', 'NULL', 'Kristi', 'T', 'Vance', '0', '1942-09-02', 'M', 'NULL', 'F', 'kristi20@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7122 Athene Dr.', 'NULL', '1 (11) 500 555-0113', '2013-06-05', '0-1 Miles'], ['28339', '644', 'AW00028339', 'NULL', 'Sean', 'R', 'Edwards', '0', '1984-01-19', 'S', 'NULL', 'M', 'sean32@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7031 Horseshoe Circle', 'NULL', '927-555-0132', '2011-04-12', '0-1 Miles'], ['28340', '368', 'AW00028340', 'NULL', 'Lucas', 'NULL', 'Butler', '0', '1984-04-04', 'S', 'NULL', 'M', 'lucas62@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3878 Mt. Hood Circle', 'NULL', '253-555-0128', '2011-04-17', '0-1 Miles'], ['28341', '68', 'AW00028341', 'NULL', 'Jeremy', 'T', 'Wilson', '0', '1984-03-02', 'S', 'NULL', 'M', 'jeremy1@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8296 Glen Court', 'NULL', '179-555-0174', '2013-08-27', '5-10 Miles'], ['28342', '50', 'AW00028342', 'NULL', 'Brianna', 'K', 'Murphy', '0', '1983-07-15', 'M', 'NULL', 'F', 'brianna32@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3451 Meier Road', 'NULL', '716-555-0164', '2013-07-06', '5-10 Miles'], ['28343', '634', 'AW00028343', 'NULL', 'Shelby', 'NULL', 'Morgan', '0', '1983-06-06', 'S', 'NULL', 'F', 'shelby22@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3377 Coach Place', 'NULL', '438-555-0156', '2013-06-15', '0-1 Miles'], ['28344', '300', 'AW00028344', 'NULL', 'Alvin', 'NULL', 'Zhu', '0', '1983-04-22', 'S', 'NULL', 'M', 'alvin14@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '7396 Maine Dr.', 'NULL', '876-555-0185', '2013-04-05', '5-10 Miles'], ['28345', '311', 'AW00028345', 'NULL', 'Diana', 'K', 'Serrano', '0', '1983-06-23', 'M', 'NULL', 'F', 'diana15@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8245 Highland Dr.', 'NULL', '949-555-0191', '2013-06-10', '5-10 Miles'], ['28346', '69', 'AW00028346', 'NULL', 'Eduardo', 'NULL', 'Russell', '0', '1984-12-01', 'S', 'NULL', 'M', 'eduardo63@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2665 Escobar', 'NULL', '628-555-0177', '2014-01-18', '5-10 Miles'], ['28347', '609', 'AW00028347', 'NULL', 'Latoya', 'D', 'Anand', '0', '1985-03-10', 'S', 'NULL', 'F', 'latoya21@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3358 Thornhill Place', 'NULL', '350-555-0115', '2013-05-12', '5-10 Miles'], ['28348', '12', 'AW00028348', 'NULL', 'Nichole', 'R', 'Jai', '0', '1944-10-02', 'S', 'NULL', 'F', 'nichole11@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '5596 Fall Creek', 'NULL', '1 (11) 500 555-0144', '2013-09-22', '5-10 Miles'], ['28349', '37', 'AW00028349', 'NULL', 'Kristi', 'NULL', 'Vazquez', '0', '1944-08-20', 'S', 'NULL', 'F', 'kristi10@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '2481 Scramble Rd.', 'NULL', '1 (11) 500 555-0189', '2013-10-21', '0-1 Miles'], ['28350', '40', 'AW00028350', 'NULL', 'Alisha', 'NULL', 'Holt', '0', '1944-09-19', 'S', 'NULL', 'F', 'alisha35@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '3769 Marti Marie Drive', 'NULL', '1 (11) 500 555-0187', '2013-08-18', '0-1 Miles'], ['28351', '37', 'AW00028351', 'NULL', 'Donald', 'L', 'Rodriguez', '0', '1946-01-10', 'M', 'NULL', 'M', 'donald21@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1258 Yeoman Dr', 'NULL', '1 (11) 500 555-0192', '2013-07-19', '5-10 Miles'], ['28352', '2', 'AW00028352', 'NULL', 'Meghan', 'L', 'Sanz', '0', '1948-12-06', 'S', 'NULL', 'F', 'meghan19@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '9212 Springer Court', 'NULL', '1 (11) 500 555-0115', '2013-07-08', '0-1 Miles'], ['28353', '22', 'AW00028353', 'NULL', 'Summer', 'NULL', 'Kapoor', '0', '1948-07-13', 'S', 'NULL', 'F', 'summer1@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '3862 Citrus Avenue', 'NULL', '1 (11) 500 555-0113', '2013-07-28', '0-1 Miles'], ['28354', '50', 'AW00028354', 'NULL', 'Ian', 'K', 'Wilson', '0', '1970-12-20', 'S', 'NULL', 'M', 'ian8@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1936 Bayberry Drive', 'NULL', '965-555-0128', '2011-08-26', '0-1 Miles'], ['28355', '385', 'AW00028355', 'NULL', 'Carlos', 'NULL', 'James', '0', '1971-03-14', 'S', 'NULL', 'M', 'carlos9@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2101 Costanza Dr.', 'NULL', '325-555-0146', '2011-04-17', '2-5 Miles'], ['28356', '331', 'AW00028356', 'NULL', 'Blake', 'M', 'Gonzalez', '0', '1970-08-29', 'M', 'NULL', 'M', 'blake35@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3664 Ravenwood', 'NULL', '442-555-0139', '2013-09-17', '2-5 Miles'], ['28357', '59', 'AW00028357', 'NULL', 'Danielle', 'NULL', 'Howard', '0', '1970-08-10', 'S', 'NULL', 'F', 'danielle13@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3529 Sweetwater Drive', 'NULL', '666-555-0153', '2013-12-18', '0-1 Miles'], ['28358', '302', 'AW00028358', 'NULL', 'Austin', 'R', 'Powell', '0', '1970-11-30', 'M', 'NULL', 'M', 'austin4@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4885 Strawberry Court', 'NULL', '442-555-0132', '2013-10-13', '2-5 Miles'], ['28359', '66', 'AW00028359', 'NULL', 'Madison', 'G', 'Anderson', '0', '1976-07-14', 'M', 'NULL', 'F', 'madison10@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8703 Market Place', 'NULL', '263-555-0164', '2013-07-07', '2-5 Miles'], ['28360', '345', 'AW00028360', 'NULL', 'Isaiah', 'L', 'Adams', '0', '1970-12-31', 'M', 'NULL', 'M', 'isaiah38@adventure-works.com', '50000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8232 Roanwood Way', 'NULL', '855-555-0159', '2013-06-01', '2-5 Miles'], ['28361', '623', 'AW00028361', 'NULL', 'Kayla', 'NULL', 'Wilson', '0', '1971-03-26', 'M', 'NULL', 'F', 'kayla7@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '2081 St. Andrews Way', 'NULL', '461-555-0146', '2013-10-11', '0-1 Miles'], ['28362', '347', 'AW00028362', 'NULL', 'Kaylee', 'NULL', 'Sanchez', '0', '1976-05-09', 'S', 'NULL', 'F', 'kaylee24@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '3823 Birch Bark Dr', 'NULL', '547-555-0137', '2011-04-19', '0-1 Miles'], ['28363', '64', 'AW00028363', 'NULL', 'Savannah', 'NULL', 'Travers', '0', '1976-02-16', 'S', 'NULL', 'F', 'savannah12@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '3682 MacArthur Avenue', 'NULL', '121-555-0189', '2011-08-06', '0-1 Miles'], ['28364', '199', 'AW00028364', 'NULL', 'Alison', 'NULL', 'Nara', '0', '1974-03-02', 'M', 'NULL', 'F', 'alison17@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '343, rue de Cambrai', 'NULL', '1 (11) 500 555-0143', '2013-08-10', '0-1 Miles'], ['28365', '245', 'AW00028365', 'NULL', 'Stacey', 'J', 'Zhao', '0', '1974-05-06', 'M', 'NULL', 'F', 'stacey11@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8370 Acardia Pl.', 'NULL', '1 (11) 500 555-0168', '2013-04-26', '0-1 Miles'], ['28366', '236', 'AW00028366', 'NULL', 'Dalton', 'E', 'Rivera', '0', '1972-11-10', 'S', 'NULL', 'M', 'dalton78@adventure-works.com', '10000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '9099 Warmcastle Ct.', 'NULL', '1 (11) 500 555-0151', '2013-10-12', '0-1 Miles'], ['28367', '234', 'AW00028367', 'NULL', 'Jerome', 'NULL', 'Johnsen', '0', '1972-09-07', 'S', 'NULL', 'M', 'jerome5@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '692 Brook Way', '#1988', '1 (11) 500 555-0194', '2013-10-10', '2-5 Miles'], ['28368', '189', 'AW00028368', 'NULL', 'Fernando', 'NULL', 'Butler', '0', '1978-04-16', 'S', 'NULL', 'M', 'fernando57@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6109bis, boulevard Saint Germain', 'NULL', '1 (11) 500 555-0188', '2013-12-28', '0-1 Miles'], ['28369', '126', 'AW00028369', 'NULL', 'Carolyn', 'NULL', 'Moreno', '0', '1973-05-08', 'S', 'NULL', 'F', 'carolyn27@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Wallstr 834', 'NULL', '1 (11) 500 555-0162', '2013-05-11', '2-5 Miles'], ['28370', '253', 'AW00028370', 'NULL', 'Eddie', 'R', 'Gutierrez', '0', '1972-11-06', 'S', 'NULL', 'M', 'eddie11@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '6189 Stonewood Ct.', 'NULL', '1 (11) 500 555-0115', '2013-10-07', '0-1 Miles'], ['28371', '257', 'AW00028371', 'NULL', 'Mandy', 'NULL', 'Liang', '0', '1972-11-10', 'S', 'NULL', 'F', 'mandy18@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '8858 V. Street', 'NULL', '1 (11) 500 555-0189', '2013-10-11', '0-1 Miles'], ['28372', '237', 'AW00028372', 'NULL', 'Vincent', 'F', 'Hu', '0', '1978-11-10', 'S', 'NULL', 'M', 'vincent20@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '67 Flamingo Drive', 'NULL', '1 (11) 500 555-0136', '2013-10-27', '2-5 Miles'], ['28373', '196', 'AW00028373', 'NULL', 'Shane', 'NULL', 'Lopez', '0', '1972-03-24', 'S', 'NULL', 'M', 'shane19@adventure-works.com', '10000.00', '4', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '6, avenue des Laurentides', 'NULL', '1 (11) 500 555-0181', '2013-08-05', '0-1 Miles'], ['28374', '147', 'AW00028374', 'NULL', 'Ruben', 'NULL', 'Vance', '0', '1971-08-15', 'M', 'NULL', 'M', 'ruben4@adventure-works.com', '10000.00', '4', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Wolfgangstraße 48', 'NULL', '1 (11) 500 555-0117', '2013-03-08', '0-1 Miles'], ['28375', '247', 'AW00028375', 'NULL', 'Kathleen', 'C', 'Diaz', '0', '1977-11-07', 'S', 'NULL', 'F', 'kathleen4@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '9121 Pinnacle Drive', 'NULL', '1 (11) 500 555-0143', '2013-11-03', '1-2 Miles'], ['28376', '175', 'AW00028376', 'NULL', 'Eugene', 'L', 'Chen', '0', '1978-10-04', 'S', 'NULL', 'M', 'eugene6@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Lieblingsweg 4', 'NULL', '1 (11) 500 555-0116', '2013-07-26', '0-1 Miles'], ['28377', '235', 'AW00028377', 'NULL', 'Walter', 'NULL', 'Ortega', '0', '1972-12-31', 'M', 'NULL', 'M', 'walter15@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '3857 Westchester Pl.', 'NULL', '1 (11) 500 555-0181', '2013-05-07', '0-1 Miles'], ['28378', '221', 'AW00028378', 'NULL', 'Sara', 'NULL', 'Sanchez', '0', '1972-03-05', 'S', 'NULL', 'F', 'sara29@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '2, place de Brazaville', 'NULL', '1 (11) 500 555-0164', '2013-12-21', '0-1 Miles'], ['28379', '180', 'AW00028379', 'NULL', 'Edgar', 'M', 'Rana', '0', '1971-09-01', 'M', 'NULL', 'M', 'edgar12@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', "99, rue de l'Espace De Schengen", 'NULL', '1 (11) 500 555-0167', '2013-04-10', '0-1 Miles'], ['28380', '225', 'AW00028380', 'NULL', 'Lindsay', 'A', 'Goel', '0', '1970-08-04', 'S', 'NULL', 'F', 'lindsay19@adventure-works.com', '10000.00', '5', '3', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '11, rue du Puits Dixme', 'NULL', '1 (11) 500 555-0113', '2013-11-01', '0-1 Miles'], ['28381', '126', 'AW00028381', 'NULL', 'Cedric', 'M', 'Tang', '0', '1970-10-22', 'S', 'NULL', 'M', 'cedric26@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Marketplatz 5793', 'Buchhaltung', '1 (11) 500 555-0139', '2013-09-14', '0-1 Miles'], ['28382', '168', 'AW00028382', 'NULL', 'Roberto', 'R', 'Ortega', '0', '1976-09-29', 'M', 'NULL', 'M', 'roberto20@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Pflugstr 99', 'NULL', '1 (11) 500 555-0117', '2013-06-16', '0-1 Miles'], ['28383', '147', 'AW00028383', 'NULL', 'Lacey', 'C', 'Zhou', '0', '1971-05-27', 'S', 'NULL', 'F', 'lacey21@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Buergermeister-ulrich-str 7500', 'NULL', '1 (11) 500 555-0140', '2013-06-08', '0-1 Miles'], ['28384', '187', 'AW00028384', 'NULL', 'Tamara', 'NULL', 'Xie', '0', '1976-04-01', 'M', 'NULL', 'F', 'tamara14@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '10, rue de la Comédie', 'NULL', '1 (11) 500 555-0161', '2013-08-07', '0-1 Miles'], ['28385', '201', 'AW00028385', 'NULL', 'Cassie', 'L', 'Deng', '0', '1976-03-15', 'M', 'NULL', 'F', 'cassie1@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '33, allée des Princes', 'NULL', '1 (11) 500 555-0111', '2013-12-20', '0-1 Miles'], ['28386', '250', 'AW00028386', 'NULL', 'Sergio', 'NULL', 'Subram', '0', '1980-09-13', 'M', 'NULL', 'M', 'sergio13@adventure-works.com', '10000.00', '5', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '5174 Ham Court', 'NULL', '1 (11) 500 555-0166', '2013-11-03', '0-1 Miles'], ['28387', '269', 'AW00028387', 'NULL', 'Roberto', 'NULL', 'Alvarez', '0', '1975-03-06', 'M', 'NULL', 'M', 'roberto4@adventure-works.com', '10000.00', '5', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '1739 Breaker Dr.', 'NULL', '1 (11) 500 555-0147', '2013-11-18', '0-1 Miles'], ['28388', '176', 'AW00028388', 'NULL', 'Sheila', 'NULL', 'Rowe', '0', '1975-09-29', 'S', 'NULL', 'F', 'sheila19@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Auf dem Ufer 664', 'NULL', '1 (11) 500 555-0179', '2013-06-18', '0-1 Miles'], ['28389', '222', 'AW00028389', 'NULL', 'Rachael', 'M', 'Martinez', '0', '1970-06-17', 'S', 'NULL', 'F', 'rachael16@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '14, avenue du Port', 'NULL', '1 (11) 500 555-0190', '2010-12-29', '0-1 Miles'], ['28390', '215', 'AW00028390', 'NULL', 'Frederick', 'NULL', 'Suri', '0', '1969-09-30', 'S', 'NULL', 'M', 'frederick0@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '180, boulevard Beau Marchais', 'NULL', '1 (11) 500 555-0190', '2011-01-24', '0-1 Miles'], ['28391', '192', 'AW00028391', 'NULL', 'Monique', 'C', 'Jimenez', '0', '1981-03-13', 'M', 'NULL', 'F', 'monique1@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '882, rue Villedo', 'NULL', '1 (11) 500 555-0165', '2013-02-15', '0-1 Miles'], ['28392', '238', 'AW00028392', 'NULL', 'Luke', 'R', 'Green', '0', '1938-12-18', 'M', 'NULL', 'M', 'luke45@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9302 Steven Circle', 'NULL', '1 (11) 500 555-0116', '2013-02-04', '2-5 Miles'], ['28393', '216', 'AW00028393', 'NULL', 'Ramon', 'R', 'Zheng', '0', '1972-01-04', 'S', 'NULL', 'M', 'ramon17@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '802, avenue du Port', 'NULL', '1 (11) 500 555-0119', '2011-01-27', '0-1 Miles'], ['28394', '212', 'AW00028394', 'NULL', 'Alisha', 'G', 'Zhang', '0', '1971-10-01', 'M', 'NULL', 'F', 'alisha0@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '4244, rue Surcouf', 'NULL', '1 (11) 500 555-0138', '2011-02-23', '0-1 Miles'], ['28395', '225', 'AW00028395', 'NULL', 'Shannon', 'L', 'Dominguez', '0', '1972-06-26', 'S', 'NULL', 'M', 'shannon34@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '11, rue de Cambrai', 'NULL', '1 (11) 500 555-0119', '2011-02-28', '0-1 Miles'], ['28396', '132', 'AW00028396', 'NULL', 'Rebekah', 'NULL', 'Munoz', '0', '1977-08-16', 'S', 'NULL', 'F', 'rebekah27@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '3229 Mark Twain Dr.', 'NULL', '1 (11) 500 555-0116', '2013-08-19', '0-1 Miles'], ['28397', '261', 'AW00028397', 'NULL', 'Cynthia', 'L', 'Rana', '0', '1972-05-05', 'M', 'NULL', 'F', 'cynthia16@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '6149 Everett Court', 'NULL', '1 (11) 500 555-0117', '2013-05-08', '0-1 Miles'], ['28398', '217', 'AW00028398', 'NULL', 'Shawn', 'L', 'Lal', '0', '1968-08-04', 'S', 'NULL', 'M', 'shawn10@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '0', '99, rue du Départ', 'NULL', '1 (11) 500 555-0116', '2013-07-09', '0-1 Miles'], ['28399', '250', 'AW00028399', 'NULL', 'Dale', 'NULL', 'Deng', '0', '1974-07-15', 'M', 'NULL', 'M', 'dale1@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6628 Ranch Drive', 'Box 21', '1 (11) 500 555-0122', '2013-10-29', '0-1 Miles'], ['28400', '165', 'AW00028400', 'NULL', 'Cedric', 'P', 'Anand', '0', '1968-08-22', 'S', 'NULL', 'M', 'cedric40@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Winterfeldtstr 3539', 'NULL', '1 (11) 500 555-0115', '2013-06-08', '0-1 Miles'], ['28401', '186', 'AW00028401', 'NULL', 'Maria', 'F', 'Alexander', '0', '1971-06-03', 'S', 'NULL', 'F', 'maria40@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '161, rue de Cambrai', 'NULL', '1 (11) 500 555-0153', '2011-03-21', '0-1 Miles'], ['28402', '200', 'AW00028402', 'NULL', 'Kristin', 'R', 'Kumar', '0', '1970-11-23', 'S', 'NULL', 'F', 'kristin10@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '1090, quai de Grenelle', 'NULL', '1 (11) 500 555-0190', '2013-02-12', '0-1 Miles'], ['28403', '249', 'AW00028403', 'NULL', 'Jaclyn', 'C', 'Sharma', '0', '1982-03-13', 'M', 'NULL', 'F', 'jaclyn33@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6171 Kinross Drive', 'NULL', '1 (11) 500 555-0194', '2013-05-27', '0-1 Miles'], ['28404', '156', 'AW00028404', 'NULL', 'Whitney', 'NULL', 'Raman', '0', '1975-05-10', 'M', 'NULL', 'F', 'whitney11@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', 'Königstr 38', 'NULL', '1 (11) 500 555-0163', '2013-10-11', '0-1 Miles'], ['28405', '119', 'AW00028405', 'NULL', 'Erick', 'A', 'Malhotra', '0', '1970-04-03', 'M', 'NULL', 'M', 'erick4@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Königstr 282', 'NULL', '1 (11) 500 555-0138', '2013-08-07', '0-1 Miles'], ['28406', '211', 'AW00028406', 'NULL', 'Gerald', 'NULL', 'Srini', '0', '1979-09-16', 'M', 'NULL', 'M', 'gerald38@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '288, rue de Linois', 'NULL', '1 (11) 500 555-0135', '2014-01-24', '0-1 Miles'], ['28407', '190', 'AW00028407', 'NULL', 'Emma', 'R', 'Miller', '0', '1969-04-26', 'S', 'NULL', 'F', 'emma5@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '0', '2626, avenue de l´Europe', 'NULL', '1 (11) 500 555-0185', '2011-05-14', '0-1 Miles'], ['28408', '229', 'AW00028408', 'NULL', 'Tasha', 'A', 'Lal', '0', '1984-04-10', 'S', 'NULL', 'F', 'tasha9@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '8251 Vista Del Sol', 'NULL', '1 (11) 500 555-0158', '2013-05-06', '2-5 Miles'], ['28409', '165', 'AW00028409', 'NULL', 'Bonnie', 'NULL', 'Rai', '0', '1983-03-15', 'M', 'NULL', 'F', 'bonnie23@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Rykestr 8105', 'NULL', '1 (11) 500 555-0119', '2013-02-05', '1-2 Miles'], ['28410', '233', 'AW00028410', 'NULL', 'Cheryl', 'R', 'Gill', '0', '1982-10-19', 'M', 'NULL', 'F', 'cheryl16@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '466 Ranch Road', 'NULL', '1 (11) 500 555-0121', '2013-02-20', '1-2 Miles'], ['28411', '246', 'AW00028411', 'NULL', 'Jay', 'M', 'Rodriguez', '0', '1982-12-14', 'S', 'NULL', 'M', 'jay26@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '1692 Detroit Ave', 'NULL', '1 (11) 500 555-0183', '2013-02-25', '2-5 Miles'], ['28412', '208', 'AW00028412', 'NULL', 'Walter', 'D', 'Vazquez', '0', '1983-02-05', 'S', 'NULL', 'M', 'walter8@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '400, rue de la Comédie', 'NULL', '1 (11) 500 555-0117', '2013-02-23', '2-5 Miles'], ['28413', '238', 'AW00028413', 'NULL', 'Dalton', 'M', 'Martinez', '0', '1981-09-09', 'M', 'NULL', 'M', 'dalton16@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '7025 Eastgate Avenue', 'NULL', '1 (11) 500 555-0177', '2013-09-19', '0-1 Miles'], ['28414', '184', 'AW00028414', 'NULL', 'Bradley', 'M', 'Luo', '0', '1983-12-18', 'S', 'NULL', 'M', 'bradley8@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '560, rue des Bouchers', 'NULL', '1 (11) 500 555-0161', '2011-05-21', '0-1 Miles'], ['28415', '234', 'AW00028415', 'NULL', 'Melissa', 'J', 'Rogers', '0', '1974-12-16', 'M', 'NULL', 'F', 'melissa42@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7706 Red Maple Ct', 'NULL', '1 (11) 500 555-0189', '2013-05-17', '0-1 Miles'], ['28416', '275', 'AW00028416', 'NULL', 'Roger', 'J', 'Black', '0', '1974-12-16', 'M', 'NULL', 'M', 'roger48@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7706 Red Maple Ct', 'NULL', '1 (11) 500 555-0144', '2013-05-30', '0-1 Miles'], ['28417', '234', 'AW00028417', 'NULL', 'Ashlee', 'A', 'Lal', '0', '1973-08-14', 'M', 'NULL', 'F', 'ashlee15@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6625 First Ave.', 'NULL', '1 (11) 500 555-0148', '2013-06-04', '0-1 Miles'], ['28418', '203', 'AW00028418', 'NULL', 'Kelli', 'C', 'Zhu', '0', '1967-08-24', 'M', 'NULL', 'F', 'kelli15@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '52, rue Mazagran', 'NULL', '1 (11) 500 555-0188', '2011-06-07', '0-1 Miles'], ['28419', '211', 'AW00028419', 'NULL', 'Cheryl', 'NULL', 'Suarez', '0', '1967-08-14', 'M', 'NULL', 'F', 'cheryl22@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '811, rue de Longchamp', 'NULL', '1 (11) 500 555-0191', '2011-07-15', '0-1 Miles'], ['28420', '223', 'AW00028420', 'NULL', 'Tracy', 'C', 'Chapman', '0', '1968-03-09', 'M', 'NULL', 'F', 'tracy15@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '470, rue de Linois', 'NULL', '1 (11) 500 555-0155', '2011-07-22', '0-1 Miles'], ['28421', '120', 'AW00028421', 'NULL', 'Monica', 'NULL', 'Gonzalez', '0', '1984-02-12', 'S', 'NULL', 'F', 'monica18@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '4', 'Zur Lindung 40', 'NULL', '1 (11) 500 555-0196', '2013-06-12', '0-1 Miles'], ['28422', '222', 'AW00028422', 'NULL', 'Joy', 'NULL', 'Moyer', '0', '1983-01-03', 'S', 'NULL', 'F', 'joy8@adventure-works.com', '30000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '3', '244, rue de Bas Marin', 'NULL', '1 (11) 500 555-0170', '2013-12-17', '0-1 Miles'], ['28423', '129', 'AW00028423', 'NULL', 'Victor', 'L', 'Ortega', '0', '1983-05-22', 'S', 'NULL', 'M', 'victor22@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Charlottenstr 39818', 'NULL', '1 (11) 500 555-0189', '2013-03-17', '2-5 Miles'], ['28424', '233', 'AW00028424', 'NULL', 'Neil', 'NULL', 'Romero', '0', '1982-07-20', 'S', 'NULL', 'M', 'neil8@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '4657 Price Lane', 'NULL', '1 (11) 500 555-0137', '2013-11-13', '0-1 Miles'], ['28425', '241', 'AW00028425', 'NULL', 'Gilbert', 'O', 'Nara', '0', '1983-03-21', 'S', 'NULL', 'M', 'gilbert36@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4478 W Lake Drive', 'NULL', '1 (11) 500 555-0149', '2013-11-01', '2-5 Miles'], ['28426', '246', 'AW00028426', 'NULL', 'Melvin', 'NULL', 'Xie', '0', '1983-02-15', 'S', 'NULL', 'M', 'melvin3@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '3713 Rollingwood Dr.', 'NULL', '1 (11) 500 555-0149', '2013-10-11', '2-5 Miles'], ['28427', '247', 'AW00028427', 'NULL', 'Yolanda', 'NULL', 'Deng', '0', '1982-10-08', 'S', 'NULL', 'F', 'yolanda1@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '1979 Driving Drive', 'NULL', '1 (11) 500 555-0151', '2013-11-11', '0-1 Miles'], ['28428', '259', 'AW00028428', 'NULL', 'Ebony', 'M', 'Alvarez', '0', '1982-12-07', 'S', 'NULL', 'F', 'ebony27@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '620 Woodside Ct.', 'NULL', '1 (11) 500 555-0136', '2013-11-20', '2-5 Miles'], ['28429', '187', 'AW00028429', 'NULL', 'Devin', 'NULL', 'Bell', '0', '1982-01-06', 'S', 'NULL', 'M', 'devin81@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6861, rue Villedo', 'NULL', '1 (11) 500 555-0153', '2013-05-26', '1-2 Miles'], ['28430', '170', 'AW00028430', 'NULL', 'Armando', 'NULL', 'Suarez', '0', '1980-11-29', 'M', 'NULL', 'M', 'armando19@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Marienplatz 56565', 'NULL', '1 (11) 500 555-0125', '2013-08-05', '0-1 Miles'], ['28431', '187', 'AW00028431', 'NULL', 'Tyrone', 'NULL', 'Sanz', '0', '1981-05-22', 'M', 'NULL', 'M', 'tyrone19@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '7, rue de la Centenaire', 'NULL', '1 (11) 500 555-0131', '2013-08-21', '0-1 Miles'], ['28432', '147', 'AW00028432', 'NULL', 'Bruce', 'S', 'Carlson', '0', '1980-12-21', 'S', 'NULL', 'M', 'bruce39@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Am Gallberg 2482', 'NULL', '1 (11) 500 555-0144', '2013-10-29', '1-2 Miles'], ['28433', '204', 'AW00028433', 'NULL', 'Deborah', 'NULL', 'Shen', '0', '1981-11-22', 'S', 'NULL', 'F', 'deborah6@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '35, avenue des Laurentides', 'NULL', '1 (11) 500 555-0193', '2013-12-22', '2-5 Miles'], ['28434', '144', 'AW00028434', 'NULL', 'Brian', 'NULL', 'Lauer', '0', '1981-08-01', 'S', 'NULL', 'M', 'brian10@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Conesweg 80', 'NULL', '1 (11) 500 555-0172', '2013-06-13', '2-5 Miles'], ['28435', '173', 'AW00028435', 'NULL', 'Edwin', 'NULL', 'Liu', '0', '1981-10-09', 'M', 'NULL', 'M', 'edwin4@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Alderweg 37', 'NULL', '1 (11) 500 555-0157', '2014-01-20', '0-1 Miles'], ['28436', '247', 'AW00028436', 'NULL', 'Derrick', 'R', 'Carlson', '0', '1981-11-29', 'S', 'NULL', 'M', 'derrick17@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '8168 Lorie Lane', 'NULL', '1 (11) 500 555-0118', '2013-10-31', '0-1 Miles'], ['28437', '259', 'AW00028437', 'Ms.', 'Mary', 'J.', 'Smith', '0', '1981-11-11', 'S', 'NULL', 'F', 'mary10@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4911 Peachwillow Lane', 'NULL', '941-555-0100', '2013-11-30', '2-5 Miles'], ['28438', '271', 'AW00028438', 'NULL', 'Heidi', 'NULL', 'Sanchez', '0', '1981-12-30', 'S', 'NULL', 'F', 'heidi23@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '277 South Royal Links', 'NULL', '1 (11) 500 555-0114', '2013-12-04', '0-1 Miles'], ['28439', '262', 'AW00028439', 'NULL', 'Olivia', 'L', 'Gray', '0', '1981-05-11', 'S', 'NULL', 'F', 'olivia41@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '3618 Galveston Ct', 'NULL', '1 (11) 500 555-0192', '2014-01-16', '5-10 Miles'], ['28440', '187', 'AW00028440', 'NULL', 'Allison', 'NULL', 'Ramirez', '0', '1980-12-02', 'S', 'NULL', 'F', 'allison5@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '9, rue Philibert-Delorme', 'NULL', '1 (11) 500 555-0111', '2013-08-23', '2-5 Miles'], ['28441', '190', 'AW00028441', 'NULL', 'Peter', 'K', 'Nath', '0', '1980-04-14', 'S', 'NULL', 'M', 'peter23@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '754, rue de Bas Marin', 'NULL', '1 (11) 500 555-0160', '2013-09-19', '0-1 Miles'], ['28442', '215', 'AW00028442', 'NULL', 'Phillip', 'P', 'Prasad', '0', '1979-11-08', 'S', 'NULL', 'M', 'phillip10@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '11, rue du Puits Dixme', 'NULL', '1 (11) 500 555-0180', '2013-03-27', '0-1 Miles'], ['28443', '215', 'AW00028443', 'NULL', 'Alfredo', 'F', 'Dominguez', '0', '1981-06-16', 'S', 'NULL', 'M', 'alfredo14@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '101, avenue des Champs-Elysées', 'NULL', '1 (11) 500 555-0166', '2011-08-03', '2-5 Miles'], ['28444', '209', 'AW00028444', 'NULL', 'Pedro', 'NULL', 'Sai', '0', '1981-05-18', 'S', 'NULL', 'M', 'pedro6@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '2, rue Pierre-Demoulin', 'NULL', '1 (11) 500 555-0173', '2013-03-20', '0-1 Miles'], ['28445', '154', 'AW00028445', 'NULL', 'Shaun', 'NULL', 'She', '0', '1981-06-17', 'S', 'NULL', 'M', 'shaun2@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Bundesallee 5511', 'NULL', '1 (11) 500 555-0190', '2013-11-10', '0-1 Miles'], ['28446', '274', 'AW00028446', 'NULL', 'Mayra', 'C', 'Subram', '0', '1980-12-01', 'M', 'NULL', 'F', 'mayra13@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7986 Southdale', 'NULL', '1 (11) 500 555-0179', '2013-06-29', '1-2 Miles'], ['28447', '221', 'AW00028447', 'NULL', 'Dalton', 'S', 'Walker', '0', '1978-11-03', 'S', 'NULL', 'M', 'dalton22@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '854, boulevard Tremblay', 'NULL', '1 (11) 500 555-0172', '2013-05-29', '1-2 Miles'], ['28448', '238', 'AW00028448', 'NULL', 'Katherine', 'P', 'Campbell', '0', '1978-11-08', 'M', 'NULL', 'F', 'katherine55@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '5057 Fillet Ave.', 'NULL', '1 (11) 500 555-0180', '2013-10-03', '1-2 Miles'], ['28449', '212', 'AW00028449', 'NULL', 'Jarred', 'K', 'Gill', '0', '1975-07-10', 'M', 'NULL', 'M', 'jarred1@adventure-works.com', '10000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '4811, rue des Ecoles', 'NULL', '1 (11) 500 555-0110', '2011-08-05', '0-1 Miles'], ['28450', '160', 'AW00028450', 'NULL', 'Nelson', 'NULL', 'Martin', '0', '1967-08-14', 'S', 'NULL', 'M', 'nelson0@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Kappellweg 675', 'NULL', '1 (11) 500 555-0110', '2013-02-12', '0-1 Miles'], ['28451', '239', 'AW00028451', 'NULL', 'Nichole', 'H', 'Chander', '0', '1968-02-01', 'M', 'NULL', 'F', 'nichole15@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '2986 Cleveland Avenue', 'NULL', '1 (11) 500 555-0182', '2013-11-05', '0-1 Miles'], ['28452', '223', 'AW00028452', 'NULL', 'Alexandra', 'I', 'Young', '0', '1967-05-03', 'S', 'NULL', 'F', 'alexandra91@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '3666, rue des Bouchers', 'NULL', '1 (11) 500 555-0116', '2013-04-15', '0-1 Miles'], ['28453', '155', 'AW00028453', 'NULL', 'Valerie', 'NULL', 'Lin', '0', '1966-07-09', 'M', 'NULL', 'F', 'valerie9@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Lieblingsweg 345', 'NULL', '1 (11) 500 555-0129', '2013-08-03', '0-1 Miles'], ['28454', '117', 'AW00028454', 'NULL', 'Shawna', 'NULL', 'Simpson', '0', '1972-05-05', 'M', 'NULL', 'F', 'shawna2@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Erlenweg 9194', 'NULL', '1 (11) 500 555-0117', '2013-06-28', '0-1 Miles'], ['28455', '127', 'AW00028455', 'NULL', 'Raymond', 'E', 'Sara', '0', '1972-06-02', 'M', 'NULL', 'M', 'raymond12@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Zollstr 68', 'Verkaufsabteilung', '1 (11) 500 555-0165', '2013-05-12', '0-1 Miles'], ['28456', '183', 'AW00028456', 'NULL', 'Todd', 'NULL', 'Xu', '0', '1972-06-17', 'M', 'NULL', 'M', 'todd11@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '20, boulevard d´Albi', 'NULL', '1 (11) 500 555-0175', '2013-02-04', '0-1 Miles'], ['28457', '220', 'AW00028457', 'NULL', 'Bruce', 'NULL', 'Gonzalez', '0', '1941-03-30', 'S', 'NULL', 'M', 'bruce18@adventure-works.com', '10000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '703, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0179', '2013-12-31', '0-1 Miles'], ['28458', '205', 'AW00028458', 'NULL', 'Casey', 'C', 'She', '0', '1967-12-07', 'S', 'NULL', 'F', 'casey0@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '37, place de Fontenoy', 'NULL', '1 (11) 500 555-0154', '2011-09-08', '0-1 Miles'], ['28459', '229', 'AW00028459', 'NULL', 'Dana', 'NULL', 'Muñoz', '0', '1963-11-11', 'M', 'NULL', 'F', 'dana23@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '3890 El Camino Drive', 'NULL', '1 (11) 500 555-0137', '2013-07-30', '0-1 Miles'], ['28460', '186', 'AW00028460', 'NULL', 'Nathan', 'NULL', 'Powell', '0', '1963-12-02', 'M', 'NULL', 'M', 'nathan4@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '75, avenue de la Gare', 'NULL', '1 (11) 500 555-0153', '2013-03-15', '0-1 Miles'], ['28461', '128', 'AW00028461', 'NULL', 'Joe', 'A', 'Dominguez', '0', '1968-09-13', 'M', 'NULL', 'M', 'joe36@adventure-works.com', '10000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Hauptstr 6039', 'NULL', '1 (11) 500 555-0144', '2013-11-18', '0-1 Miles'], ['28462', '221', 'AW00028462', 'NULL', 'Kendra', 'NULL', 'Serrano', '0', '1962-09-19', 'M', 'NULL', 'F', 'kendra16@adventure-works.com', '10000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '2, avenue des Laurentides', 'NULL', '1 (11) 500 555-0190', '2013-03-26', '0-1 Miles'], ['28463', '266', 'AW00028463', 'NULL', 'Emmanuel', 'R', 'Arun', '0', '1962-12-11', 'S', 'NULL', 'M', 'emmanuel6@adventure-works.com', '10000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '5843 Westwood Court', 'NULL', '1 (11) 500 555-0172', '2013-09-07', '0-1 Miles'], ['28464', '193', 'AW00028464', 'NULL', 'Eddie', 'I', 'Hernandez', '0', '1961-11-08', 'M', 'NULL', 'M', 'eddie4@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '144, avenue Foch', 'NULL', '1 (11) 500 555-0149', '2013-12-13', '1-2 Miles'], ['28465', '142', 'AW00028465', 'NULL', 'Wendy', 'D', 'Serrano', '0', '1967-09-14', 'M', 'NULL', 'F', 'wendy15@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Herzogstr 32098', 'NULL', '1 (11) 500 555-0157', '2013-03-10', '0-1 Miles'], ['28466', '188', 'AW00028466', 'NULL', 'Marco', 'A', 'Chandra', '0', '1962-03-21', 'S', 'NULL', 'M', 'marco2@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '600, route de Marseille', 'NULL', '1 (11) 500 555-0119', '2014-01-08', '0-1 Miles'], ['28467', '147', 'AW00028467', 'NULL', 'Tasha', 'D', 'Tang', '0', '1971-08-08', 'M', 'NULL', 'F', 'tasha4@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Hans-Rosenthal-Platz 42111', 'NULL', '1 (11) 500 555-0113', '2013-10-07', '1-2 Miles'], ['28468', '242', 'AW00028468', 'NULL', 'Melody', 'NULL', 'Harrison', '0', '1960-08-28', 'M', 'NULL', 'F', 'melody11@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '3526 Dover Way', 'NULL', '1 (11) 500 555-0152', '2013-05-12', '1-2 Miles'], ['28469', '279', 'AW00028469', 'NULL', 'Morgan', 'M', 'Green', '0', '1960-10-01', 'M', 'NULL', 'F', 'morgan11@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '5860 Rock Creek Pl.', 'NULL', '1 (11) 500 555-0163', '2013-10-26', '1-2 Miles'], ['28470', '225', 'AW00028470', 'NULL', 'Tamara', 'NULL', 'Tang', '0', '1959-08-19', 'M', 'NULL', 'F', 'tamara15@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '8181, rue des Grands Champs', 'NULL', '1 (11) 500 555-0123', '2011-09-04', '0-1 Miles'], ['28471', '188', 'AW00028471', 'NULL', 'Phillip', 'J', 'Sullivan', '0', '1960-02-21', 'S', 'NULL', 'M', 'phillip14@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', "11, rue de l'Espace De Schengen", 'NULL', '1 (11) 500 555-0198', '2011-09-21', '0-1 Miles'], ['28472', '127', 'AW00028472', 'NULL', 'Kellie', 'M', 'Ramos', '0', '1944-01-11', 'M', 'NULL', 'F', 'kellie16@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Postenweg 3138', 'NULL', '1 (11) 500 555-0113', '2013-06-25', '0-1 Miles'], ['28473', '261', 'AW00028473', 'NULL', 'Bruce', 'NULL', 'Rodriguez', '0', '1945-04-22', 'S', 'NULL', 'M', 'bruce19@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '4712 Brook Way', 'NULL', '1 (11) 500 555-0111', '2013-09-17', '0-1 Miles'], ['28474', '240', 'AW00028474', 'NULL', 'Terrence', 'R', 'Nara', '0', '1946-01-19', 'S', 'NULL', 'M', 'terrence17@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8934 Roundtree Court', 'NULL', '1 (11) 500 555-0179', '2013-12-06', '0-1 Miles'], ['28475', '186', 'AW00028475', 'NULL', 'Bruce', 'NULL', 'Ramos', '0', '1946-12-09', 'S', 'NULL', 'M', 'bruce38@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '112, rue Marbeuf', 'NULL', '1 (11) 500 555-0196', '2013-03-25', '2-5 Miles'], ['28476', '197', 'AW00028476', 'NULL', 'Bradley', 'J', 'Xie', '0', '1952-10-08', 'S', 'NULL', 'M', 'bradley5@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '15, rue de Cambrai', 'NULL', '1 (11) 500 555-0152', '2013-11-04', '0-1 Miles'], ['28477', '251', 'AW00028477', 'NULL', 'Kenneth', 'NULL', 'Tang', '0', '1947-03-03', 'M', 'NULL', 'M', 'kenneth4@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3004 Carob Way', 'NULL', '1 (11) 500 555-0150', '2013-12-04', '0-1 Miles'], ['28478', '187', 'AW00028478', 'NULL', 'Riley', 'M', 'Long', '0', '1949-04-14', 'S', 'NULL', 'F', 'riley7@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '8, rue des Berges', 'NULL', '1 (11) 500 555-0156', '2011-09-10', '1-2 Miles'], ['28479', '12', 'AW00028479', 'NULL', 'Marvin', 'C', 'Gomez', '0', '1985-12-05', 'S', 'NULL', 'M', 'marvin1@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1306 Longbrood Way', 'NULL', '1 (11) 500 555-0131', '2013-04-21', '0-1 Miles'], ['28480', '6', 'AW00028480', 'NULL', 'Arthur', 'NULL', 'Vazquez', '0', '1986-02-25', 'S', 'NULL', 'M', 'arthur39@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '4304 Hieber Drive', 'NULL', '1 (11) 500 555-0110', '2013-05-13', '1-2 Miles'], ['28481', '16', 'AW00028481', 'NULL', 'Kristine', 'K', 'Moreno', '0', '1984-07-14', 'M', 'NULL', 'F', 'kristine7@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '3451 Meier Road', 'NULL', '1 (11) 500 555-0119', '2013-05-20', '2-5 Miles'], ['28482', '20', 'AW00028482', 'NULL', 'Jaime', 'D', 'She', '0', '1983-08-06', 'S', 'NULL', 'M', 'jaime24@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '71 Flora Ave', 'NULL', '1 (11) 500 555-0115', '2013-05-12', '0-1 Miles'], ['28483', '30', 'AW00028483', 'NULL', 'Tara', 'F', 'Raje', '0', '1981-10-22', 'S', 'NULL', 'F', 'tara14@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '7480 Violet Ct', 'NULL', '1 (11) 500 555-0121', '2013-05-22', '2-5 Miles'], ['28484', '27', 'AW00028484', 'NULL', 'Harold', 'F', 'Raman', '0', '1985-03-12', 'M', 'NULL', 'M', 'harold9@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '9930 Clinton Dr', 'NULL', '1 (11) 500 555-0152', '2013-05-28', '0-1 Miles'], ['28485', '28', 'AW00028485', 'NULL', 'Bianca', 'F', 'Wu', '0', '1983-08-02', 'S', 'NULL', 'F', 'bianca6@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8581 Paris Lane', 'NULL', '1 (11) 500 555-0135', '2013-05-14', '0-1 Miles'], ['28486', '39', 'AW00028486', 'NULL', 'Rebekah', 'NULL', 'Chandra', '0', '1984-04-06', 'M', 'NULL', 'F', 'rebekah2@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '7551 Black Walnut Ct.', 'NULL', '1 (11) 500 555-0113', '2013-06-08', '0-1 Miles'], ['28487', '15', 'AW00028487', 'NULL', 'Gerald', 'A', 'Gill', '0', '1984-04-01', 'S', 'NULL', 'M', 'gerald22@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3391 Paso Del Rio Court', 'NULL', '1 (11) 500 555-0120', '2013-06-27', '0-1 Miles'], ['28488', '35', 'AW00028488', 'NULL', 'Reginald', 'NULL', 'Travers', '0', '1983-05-06', 'S', 'NULL', 'M', 'reginald19@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '8158 Tweed Lane', 'NULL', '1 (11) 500 555-0188', '2013-06-17', '0-1 Miles'], ['28489', '174', 'AW00028489', 'NULL', 'Jeffery', 'E', 'Zhu', '0', '1949-02-23', 'S', 'NULL', 'M', 'jeffery14@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Krönerweg 6', 'NULL', '1 (11) 500 555-0168', '2013-07-30', '0-1 Miles'], ['28490', '121', 'AW00028490', 'NULL', 'Krista', 'L', 'Ramos', '0', '1949-03-20', 'S', 'NULL', 'F', 'krista16@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Potsdamer Straße 1929', 'NULL', '1 (11) 500 555-0159', '2013-07-07', '0-1 Miles'], ['28491', '203', 'AW00028491', 'NULL', 'Cassie', 'E', 'Jai', '0', '1966-10-20', 'S', 'NULL', 'F', 'cassie10@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '4119, rue Léo Delibes', 'NULL', '1 (11) 500 555-0164', '2011-11-19', '0-1 Miles'], ['28492', '190', 'AW00028492', 'NULL', 'Bethany', 'NULL', 'Tang', '0', '1966-11-04', 'M', 'NULL', 'F', 'bethany7@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '5, rue Malar', 'NULL', '1 (11) 500 555-0186', '2011-11-09', '0-1 Miles'], ['28493', '147', 'AW00028493', 'NULL', 'Morgan', 'T', 'Wilson', '0', '1967-05-21', 'M', 'NULL', 'F', 'morgan30@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Lieblingsweg 2123', 'NULL', '1 (11) 500 555-0132', '2013-07-30', '0-1 Miles'], ['28494', '121', 'AW00028494', 'NULL', 'Ross', 'G', 'Martinez', '0', '1983-10-19', 'S', 'NULL', 'M', 'ross17@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Holzstr 4222', 'NULL', '1 (11) 500 555-0158', '2013-07-19', '0-1 Miles'], ['28495', '221', 'AW00028495', 'NULL', 'Catherine', 'A', 'Morgan', '0', '1966-05-19', 'S', 'NULL', 'F', 'catherine19@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '67, cours Mirabeau', 'NULL', '1 (11) 500 555-0141', '2013-05-07', '1-2 Miles'], ['28496', '184', 'AW00028496', 'NULL', 'Adam', 'A', 'Shan', '0', '1971-08-05', 'S', 'NULL', 'M', 'adam27@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '29, rue Jean Mermoz', 'NULL', '1 (11) 500 555-0185', '2013-08-10', '2-5 Miles'], ['28497', '174', 'AW00028497', 'NULL', 'Alvin', 'NULL', 'Yang', '0', '1966-03-11', 'S', 'NULL', 'M', 'alvin6@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Roßstr 6642', 'NULL', '1 (11) 500 555-0164', '2013-07-07', '0-1 Miles'], ['28498', '213', 'AW00028498', 'NULL', 'Tabitha', 'M', 'Ruiz', '0', '1970-04-07', 'S', 'NULL', 'F', 'tabitha21@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '802, rue Henri Gagnon', 'NULL', '1 (11) 500 555-0133', '2013-02-17', '2-5 Miles'], ['28499', '125', 'AW00028499', 'NULL', 'Lydia', 'J', 'Srini', '0', '1970-12-03', 'S', 'NULL', 'F', 'lydia7@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Pappelallee 619', 'NULL', '1 (11) 500 555-0160', '2013-07-09', '1-2 Miles'], ['28500', '153', 'AW00028500', 'NULL', 'Jermaine', 'A', 'Gonzalez', '0', '1965-05-15', 'S', 'NULL', 'M', 'jermaine17@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Heidestieg Straße 8664', 'NULL', '1 (11) 500 555-0186', '2013-07-13', '2-5 Miles'], ['28501', '142', 'AW00028501', 'NULL', 'Gerald', 'N', 'Perez', '0', '1965-03-03', 'S', 'NULL', 'M', 'gerald7@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Rykestr 85', 'NULL', '1 (11) 500 555-0196', '2013-08-25', '2-5 Miles'], ['28502', '128', 'AW00028502', 'NULL', 'Dominique', 'M', 'Jordan', '0', '1965-04-09', 'S', 'NULL', 'F', 'dominique1@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Am Gallberg 686', 'NULL', '1 (11) 500 555-0113', '2013-07-31', '2-5 Miles'], ['28503', '260', 'AW00028503', 'NULL', 'Jay', 'NULL', 'Sanz', '0', '1970-10-05', 'S', 'NULL', 'M', 'jay50@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5591 Garcia Ranch Road', 'NULL', '1 (11) 500 555-0159', '2013-12-11', '0-1 Miles'], ['28504', '196', 'AW00028504', 'NULL', 'Reginald', 'L', 'Gomez', '0', '1969-09-21', 'S', 'NULL', 'M', 'reginald9@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '41, rue Henri Gagnon', 'NULL', '1 (11) 500 555-0161', '2011-12-17', '2-5 Miles'], ['28505', '119', 'AW00028505', 'NULL', 'Barbara', 'NULL', 'Xie', '0', '1963-09-05', 'M', 'NULL', 'F', 'barbara34@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Viktoria-Luise-Platz 42', 'NULL', '1 (11) 500 555-0145', '2013-08-22', '0-1 Miles'], ['28506', '211', 'AW00028506', 'NULL', 'Ruth', 'L', 'Schmidt', '0', '1966-05-04', 'S', 'NULL', 'F', 'ruth14@adventure-works.com', '40000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '14, allée des Princes', 'NULL', '1 (11) 500 555-0133', '2012-01-11', '0-1 Miles'], ['28507', '157', 'AW00028507', 'NULL', 'Deanna', 'NULL', 'Suri', '0', '1964-12-05', 'M', 'NULL', 'F', 'deanna3@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Hellweg 4924', 'NULL', '1 (11) 500 555-0122', '2013-08-20', '0-1 Miles'], ['28508', '265', 'AW00028508', 'NULL', 'Jaime', 'B', 'Romero', '0', '1965-04-15', 'M', 'NULL', 'F', 'jaime10@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '8379 Surf View Drive', 'NULL', '1 (11) 500 555-0189', '2013-12-11', '0-1 Miles'], ['28509', '128', 'AW00028509', 'NULL', 'Audrey', 'H', 'Diaz', '0', '1964-08-18', 'S', 'NULL', 'F', 'audrey4@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Dunckerstr 8351', 'NULL', '1 (11) 500 555-0144', '2013-08-14', '0-1 Miles'], ['28510', '208', 'AW00028510', 'NULL', 'Gregory', 'NULL', 'Andersen', '0', '1964-09-19', 'S', 'NULL', 'M', 'gregory16@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '3539, rue des Grands Champs', 'NULL', '1 (11) 500 555-0143', '2012-01-15', '0-1 Miles'], ['28511', '238', 'AW00028511', 'NULL', 'Chase', 'NULL', 'Rivera', '0', '1981-03-13', 'S', 'NULL', 'M', 'chase17@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '2696 Estudillo St.', 'NULL', '1 (11) 500 555-0164', '2013-12-21', '2-5 Miles'], ['28512', '199', 'AW00028512', 'NULL', 'Dwayne', 'M', 'Alonso', '0', '1981-11-08', 'S', 'NULL', 'M', 'dwayne7@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6, rue des Vendangeurs', 'NULL', '1 (11) 500 555-0153', '2012-02-21', '2-5 Miles'], ['28513', '131', 'AW00028513', 'NULL', 'Molly', 'E', 'Fernandez', '0', '1976-01-21', 'M', 'NULL', 'F', 'molly14@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Kulmer Straße 2242', 'NULL', '1 (11) 500 555-0159', '2013-08-28', '1-2 Miles'], ['28514', '211', 'AW00028514', 'NULL', 'Lisa', 'S', 'Chen', '0', '1974-12-09', 'S', 'NULL', 'F', 'lisa5@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '109, avenue des Ternes', 'NULL', '1 (11) 500 555-0130', '2013-04-27', '0-1 Miles'], ['28515', '244', 'AW00028515', 'NULL', 'Tony', 'NULL', 'Lal', '0', '1980-12-23', 'M', 'NULL', 'M', 'tony11@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '5051 Teakwood Dr', 'NULL', '1 (11) 500 555-0183', '2013-12-19', '0-1 Miles'], ['28516', '251', 'AW00028516', 'NULL', 'Vincent', 'A', 'Lin', '0', '1975-10-11', 'S', 'NULL', 'M', 'vincent7@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '7262 Pepperidge Way', 'NULL', '1 (11) 500 555-0174', '2013-12-01', '0-1 Miles'], ['28517', '242', 'AW00028517', 'NULL', 'Troy', 'A', 'Gonzalez', '0', '1975-01-23', 'S', 'NULL', 'M', 'troy20@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '2942 Marina Road', 'NULL', '1 (11) 500 555-0145', '2013-12-28', '2-5 Miles'], ['28518', '167', 'AW00028518', 'NULL', 'Tammy', 'B', 'Sanchez', '0', '1975-05-17', 'S', 'NULL', 'F', 'tammy21@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Zur Lindung 2', 'NULL', '1 (11) 500 555-0126', '2013-07-31', '0-1 Miles'], ['28519', '215', 'AW00028519', 'NULL', 'Jésus', 'E', 'Ramos', '0', '1975-04-14', 'M', 'NULL', 'M', 'jésus16@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '6612, rue Surcouf', 'NULL', '1 (11) 500 555-0157', '2012-02-21', '1-2 Miles'], ['28520', '205', 'AW00028520', 'NULL', 'Susan', 'NULL', 'Liang', '0', '1974-10-03', 'M', 'NULL', 'F', 'susan27@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4, route de Marseille', 'NULL', '1 (11) 500 555-0110', '2012-02-28', '0-1 Miles'], ['28521', '129', 'AW00028521', 'NULL', 'Bradley', 'NULL', 'Tang', '0', '1975-03-15', 'S', 'NULL', 'M', 'bradley6@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Haberstr 77', 'NULL', '1 (11) 500 555-0197', '2013-09-04', '0-1 Miles'], ['28522', '178', 'AW00028522', 'NULL', 'Rosa', 'M', 'Ma', '0', '1980-07-03', 'M', 'NULL', 'F', 'rosa15@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Lieblingsweg 234', 'NULL', '1 (11) 500 555-0164', '2013-09-25', '0-1 Miles'], ['28523', '236', 'AW00028523', 'NULL', 'Charles', 'NULL', 'James', '0', '1980-01-06', 'S', 'NULL', 'M', 'charles46@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8754 Second Ave.', 'NULL', '1 (11) 500 555-0126', '2013-06-16', '0-1 Miles'], ['28524', '256', 'AW00028524', 'NULL', 'Paula', 'W', 'Gill', '0', '1975-03-08', 'M', 'NULL', 'F', 'paula16@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1277 Juniper Drive', 'NULL', '1 (11) 500 555-0174', '2013-06-21', '0-1 Miles'], ['28525', '242', 'AW00028525', 'NULL', 'Dominic', 'E', 'Rodriguez', '0', '1958-05-04', 'S', 'NULL', 'M', 'dominic20@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '1403 McMillan Ave.', 'NULL', '1 (11) 500 555-0158', '2013-12-23', '0-1 Miles'], ['28526', '261', 'AW00028526', 'NULL', 'Luke', 'NULL', 'Yang', '0', '1964-07-05', 'S', 'NULL', 'M', 'luke16@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '6550 Mallard Dr', 'NULL', '1 (11) 500 555-0197', '2013-12-21', '0-1 Miles'], ['28527', '274', 'AW00028527', 'NULL', 'Dwayne', 'D', 'Rubio', '0', '1973-12-19', 'S', 'NULL', 'M', 'dwayne19@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '9592 Adelia Court', 'NULL', '1 (11) 500 555-0188', '2013-12-21', '0-1 Miles'], ['28528', '130', 'AW00028528', 'NULL', 'Tasha', 'A', 'Chande', '0', '1979-06-16', 'M', 'NULL', 'F', 'tasha15@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Residenz Straße 46', 'NULL', '1 (11) 500 555-0184', '2013-09-23', '1-2 Miles'], ['28529', '183', 'AW00028529', 'NULL', 'Tara', 'L', 'Chande', '0', '1973-12-06', 'S', 'NULL', 'F', 'tara15@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '119, rue Faubourg St Antoine', 'NULL', '1 (11) 500 555-0189', '2012-02-26', '2-5 Miles'], ['28530', '279', 'AW00028530', 'NULL', 'Gavin', 'M', 'Powell', '0', '1974-03-15', 'S', 'NULL', 'M', 'gavin8@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '42 Mayda Way', 'NULL', '1 (11) 500 555-0128', '2013-11-29', '0-1 Miles'], ['28531', '175', 'AW00028531', 'NULL', 'Jared', 'M', 'Reed', '0', '1974-05-06', 'S', 'NULL', 'M', 'jared22@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Marketplatz 4664', 'NULL', '1 (11) 500 555-0128', '2013-09-02', '0-1 Miles'], ['28532', '197', 'AW00028532', 'NULL', 'Tony', 'R', 'Xie', '0', '1974-06-05', 'M', 'NULL', 'M', 'tony6@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4757, rue Saint-Lazare', 'NULL', '1 (11) 500 555-0112', '2012-02-01', '1-2 Miles'], ['28533', '16', 'AW00028533', 'NULL', 'Clayton', 'NULL', 'Sun', '0', '1976-04-08', 'S', 'NULL', 'M', 'clayton12@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2221 Teak Court', 'NULL', '1 (11) 500 555-0142', '2013-02-03', '5-10 Miles'], ['28534', '36', 'AW00028534', 'NULL', 'Sabrina', 'L', 'Romero', '0', '1970-12-03', 'M', 'NULL', 'F', 'sabrina6@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '1142 Firestone Dr.', 'NULL', '1 (11) 500 555-0131', '2013-07-17', '0-1 Miles'], ['28535', '34', 'AW00028535', 'NULL', 'Leslie', 'M', 'Ferrier', '0', '1979-01-06', 'S', 'NULL', 'F', 'leslie9@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '1513 Deercreek Ln.', 'NULL', '1 (11) 500 555-0195', '2013-02-05', '5-10 Miles'], ['28536', '32', 'AW00028536', 'NULL', 'Martha', 'A', 'Guo', '0', '1969-08-14', 'M', 'NULL', 'F', 'martha17@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '6097 Mt. McKinley Ct.', 'NULL', '1 (11) 500 555-0150', '2013-02-23', '5-10 Miles'], ['28537', '20', 'AW00028537', 'NULL', 'Christian', 'R', 'Hayes', '0', '1932-01-13', 'S', 'NULL', 'M', 'christian9@adventure-works.com', '50000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4631 Candlestick Drive', 'NULL', '1 (11) 500 555-0162', '2013-06-11', '0-1 Miles'], ['28538', '145', 'AW00028538', 'NULL', 'Jerome', 'NULL', 'Sanz', '0', '1978-11-16', 'S', 'NULL', 'M', 'jerome19@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Moritzstr 400', 'NULL', '1 (11) 500 555-0174', '2013-08-24', '0-1 Miles'], ['28539', '187', 'AW00028539', 'NULL', 'Barbara', 'NULL', 'Zhou', '0', '1979-02-02', 'S', 'NULL', 'F', 'barbara18@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '82, avenue des Ternes', 'NULL', '1 (11) 500 555-0114', '2013-04-12', '1-2 Miles'], ['28540', '216', 'AW00028540', 'NULL', 'Leah', 'NULL', 'Zhang', '0', '1980-05-25', 'M', 'NULL', 'F', 'leah0@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '50, avenue de Villiers', 'NULL', '1 (11) 500 555-0161', '2012-02-17', '0-1 Miles'], ['28541', '208', 'AW00028541', 'NULL', 'Isabella', 'D', 'Perez', '0', '1979-10-01', 'S', 'NULL', 'F', 'isabella42@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '22, avenue du Président-Kennedy', 'NULL', '1 (11) 500 555-0123', '2012-02-03', '2-5 Miles'], ['28542', '225', 'AW00028542', 'NULL', 'Martha', 'L', 'Zhao', '0', '1985-02-14', 'S', 'NULL', 'F', 'martha10@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3869, rue Villedo', 'NULL', '1 (11) 500 555-0174', '2013-02-18', '2-5 Miles'], ['28543', '159', 'AW00028543', 'NULL', 'Roger', 'S', 'Ye', '0', '1980-03-09', 'S', 'NULL', 'M', 'roger14@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Postfach 55 00 00', 'NULL', '1 (11) 500 555-0171', '2013-03-30', '1-2 Miles'], ['28544', '135', 'AW00028544', 'NULL', 'Nicolas', 'A', 'Shan', '0', '1985-04-14', 'S', 'NULL', 'M', 'nicolas8@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Parkstr 4246', 'NULL', '1 (11) 500 555-0118', '2013-10-20', '1-2 Miles'], ['28545', '213', 'AW00028545', 'NULL', 'Micheal', 'T', 'Ramos', '0', '1986-03-17', 'M', 'NULL', 'M', 'micheal13@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '88, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0112', '2013-06-23', '1-2 Miles'], ['28546', '220', 'AW00028546', 'NULL', 'Alisha', 'NULL', 'Xu', '0', '1986-02-23', 'M', 'NULL', 'F', 'alisha12@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '38, route de Marseille', 'NULL', '1 (11) 500 555-0173', '2013-06-29', '1-2 Miles'], ['28547', '202', 'AW00028547', 'NULL', 'April', 'J', 'Shen', '0', '1986-01-09', 'S', 'NULL', 'F', 'april2@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '976, quai de Grenelle', 'NULL', '1 (11) 500 555-0137', '2012-02-08', '0-1 Miles'], ['28548', '147', 'AW00028548', 'NULL', 'Krista', 'NULL', 'Ortega', '0', '1986-05-17', 'S', 'NULL', 'F', 'krista20@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Wertheimer Straße 899', 'NULL', '1 (11) 500 555-0129', '2013-09-01', '0-1 Miles'], ['28549', '272', 'AW00028549', 'NULL', 'Lydia', 'F', 'Subram', '0', '1980-01-22', 'M', 'NULL', 'F', 'lydia12@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2575 Garcia', 'NULL', '1 (11) 500 555-0139', '2013-07-09', '1-2 Miles'], ['28550', '180', 'AW00028550', 'NULL', 'Wayne', 'W', 'Andersen', '0', '1978-06-18', 'S', 'NULL', 'M', 'wayne15@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '8040, rue de la Centenaire', 'NULL', '1 (11) 500 555-0130', '2013-11-11', '1-2 Miles'], ['28551', '186', 'AW00028551', 'NULL', 'Warren', 'A', 'Xu', '0', '1978-06-11', 'S', 'NULL', 'M', 'warren11@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '34, avenue des Laurentides', 'NULL', '1 (11) 500 555-0113', '2013-05-02', '1-2 Miles'], ['28552', '266', 'AW00028552', 'NULL', 'Holly', 'J', 'Subram', '0', '1978-04-13', 'S', 'NULL', 'F', 'holly12@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '8764 Mt. Pisgah', 'NULL', '1 (11) 500 555-0197', '2013-11-16', '0-1 Miles'], ['28553', '179', 'AW00028553', 'NULL', 'Sabrina', 'NULL', 'Serrano', '0', '1978-07-22', 'M', 'NULL', 'F', 'sabrina10@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '77, rue du Puits Dixme', 'NULL', '1 (11) 500 555-0187', '2012-03-12', '0-1 Miles'], ['28554', '155', 'AW00028554', 'NULL', 'Natalie', 'A', 'Sanders', '0', '1984-03-07', 'M', 'NULL', 'F', 'natalie24@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Kalkweg 4', 'NULL', '1 (11) 500 555-0116', '2013-09-29', '1-2 Miles'], ['28555', '151', 'AW00028555', 'NULL', 'Monique', 'K', 'Serrano', '0', '1979-01-09', 'M', 'NULL', 'F', 'monique13@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Reiherweg 5345', 'NULL', '1 (11) 500 555-0184', '2013-09-29', '1-2 Miles'], ['28556', '161', 'AW00028556', 'NULL', 'Isabel', 'NULL', 'Gonzales', '0', '1978-12-18', 'M', 'NULL', 'F', 'isabel16@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Wallstr 244', 'NULL', '1 (11) 500 555-0165', '2013-10-24', '1-2 Miles'], ['28557', '241', 'AW00028557', 'NULL', 'Casey', 'A', 'Alvarez', '0', '1979-05-14', 'M', 'NULL', 'M', 'casey28@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5438 Sharon Place', 'NULL', '1 (11) 500 555-0199', '2013-07-11', '0-1 Miles'], ['28558', '161', 'AW00028558', 'NULL', 'Dawn', 'T', 'Stone', '0', '1977-07-02', 'S', 'NULL', 'F', 'dawn24@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Im Himmelsweg 26', 'NULL', '1 (11) 500 555-0154', '2013-11-30', '0-1 Miles'], ['28559', '224', 'AW00028559', 'NULL', 'Billy', 'NULL', 'Gutierrez', '0', '1983-07-24', 'M', 'NULL', 'M', 'billy12@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6, boulevard Tremblay', 'NULL', '1 (11) 500 555-0116', '2012-03-10', '1-2 Miles'], ['28560', '185', 'AW00028560', 'Ms.', 'Peggy', 'R.', 'Smith', '0', '1983-04-03', 'S', 'NULL', 'F', 'peggy1@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '28, rue Henri Gagnon', 'NULL', '153-555-0100', '2012-03-03', '2-5 Miles'], ['28561', '271', 'AW00028561', 'NULL', 'Carlos', 'C', 'Kelly', '0', '1977-04-13', 'S', 'NULL', 'M', 'carlos4@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '3804 Dayton Court', 'NULL', '1 (11) 500 555-0166', '2013-11-23', '0-1 Miles'], ['28562', '206', 'AW00028562', 'NULL', 'Phillip', 'G', 'Martinez', '0', '1978-01-07', 'M', 'NULL', 'M', 'phillip19@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '142, rue de Bas Marin', 'NULL', '1 (11) 500 555-0171', '2012-03-17', '1-2 Miles'], ['28563', '140', 'AW00028563', 'NULL', 'Dennis', 'NULL', 'Cai', '0', '1983-12-23', 'S', 'NULL', 'M', 'dennis23@adventure-works.com', '40000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Kalkweg 3544', 'NULL', '1 (11) 500 555-0151', '2013-10-08', '1-2 Miles'], ['28564', '131', 'AW00028564', 'NULL', 'Alisha', 'NULL', 'Deng', '0', '1983-09-07', 'S', 'NULL', 'F', 'alisha25@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Postfach 22 99 99', 'NULL', '1 (11) 500 555-0197', '2013-11-28', '1-2 Miles'], ['28565', '127', 'AW00028565', 'NULL', 'James', 'V', 'Allen', '0', '1977-03-13', 'S', 'NULL', 'M', 'james74@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Werftstr 54', 'NULL', '1 (11) 500 555-0117', '2013-12-24', '0-1 Miles'], ['28566', '157', 'AW00028566', 'NULL', 'Colin', 'J', 'Sun', '0', '1976-12-20', 'S', 'NULL', 'M', 'colin14@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Pflugstr 8525', 'NULL', '1 (11) 500 555-0121', '2014-01-24', '0-1 Miles'], ['28567', '223', 'AW00028567', 'NULL', 'Ann', 'NULL', 'Kapoor', '0', '1977-06-21', 'S', 'NULL', 'F', 'ann6@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '834, rue Mazagran', 'NULL', '1 (11) 500 555-0175', '2013-10-31', '0-1 Miles'], ['28568', '175', 'AW00028568', 'NULL', 'Daisy', 'NULL', 'Alonso', '0', '1975-10-11', 'M', 'NULL', 'F', 'daisy4@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Buergermeister-ulrich-str 4111', 'NULL', '1 (11) 500 555-0126', '2013-11-23', '1-2 Miles'], ['28569', '198', 'AW00028569', 'NULL', 'Dustin', 'NULL', 'Jai', '0', '1982-09-21', 'M', 'NULL', 'M', 'dustin11@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '39, route de Marseille', 'NULL', '1 (11) 500 555-0162', '2012-03-07', '1-2 Miles'], ['28570', '241', 'AW00028570', 'NULL', 'Jenna', 'NULL', 'Turner', '0', '1977-06-22', 'S', 'NULL', 'F', 'jenna4@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '4209 Richview Dr.', 'NULL', '1 (11) 500 555-0173', '2013-07-04', '0-1 Miles'], ['28571', '312', 'AW00028571', 'NULL', 'Anna', 'P', 'Torres', '0', '1980-04-10', 'S', 'NULL', 'F', 'anna18@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '2736 Scramble Rd', 'NULL', '511-555-0111', '2013-12-20', '0-1 Miles'], ['28572', '609', 'AW00028572', 'NULL', 'Jeffery', 'Y', 'Ye', '0', '1979-07-02', 'M', 'NULL', 'M', 'jeffery10@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1755 Winton Drive', 'NULL', '285-555-0123', '2013-05-08', '1-2 Miles'], ['28573', '612', 'AW00028573', 'NULL', 'Tyrone', 'NULL', 'Gill', '0', '1979-10-07', 'S', 'NULL', 'M', 'tyrone12@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4138 Pine Creek Way', 'NULL', '121-555-0152', '2011-04-21', '1-2 Miles'], ['28574', '59', 'AW00028574', 'NULL', 'Kayla', 'O', 'Flores', '0', '1979-11-16', 'S', 'NULL', 'F', 'kayla36@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1956 Sequoia Dr.', 'NULL', '797-555-0199', '2011-08-26', '1-2 Miles'], ['28575', '43', 'AW00028575', 'NULL', 'Linda', 'D', 'Gutierrez', '0', '1981-03-03', 'S', 'NULL', 'F', 'linda26@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '445 San Carlos Avenue', 'NULL', '149-555-0186', '2013-09-08', '0-1 Miles'], ['28576', '616', 'AW00028576', 'NULL', 'Sunil', 'L', 'Uppal', '0', '1971-10-04', 'M', 'NULL', 'M', 'sunil5@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '1256 Liscome Way', 'NULL', '106-555-0128', '2013-10-29', '0-1 Miles'], ['28577', '618', 'AW00028577', 'NULL', 'Austin', 'NULL', 'Harris', '0', '1971-11-05', 'M', 'NULL', 'M', 'austin49@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '6659 Poplar Street', 'NULL', '593-555-0113', '2013-07-23', '0-1 Miles'], ['28578', '626', 'AW00028578', 'NULL', 'Zoe', 'NULL', 'Rogers', '0', '1983-04-03', 'S', 'NULL', 'F', 'zoe18@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '4155 Bayberry Dr.', 'NULL', '194-555-0199', '2014-01-15', '0-1 Miles'], ['28579', '546', 'AW00028579', 'NULL', 'Grace', 'NULL', 'Ross', '0', '1971-12-16', 'S', 'NULL', 'F', 'grace51@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '1708 Weaver Lane', 'NULL', '547-555-0120', '2013-12-03', '0-1 Miles'], ['28580', '298', 'AW00028580', 'NULL', 'Aimee', 'NULL', 'Liu', '0', '1977-01-02', 'M', 'NULL', 'F', 'aimee4@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5025 North Star Dr', 'NULL', '317-555-0116', '2011-04-20', '1-2 Miles'], ['28581', '50', 'AW00028581', 'NULL', 'Allison', 'NULL', 'Collins', '0', '1960-02-14', 'S', 'NULL', 'F', 'allison23@adventure-works.com', '20000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '1378 California St.', '#c', '267-555-0195', '2013-12-02', '0-1 Miles'], ['28582', '547', 'AW00028582', 'NULL', 'Olivia', 'NULL', 'Hall', '0', '1960-02-23', 'S', 'NULL', 'F', 'olivia23@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9339 Northwood Dr.', 'NULL', '618-555-0125', '2013-09-28', '1-2 Miles'], ['28583', '644', 'AW00028583', 'NULL', 'Ryan', 'H', 'Long', '0', '1959-08-25', 'M', 'NULL', 'M', 'ryan12@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4679 Duke Way', 'NULL', '744-555-0163', '2011-04-19', '2-5 Miles'], ['28584', '299', 'AW00028584', 'Mr.', 'Rolando', 'T.', 'Smith', '0', '1959-10-31', 'M', 'Jr.', 'F', 'rolando0@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3771 Concerto Circle', 'NULL', '284-555-0100', '2011-04-16', '2-5 Miles'], ['28585', '301', 'AW00028585', 'NULL', 'Julian', 'M', 'Russell', '0', '1965-09-30', 'S', 'NULL', 'M', 'julian19@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '1', '5649 East 39th Street', 'NULL', '953-555-0164', '2013-08-19', '5-10 Miles'], ['28586', '335', 'AW00028586', 'NULL', 'Gabriel', 'NULL', 'Diaz', '0', '1965-07-19', 'M', 'NULL', 'M', 'gabriel19@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2315 B Way', 'NULL', '308-555-0168', '2011-04-18', '1-2 Miles'], ['28587', '339', 'AW00028587', 'NULL', 'Xavier', 'L', 'Harris', '0', '1959-08-24', 'M', 'NULL', 'M', 'xavier11@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4753 Montanya Court', 'NULL', '112-555-0152', '2011-04-11', '1-2 Miles'], ['28588', '374', 'AW00028588', 'NULL', 'Emma', 'R', 'Griffin', '0', '1959-11-29', 'M', 'NULL', 'F', 'emma66@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6067 Mt. Diablo St.', 'NULL', '676-555-0134', '2011-04-13', '1-2 Miles'], ['28589', '54', 'AW00028589', 'NULL', 'John', 'M', 'Walker', '0', '1972-06-10', 'S', 'NULL', 'M', 'john57@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '4262 Monterey Ave.', 'NULL', '294-555-0151', '2013-04-10', '0-1 Miles'], ['28590', '546', 'AW00028590', 'NULL', 'Gabriel', 'NULL', 'Jai', '0', '1961-01-14', 'S', 'NULL', 'M', 'gabriel29@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '311 Oakgrove Rd', 'NULL', '736-555-0111', '2013-03-19', '0-1 Miles'], ['28591', '322', 'AW00028591', 'NULL', 'Mary', 'E', 'Collins', '0', '1961-02-10', 'S', 'NULL', 'F', 'mary16@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5569 Hummingbird Ct.', 'NULL', '938-555-0135', '2013-07-27', '0-1 Miles'], ['28592', '361', 'AW00028592', 'NULL', 'Alyssa', 'K', 'Johnson', '0', '1961-01-20', 'S', 'NULL', 'F', 'alyssa1@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '1820 Fox Way', 'NULL', '544-555-0113', '2013-12-14', '1-2 Miles'], ['28593', '345', 'AW00028593', 'NULL', 'Faith', 'NULL', 'Peterson', '0', '1960-07-06', 'S', 'NULL', 'F', 'faith26@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '8375 Mink Court', 'NULL', '349-555-0113', '2013-12-13', '1-2 Miles'], ['28594', '552', 'AW00028594', 'NULL', 'Sydney', 'P', 'Cooper', '0', '1966-05-04', 'S', 'NULL', 'F', 'sydney11@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2470 Icicle Circle', 'NULL', '848-555-0191', '2013-08-13', '1-2 Miles'], ['28595', '335', 'AW00028595', 'NULL', 'Xavier', 'C', 'James', '0', '1960-08-08', 'S', 'NULL', 'M', 'xavier65@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3881 Nottingham Pl.', 'NULL', '117-555-0129', '2013-04-09', '0-1 Miles'], ['28596', '355', 'AW00028596', 'NULL', 'Haley', 'L', 'Butler', '0', '1961-04-03', 'S', 'NULL', 'F', 'haley33@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6919 Tosca Way', 'NULL', '951-555-0141', '2013-12-14', '1-2 Miles'], ['28597', '347', 'AW00028597', 'NULL', 'Brianna', 'NULL', 'Harris', '0', '1960-12-23', 'S', 'NULL', 'F', 'brianna12@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9808 Shaw Rd.', 'NULL', '533-555-0140', '2013-04-18', '1-2 Miles'], ['28598', '359', 'AW00028598', 'NULL', 'Wyatt', 'A', 'Russell', '0', '1960-12-10', 'M', 'NULL', 'M', 'wyatt69@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '9189 Shannon Ln.', 'NULL', '503-555-0135', '2011-04-02', '2-5 Miles'], ['28599', '641', 'AW00028599', 'NULL', 'Stephanie', 'NULL', 'Perry', '0', '1971-09-18', 'S', 'NULL', 'F', 'stephanie35@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9456 Bell Dr.', 'NULL', '111-555-0141', '2013-04-28', '1-2 Miles'], ['28600', '71', 'AW00028600', 'NULL', 'Destiny', 'L', 'Clark', '0', '1971-08-22', 'S', 'NULL', 'F', 'destiny17@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6478 Pierce Ct', 'NULL', '695-555-0137', '2013-03-30', '1-2 Miles'], ['28601', '348', 'AW00028601', 'NULL', 'Christian', 'NULL', 'Gonzales', '0', '1961-06-02', 'S', 'NULL', 'M', 'christian4@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6375 St. Germain Lane', 'NULL', '595-555-0112', '2013-04-03', '1-2 Miles'], ['28602', '50', 'AW00028602', 'NULL', 'Isabella', 'L', 'Morgan', '0', '1961-10-08', 'S', 'NULL', 'F', 'isabella87@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '658 Liscome Way', 'NULL', '118-555-0127', '2013-10-17', '1-2 Miles'], ['28603', '358', 'AW00028603', 'NULL', 'Brian', 'R', 'Bell', '0', '1967-09-03', 'M', 'NULL', 'M', 'brian25@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9233 Del Rey St.', 'NULL', '127-555-0194', '2013-09-03', '0-1 Miles'], ['28604', '536', 'AW00028604', 'NULL', 'Allison', 'M', 'James', '0', '1961-12-01', 'S', 'NULL', 'F', 'allison6@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6567 Pine Valley Rd', 'NULL', '889-555-0185', '2013-02-05', '0-1 Miles'], ['28605', '325', 'AW00028605', 'NULL', 'Caleb', 'D', 'Coleman', '0', '1967-09-20', 'S', 'NULL', 'M', 'caleb2@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '8131 Mission Drive', 'NULL', '663-555-0163', '2013-08-22', '0-1 Miles'], ['28606', '348', 'AW00028606', 'NULL', 'Joshua', 'A', 'Wilson', '0', '1961-10-02', 'S', 'NULL', 'M', 'joshua9@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '371 Ahneita Dr.', 'NULL', '268-555-0188', '2013-03-11', '0-1 Miles'], ['28607', '626', 'AW00028607', 'NULL', 'Hunter', 'A', 'Sharma', '0', '1962-04-22', 'S', 'NULL', 'M', 'hunter25@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '8339 Auburn', 'NULL', '227-555-0138', '2013-01-29', '1-2 Miles'], ['28608', '69', 'AW00028608', 'NULL', 'Brian', 'NULL', 'Richardson', '0', '1961-09-30', 'S', 'NULL', 'M', 'brian21@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3763 Anderson Way', 'NULL', '763-555-0199', '2013-11-12', '1-2 Miles'], ['28609', '612', 'AW00028609', 'NULL', 'Jose', 'A', 'Harris', '0', '1962-04-11', 'M', 'NULL', 'M', 'jose75@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2084 Ahwanee Lane', 'NULL', '196-555-0171', '2013-10-16', '0-1 Miles'], ['28610', '543', 'AW00028610', 'NULL', 'Jacqueline', 'NULL', 'Bailey', '0', '1962-04-08', 'M', 'NULL', 'F', 'jacqueline40@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1457 Chelsea', 'NULL', '926-555-0140', '2013-10-11', '0-1 Miles'], ['28611', '548', 'AW00028611', 'NULL', 'Christian', 'C', 'Alexander', '0', '1962-05-31', 'S', 'NULL', 'M', 'christian6@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3985 Jacqueline Drive', 'NULL', '106-555-0116', '2013-03-16', '1-2 Miles'], ['28612', '301', 'AW00028612', 'NULL', 'Gabriel', 'R', 'Roberts', '0', '1962-01-12', 'S', 'NULL', 'M', 'gabriel34@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6389 Sandview Dr.', 'NULL', '544-555-0112', '2013-06-13', '1-2 Miles'], ['28613', '616', 'AW00028613', 'NULL', 'James', 'D', 'Campbell', '0', '1961-12-18', 'M', 'NULL', 'M', 'james56@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4465 Bundros Court', 'NULL', '123-555-0142', '2013-11-25', '1-2 Miles'], ['28614', '641', 'AW00028614', 'NULL', 'Luis', 'A', 'Jenkins', '0', '1962-11-12', 'S', 'NULL', 'M', 'luis5@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '773 Mt. Wilson Place', 'NULL', '197-555-0199', '2013-05-15', '1-2 Miles'], ['28615', '543', 'AW00028615', 'NULL', 'Jonathan', 'H', 'Flores', '0', '1973-12-05', 'M', 'NULL', 'M', 'jonathan12@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5292 Blue Ridge Drive', 'NULL', '137-555-0157', '2013-05-03', '1-2 Miles'], ['28616', '361', 'AW00028616', 'NULL', 'Sarah', 'NULL', 'Harris', '0', '1974-01-01', 'S', 'NULL', 'F', 'sarah16@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2085 Westwood Dr.', 'NULL', '271-555-0131', '2013-12-03', '1-2 Miles'], ['28617', '616', 'AW00028617', 'NULL', 'Noah', 'A', 'Davis', '0', '1962-12-25', 'S', 'NULL', 'M', 'noah62@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3441 Brandywine Way', 'NULL', '861-555-0138', '2013-12-17', '0-1 Miles'], ['28618', '637', 'AW00028618', 'NULL', 'Katelyn', 'C', 'Bailey', '0', '1969-09-18', 'M', 'NULL', 'F', 'katelyn15@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8945 Euclid Ave.', 'NULL', '470-555-0132', '2011-05-24', '1-2 Miles'], ['28619', '343', 'AW00028619', 'NULL', 'Brianna', 'NULL', 'Bailey', '0', '1963-08-08', 'M', 'NULL', 'F', 'brianna33@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1275 West Street', 'NULL', '379-555-0114', '2011-05-14', '1-2 Miles'], ['28620', '53', 'AW00028620', 'NULL', 'Cole', 'NULL', 'Richardson', '0', '1969-08-30', 'M', 'NULL', 'M', 'cole11@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3543 Lori Dr.', 'NULL', '455-555-0149', '2011-08-11', '1-2 Miles'], ['28621', '296', 'AW00028621', 'NULL', 'Kristen', 'NULL', 'Liu', '0', '1969-09-21', 'M', 'NULL', 'F', 'kristen4@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3723 Mt. Sequoia Ct.', 'NULL', '136-555-0125', '2011-05-16', '1-2 Miles'], ['28622', '326', 'AW00028622', 'NULL', 'Julia', 'V', 'Cooper', '0', '1975-03-09', 'M', 'NULL', 'F', 'julia53@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6916 Azores', 'NULL', '370-555-0185', '2013-08-15', '0-1 Miles'], ['28623', '368', 'AW00028623', 'NULL', 'Marcus', 'P', 'Turner', '0', '1969-02-28', 'M', 'NULL', 'M', 'marcus42@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '702 Candle Dr', 'NULL', '333-555-0169', '2013-03-22', '0-1 Miles'], ['28624', '51', 'AW00028624', 'NULL', 'Carson', 'S', 'Jenkins', '0', '1964-01-22', 'S', 'NULL', 'M', 'carson5@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2140 Clifford Court', 'NULL', '345-555-0199', '2011-08-17', '1-2 Miles'], ['28625', '638', 'AW00028625', 'NULL', 'Logan', 'NULL', 'Griffin', '0', '1964-07-11', 'S', 'NULL', 'M', 'logan21@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '764 Quail Court', 'NULL', '959-555-0176', '2011-05-27', '1-2 Miles'], ['28626', '62', 'AW00028626', 'NULL', 'Bailey', 'J', 'Hernandez', '0', '1981-02-16', 'S', 'NULL', 'F', 'bailey38@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '990 Bernauer', 'NULL', '448-555-0144', '2011-08-26', '1-2 Miles'], ['28627', '374', 'AW00028627', 'NULL', 'Edward', 'M', 'Collins', '0', '1964-12-19', 'S', 'NULL', 'M', 'edward21@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '79 Montana', 'NULL', '591-555-0122', '2011-05-04', '1-2 Miles'], ['28628', '611', 'AW00028628', 'NULL', 'Courtney', 'NULL', 'Phillips', '0', '1964-07-05', 'S', 'NULL', 'F', 'courtney3@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '433 Marsh Drive', 'NULL', '230-555-0178', '2011-05-08', '1-2 Miles'], ['28629', '298', 'AW00028629', 'NULL', 'Cynthia', 'NULL', 'Madan', '0', '1965-02-02', 'M', 'NULL', 'F', 'cynthia12@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '682 Ada Dr.', 'NULL', '590-555-0164', '2011-05-11', '0-1 Miles'], ['28630', '66', 'AW00028630', 'NULL', 'Jack', 'NULL', 'Zimmerman', '0', '1970-11-09', 'S', 'NULL', 'M', 'jack24@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '1133 Leisure Lane', 'NULL', '715-555-0157', '2011-08-02', '1-2 Miles'], ['28631', '54', 'AW00028631', 'NULL', 'Isaiah', 'NULL', 'Phillips', '0', '1978-03-19', 'S', 'NULL', 'M', 'isaiah29@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '3010 Ward Court', 'NULL', '455-555-0180', '2013-02-10', '0-1 Miles'], ['28632', '536', 'AW00028632', 'NULL', 'Kathryn', 'NULL', 'Nath', '0', '1979-03-11', 'M', 'NULL', 'F', 'kathryn16@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5178 Elm Road', 'NULL', '349-555-0185', '2013-05-04', '1-2 Miles'], ['28633', '634', 'AW00028633', 'NULL', 'Christina', 'NULL', 'Howard', '0', '1979-01-23', 'S', 'NULL', 'F', 'christina9@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6790 Edward Avenue', 'NULL', '146-555-0185', '2013-04-27', '1-2 Miles'], ['28634', '548', 'AW00028634', 'NULL', 'Nathan', 'NULL', 'Mitchell', '0', '1978-09-19', 'S', 'NULL', 'M', 'nathan39@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6786 Pheasant Circle', 'NULL', '225-555-0159', '2014-01-23', '1-2 Miles'], ['28635', '298', 'AW00028635', 'NULL', 'Levi', 'NULL', 'Gonzalez', '0', '1984-02-04', 'M', 'NULL', 'M', 'levi16@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9431 College Blvd', 'NULL', '424-555-0184', '2011-05-17', '1-2 Miles'], ['28636', '322', 'AW00028636', 'NULL', 'Victoria', 'NULL', 'Bryant', '0', '1978-09-23', 'M', 'NULL', 'F', 'victoria64@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4822 Center Street', 'NULL', '230-555-0189', '2013-12-26', '0-1 Miles'], ['28637', '329', 'AW00028637', 'NULL', 'Brandon', 'NULL', 'Lee', '0', '1978-10-05', 'M', 'NULL', 'M', 'brandon52@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '2725 Deerwood Court', 'NULL', '735-555-0123', '2013-09-24', '0-1 Miles'], ['28638', '331', 'AW00028638', 'NULL', 'Alexandra', 'S', 'Thompson', '0', '1978-12-09', 'S', 'NULL', 'F', 'alexandra79@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3318 N. 8th St.', 'NULL', '557-555-0127', '2013-04-07', '1-2 Miles'], ['28639', '336', 'AW00028639', 'NULL', 'Jacqueline', 'NULL', 'Morgan', '0', '1979-04-23', 'M', 'NULL', 'F', 'jacqueline37@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3936 Cedar Point Loop', 'NULL', '113-555-0176', '2013-06-26', '0-1 Miles'], ['28640', '51', 'AW00028640', 'NULL', 'Bryce', 'NULL', 'Cook', '0', '1977-08-02', 'S', 'NULL', 'M', 'bryce20@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4770 Catalpa Court', 'NULL', '507-555-0129', '2013-07-23', '1-2 Miles'], ['28641', '547', 'AW00028641', 'NULL', 'Brittany', 'NULL', 'Butler', '0', '1982-01-12', 'M', 'NULL', 'F', 'brittany12@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7845 Arcadia Place', 'NULL', '474-555-0125', '2013-09-08', '0-1 Miles'], ['28642', '310', 'AW00028642', 'NULL', 'Lauren', 'NULL', 'Ward', '0', '1977-01-01', 'M', 'NULL', 'F', 'lauren13@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1926 Fish Dr.', 'NULL', '137-555-0119', '2013-06-13', '0-1 Miles'], ['28643', '372', 'AW00028643', 'NULL', 'Xavier', 'NULL', 'Gray', '0', '1982-05-09', 'M', 'NULL', 'M', 'xavier72@adventure-works.com', '50000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3338 Stillwater Ct.', 'NULL', '230-555-0120', '2011-05-19', '0-1 Miles'], ['28644', '612', 'AW00028644', 'NULL', 'Martha', 'NULL', 'Chow', '0', '1982-10-30', 'M', 'NULL', 'F', 'martha2@adventure-works.com', '50000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3319 North 90th St', 'NULL', '633-555-0192', '2011-05-12', '1-2 Miles'], ['28645', '302', 'AW00028645', 'NULL', 'Martin', 'D', 'Fernandez', '0', '1976-10-11', 'M', 'NULL', 'M', 'martin20@adventure-works.com', '50000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7259 Brock Lane', 'NULL', '928-555-0160', '2011-05-05', '1-2 Miles'], ['28646', '59', 'AW00028646', 'NULL', 'Alexis', 'NULL', 'Moore', '0', '1977-11-29', 'M', 'NULL', 'F', 'alexis7@adventure-works.com', '50000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4210 Bundros Court', 'NULL', '809-555-0120', '2011-08-20', '1-2 Miles'], ['28647', '60', 'AW00028647', 'NULL', 'Hannah', 'E', 'Foster', '0', '1983-09-06', 'M', 'NULL', 'F', 'hannah37@adventure-works.com', '50000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3754 Olive Ave.', 'NULL', '950-555-0181', '2011-08-20', '1-2 Miles'], ['28648', '62', 'AW00028648', 'NULL', 'Dylan', 'L', 'Harris', '0', '1977-10-22', 'M', 'NULL', 'M', 'dylan43@adventure-works.com', '50000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1876 Clemson Court', 'NULL', '774-555-0110', '2011-08-01', '1-2 Miles'], ['28649', '302', 'AW00028649', 'NULL', 'Nathan', 'M', 'Martinez', '0', '1978-04-11', 'S', 'NULL', 'M', 'nathan51@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '423 East 33rd Street', 'NULL', '195-555-0163', '2011-05-24', '2-5 Miles'], ['28650', '347', 'AW00028650', 'NULL', 'Jessica', 'L', 'Clark', '0', '1975-08-06', 'M', 'NULL', 'F', 'jessica67@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3817 Green Hill Rd.', 'NULL', '994-555-0197', '2011-05-08', '2-5 Miles'], ['28651', '299', 'AW00028651', 'NULL', 'Lauren', 'NULL', 'Brown', '0', '1975-08-10', 'M', 'NULL', 'F', 'lauren22@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5409 South St.', 'NULL', '549-555-0126', '2011-05-12', '0-1 Miles'], ['28652', '51', 'AW00028652', 'NULL', 'Mariah', 'J', 'Murphy', '0', '1975-12-21', 'M', 'NULL', 'F', 'mariah39@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '904 Bales Court', 'NULL', '150-555-0123', '2011-09-09', '0-1 Miles'], ['28653', '300', 'AW00028653', 'NULL', 'Grace', 'NULL', 'Williams', '0', '1976-03-08', 'M', 'NULL', 'F', 'grace1@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7371 Diehl Way', 'NULL', '249-555-0113', '2011-05-02', '0-1 Miles'], ['28654', '548', 'AW00028654', 'NULL', 'Miguel', 'W', 'Nelson', '0', '1976-01-05', 'M', 'NULL', 'M', 'miguel35@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '97 Hermosa', 'NULL', '617-555-0129', '2011-05-08', '2-5 Miles'], ['28655', '642', 'AW00028655', 'NULL', 'Devin', 'T', 'Smith', '0', '1975-06-01', 'M', 'NULL', 'M', 'devin0@adventure-works.com', '60000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6344 St Paul Way', 'NULL', '170-555-0110', '2011-05-08', '2-5 Miles'], ['28656', '63', 'AW00028656', 'NULL', 'Lucas', 'C', 'Murphy', '0', '1974-11-19', 'M', 'NULL', 'M', 'lucas86@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '8759 Arnold Dr.', 'NULL', '927-555-0117', '2011-08-29', '0-1 Miles'], ['28657', '545', 'AW00028657', 'NULL', 'Ryan', 'NULL', 'Hayes', '0', '1975-05-05', 'S', 'NULL', 'M', 'ryan26@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '463 Ahneita Dr', 'NULL', '833-555-0155', '2011-05-26', '2-5 Miles'], ['28658', '334', 'AW00028658', 'NULL', 'Jasmine', 'E', 'Bailey', '0', '1974-11-17', 'S', 'NULL', 'F', 'jasmine27@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '8115 Royal Links Ct', 'NULL', '765-555-0175', '2011-05-10', '0-1 Miles'], ['28659', '54', 'AW00028659', 'NULL', 'Vanessa', 'J', 'Simmons', '0', '1974-09-09', 'S', 'NULL', 'F', 'vanessa16@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3582 Showtime Court', 'NULL', '747-555-0117', '2012-01-24', '2-5 Miles'], ['28660', '536', 'AW00028660', 'NULL', 'Justin', 'NULL', 'Anderson', '0', '1977-05-14', 'S', 'NULL', 'M', 'justin29@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '8459 Silver Oaks Place', 'NULL', '984-555-0181', '2011-05-01', '2-5 Miles'], ['28661', '626', 'AW00028661', 'NULL', 'Dalton', 'NULL', 'Ward', '0', '1982-04-06', 'S', 'NULL', 'M', 'dalton74@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '9437 Cambridge Dr.', 'NULL', '769-555-0137', '2011-05-29', '0-1 Miles'], ['28662', '331', 'AW00028662', 'NULL', 'Isaiah', 'NULL', 'Murphy', '0', '1977-01-17', 'S', 'NULL', 'M', 'isaiah14@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '9290 Saclan Terrace', 'NULL', '164-555-0176', '2011-05-02', '0-1 Miles'], ['28663', '68', 'AW00028663', 'NULL', 'Marcus', 'J', 'Coleman', '0', '1974-12-02', 'S', 'NULL', 'M', 'marcus55@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '4310 Chickpea Ct.', 'NULL', '119-555-0180', '2012-01-03', '0-1 Miles'], ['28664', '536', 'AW00028664', 'NULL', 'Ashlee', 'P', 'Sharma', '0', '1974-04-25', 'S', 'NULL', 'F', 'ashlee16@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9979 Sundance Dr.', 'NULL', '616-555-0177', '2011-05-01', '2-5 Miles'], ['28665', '609', 'AW00028665', 'NULL', 'Donna', 'M', 'Anand', '0', '1979-03-02', 'M', 'NULL', 'F', 'donna20@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1865 Scenic Ct.', 'NULL', '784-555-0134', '2011-05-28', '2-5 Miles'], ['28666', '611', 'AW00028666', 'NULL', 'Kelvin', 'R', 'Zhu', '0', '1979-10-18', 'M', 'NULL', 'M', 'kelvin32@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7603 Bayview Ct.', 'NULL', '235-555-0118', '2011-05-08', '2-5 Miles'], ['28667', '539', 'AW00028667', 'NULL', 'Devin', 'T', 'Williams', '0', '1974-06-26', 'S', 'NULL', 'M', 'devin2@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '5317 Mission Drive', 'NULL', '177-555-0155', '2011-05-02', '0-1 Miles'], ['28668', '60', 'AW00028668', 'NULL', 'Jeremy', 'NULL', 'Parker', '0', '1973-03-07', 'S', 'NULL', 'M', 'jeremy18@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1811 Cashew Lane', 'NULL', '971-555-0136', '2013-03-23', '0-1 Miles'], ['28669', '49', 'AW00028669', 'NULL', 'Jordan', 'L', 'Carter', '0', '1976-01-06', 'S', 'NULL', 'M', 'jordan64@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '2341 Peachwillow', 'NULL', '623-555-0126', '2012-01-23', '0-1 Miles'], ['28670', '627', 'AW00028670', 'NULL', 'Julia', 'NULL', 'Gonzales', '0', '1981-02-23', 'M', 'NULL', 'F', 'julia83@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3982 San Michele Drive', 'NULL', '127-555-0124', '2011-05-21', '2-5 Miles'], ['28671', '633', 'AW00028671', 'NULL', 'Gabrielle', 'J', 'Russell', '0', '1981-05-22', 'M', 'NULL', 'F', 'gabrielle42@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '4281 Meaham Drive', 'NULL', '415-555-0197', '2011-05-04', '0-1 Miles'], ['28672', '338', 'AW00028672', 'NULL', 'Blake', 'NULL', 'Johnson', '0', '1981-09-23', 'S', 'NULL', 'M', 'blake0@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '9068 Muir Road', 'NULL', '993-555-0128', '2011-05-07', '2-5 Miles'], ['28673', '339', 'AW00028673', 'NULL', 'Arianna', 'H', 'Reed', '0', '1981-06-04', 'M', 'NULL', 'F', 'arianna42@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '6810 San Vincente Drive', 'NULL', '510-555-0172', '2011-05-30', '0-1 Miles'], ['28674', '369', 'AW00028674', 'NULL', 'Nathan', 'D', 'Yang', '0', '1976-01-14', 'M', 'NULL', 'M', 'nathan24@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '102 Vista Place', 'NULL', '148-555-0190', '2011-05-25', '0-1 Miles'], ['28675', '383', 'AW00028675', 'NULL', 'Angel', 'N', 'Mitchell', '0', '1973-03-08', 'S', 'NULL', 'M', 'angel34@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8900 Escobar', 'NULL', '533-555-0124', '2011-05-08', '2-5 Miles'], ['28676', '301', 'AW00028676', 'NULL', 'Alex', 'L', 'Bailey', '0', '1973-04-18', 'S', 'NULL', 'M', 'alex20@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '215 Denkinger Court', 'NULL', '626-555-0166', '2011-05-21', '0-1 Miles'], ['28677', '609', 'AW00028677', 'NULL', 'Damien', 'NULL', 'Tang', '0', '1977-08-09', 'S', 'NULL', 'M', 'damien21@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2 Raymond Dr', 'NULL', '182-555-0198', '2014-01-12', '2-5 Miles'], ['28678', '611', 'AW00028678', 'Mr.', 'Ben', 'NULL', 'Adams', '0', '1971-10-31', 'S', 'NULL', 'M', 'ben2@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '1534 Land Ave', 'NULL', '182-555-0100', '2011-05-24', '0-1 Miles'], ['28679', '548', 'AW00028679', 'NULL', 'Julian', 'A', 'Bryant', '0', '1971-09-07', 'S', 'NULL', 'M', 'julian17@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '8039 Westcliffe Pl.', 'NULL', '217-555-0112', '2013-12-13', '0-1 Miles'], ['28680', '545', 'AW00028680', 'NULL', 'Hannah', 'R', 'Brown', '0', '1972-04-07', 'S', 'NULL', 'F', 'hannah5@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '8358 Lightwood Drive', 'NULL', '956-555-0121', '2013-10-24', '0-1 Miles'], ['28681', '627', 'AW00028681', 'NULL', 'Victoria', 'E', 'Johnson', '0', '1971-09-15', 'M', 'NULL', 'F', 'victoria2@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3785 Treat Blvd.', 'NULL', '958-555-0186', '2013-11-03', '2-5 Miles'], ['28682', '312', 'AW00028682', 'NULL', 'Cassidy', 'NULL', 'Perry', '0', '1983-05-19', 'M', 'NULL', 'F', 'cassidy8@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4739 Bank Way', 'NULL', '835-555-0168', '2013-03-17', '2-5 Miles'], ['28683', '209', 'AW00028683', 'NULL', 'Mallory', 'NULL', 'Munoz', '0', '1981-10-05', 'S', 'NULL', 'F', 'mallory15@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6, avenue de l´Europe', 'NULL', '1 (11) 500 555-0127', '2012-03-13', '5-10 Miles'], ['28684', '150', 'AW00028684', 'NULL', 'Kristi', 'A', 'Saunders', '0', '1976-06-10', 'M', 'NULL', 'F', 'kristi16@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Zollstr 62', 'NULL', '1 (11) 500 555-0187', '2013-09-02', '0-1 Miles'], ['28685', '221', 'AW00028685', 'NULL', 'Marshall', 'J', 'Zhu', '0', '1981-03-12', 'M', 'NULL', 'M', 'marshall13@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '24, boulevard Tremblay', 'NULL', '1 (11) 500 555-0189', '2012-03-02', '0-1 Miles'], ['28686', '135', 'AW00028686', 'NULL', 'Sheena', 'J', 'Jai', '0', '1975-09-20', 'S', 'NULL', 'F', 'sheena9@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Klara Straße 2464', 'NULL', '1 (11) 500 555-0153', '2013-09-18', '0-1 Miles'], ['28687', '146', 'AW00028687', 'NULL', 'Javier', 'NULL', 'Gutierrez', '0', '1981-11-16', 'S', 'NULL', 'M', 'javier5@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Rehstr 2242', 'Verkaufsabteilung', '1 (11) 500 555-0180', '2013-07-09', '0-1 Miles'], ['28688', '170', 'AW00028688', 'NULL', 'Margaret', 'NULL', 'Ye', '0', '1976-03-07', 'S', 'NULL', 'F', 'margaret16@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Kampstr 7257', 'NULL', '1 (11) 500 555-0175', '2013-10-01', '0-1 Miles'], ['28689', '192', 'AW00028689', 'NULL', 'Kelvin', 'R', 'Zhang', '0', '1974-11-24', 'S', 'NULL', 'M', 'kelvin20@adventure-works.com', '10000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '7011, rue de Longchamp', 'NULL', '1 (11) 500 555-0145', '2012-04-19', '0-1 Miles'], ['28690', '211', 'AW00028690', 'NULL', 'Cory', 'J', 'Chandra', '0', '1975-10-07', 'S', 'NULL', 'M', 'cory20@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '28bis, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0173', '2012-04-28', '0-1 Miles'], ['28691', '160', 'AW00028691', 'NULL', 'Alejandro', 'B', 'Andersen', '0', '1976-01-09', 'S', 'NULL', 'M', 'alejandro38@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Erftplatz 777', 'NULL', '1 (11) 500 555-0116', '2013-10-03', '0-1 Miles'], ['28692', '254', 'AW00028692', 'NULL', 'Kristi', 'R', 'Rowe', '0', '1981-11-21', 'S', 'NULL', 'F', 'kristi42@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '7189 Sherry Circle', 'NULL', '1 (11) 500 555-0119', '2013-12-10', '0-1 Miles'], ['28693', '257', 'AW00028693', 'NULL', 'Tamara', 'L', 'Chande', '0', '1975-10-06', 'S', 'NULL', 'F', 'tamara26@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '9489 Anderson Way', 'NULL', '1 (11) 500 555-0119', '2013-12-14', '0-1 Miles'], ['28694', '259', 'AW00028694', 'NULL', 'Larry', 'D', 'Suarez', '0', '1976-01-14', 'M', 'NULL', 'M', 'larry21@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '102 Vista Place', 'NULL', '1 (11) 500 555-0192', '2013-01-15', '0-1 Miles'], ['28695', '266', 'AW00028695', 'NULL', 'Mario', 'NULL', 'Raji', '0', '1976-02-22', 'M', 'NULL', 'M', 'mario20@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '4231 Spar Court', 'NULL', '1 (11) 500 555-0178', '2013-07-14', '0-1 Miles'], ['28696', '268', 'AW00028696', 'NULL', 'Robin', 'J', 'Navarro', '0', '1976-03-04', 'S', 'NULL', 'F', 'robin6@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7995 Strasbourg Lane', 'NULL', '1 (11) 500 555-0151', '2013-08-07', '0-1 Miles'], ['28697', '268', 'AW00028697', 'NULL', 'Raquel', 'H', 'Gutierrez', '0', '1975-10-18', 'M', 'NULL', 'F', 'raquel7@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '7484 Lacanda Ct.', 'NULL', '1 (11) 500 555-0121', '2013-08-28', '0-1 Miles'], ['28698', '158', 'AW00028698', 'NULL', 'Kristina', 'A', 'Madan', '0', '1974-10-20', 'S', 'NULL', 'F', 'kristina8@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Wasserstr 22', 'NULL', '1 (11) 500 555-0156', '2013-10-06', '2-5 Miles'], ['28699', '173', 'AW00028699', 'NULL', 'Leah', 'NULL', 'Lu', '0', '1986-03-10', 'S', 'NULL', 'F', 'leah8@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Curieweg 77', 'NULL', '1 (11) 500 555-0122', '2013-09-30', '0-1 Miles'], ['28700', '172', 'AW00028700', 'NULL', 'Summer', 'D', 'Garcia', '0', '1974-10-20', 'S', 'NULL', 'F', 'summer13@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Königstr 527', 'NULL', '1 (11) 500 555-0186', '2013-10-29', '0-1 Miles'], ['28701', '150', 'AW00028701', 'NULL', 'Felicia', 'NULL', 'Gill', '0', '1980-09-24', 'S', 'NULL', 'F', 'felicia13@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Postfach 2 77 77', 'NULL', '1 (11) 500 555-0187', '2013-10-30', '0-1 Miles'], ['28702', '129', 'AW00028702', 'NULL', 'Danny', 'NULL', 'Martin', '0', '1986-01-30', 'S', 'NULL', 'M', 'danny0@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', 'Auf dem Ufer 164', 'NULL', '1 (11) 500 555-0184', '2013-11-18', '0-1 Miles'], ['28703', '245', 'AW00028703', 'NULL', 'Felicia', 'W', 'Suarez', '0', '1974-11-05', 'M', 'NULL', 'F', 'felicia18@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6453 Castle Hill Road', 'NULL', '1 (11) 500 555-0194', '2013-09-09', '0-1 Miles'], ['28704', '256', 'AW00028704', 'NULL', 'Roy', 'L', 'Ruiz', '0', '1974-09-02', 'M', 'NULL', 'M', 'roy23@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1040 Northridge Road', 'NULL', '1 (11) 500 555-0173', '2013-08-29', '0-1 Miles'], ['28705', '127', 'AW00028705', 'NULL', 'Ashley', 'NULL', 'Powell', '0', '1957-08-16', 'S', 'NULL', 'F', 'ashley35@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Heiderplatz 918', 'NULL', '1 (11) 500 555-0131', '2013-10-02', '0-1 Miles'], ['28706', '164', 'AW00028706', 'NULL', 'Reginald', 'NULL', 'Ashe', '0', '1958-02-06', 'S', 'NULL', 'M', 'reginald15@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Heiderplatz 978', 'NULL', '1 (11) 500 555-0115', '2013-10-17', '0-1 Miles'], ['28707', '225', 'AW00028707', 'NULL', 'Sharon', 'M', 'Raje', '0', '1962-04-23', 'S', 'NULL', 'F', 'sharon19@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '6, impasse Notre-Dame', 'NULL', '1 (11) 500 555-0128', '2012-04-14', '0-1 Miles'], ['28708', '184', 'AW00028708', 'NULL', 'Darryl', 'L', 'Sun', '0', '1962-09-05', 'S', 'NULL', 'M', 'darryl13@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '7, rue de la Centenaire', 'NULL', '1 (11) 500 555-0162', '2012-04-07', '0-1 Miles'], ['28709', '254', 'AW00028709', 'NULL', 'Stefanie', 'J', 'Gonzalez', '0', '1957-01-04', 'S', 'NULL', 'F', 'stefanie16@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '840 Charlotte Ave.', 'NULL', '1 (11) 500 555-0183', '2013-03-03', '2-5 Miles'], ['28710', '154', 'AW00028710', 'NULL', 'Tyrone', 'G', 'Vazquez', '0', '1959-01-15', 'M', 'NULL', 'M', 'tyrone13@adventure-works.com', '10000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Am Gallberg 64', 'NULL', '1 (11) 500 555-0188', '2013-08-02', '0-1 Miles'], ['28711', '215', 'AW00028711', 'NULL', 'Rebekah', 'NULL', 'Torres', '0', '1974-05-25', 'M', 'NULL', 'F', 'rebekah32@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7582 Kenneth Ct.', 'NULL', '1 (11) 500 555-0112', '2012-04-04', '1-2 Miles'], ['28712', '274', 'AW00028712', 'NULL', 'Gregory', 'NULL', 'Goel', '0', '1974-06-05', 'S', 'NULL', 'M', 'gregory23@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '0', '1680 I St.', 'NULL', '1 (11) 500 555-0152', '2013-04-12', '0-1 Miles'], ['28713', '215', 'AW00028713', 'NULL', 'Franklin', 'NULL', 'Nath', '0', '1979-11-23', 'M', 'NULL', 'M', 'franklin35@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '71, avenue de la Gare', 'NULL', '1 (11) 500 555-0186', '2012-04-17', '0-1 Miles'], ['28714', '39', 'AW00028714', 'NULL', 'Arturo', 'NULL', 'Gao', '0', '1971-12-19', 'S', 'NULL', 'M', 'arturo16@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '4351 Charlotte Ave.', 'NULL', '1 (11) 500 555-0195', '2013-02-25', '1-2 Miles'], ['28715', '23', 'AW00028715', 'NULL', 'Maria', 'E', 'Foster', '0', '1971-03-19', 'S', 'NULL', 'F', 'maria38@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5603 S. Rising Ave', 'NULL', '1 (11) 500 555-0195', '2013-07-18', '2-5 Miles'], ['28716', '38', 'AW00028716', 'NULL', 'Darren', 'NULL', 'Garcia', '0', '1976-07-05', 'S', 'NULL', 'M', 'darren16@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5547 Montoya', 'NULL', '1 (11) 500 555-0170', '2013-08-20', '2-5 Miles'], ['28717', '12', 'AW00028717', 'NULL', 'Calvin', 'E', 'Anand', '0', '1971-01-18', 'M', 'NULL', 'M', 'calvin21@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '618 Browse Ct.', 'NULL', '1 (11) 500 555-0175', '2013-04-30', '5-10 Miles'], ['28718', '6', 'AW00028718', 'NULL', 'Cassandra', 'NULL', 'Raman', '0', '1970-09-23', 'M', 'NULL', 'F', 'cassandra13@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4474 San Jose Dr.', 'NULL', '1 (11) 500 555-0137', '2013-08-26', '0-1 Miles'], ['28719', '5', 'AW00028719', 'NULL', 'Neil', 'K', 'Vazquez', '0', '1973-10-16', 'S', 'NULL', 'M', 'neil13@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7537 Clark Creek Lane', 'NULL', '1 (11) 500 555-0177', '2013-02-04', '0-1 Miles'], ['28720', '20', 'AW00028720', 'NULL', 'Candice', 'NULL', 'Liu', '0', '1981-11-21', 'S', 'NULL', 'F', 'candice11@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7835 Rio Blanco Dr.', 'NULL', '1 (11) 500 555-0147', '2013-02-02', '5-10 Miles'], ['28721', '25', 'AW00028721', 'NULL', 'Jaclyn', 'NULL', 'Lin', '0', '1975-08-31', 'M', 'NULL', 'F', 'jaclyn8@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '2562 Meadowbrook Drive', 'NULL', '1 (11) 500 555-0136', '2013-10-30', '0-1 Miles'], ['28722', '184', 'AW00028722', 'NULL', 'Carmen', 'F', 'Stone', '0', '1979-05-22', 'S', 'NULL', 'F', 'carmen11@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '29bis, rue des Peupliers', 'NULL', '1 (11) 500 555-0112', '2013-07-24', '1-2 Miles'], ['28723', '273', 'AW00028723', 'NULL', 'Ryan', 'NULL', 'Yang', '0', '1979-04-22', 'S', 'NULL', 'M', 'ryan31@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '9903 Clearland Circle', 'NULL', '1 (11) 500 555-0191', '2013-04-04', '0-1 Miles'], ['28724', '194', 'AW00028724', 'NULL', 'Marvin', 'J', 'Navarro', '0', '1980-04-05', 'S', 'NULL', 'M', 'marvin10@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '88, rue de Fontfroide', 'NULL', '1 (11) 500 555-0128', '2012-04-23', '2-5 Miles'], ['28725', '224', 'AW00028725', 'NULL', 'Edward', 'S', 'Jenkins', '0', '1980-04-08', 'S', 'NULL', 'M', 'edward55@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6, rue Lafayette', 'NULL', '1 (11) 500 555-0116', '2013-04-26', '2-5 Miles'], ['28726', '168', 'AW00028726', 'NULL', 'Kelli', 'C', 'Liang', '0', '1985-12-14', 'S', 'NULL', 'F', 'kelli18@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Heideweg 2459', 'NULL', '1 (11) 500 555-0156', '2013-11-24', '0-1 Miles'], ['28727', '188', 'AW00028727', 'NULL', 'Brett', 'L', 'Madan', '0', '1986-05-01', 'S', 'NULL', 'M', 'brett7@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '4191, rue Saint-Lazare', 'NULL', '1 (11) 500 555-0118', '2012-05-28', '0-1 Miles'], ['28728', '186', 'AW00028728', 'NULL', 'Dylan', 'C', 'Long', '0', '1985-08-11', 'S', 'NULL', 'M', 'dylan8@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '18, rue de l´Esplanade', 'NULL', '1 (11) 500 555-0122', '2012-06-17', '0-1 Miles'], ['28729', '250', 'AW00028729', 'NULL', 'Heather', 'NULL', 'Sun', '0', '1986-02-13', 'S', 'NULL', 'F', 'heather12@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '4849 C Olivera Rd', 'NULL', '1 (11) 500 555-0141', '2013-04-07', '1-2 Miles'], ['28730', '269', 'AW00028730', 'NULL', 'Nicole', 'NULL', 'Robinson', '0', '1985-04-18', 'S', 'NULL', 'F', 'nicole18@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '9430 Thornhill Place', 'NULL', '1 (11) 500 555-0137', '2013-02-03', '2-5 Miles'], ['28731', '232', 'AW00028731', 'NULL', 'Jermaine', 'NULL', 'Subram', '0', '1979-09-13', 'S', 'NULL', 'M', 'jermaine11@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '9821 Juniper Drive', 'NULL', '1 (11) 500 555-0197', '2013-04-21', '2-5 Miles'], ['28732', '238', 'AW00028732', 'NULL', 'Bianca', 'E', 'Yang', '0', '1979-09-17', 'M', 'NULL', 'F', 'bianca4@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7207 Peabody Road', 'NULL', '1 (11) 500 555-0198', '2013-09-22', '0-1 Miles'], ['28733', '245', 'AW00028733', 'NULL', 'Diana', 'J', 'Ramos', '0', '1980-03-30', 'M', 'NULL', 'F', 'diana16@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6466 Appia Ct.', 'NULL', '1 (11) 500 555-0117', '2013-09-12', '1-2 Miles'], ['28734', '254', 'AW00028734', 'NULL', 'Briana', 'L', 'Moreno', '0', '1985-05-11', 'M', 'NULL', 'F', 'briana6@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1085 Ash Lane', 'NULL', '1 (11) 500 555-0179', '2013-09-29', '1-2 Miles'], ['28735', '237', 'AW00028735', 'NULL', 'Kimberly', 'A', 'Morgan', '0', '1984-10-02', 'S', 'NULL', 'F', 'kimberly23@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '5259 Mildred Ln.', 'NULL', '1 (11) 500 555-0195', '2013-05-08', '2-5 Miles'], ['28736', '212', 'AW00028736', 'NULL', 'Paula', 'NULL', 'Navarro', '0', '1978-10-21', 'S', 'NULL', 'F', 'paula13@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '6, route de Marseille', 'NULL', '1 (11) 500 555-0137', '2012-06-28', '2-5 Miles'], ['28737', '183', 'AW00028737', 'NULL', 'Eugene', 'NULL', 'Lin', '0', '1977-09-19', 'S', 'NULL', 'M', 'eugene12@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '66, rue des Pyrenees', 'NULL', '1 (11) 500 555-0138', '2013-02-13', '0-1 Miles'], ['28738', '257', 'AW00028738', 'NULL', 'Lori', 'A', 'Romero', '0', '1983-03-20', 'M', 'NULL', 'F', 'lori11@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '4583 Tice', 'NULL', '1 (11) 500 555-0151', '2013-08-26', '1-2 Miles'], ['28739', '220', 'AW00028739', 'NULL', 'Mya', 'NULL', 'Perry', '0', '1978-09-19', 'S', 'NULL', 'F', 'mya10@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '24, rue Philibert-Delorme', 'NULL', '1 (11) 500 555-0117', '2012-06-16', '1-2 Miles'], ['28740', '194', 'AW00028740', 'NULL', 'Alisha', 'M', 'Alan', '0', '1978-10-03', 'M', 'NULL', 'F', 'alisha47@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8128, rue Lamarck', 'NULL', '1 (11) 500 555-0161', '2012-06-09', '1-2 Miles'], ['28741', '162', 'AW00028741', 'NULL', 'Bruce', 'NULL', 'Dominguez', '0', '1979-04-20', 'M', 'NULL', 'M', 'bruce34@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', 'Charlottenstr 42868', 'NULL', '1 (11) 500 555-0115', '2013-12-15', '0-1 Miles'], ['28742', '235', 'AW00028742', 'NULL', 'Erick', 'NULL', 'Vance', '0', '1978-08-26', 'M', 'NULL', 'M', 'erick3@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5265 Evergreen Ct', 'NULL', '1 (11) 500 555-0177', '2013-09-30', '1-2 Miles'], ['28743', '196', 'AW00028743', 'NULL', 'Kelly', 'G', 'Wood', '0', '1920-11-14', 'S', 'NULL', 'F', 'kelly6@adventure-works.com', '20000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '21, rue du Départ', 'NULL', '1 (11) 500 555-0164', '2013-10-07', '0-1 Miles'], ['28744', '153', 'AW00028744', 'NULL', 'Jenny', 'B', 'Xu', '0', '1978-01-02', 'S', 'NULL', 'F', 'jenny28@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Hunzinger Allee 193', 'NULL', '1 (11) 500 555-0113', '2013-11-01', '2-5 Miles'], ['28745', '259', 'AW00028745', 'NULL', 'Geoffrey', 'NULL', 'Rana', '0', '1982-08-21', 'S', 'NULL', 'M', 'geoffrey9@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '5712 Shady Lane', 'NULL', '1 (11) 500 555-0151', '2013-11-25', '0-1 Miles'], ['28746', '242', 'AW00028746', 'NULL', 'Juan', 'NULL', 'Ruiz', '0', '1977-05-05', 'M', 'NULL', 'M', 'juan0@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '6395 Deermeadow Way', 'NULL', '1 (11) 500 555-0180', '2013-04-08', '1-2 Miles'], ['28747', '229', 'AW00028747', 'NULL', 'Arthur', 'G', 'Gonzalez', '0', '1976-11-24', 'M', 'NULL', 'M', 'arthur19@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '8524 Parkside Dr.', 'NULL', '1 (11) 500 555-0114', '2013-05-24', '0-1 Miles'], ['28748', '236', 'AW00028748', 'NULL', 'Kelly', 'M', 'Washington', '0', '1977-04-03', 'S', 'NULL', 'F', 'kelly18@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '6433 E. 70th Street', 'NULL', '1 (11) 500 555-0140', '2013-07-15', '0-1 Miles'], ['28749', '221', 'AW00028749', 'NULL', 'Franklin', 'NULL', 'Zhou', '0', '1983-10-05', 'S', 'NULL', 'M', 'franklin8@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '73, boulevard d´Albi', 'NULL', '1 (11) 500 555-0126', '2012-06-22', '2-5 Miles'], ['28750', '196', 'AW00028750', 'NULL', 'Andy', 'K', 'Romero', '0', '1978-06-21', 'M', 'NULL', 'M', 'andy13@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '36, avenue Reille', 'NULL', '1 (11) 500 555-0116', '2012-06-20', '1-2 Miles'], ['28751', '194', 'AW00028751', 'NULL', 'Joe', 'T', 'Belson', '0', '1983-05-25', 'M', 'NULL', 'M', 'joe18@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5, rue de la Cavalerie', 'NULL', '1 (11) 500 555-0120', '2012-06-17', '1-2 Miles'], ['28752', '123', 'AW00028752', 'NULL', 'Andre', 'NULL', 'Subram', '0', '1978-05-17', 'S', 'NULL', 'M', 'andre13@adventure-works.com', '40000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Alderstr 3955', 'NULL', '1 (11) 500 555-0171', '2013-12-13', '1-2 Miles'], ['28753', '274', 'AW00028753', 'NULL', 'Kristine', 'C', 'Carlson', '0', '1977-01-05', 'S', 'NULL', 'F', 'kristine19@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '8278 Sequoia Court', 'NULL', '1 (11) 500 555-0172', '2013-02-26', '1-2 Miles'], ['28754', '152', 'AW00028754', 'NULL', 'Chad', 'K', 'Nara', '0', '1982-04-21', 'S', 'NULL', 'M', 'chad17@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Wertheimer Straße 998', 'NULL', '1 (11) 500 555-0179', '2013-07-31', '1-2 Miles'], ['28755', '269', 'AW00028755', 'NULL', 'Raymond', 'P', 'Gonzalez', '0', '1982-05-21', 'S', 'NULL', 'M', 'raymond19@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '3960 Seascape Circle', 'NULL', '1 (11) 500 555-0182', '2013-06-11', '2-5 Miles'], ['28756', '205', 'AW00028756', 'NULL', 'Stacey', 'M', 'Hee', '0', '1975-11-29', 'S', 'NULL', 'F', 'stacey20@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '61, rue de Fontfroide', 'NULL', '1 (11) 500 555-0113', '2012-06-14', '1-2 Miles'], ['28757', '201', 'AW00028757', 'NULL', 'Ronald', 'K', 'Rodriguez', '0', '1977-03-19', 'M', 'NULL', 'M', 'ronald22@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5711bis, rue des Peupliers', 'NULL', '1 (11) 500 555-0173', '2012-06-16', '1-2 Miles'], ['28758', '210', 'AW00028758', 'NULL', 'Troy', 'NULL', 'Rodriguez', '0', '1977-02-04', 'M', 'NULL', 'M', 'troy21@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '3139, chaussée de Tournai', 'NULL', '1 (11) 500 555-0162', '2012-06-19', '1-2 Miles'], ['28759', '237', 'AW00028759', 'NULL', 'Melissa', 'S', 'Rivera', '0', '1976-09-30', 'S', 'NULL', 'F', 'melissa39@adventure-works.com', '40000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9712 Lexington Road', 'NULL', '1 (11) 500 555-0173', '2013-12-27', '1-2 Miles'], ['28760', '539', 'AW00028760', 'NULL', 'Lucas', 'NULL', 'Hall', '0', '1981-05-19', 'M', 'NULL', 'M', 'lucas38@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9763 Maricopa', 'NULL', '747-555-0158', '2013-12-07', '1-2 Miles'], ['28761', '315', 'AW00028761', 'NULL', 'Robert', 'NULL', 'Campbell', '0', '1981-04-17', 'S', 'NULL', 'M', 'robert50@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '0', '5232 Fourth St.', 'NULL', '348-555-0160', '2011-05-05', '0-1 Miles'], ['28762', '546', 'AW00028762', 'NULL', 'Aaron', 'NULL', 'Henderson', '0', '1980-05-11', 'M', 'NULL', 'M', 'aaron4@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3098 Seabourne Ct', 'NULL', '355-555-0171', '2014-01-02', '1-2 Miles'], ['28763', '302', 'AW00028763', 'NULL', 'Mohamed', 'C', 'Pal', '0', '1980-01-20', 'S', 'NULL', 'F', 'mohamed0@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '8299 Darlene Drive', 'NULL', '842-555-0111', '2011-05-16', '1-2 Miles'], ['28764', '310', 'AW00028764', 'NULL', 'Frank', 'NULL', 'Rubio', '0', '1979-08-10', 'S', 'NULL', 'M', 'frank29@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '4683 Buchanan Pl.', 'NULL', '126-555-0156', '2013-02-08', '0-1 Miles'], ['28765', '358', 'AW00028765', 'NULL', 'Abigail', 'A', 'Gonzales', '0', '1979-08-25', 'M', 'NULL', 'F', 'abigail42@adventure-works.com', '50000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4451 Larkin Dr.', 'NULL', '737-555-0112', '2011-05-11', '1-2 Miles'], ['28766', '41', 'AW00028766', 'NULL', 'Joe', 'F', 'Alonso', '0', '1986-01-30', 'S', 'NULL', 'M', 'joe31@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6155 Vist Oak Dr', 'NULL', '707-555-0192', '2012-01-05', '1-2 Miles'], ['28767', '49', 'AW00028767', 'NULL', 'Gilbert', 'L', 'Hu', '0', '1981-02-23', 'M', 'NULL', 'M', 'gilbert18@adventure-works.com', '40000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '740 Royal Links Circle', 'NULL', '733-555-0112', '2013-05-26', '1-2 Miles'], ['28768', '612', 'AW00028768', 'NULL', 'Emmanuel', 'A', 'Rodriguez', '0', '1972-01-01', 'S', 'NULL', 'M', 'emmanuel17@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '9741 Forte Way', 'NULL', '226-555-0110', '2013-11-01', '0-1 Miles'], ['28769', '616', 'AW00028769', 'NULL', 'Brianna', 'NULL', 'Foster', '0', '1972-03-06', 'S', 'NULL', 'F', 'brianna61@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2815 La Vuelta', 'NULL', '166-555-0170', '2011-05-23', '1-2 Miles'], ['28770', '552', 'AW00028770', 'NULL', 'Sebastian', 'C', 'James', '0', '1971-12-30', 'M', 'NULL', 'M', 'sebastian0@adventure-works.com', '80000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3627 William Way', 'NULL', '378-555-0117', '2011-05-13', '1-2 Miles'], ['28771', '64', 'AW00028771', 'NULL', 'Katherine', 'NULL', 'Russell', '0', '1960-02-05', 'S', 'NULL', 'F', 'katherine46@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '3207 Mario Way', 'NULL', '758-555-0143', '2013-12-26', '0-1 Miles'], ['28772', '552', 'AW00028772', 'NULL', 'Eric', 'NULL', 'Hughes', '0', '1965-04-23', 'M', 'NULL', 'M', 'eric20@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6645 Sunshine', 'NULL', '504-555-0114', '2011-05-07', '2-5 Miles'], ['28773', '300', 'AW00028773', 'NULL', 'Gerald', 'A', 'Malhotra', '0', '1965-09-23', 'S', 'NULL', 'M', 'gerald34@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '1', '5780 Conifer Terrace', 'NULL', '562-555-0193', '2013-06-25', '5-10 Miles'], ['28774', '311', 'AW00028774', 'NULL', 'Latasha', 'L', 'Rowe', '0', '1976-05-13', 'M', 'NULL', 'F', 'latasha2@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '4659 Cape Cod Way', 'NULL', '744-555-0184', '2011-05-07', '2-5 Miles'], ['28775', '335', 'AW00028775', 'NULL', 'Morgan', 'J', 'Anderson', '0', '1959-11-23', 'M', 'NULL', 'F', 'morgan32@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '5328 Mitchelleanjen Ln.', 'NULL', '822-555-0116', '2011-05-15', '0-1 Miles'], ['28776', '383', 'AW00028776', 'NULL', 'Abigail', 'C', 'Morris', '0', '1966-10-07', 'S', 'NULL', 'F', 'abigail4@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2472 Alexander Place', 'NULL', '924-555-0180', '2013-07-15', '1-2 Miles'], ['28777', '648', 'AW00028777', 'NULL', 'Brittany', 'NULL', 'Wood', '0', '1960-12-14', 'S', 'NULL', 'F', 'brittany2@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '8798 Valley Manor', 'NULL', '766-555-0133', '2013-11-24', '1-2 Miles'], ['28778', '49', 'AW00028778', 'NULL', 'Maurice', 'L', 'Sharma', '0', '1966-09-06', 'M', 'NULL', 'M', 'maurice10@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '1', '1', '7324 Mt. Tri-state Ct.', 'NULL', '133-555-0133', '2011-08-02', '2-5 Miles'], ['28779', '66', 'AW00028779', 'NULL', 'Morgan', 'E', 'Reed', '0', '1960-10-12', 'S', 'NULL', 'F', 'morgan50@adventure-works.com', '30000.00', '1', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Clerical', 'Administrativo', 'Employé', '0', '1', '7281 Barberry Court', 'NULL', '618-555-0184', '2013-09-24', '10+ Miles'], ['28780', '637', 'AW00028780', 'NULL', 'Melissa', 'L', 'Griffin', '0', '1961-07-06', 'M', 'NULL', 'F', 'melissa16@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '1874 Orchid Ct', 'NULL', '844-555-0182', '2013-06-13', '0-1 Miles'], ['28781', '358', 'AW00028781', 'NULL', 'Alex', 'S', 'Collins', '0', '1961-11-12', 'S', 'NULL', 'M', 'alex29@adventure-works.com', '20000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3949 Eastgate Ave.', 'NULL', '433-555-0193', '2013-08-05', '1-2 Miles'], ['28782', '312', 'AW00028782', 'NULL', 'Cody', 'NULL', 'Howard', '0', '1961-09-08', 'M', 'NULL', 'M', 'cody12@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9663 Soto Street', 'NULL', '979-555-0183', '2014-01-22', '1-2 Miles'], ['28783', '543', 'AW00028783', 'NULL', 'Makayla', 'A', 'Rivera', '0', '1963-01-03', 'M', 'NULL', 'F', 'makayla14@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6161 String Drive', 'NULL', '875-555-0163', '2013-04-28', '1-2 Miles'], ['28784', '307', 'AW00028784', 'NULL', 'Briana', 'A', 'Gomez', '0', '1974-06-17', 'M', 'NULL', 'F', 'briana1@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '8862 Dale Pl.', 'NULL', '907-555-0138', '2013-12-21', '1-2 Miles'], ['28785', '326', 'AW00028785', 'NULL', 'Jose', 'C', 'Foster', '0', '1963-02-25', 'S', 'NULL', 'M', 'jose10@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4637 Lakeside Court', 'NULL', '285-555-0139', '2013-06-21', '1-2 Miles'], ['28786', '612', 'AW00028786', 'NULL', 'Erick', 'E', 'Prasad', '0', '1968-07-19', 'M', 'NULL', 'M', 'erick9@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '4525 El Pueblo Pl.', '#6', '518-555-0132', '2013-05-27', '0-1 Miles'], ['28787', '611', 'AW00028787', 'NULL', 'Gabrielle', 'S', 'Wood', '0', '1962-10-03', 'M', 'NULL', 'F', 'gabrielle24@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '1020 Book Road', 'NULL', '305-555-0199', '2013-09-26', '0-1 Miles'], ['28788', '310', 'AW00028788', 'NULL', 'Dominique', 'NULL', 'Martinez', '0', '1963-04-08', 'M', 'NULL', 'F', 'dominique15@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6110 J Ave', 'NULL', '354-555-0196', '2013-01-28', '1-2 Miles'], ['28789', '312', 'AW00028789', 'NULL', 'Elijah', 'NULL', 'Zhang', '0', '1962-09-08', 'S', 'NULL', 'M', 'elijah25@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7827 11th', 'NULL', '788-555-0115', '2014-01-28', '1-2 Miles'], ['28790', '542', 'AW00028790', 'NULL', 'Seth', 'NULL', 'Howard', '0', '1964-02-07', 'S', 'NULL', 'M', 'seth82@adventure-works.com', '30000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1119 Elderwood Dr.', 'NULL', '309-555-0116', '2011-05-04', '1-2 Miles'], ['28791', '641', 'AW00028791', 'NULL', 'Richard', 'NULL', 'Johnston', '0', '1964-01-02', 'M', 'NULL', 'M', 'richard62@adventure-works.com', '40000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '6896 Liana Lane', 'NULL', '577-555-0182', '2013-02-26', '0-1 Miles'], ['28792', '612', 'AW00028792', 'NULL', 'Henry', 'J', 'Stone', '0', '1963-09-06', 'S', 'NULL', 'M', 'henry9@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '549 Via Appia', 'NULL', '987-555-0176', '2011-05-06', '1-2 Miles'], ['28793', '633', 'AW00028793', 'NULL', 'Alexander', 'R', 'Jackson', '0', '1963-11-11', 'M', 'NULL', 'M', 'alexander15@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '1069 Bynum Way', 'NULL', '393-555-0153', '2013-02-21', '0-1 Miles'], ['28794', '552', 'AW00028794', 'NULL', 'Juan', 'D', 'Cooper', '0', '1965-04-30', 'S', 'NULL', 'M', 'juan18@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '7430 Partridge Dr.', 'NULL', '334-555-0136', '2011-05-04', '1-2 Miles'], ['28795', '345', 'AW00028795', 'NULL', 'Jesse', 'NULL', 'Allen', '0', '1970-01-10', 'S', 'NULL', 'M', 'jesse42@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '7886 Fairfield Avenue', 'NULL', '634-555-0114', '2011-05-16', '1-2 Miles'], ['28796', '300', 'AW00028796', 'NULL', 'Cameron', 'NULL', 'Coleman', '0', '1965-04-23', 'M', 'NULL', 'M', 'cameron1@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '2552 Palm Ave', 'NULL', '847-555-0174', '2013-04-02', '0-1 Miles'], ['28797', '348', 'AW00028797', 'NULL', 'Alexandra', 'C', 'Wood', '0', '1965-04-16', 'S', 'NULL', 'F', 'alexandra25@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '8249 La Jolla', 'NULL', '794-555-0196', '2011-05-19', '1-2 Miles'], ['28798', '62', 'AW00028798', 'NULL', 'Timothy', 'W', 'Phillips', '0', '1970-06-13', 'S', 'NULL', 'M', 'timothy31@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '1515 Tuolumne St.', 'NULL', '797-555-0157', '2012-02-24', '1-2 Miles'], ['28799', '325', 'AW00028799', 'NULL', 'Amber', 'A', 'Nelson', '0', '1964-12-11', 'S', 'NULL', 'F', 'amber9@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '8396 Vista Way', 'NULL', '468-555-0118', '2011-05-19', '1-2 Miles'], ['28800', '302', 'AW00028800', 'NULL', 'Mason', 'A', 'Sanchez', '0', '1964-09-03', 'S', 'NULL', 'M', 'mason16@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '1028 Royal Oak Rd.', 'NULL', '171-555-0123', '2013-11-07', '0-1 Miles'], ['28801', '616', 'AW00028801', 'NULL', 'Katelyn', 'E', 'Hall', '0', '1978-02-10', 'S', 'NULL', 'F', 'katelyn46@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '707 Willcrest Circle', 'NULL', '113-555-0110', '2013-06-25', '0-1 Miles'], ['28802', '56', 'AW00028802', 'NULL', 'Allison', 'NULL', 'Nelson', '0', '1983-09-13', 'M', 'NULL', 'F', 'allison32@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6980 Tanager Circle', 'NULL', '156-555-0155', '2012-02-01', '1-2 Miles'], ['28803', '623', 'AW00028803', 'NULL', 'Gabriella', 'L', 'Edwards', '0', '1977-07-03', 'S', 'NULL', 'F', 'gabriella22@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '5218 E 28th Street', 'NULL', '697-555-0146', '2013-04-27', '0-1 Miles'], ['28804', '301', 'AW00028804', 'NULL', 'Wyatt', 'C', 'Allen', '0', '1978-06-12', 'S', 'NULL', 'M', 'wyatt26@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2912 Guadalupe Dr.', 'NULL', '114-555-0149', '2011-06-04', '1-2 Miles'], ['28805', '339', 'AW00028805', 'NULL', 'Marissa', 'J', 'Bennett', '0', '1978-02-17', 'M', 'NULL', 'F', 'marissa20@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5370 Adobe Drive', 'NULL', '157-555-0149', '2011-06-25', '1-2 Miles'], ['28806', '595', 'AW00028806', 'NULL', 'Randall', 'H', 'Hernandez', '0', '1979-05-19', 'S', 'NULL', 'M', 'randall5@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '2427 Kaywood Drive', 'NULL', '117-555-0111', '2013-03-21', '0-1 Miles'], ['28807', '539', 'AW00028807', 'NULL', 'Maria', 'L', 'Cox', '0', '1979-03-12', 'M', 'NULL', 'F', 'maria13@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '946 Hanson Lane', 'NULL', '821-555-0165', '2011-06-10', '1-2 Miles'], ['28808', '626', 'AW00028808', 'NULL', 'Trinity', 'H', 'Watson', '0', '1979-05-19', 'S', 'NULL', 'F', 'trinity0@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '2427 Kaywood Drive', 'Unit C', '161-555-0144', '2013-06-30', '0-1 Miles'], ['28809', '552', 'AW00028809', 'NULL', 'Isaac', 'I', 'Cooper', '0', '1984-09-16', 'M', 'NULL', 'M', 'isaac8@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '554 Buskirk Ave.', 'NULL', '777-555-0191', '2013-04-05', '0-1 Miles'], ['28810', '312', 'AW00028810', 'NULL', 'Kaylee', 'M', 'Blue', '0', '1978-10-15', 'M', 'NULL', 'F', 'kaylee10@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9200 Pecan Street', 'NULL', '202-555-0156', '2013-02-21', '0-1 Miles'], ['28811', '329', 'AW00028811', 'NULL', 'Caleb', 'S', 'Phillips', '0', '1978-08-12', 'M', 'NULL', 'M', 'caleb35@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '2929 Marie Dr.', 'NULL', '513-555-0150', '2013-08-11', '0-1 Miles'], ['28812', '347', 'AW00028812', 'NULL', 'Brianna', 'NULL', 'Watson', '0', '1978-10-19', 'M', 'NULL', 'F', 'brianna44@adventure-works.com', '40000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '3883 Kirkwood Dr', 'NULL', '328-555-0176', '2013-08-14', '0-1 Miles'], ['28813', '355', 'AW00028813', 'NULL', 'Cameron', 'J', 'Washington', '0', '1977-05-05', 'M', 'NULL', 'M', 'cameron8@adventure-works.com', '40000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '1351 Boxer Blvd.', 'NULL', '809-555-0161', '2013-03-13', '10+ Miles'], ['28814', '612', 'AW00028814', 'NULL', 'Anna', 'M', 'Butler', '0', '1976-09-18', 'M', 'NULL', 'F', 'anna39@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8970 Birchwood', 'NULL', '306-555-0162', '2013-11-26', '0-1 Miles'], ['28815', '374', 'AW00028815', 'NULL', 'Lauren', 'T', 'James', '0', '1982-04-21', 'M', 'NULL', 'F', 'lauren18@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2313 Pastel Drive', 'NULL', '244-555-0142', '2013-11-18', '0-1 Miles'], ['28816', '539', 'AW00028816', 'NULL', 'Jessica', 'B', 'Cox', '0', '1977-01-10', 'S', 'NULL', 'F', 'jessica13@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9048 Youngsdale Drive', '# 202', '139-555-0185', '2013-08-21', '1-2 Miles'], ['28817', '59', 'AW00028817', 'NULL', 'James', 'J', 'Lee', '0', '1977-03-11', 'M', 'NULL', 'M', 'james95@adventure-works.com', '50000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8114 Riveria Way', 'NULL', '102-555-0125', '2013-02-21', '1-2 Miles'], ['28818', '49', 'AW00028818', 'NULL', 'Dwayne', 'F', 'Hernandez', '0', '1977-10-30', 'M', 'NULL', 'M', 'dwayne3@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '8408 Via Del Sol', 'NULL', '192-555-0199', '2012-02-12', '0-1 Miles'], ['28819', '58', 'AW00028819', 'NULL', 'Grace', 'A', 'Bennett', '0', '1978-04-10', 'M', 'NULL', 'F', 'grace48@adventure-works.com', '60000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5767 Oakmead', 'NULL', '362-555-0191', '2012-02-03', '0-1 Miles'], ['28820', '609', 'AW00028820', 'NULL', 'Naomi', 'NULL', 'Alvarez', '0', '1978-01-17', 'M', 'NULL', 'F', 'naomi4@adventure-works.com', '60000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '137 Lancelot Dr', 'NULL', '514-555-0167', '2011-06-21', '2-5 Miles'], ['28821', '618', 'AW00028821', 'NULL', 'Blake', 'NULL', 'Jackson', '0', '1978-01-17', 'M', 'NULL', 'M', 'blake11@adventure-works.com', '60000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '137 Lancelot Dr', 'NULL', '496-555-0164', '2011-06-11', '2-5 Miles'], ['28822', '618', 'AW00028822', 'NULL', 'Amanda', 'L', 'Alexander', '0', '1978-01-16', 'M', 'NULL', 'F', 'amanda40@adventure-works.com', '60000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '5052 Bannock Ct.', 'NULL', '234-555-0189', '2011-06-30', '0-1 Miles'], ['28823', '631', 'AW00028823', 'NULL', 'Xavier', 'NULL', 'Brown', '0', '1978-05-17', 'M', 'NULL', 'M', 'xavier4@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4926 Sharon Dr', 'NULL', '745-555-0120', '2011-06-22', '2-5 Miles'], ['28824', '634', 'AW00028824', 'NULL', 'Brandon', 'D', 'Gonzales', '0', '1978-05-08', 'S', 'NULL', 'M', 'brandon14@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6793 Almond Street', 'NULL', '426-555-0124', '2011-06-22', '2-5 Miles'], ['28825', '635', 'AW00028825', 'NULL', 'Caleb', 'A', 'Hernandez', '0', '1978-02-01', 'M', 'NULL', 'M', 'caleb45@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9808 Deerfield Dr.', 'NULL', '344-555-0121', '2011-06-05', '2-5 Miles'], ['28826', '553', 'AW00028826', 'NULL', 'Jack', 'NULL', 'Sharma', '0', '1978-01-10', 'M', 'NULL', 'M', 'jack31@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9637 Kenneth Ct', 'NULL', '357-555-0115', '2011-06-28', '2-5 Miles'], ['28827', '312', 'AW00028827', 'NULL', 'Joshua', 'E', 'Robinson', '0', '1983-03-23', 'M', 'NULL', 'M', 'joshua20@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1226 Shoenic', 'NULL', '165-555-0181', '2011-06-02', '2-5 Miles'], ['28828', '369', 'AW00028828', 'NULL', 'Andrea', 'R', 'Murphy', '0', '1978-04-23', 'S', 'NULL', 'F', 'andrea16@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '649 Hoke Dr', 'NULL', '372-555-0196', '2011-06-09', '2-5 Miles'], ['28829', '299', 'AW00028829', 'NULL', 'Robert', 'NULL', 'Bryant', '0', '1975-08-15', 'M', 'NULL', 'M', 'robert29@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '1336 Terrace Road', 'NULL', '243-555-0174', '2011-05-31', '0-1 Miles'], ['28830', '632', 'AW00028830', 'NULL', 'Matthew', 'J', 'Smith', '0', '1975-12-21', 'M', 'NULL', 'M', 'matthew6@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1399 Firestone Drive', 'NULL', '823-555-0141', '2011-06-16', '0-1 Miles'], ['28831', '329', 'AW00028831', 'NULL', 'Elizabeth', 'L', 'Harris', '0', '1975-07-15', 'M', 'NULL', 'F', 'elizabeth17@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1612 Geary Ct.', 'NULL', '467-555-0115', '2011-06-20', '0-1 Miles'], ['28832', '66', 'AW00028832', 'NULL', 'Joseph', 'NULL', 'Rodriguez', '0', '1975-11-02', 'M', 'NULL', 'M', 'joseph27@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7685 Imperial Dr', 'NULL', '164-555-0128', '2012-02-04', '2-5 Miles'], ['28833', '614', 'AW00028833', 'NULL', 'Abigail', 'NULL', 'Harris', '0', '1975-05-03', 'M', 'NULL', 'F', 'abigail54@adventure-works.com', '60000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8620 Moss Hollow Court', 'NULL', '364-555-0127', '2011-06-10', '2-5 Miles'], ['28834', '69', 'AW00028834', 'NULL', 'Natalie', 'L', 'Hill', '0', '1974-10-26', 'M', 'NULL', 'F', 'natalie65@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '1397 Paradiso Ct.', 'NULL', '894-555-0196', '2012-02-17', '2-5 Miles'], ['28835', '312', 'AW00028835', 'NULL', 'Elijah', 'NULL', 'Phillips', '0', '1974-09-22', 'S', 'NULL', 'M', 'elijah34@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '7201 Elk Dr.', 'NULL', '851-555-0168', '2011-06-19', '0-1 Miles'], ['28836', '53', 'AW00028836', 'NULL', 'Lauren', 'NULL', 'Cook', '0', '1977-02-04', 'S', 'NULL', 'F', 'lauren3@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '8680 Newell Ave.', 'NULL', '622-555-0149', '2012-02-15', '0-1 Miles'], ['28837', '59', 'AW00028837', 'NULL', 'Victoria', 'M', 'Rodriguez', '0', '1977-04-18', 'M', 'NULL', 'F', 'victoria19@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '9766 Marie Drive', 'NULL', '143-555-0189', '2012-02-09', '0-1 Miles'], ['28838', '611', 'AW00028838', 'NULL', 'Jasmine', 'S', 'Ross', '0', '1977-04-24', 'S', 'NULL', 'F', 'jasmine44@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '3589 G Street', 'NULL', '141-555-0122', '2011-06-11', '0-1 Miles'], ['28839', '552', 'AW00028839', 'NULL', 'Connor', 'J', 'Parker', '0', '1982-04-09', 'M', 'NULL', 'M', 'connor28@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6230 Blue Ridge', 'NULL', '936-555-0177', '2011-06-30', '2-5 Miles'], ['28840', '301', 'AW00028840', 'NULL', 'Valerie', 'H', 'Harrison', '0', '1977-01-08', 'S', 'NULL', 'F', 'valerie20@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '1694 Ohara Avenue', 'NULL', '511-555-0152', '2011-06-14', '0-1 Miles'], ['28841', '310', 'AW00028841', 'NULL', 'Samuel', 'NULL', 'Gonzales', '0', '1977-05-05', 'M', 'NULL', 'M', 'samuel16@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '1510 Bidwell Street', 'NULL', '891-555-0125', '2011-06-25', '2-5 Miles'], ['28842', '337', 'AW00028842', 'NULL', 'Nicole', 'K', 'Bailey', '0', '1976-11-16', 'M', 'NULL', 'F', 'nicole33@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3328 Via Cortez', 'NULL', '191-555-0167', '2011-06-04', '2-5 Miles'], ['28843', '300', 'AW00028843', 'NULL', 'Chloe', 'NULL', 'Price', '0', '1974-07-21', 'M', 'NULL', 'F', 'chloe66@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '4070 Orange Street', 'NULL', '391-555-0126', '2011-06-19', '2-5 Miles'], ['28844', '298', 'AW00028844', 'NULL', 'Emma', 'J', 'Rivera', '0', '1979-04-21', 'S', 'NULL', 'F', 'emma34@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '4782 Mt. Whitney Dr.', 'NULL', '535-555-0160', '2011-06-26', '2-5 Miles'], ['28845', '612', 'AW00028845', 'NULL', 'Kaitlyn', 'NULL', 'Simmons', '0', '1974-05-07', 'S', 'NULL', 'F', 'kaitlyn82@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '9245 Escobar', 'NULL', '568-555-0128', '2011-06-06', '2-5 Miles'], ['28846', '307', 'AW00028846', 'NULL', 'Cynthia', 'D', 'Lopez', '0', '1974-05-14', 'S', 'NULL', 'F', 'cynthia22@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '2775 Heather Leaf Ln.', 'NULL', '359-555-0135', '2011-06-30', '0-1 Miles'], ['28847', '311', 'AW00028847', 'NULL', 'Carly', 'G', 'Xu', '0', '1973-11-20', 'S', 'NULL', 'F', 'carly4@adventure-works.com', '70000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2206 Clear View Circle', 'NULL', '270-555-0111', '2011-06-12', '2-5 Miles'], ['28848', '69', 'AW00028848', 'NULL', 'Justin', 'I', 'Butler', '0', '1978-07-22', 'S', 'NULL', 'M', 'justin11@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '1260 Mt. Washington Way', 'NULL', '169-555-0118', '2012-02-11', '2-5 Miles'], ['28849', '641', 'AW00028849', 'NULL', 'Garrett', 'NULL', 'Murphy', '0', '1978-10-19', 'S', 'NULL', 'M', 'garrett19@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9186 West Boyd Rd.', 'NULL', '344-555-0111', '2011-06-17', '2-5 Miles'], ['28850', '49', 'AW00028850', 'NULL', 'Nelson', 'NULL', 'Hernandez', '0', '1981-10-31', 'S', 'NULL', 'M', 'nelson4@adventure-works.com', '60000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '1921 Garcia Ranch Road', 'NULL', '118-555-0171', '2012-02-03', '0-1 Miles'], ['28851', '616', 'AW00028851', 'NULL', 'Miguel', 'NULL', 'Mitchell', '0', '1975-07-27', 'S', 'NULL', 'M', 'miguel37@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '6061 St. Paul Way', 'NULL', '850-555-0128', '2011-06-18', '0-1 Miles'], ['28852', '542', 'AW00028852', 'NULL', 'Mariah', 'R', 'Watson', '0', '1976-03-06', 'M', 'NULL', 'F', 'mariah0@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5458 Birchwood', 'NULL', '741-555-0166', '2011-06-08', '2-5 Miles'], ['28853', '627', 'AW00028853', 'NULL', 'Miguel', 'J', 'Davis', '0', '1976-04-04', 'M', 'NULL', 'M', 'miguel4@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '2798 Castlewood', 'NULL', '566-555-0118', '2011-06-02', '2-5 Miles'], ['28854', '552', 'AW00028854', 'NULL', 'Morgan', 'C', 'Walker', '0', '1981-06-05', 'S', 'NULL', 'F', 'morgan44@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '6563 Likins Avenue', 'NULL', '765-555-0150', '2011-06-24', '0-1 Miles'], ['28855', '348', 'AW00028855', 'NULL', 'Alexandra', 'M', 'Perez', '0', '1973-01-21', 'S', 'NULL', 'F', 'alexandra54@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7489 Briowes Valley Rd.', 'NULL', '651-555-0161', '2013-07-15', '0-1 Miles'], ['28856', '641', 'AW00028856', 'NULL', 'Luke', 'NULL', 'Wang', '0', '1972-12-18', 'M', 'NULL', 'M', 'luke14@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8646 Pleasant Circle', 'NULL', '606-555-0173', '2011-06-12', '2-5 Miles'], ['28857', '315', 'AW00028857', 'NULL', 'Matthew', 'NULL', 'Johnson', '0', '1972-12-14', 'S', 'NULL', 'M', 'matthew7@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6058 Hill Street', 'NULL', '354-555-0182', '2011-06-05', '2-5 Miles'], ['28858', '339', 'AW00028858', 'NULL', 'Aidan', 'E', 'Hughes', '0', '1977-01-15', 'S', 'NULL', 'M', 'aidan12@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '7335 Oak Creek Ct.', 'NULL', '810-555-0179', '2013-06-07', '2-5 Miles'], ['28859', '594', 'AW00028859', 'NULL', 'Micah', 'NULL', 'Cai', '0', '1972-04-07', 'S', 'NULL', 'M', 'micah9@adventure-works.com', '80000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8128 Kane Circle', 'NULL', '462-555-0111', '2011-06-19', '2-5 Miles'], ['28860', '347', 'AW00028860', 'NULL', 'Ian', 'M', 'Anderson', '0', '1977-05-20', 'M', 'NULL', 'M', 'ian10@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '1296 Bishop Court', 'NULL', '443-555-0192', '2013-05-15', '0-1 Miles'], ['28861', '634', 'AW00028861', 'NULL', 'Alexandra', 'NULL', 'Walker', '0', '1982-06-18', 'M', 'NULL', 'F', 'alexandra87@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9691 Morengo Court', 'NULL', '491-555-0193', '2013-10-15', '5-10 Miles'], ['28862', '642', 'AW00028862', 'NULL', 'Catherine', 'E', 'Ramirez', '0', '1981-12-24', 'S', 'NULL', 'F', 'catherine6@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2877 Bounty Way', 'NULL', '763-555-0144', '2013-02-25', '1-2 Miles'], ['28863', '553', 'AW00028863', 'NULL', 'Allison', 'L', 'Bell', '0', '1982-06-25', 'M', 'NULL', 'F', 'allison13@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2151 Twincreek Ct', 'NULL', '540-555-0145', '2014-01-05', '5-10 Miles'], ['28864', '355', 'AW00028864', 'NULL', 'Natalie', 'P', 'Murphy', '0', '1981-10-24', 'S', 'NULL', 'F', 'natalie8@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3586 Everett Court', 'NULL', '183-555-0122', '2013-09-25', '1-2 Miles'], ['28865', '311', 'AW00028865', 'NULL', 'Alex', 'I', 'Reed', '0', '1979-07-05', 'M', 'NULL', 'M', 'alex24@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4817 Clyde St.', 'NULL', '164-555-0151', '2013-06-14', '5-10 Miles'], ['28866', '315', 'AW00028866', 'NULL', 'Aaron', 'B', 'Adams', '0', '1979-08-05', 'S', 'NULL', 'M', 'aaron48@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4116 Stanbridge Ct.', 'NULL', '417-555-0154', '2013-04-28', '5-10 Miles'], ['28867', '338', 'AW00028867', 'NULL', 'Natalie', 'NULL', 'Martinez', '0', '1979-10-19', 'M', 'NULL', 'F', 'natalie85@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6782 First Ave', 'NULL', '475-555-0132', '2013-06-27', '5-10 Miles'], ['28868', '345', 'AW00028868', 'NULL', 'Jason', 'NULL', 'Chen', '0', '1979-08-06', 'M', 'NULL', 'M', 'jason23@adventure-works.com', '50000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '906 Cloudview Dr', 'NULL', '325-555-0145', '2013-12-24', '5-10 Miles'], ['28869', '632', 'AW00028869', 'NULL', 'Isabella', 'J', 'Howard', '0', '1983-09-14', 'S', 'NULL', 'F', 'isabella1@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '673 Noah Court', 'NULL', '125-555-0175', '2011-06-27', '5-10 Miles'], ['28870', '626', 'AW00028870', 'NULL', 'Brian', 'NULL', 'Watson', '0', '1983-03-10', 'M', 'NULL', 'M', 'brian12@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '174 Carlotta', 'NULL', '514-555-0197', '2011-06-25', '5-10 Miles'], ['28871', '618', 'AW00028871', 'NULL', 'Jasmine', 'L', 'West', '0', '1978-03-26', 'S', 'NULL', 'F', 'jasmine37@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '8461 Lodge Drive', 'NULL', '188-555-0118', '2011-06-29', '5-10 Miles'], ['28872', '32', 'AW00028872', 'NULL', 'Kelli', 'A', 'He', '0', '1982-06-12', 'S', 'NULL', 'F', 'kelli19@adventure-works.com', '130000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Management', 'Gestión', 'Direction', '0', '4', '9201 Lexington Rd.', 'NULL', '1 (11) 500 555-0123', '2013-03-11', '10+ Miles'], ['28873', '299', 'AW00028873', 'NULL', 'Roger', 'S', 'Deng', '0', '1958-11-15', 'M', 'NULL', 'M', 'roger28@adventure-works.com', '70000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '780 F Mt Hood Circle', 'NULL', '718-555-0180', '2014-01-21', '10+ Miles'], ['28874', '634', 'AW00028874', 'NULL', 'Alexa', 'F', 'Brooks', '0', '1959-03-11', 'M', 'NULL', 'F', 'alexa1@adventure-works.com', '70000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7680 Lay Brooke Way', 'NULL', '593-555-0198', '2013-05-22', '10+ Miles'], ['28875', '188', 'AW00028875', 'Ms.', 'Denise', 'NULL', 'Smith', '0', '1962-12-04', 'S', 'NULL', 'M', 'denise2@adventure-works.com', '110000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '44, rue Saint-Lazare', 'NULL', '326-555-0100', '2013-12-12', '5-10 Miles'], ['28876', '147', 'AW00028876', 'NULL', 'Austin', 'D', 'Garcia', '0', '1963-04-20', 'M', 'NULL', 'M', 'austin32@adventure-works.com', '130000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Kalkweg 425', 'NULL', '1 (11) 500 555-0149', '2013-06-12', '0-1 Miles'], ['28877', '246', 'AW00028877', 'NULL', 'Joe', 'L', 'Vance', '0', '1963-05-24', 'S', 'NULL', 'M', 'joe8@adventure-works.com', '150000.00', '2', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '4', '2318 Pleasant Circle', 'NULL', '1 (11) 500 555-0119', '2013-02-28', '5-10 Miles'], ['28878', '263', 'AW00028878', 'NULL', 'Alvin', 'R', 'Guo', '0', '1962-10-06', 'M', 'NULL', 'M', 'alvin16@adventure-works.com', '160000.00', '2', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '2139 Birdwatch Ave.', 'NULL', '1 (11) 500 555-0197', '2013-10-21', '0-1 Miles'], ['28879', '272', 'AW00028879', 'NULL', 'Edwin', 'E', 'Xie', '0', '1963-05-31', 'S', 'NULL', 'M', 'edwin25@adventure-works.com', '170000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '5349 Keller Ridge Dr.', 'NULL', '1 (11) 500 555-0187', '2013-07-13', '5-10 Miles'], ['28880', '275', 'AW00028880', 'NULL', 'Felicia', 'C', 'Moyer', '0', '1963-02-25', 'S', 'NULL', 'F', 'felicia9@adventure-works.com', '170000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '4637 Lakeside Court', 'NULL', '1 (11) 500 555-0116', '2013-04-08', '0-1 Miles'], ['28881', '197', 'AW00028881', 'NULL', 'Allen', 'NULL', 'Kapoor', '0', '1961-10-30', 'M', 'NULL', 'M', 'allen1@adventure-works.com', '110000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '44, rue Saint Denis', 'NULL', '1 (11) 500 555-0196', '2013-06-13', '5-10 Miles'], ['28882', '223', 'AW00028882', 'NULL', 'Tasha', 'E', 'Shen', '0', '1962-01-31', 'M', 'NULL', 'F', 'tasha2@adventure-works.com', '110000.00', '2', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '9, rue des Vendangeurs', 'NULL', '1 (11) 500 555-0119', '2013-05-12', '5-10 Miles'], ['28883', '229', 'AW00028883', 'NULL', 'Eddie', 'NULL', 'Romero', '0', '1962-03-11', 'M', 'NULL', 'M', 'eddie9@adventure-works.com', '120000.00', '3', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '3294 Buena Vista', 'NULL', '1 (11) 500 555-0119', '2013-10-13', '5-10 Miles'], ['28884', '278', 'AW00028884', 'NULL', 'Sheila', 'NULL', 'Suarez', '0', '1967-09-30', 'S', 'NULL', 'F', 'sheila17@adventure-works.com', '170000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '4', '4576 Almond Street', 'NULL', '1 (11) 500 555-0176', '2013-12-18', '0-1 Miles'], ['28885', '226', 'AW00028885', 'NULL', 'Kelvin', 'S', 'Raji', '0', '1972-03-03', 'S', 'NULL', 'M', 'kelvin18@adventure-works.com', '90000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1931, boulevard Beau Marchais', 'NULL', '1 (11) 500 555-0143', '2012-07-24', '10+ Miles'], ['28886', '194', 'AW00028886', 'NULL', 'Franklin', 'S', 'Jai', '0', '1961-01-10', 'M', 'NULL', 'M', 'franklin29@adventure-works.com', '100000.00', '2', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '4', '409, rue Saint Denis', 'NULL', '1 (11) 500 555-0114', '2013-12-03', '10+ Miles'], ['28887', '147', 'AW00028887', 'NULL', 'Casey', 'O', 'Serrano', '0', '1960-11-10', 'S', 'NULL', 'M', 'casey40@adventure-works.com', '120000.00', '2', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '4', 'Hansaallee 500', 'NULL', '1 (11) 500 555-0177', '2013-08-29', '5-10 Miles'], ['28888', '210', 'AW00028888', 'NULL', 'Casey', 'C', 'Lal', '0', '1949-11-18', 'M', 'NULL', 'F', 'casey9@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8011, rue de Cambrai', 'NULL', '1 (11) 500 555-0190', '2013-12-18', '10+ Miles'], ['28889', '163', 'AW00028889', 'NULL', 'Alison', 'NULL', 'Beck', '0', '1956-10-09', 'M', 'NULL', 'F', 'alison21@adventure-works.com', '80000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', 'Am Kreuz 405', 'NULL', '1 (11) 500 555-0182', '2013-08-15', '2-5 Miles'], ['28890', '170', 'AW00028890', 'NULL', 'Jaclyn', 'NULL', 'Ma', '0', '1950-10-13', 'M', 'NULL', 'F', 'jaclyn17@adventure-works.com', '90000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', 'Carlsplatz 4650', 'Verkaufsabteilung', '1 (11) 500 555-0184', '2013-07-06', '10+ Miles'], ['28891', '261', 'AW00028891', 'NULL', 'Jasmine', 'NULL', 'Smith', '0', '1951-05-01', 'S', 'NULL', 'F', 'jasmine0@adventure-works.com', '130000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '9645 Pimlico Drive', 'NULL', '1 (11) 500 555-0113', '2013-08-21', '0-1 Miles'], ['28892', '265', 'AW00028892', 'NULL', 'Marissa', 'A', 'Bryant', '0', '1950-12-14', 'S', 'NULL', 'F', 'marissa15@adventure-works.com', '130000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '545 Los Gatos Court', 'NULL', '1 (11) 500 555-0115', '2013-08-14', '5-10 Miles'], ['28893', '207', 'AW00028893', 'NULL', 'Jessie', 'E', 'Gutierrez', '0', '1951-12-10', 'M', 'NULL', 'F', 'jessie30@adventure-works.com', '80000.00', '5', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '6166, rue Lamarck', 'NULL', '1 (11) 500 555-0199', '2013-05-05', '10+ Miles'], ['28894', '206', 'AW00028894', 'NULL', 'Maurice', 'C', 'Xu', '0', '1952-01-31', 'M', 'NULL', 'M', 'maurice5@adventure-works.com', '100000.00', '2', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '11, quai de l´ Iton', 'NULL', '1 (11) 500 555-0119', '2013-11-25', '10+ Miles'], ['28895', '159', 'AW00028895', 'NULL', 'Mitchell', 'E', 'Luo', '0', '1951-11-15', 'S', 'NULL', 'M', 'mitchell5@adventure-works.com', '110000.00', '3', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', 'Krönerweg 9249', 'NULL', '1 (11) 500 555-0138', '2014-01-19', '10+ Miles'], ['28896', '237', 'AW00028896', 'NULL', 'Edward', 'NULL', 'Davis', '0', '1959-05-12', 'M', 'NULL', 'M', 'edward27@adventure-works.com', '70000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '8594 Veracruz', 'NULL', '1 (11) 500 555-0151', '2013-03-19', '10+ Miles'], ['28897', '209', 'AW00028897', 'NULL', 'Jennifer', 'NULL', 'Ross', '0', '1958-09-15', 'S', 'NULL', 'F', 'jennifer79@adventure-works.com', '80000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '201bis, boulevard Saint Germain', 'NULL', '1 (11) 500 555-0189', '2014-01-06', '2-5 Miles'], ['28898', '231', 'AW00028898', 'NULL', 'Melanie', 'NULL', 'Patterson', '0', '1959-12-24', 'S', 'NULL', 'F', 'melanie26@adventure-works.com', '130000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '797 Seascape Circle', 'NULL', '1 (11) 500 555-0155', '2013-03-06', '0-1 Miles'], ['28899', '250', 'AW00028899', 'NULL', 'Alejandro', 'R', 'Anand', '0', '1960-03-18', 'M', 'NULL', 'M', 'alejandro47@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '2733 Del Mar Ave.', 'NULL', '1 (11) 500 555-0192', '2013-12-25', '0-1 Miles'], ['28900', '147', 'AW00028900', 'NULL', 'Jasmine', 'L', 'Price', '0', '1958-12-03', 'S', 'NULL', 'F', 'jasmine41@adventure-works.com', '110000.00', '2', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', 'Heiderplatz 948', 'Verkaufsabteilung', '1 (11) 500 555-0159', '2013-05-29', '10+ Miles'], ['28901', '159', 'AW00028901', 'NULL', 'Martha', 'J', 'Hee', '0', '1958-07-25', 'M', 'NULL', 'F', 'martha18@adventure-works.com', '120000.00', '2', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', 'Auf Der Steige 6000', 'NULL', '1 (11) 500 555-0112', '2013-07-21', '10+ Miles'], ['28902', '172', 'AW00028902', 'NULL', 'Suzanne', 'NULL', 'She', '0', '1959-05-16', 'S', 'NULL', 'F', 'suzanne24@adventure-works.com', '120000.00', '2', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', 'Knaackstr 756', 'NULL', '1 (11) 500 555-0113', '2013-07-28', '10+ Miles'], ['28903', '247', 'AW00028903', 'NULL', 'Kara', 'NULL', 'Luo', '0', '1964-10-21', 'M', 'NULL', 'F', 'kara6@adventure-works.com', '130000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4414 Marion Ct.', 'NULL', '1 (11) 500 555-0199', '2013-02-11', '0-1 Miles'], ['28904', '186', 'AW00028904', 'NULL', 'Ian', 'NULL', 'Flores', '0', '1956-10-07', 'M', 'NULL', 'M', 'ian53@adventure-works.com', '70000.00', '5', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '5402, rue Lauriston', 'NULL', '1 (11) 500 555-0123', '2012-07-07', '2-5 Miles'], ['28905', '187', 'AW00028905', 'NULL', 'Katherine', 'L', 'Bailey', '0', '1956-08-18', 'M', 'NULL', 'F', 'katherine10@adventure-works.com', '80000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '234, quai Paul Doumer', 'NULL', '1 (11) 500 555-0193', '2013-04-25', '10+ Miles'], ['28906', '223', 'AW00028906', 'NULL', 'Steve', 'T', 'Xu', '0', '1962-09-23', 'M', 'NULL', 'M', 'steve15@adventure-works.com', '80000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1211, rue des Ecoles', 'NULL', '1 (11) 500 555-0115', '2013-10-14', '10+ Miles'], ['28907', '267', 'AW00028907', 'NULL', 'Blake', 'NULL', 'Jenkins', '0', '1956-08-18', 'M', 'NULL', 'M', 'blake54@adventure-works.com', '160000.00', '4', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '1156 Dublin Court', 'NULL', '1 (11) 500 555-0111', '2013-09-22', '10+ Miles'], ['28908', '276', 'AW00028908', 'NULL', 'Dominique', 'NULL', 'Sai', '0', '1956-09-10', 'S', 'NULL', 'F', 'dominique5@adventure-works.com', '170000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '4', '5495 Glendale Circle', 'NULL', '1 (11) 500 555-0183', '2013-02-01', '10+ Miles'], ['28909', '211', 'AW00028909', 'NULL', 'Tommy', 'J', 'Champion', '0', '1961-01-01', 'M', 'NULL', 'M', 'tommy11@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '47, rue de Linois', 'NULL', '1 (11) 500 555-0130', '2013-08-23', '10+ Miles'], ['28910', '196', 'AW00028910', 'NULL', 'Melody', 'C', 'Martin', '0', '1956-02-11', 'S', 'NULL', 'F', 'melody0@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '88, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0176', '2013-09-19', '10+ Miles'], ['28911', '179', 'AW00028911', 'NULL', 'Levi', 'W', 'Rodriguez', '0', '1955-09-17', 'M', 'NULL', 'M', 'levi17@adventure-works.com', '90000.00', '4', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '54, avenue des Champs-Elysées', 'NULL', '1 (11) 500 555-0157', '2013-08-04', '10+ Miles'], ['28912', '213', 'AW00028912', 'NULL', 'Alejandro', 'E', 'Zhu', '0', '1956-03-06', 'M', 'NULL', 'M', 'alejandro17@adventure-works.com', '100000.00', '3', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '4', '12, route de Marseille', 'NULL', '1 (11) 500 555-0164', '2013-10-02', '10+ Miles'], ['28913', '261', 'AW00028913', 'NULL', 'Krista', 'NULL', 'Diaz', '0', '1956-02-21', 'S', 'NULL', 'F', 'krista3@adventure-works.com', '150000.00', '4', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '2415 Angi Lane', 'NULL', '1 (11) 500 555-0119', '2013-10-22', '10+ Miles'], ['28914', '275', 'AW00028914', 'NULL', 'Alicia', 'M', 'Rai', '0', '1956-05-19', 'M', 'NULL', 'F', 'alicia14@adventure-works.com', '170000.00', '0', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '0', '4', '8744 Black Walnut', 'NULL', '1 (11) 500 555-0162', '2013-05-10', '10+ Miles'], ['28915', '221', 'AW00028915', 'NULL', 'Johnny', 'NULL', 'Yuan', '0', '1960-05-23', 'S', 'NULL', 'M', 'johnny7@adventure-works.com', '80000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '18, boulevard d´Albi', 'NULL', '1 (11) 500 555-0145', '2013-06-14', '10+ Miles'], ['28916', '253', 'AW00028916', 'NULL', 'Kathryn', 'K', 'Shan', '0', '1955-02-13', 'M', 'NULL', 'F', 'kathryn9@adventure-works.com', '160000.00', '3', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Management', 'Gestión', 'Direction', '1', '4', '865 Oak Rd.', 'NULL', '1 (11) 500 555-0165', '2013-04-28', '0-1 Miles'], ['28917', '201', 'AW00028917', 'NULL', 'Sandra', 'B', 'Zhou', '0', '1953-08-02', 'S', 'NULL', 'F', 'sandra15@adventure-works.com', '80000.00', '5', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '82, cours Mirabeau', 'NULL', '1 (11) 500 555-0184', '2014-01-01', '5-10 Miles'], ['28918', '249', 'AW00028918', 'NULL', 'Gina', 'NULL', 'Blanco', '0', '1953-10-05', 'M', 'NULL', 'F', 'gina16@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '7437 Jason Ct', 'NULL', '1 (11) 500 555-0136', '2013-02-22', '10+ Miles'], ['28919', '189', 'AW00028919', 'NULL', 'Krystal', 'F', 'Wagner', '0', '1952-12-02', 'M', 'NULL', 'F', 'krystal1@adventure-works.com', '90000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2802, boulevard Beau Marchais', 'NULL', '1 (11) 500 555-0150', '2013-03-02', '10+ Miles'], ['28920', '176', 'AW00028920', 'NULL', 'Renée', 'R', 'Alvarez', '0', '1953-03-20', 'S', 'NULL', 'F', 'renée4@adventure-works.com', '120000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', 'Postfach 66 16 16', 'NULL', '1 (11) 500 555-0119', '2013-11-07', '10+ Miles'], ['28921', '252', 'AW00028921', 'NULL', 'Corey', 'NULL', 'Deng', '0', '1969-05-09', 'M', 'NULL', 'M', 'corey1@adventure-works.com', '120000.00', '5', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '2367 Vancouver Way', 'NULL', '1 (11) 500 555-0118', '2013-03-22', '10+ Miles'], ['28922', '31', 'AW00028922', 'NULL', 'Brent', 'NULL', 'Ye', '0', '1981-05-12', 'M', 'NULL', 'M', 'brent9@adventure-works.com', '60000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '4691 Encinal Place', 'NULL', '1 (11) 500 555-0136', '2013-08-21', '10+ Miles'], ['28923', '9', 'AW00028923', 'NULL', 'Roberto', 'NULL', 'Hernandez', '0', '1981-02-03', 'S', 'NULL', 'M', 'roberto3@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '8801 Lee Lane', 'NULL', '1 (11) 500 555-0117', '2013-03-15', '10+ Miles'], ['28924', '32', 'AW00028924', 'NULL', 'Sydney', 'NULL', 'Washington', '0', '1981-12-25', 'S', 'NULL', 'F', 'sydney35@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '1153 Loma Linda', 'NULL', '1 (11) 500 555-0116', '2013-12-22', '10+ Miles'], ['28925', '5', 'AW00028925', 'NULL', 'Warren', 'H', 'Lu', '0', '1981-10-01', 'M', 'NULL', 'M', 'warren27@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '8979 Adams Dr.', 'NULL', '1 (11) 500 555-0135', '2013-11-16', '10+ Miles'], ['28926', '27', 'AW00028926', 'NULL', 'Danny', 'M', 'Schmidt', '0', '1981-11-12', 'S', 'NULL', 'M', 'danny21@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '1192 Tosca Way', 'NULL', '1 (11) 500 555-0174', '2013-11-13', '10+ Miles'], ['28927', '28', 'AW00028927', 'NULL', 'Jermaine', 'S', 'Rana', '0', '1981-09-16', 'S', 'NULL', 'M', 'jermaine9@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '3217 Elm St', 'NULL', '1 (11) 500 555-0138', '2013-03-05', '10+ Miles'], ['28928', '15', 'AW00028928', 'NULL', 'Margaret', 'NULL', 'Wu', '0', '1981-12-17', 'S', 'NULL', 'F', 'margaret13@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '6559 Via Rerrari', 'NULL', '1 (11) 500 555-0182', '2013-03-29', '10+ Miles'], ['28929', '23', 'AW00028929', 'NULL', 'Marie', 'NULL', 'Fernandez', '0', '1981-02-08', 'S', 'NULL', 'F', 'marie17@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '1820 Adobe St', 'NULL', '1 (11) 500 555-0112', '2013-10-11', '10+ Miles'], ['28930', '18', 'AW00028930', 'NULL', 'Jarrod', 'NULL', 'Kapoor', '0', '1980-11-23', 'M', 'NULL', 'M', 'jarrod1@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '5966 Krueger Dr.', 'NULL', '1 (11) 500 555-0144', '2013-12-10', '10+ Miles'], ['28931', '7', 'AW00028931', 'NULL', 'Darren', 'W', 'Jiménez', '0', '1981-05-05', 'M', 'NULL', 'M', 'darren27@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '9161 Napa St.', 'NULL', '1 (11) 500 555-0159', '2013-06-17', '10+ Miles'], ['28932', '8', 'AW00028932', 'NULL', 'Marshall', 'NULL', 'Ashe', '0', '1985-08-23', 'M', 'NULL', 'M', 'marshall42@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '8200 Schenone Court', 'NULL', '1 (11) 500 555-0197', '2013-12-12', '10+ Miles'], ['28933', '38', 'AW00028933', 'NULL', 'Colleen', 'NULL', 'Rai', '0', '1980-05-09', 'M', 'NULL', 'F', 'colleen40@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '6957 Corte Poquito', 'NULL', '1 (11) 500 555-0129', '2013-10-22', '10+ Miles'], ['28934', '4', 'AW00028934', 'NULL', 'Ricardo', 'NULL', 'Nara', '0', '1980-04-02', 'M', 'NULL', 'M', 'ricardo16@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '1942 Rock Island Drive', 'NULL', '1 (11) 500 555-0165', '2013-08-17', '10+ Miles'], ['28935', '25', 'AW00028935', 'NULL', 'Eddie', 'NULL', 'Johnsen', '0', '1980-11-29', 'S', 'NULL', 'M', 'eddie6@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '7538 Black Pine Lane', 'NULL', '1 (11) 500 555-0138', '2013-03-18', '10+ Miles'], ['28936', '21', 'AW00028936', 'NULL', 'Karla', 'NULL', 'Raje', '0', '1980-06-20', 'M', 'NULL', 'F', 'karla15@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '6060 Sanford Street', 'NULL', '1 (11) 500 555-0148', '2013-03-13', '10+ Miles'], ['28937', '20', 'AW00028937', 'NULL', 'Tommy', 'B', 'Nath', '0', '1984-04-11', 'S', 'NULL', 'M', 'tommy15@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '6076 Citrus Ave', 'NULL', '1 (11) 500 555-0111', '2013-06-22', '10+ Miles'], ['28938', '39', 'AW00028938', 'NULL', 'Sarah', 'NULL', 'Moore', '0', '1980-04-02', 'M', 'NULL', 'F', 'sarah10@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '8494 Rollingwood Dr.', 'NULL', '1 (11) 500 555-0154', '2013-11-03', '10+ Miles'], ['28939', '35', 'AW00028939', 'NULL', 'Ronald', 'NULL', 'Fernandez', '0', '1980-04-14', 'M', 'NULL', 'M', 'ronald18@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '3435 San Simeon', 'NULL', '1 (11) 500 555-0122', '2013-03-03', '10+ Miles'], ['28940', '32', 'AW00028940', 'NULL', 'Kristine', 'NULL', 'Serrano', '0', '1980-02-20', 'M', 'NULL', 'F', 'kristine17@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '3365 Atherton Circle', '# 13', '1 (11) 500 555-0178', '2013-03-25', '10+ Miles'], ['28941', '4', 'AW00028941', 'NULL', 'Deanna', 'NULL', 'Moreno', '0', '1979-09-30', 'S', 'NULL', 'F', 'deanna32@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '7897 Standing Grove Dr.', 'NULL', '1 (11) 500 555-0129', '2013-10-22', '10+ Miles'], ['28942', '2', 'AW00028942', 'NULL', 'Frederick', 'F', 'Raman', '0', '1978-08-27', 'M', 'NULL', 'M', 'frederick11@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '6176 Crow Street', 'NULL', '1 (11) 500 555-0139', '2013-04-16', '10+ Miles'], ['28943', '27', 'AW00028943', 'NULL', 'Arthur', 'L', 'Martin', '0', '1978-07-15', 'S', 'NULL', 'M', 'arthur23@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '1612 Geary Ct.', 'NULL', '1 (11) 500 555-0176', '2013-07-01', '10+ Miles'], ['28944', '13', 'AW00028944', 'NULL', 'Whitney', 'D', 'Malhotra', '0', '1984-05-08', 'M', 'NULL', 'F', 'whitney5@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '25 Glenellen Court', 'NULL', '1 (11) 500 555-0155', '2013-08-21', '10+ Miles'], ['28945', '29', 'AW00028945', 'NULL', 'Rafael', 'W', 'Lal', '0', '1977-12-01', 'M', 'NULL', 'M', 'rafael32@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '406 Chinquapin Ct.', 'NULL', '1 (11) 500 555-0140', '2013-04-20', '10+ Miles'], ['28946', '25', 'AW00028946', 'NULL', 'John', 'C', 'Anderson', '0', '1983-09-22', 'S', 'NULL', 'M', 'john47@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '2513 Buskirk Avenue', 'NULL', '1 (11) 500 555-0187', '2013-12-31', '10+ Miles'], ['28947', '21', 'AW00028947', 'NULL', 'Grant', 'A', 'Nath', '0', '1978-10-18', 'M', 'NULL', 'M', 'grant20@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '573 Willow Creek Ct.', 'NULL', '1 (11) 500 555-0196', '2013-06-08', '10+ Miles'], ['28948', '21', 'AW00028948', 'NULL', 'Valerie', 'C', 'Ye', '0', '1984-08-02', 'S', 'NULL', 'F', 'valerie11@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '4', '2887 Pinecrest Court', 'NULL', '1 (11) 500 555-0169', '2013-03-01', '10+ Miles'], ['28949', '6', 'AW00028949', 'NULL', 'Lance', 'S', 'Ramos', '0', '1978-10-21', 'S', 'NULL', 'M', 'lance17@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '2064 Pleasant Circle', 'NULL', '1 (11) 500 555-0173', '2013-03-15', '0-1 Miles'], ['28950', '5', 'AW00028950', 'NULL', 'Carl', 'C', 'Lal', '0', '1983-11-23', 'S', 'NULL', 'M', 'carl8@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '6509 California Street', 'NULL', '1 (11) 500 555-0125', '2013-04-16', '10+ Miles'], ['28951', '27', 'AW00028951', 'NULL', 'Monica', 'J', 'Rodriguez', '0', '1977-09-22', 'M', 'NULL', 'F', 'monica19@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '6681 Pestana Way', 'NULL', '1 (11) 500 555-0113', '2013-07-15', '10+ Miles'], ['28952', '14', 'AW00028952', 'NULL', 'Arturo', 'NULL', 'Huang', '0', '1983-09-14', 'S', 'NULL', 'M', 'arturo6@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '2', '8713 MapleView Drive', 'NULL', '1 (11) 500 555-0183', '2013-03-26', '10+ Miles'], ['28953', '26', 'AW00028953', 'NULL', 'Trisha', 'A', 'Gao', '0', '1983-03-16', 'S', 'NULL', 'F', 'trisha9@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '2', '6580 Poor Ridge Court', 'NULL', '1 (11) 500 555-0122', '2013-03-23', '10+ Miles'], ['28954', '26', 'AW00028954', 'NULL', 'Omar', 'S', 'Hu', '0', '1978-06-21', 'M', 'NULL', 'M', 'omar19@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '3', '3479 Broadmoor Dr.', 'NULL', '1 (11) 500 555-0151', '2013-04-19', '10+ Miles'], ['28955', '32', 'AW00028955', 'NULL', 'Emmanuel', 'NULL', 'Fernandez', '0', '1977-04-17', 'S', 'NULL', 'M', 'emmanuel14@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '4', '9741 Limeridge Drive', 'NULL', '1 (11) 500 555-0142', '2013-12-28', '10+ Miles'], ['28956', '37', 'AW00028956', 'NULL', 'Colleen', 'NULL', 'Xu', '0', '1976-10-19', 'S', 'NULL', 'F', 'colleen29@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '4912 Mellowood Street', 'NULL', '1 (11) 500 555-0153', '2013-07-17', '10+ Miles'], ['28957', '30', 'AW00028957', 'NULL', 'Kate', 'R', 'Xu', '0', '1983-02-07', 'S', 'NULL', 'F', 'kate4@adventure-works.com', '120000.00', '0', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '1', '4', '8859 Poncho St.', 'NULL', '1 (11) 500 555-0179', '2013-04-29', '10+ Miles'], ['28958', '9', 'AW00028958', 'NULL', 'Randy', 'E', 'Liang', '0', '1978-06-01', 'M', 'NULL', 'M', 'randy19@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '8646 Olivera', 'NULL', '1 (11) 500 555-0112', '2013-12-03', '10+ Miles'], ['28959', '22', 'AW00028959', 'NULL', 'Jimmy', 'S', 'Ashe', '0', '1977-07-14', 'M', 'NULL', 'M', 'jimmy7@adventure-works.com', '130000.00', '4', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '1', '4', '3382 Arrowwood Circle', 'NULL', '1 (11) 500 555-0189', '2013-04-23', '0-1 Miles'], ['28960', '24', 'AW00028960', 'NULL', 'Jacquelyn', 'NULL', 'Vazquez', '0', '1977-09-19', 'M', 'NULL', 'F', 'jacquelyn15@adventure-works.com', '160000.00', '3', '5', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Professional', 'Profesional', 'Cadre', '0', '4', '4024 Montana', '# 113', '1 (11) 500 555-0199', '2014-01-06', '10+ Miles'], ['28961', '13', 'AW00028961', 'NULL', 'Mathew', 'E', 'Ramos', '0', '1976-08-20', 'S', 'NULL', 'M', 'mathew13@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '9783 Amaranth Way', 'NULL', '1 (11) 500 555-0111', '2013-04-12', '10+ Miles'], ['28962', '27', 'AW00028962', 'NULL', 'Stanley', 'M', 'Lopez', '0', '1975-12-31', 'S', 'NULL', 'M', 'stanley18@adventure-works.com', '100000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '135 Grant Street', 'NULL', '1 (11) 500 555-0155', '2013-04-20', '10+ Miles'], ['28963', '8', 'AW00028963', 'NULL', 'Ross', 'NULL', 'Prasad', '0', '1976-03-08', 'S', 'NULL', 'M', 'ross9@adventure-works.com', '110000.00', '0', '5', 'High School', 'Educación secundaria', 'Bac + 2', 'Management', 'Gestión', 'Direction', '0', '4', '7487 Mariposa Ct.', 'NULL', '1 (11) 500 555-0112', '2013-04-21', '10+ Miles'], ['28964', '71', 'AW00028964', 'NULL', 'Trevor', 'J', 'Foster', '0', '1960-06-18', 'S', 'NULL', 'M', 'trevor16@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '5007 Castle Rock Rd.', 'NULL', '582-555-0192', '2013-04-24', '5-10 Miles'], ['28965', '547', 'AW00028965', 'NULL', 'Trinity', 'S', 'Morris', '0', '1955-01-31', 'M', 'NULL', 'F', 'trinity15@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1807 West Cliff Pl.', 'NULL', '148-555-0119', '2013-11-05', '5-10 Miles'], ['28966', '311', 'AW00028966', 'NULL', 'Martha', 'M', 'Li', '0', '1960-02-15', 'S', 'NULL', 'F', 'martha3@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '535 La Salle Street', 'NULL', '144-555-0189', '2011-06-14', '1-2 Miles'], ['28967', '298', 'AW00028967', 'NULL', 'Jessica', 'NULL', 'Morris', '0', '1953-07-31', 'S', 'NULL', 'F', 'jessica2@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '2530 C Del Rio Circle', 'NULL', '478-555-0152', '2013-02-20', '1-2 Miles'], ['28968', '355', 'AW00028968', 'NULL', 'Marcus', 'W', 'Morgan', '0', '1953-08-23', 'S', 'NULL', 'M', 'marcus89@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4419 Euclid Ave.', 'NULL', '523-555-0139', '2013-08-18', '5-10 Miles'], ['28969', '644', 'AW00028969', 'NULL', 'Eduardo', 'S', 'Flores', '0', '1953-11-05', 'M', 'NULL', 'M', 'eduardo57@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '1210 St. Patricia', 'NULL', '576-555-0177', '2013-05-12', '5-10 Miles'], ['28970', '546', 'AW00028970', 'NULL', 'Danielle', 'L', 'Peterson', '0', '1943-12-23', 'S', 'NULL', 'F', 'danielle7@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3325 Taylor', 'NULL', '188-555-0114', '2013-11-05', '10+ Miles'], ['28971', '618', 'AW00028971', 'NULL', 'Jason', 'NULL', 'Shan', '0', '1944-12-17', 'S', 'NULL', 'M', 'jason28@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '5004 Santa Rita Dr', 'NULL', '164-555-0140', '2013-02-06', '1-2 Miles'], ['28972', '611', 'AW00028972', 'NULL', 'Taylor', 'L', 'Bennett', '0', '1945-05-09', 'S', 'NULL', 'F', 'taylor26@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2038 Encino Drive', 'NULL', '966-555-0116', '2013-08-25', '10+ Miles'], ['28973', '339', 'AW00028973', 'NULL', 'Bryan', 'NULL', 'Cooper', '0', '1945-05-18', 'S', 'NULL', 'M', 'bryan10@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '9993 Mt. Hood Circle', 'NULL', '332-555-0170', '2013-10-28', '1-2 Miles'], ['28974', '343', 'AW00028974', 'NULL', 'Kelly', 'M', 'Hayes', '0', '1945-04-05', 'S', 'NULL', 'F', 'kelly27@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '6260 Amazing Ct', 'NULL', '641-555-0175', '2013-10-05', '1-2 Miles'], ['28975', '302', 'AW00028975', 'NULL', 'Walter', 'NULL', 'Gill', '0', '1951-07-03', 'M', 'NULL', 'M', 'walter7@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3861 Las Lomas Way', 'NULL', '811-555-0195', '2013-11-06', '10+ Miles'], ['28976', '53', 'AW00028976', 'NULL', 'Christina', 'NULL', 'Peterson', '0', '1945-08-08', 'S', 'NULL', 'F', 'christina3@adventure-works.com', '60000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '9519 Mountain View Drive', 'NULL', '773-555-0196', '2013-05-14', '1-2 Miles'], ['28977', '352', 'AW00028977', 'NULL', 'Carlos', 'NULL', 'Nelson', '0', '1946-01-22', 'S', 'NULL', 'M', 'carlos37@adventure-works.com', '60000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9466 Morning Glory Dr.', 'NULL', '550-555-0149', '2013-05-30', '10+ Miles'], ['28978', '300', 'AW00028978', 'NULL', 'Alexandria', 'T', 'Watson', '0', '1946-03-23', 'M', 'NULL', 'F', 'alexandria24@adventure-works.com', '60000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6486 Hemlock Drive', 'NULL', '181-555-0162', '2013-07-10', '10+ Miles'], ['28979', '548', 'AW00028979', 'NULL', 'Matthew', 'A', 'Williams', '0', '1945-12-22', 'M', 'NULL', 'M', 'matthew8@adventure-works.com', '60000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2681 Eagle Peak', 'NULL', '524-555-0161', '2013-03-24', '10+ Miles'], ['28980', '623', 'AW00028980', 'NULL', 'Alyssa', 'C', 'Watson', '0', '1945-08-12', 'S', 'NULL', 'F', 'alyssa43@adventure-works.com', '60000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '9665 Pamploma Ct.', 'NULL', '926-555-0171', '2013-05-21', '1-2 Miles'], ['28981', '355', 'AW00028981', 'NULL', 'Luke', 'R', 'Jai', '0', '1945-09-14', 'S', 'NULL', 'M', 'luke21@adventure-works.com', '60000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '3774 Margo Drive', 'NULL', '569-555-0116', '2013-03-18', '1-2 Miles'], ['28982', '336', 'AW00028982', 'NULL', 'Sydney', 'NULL', 'Watson', '0', '1947-06-22', 'S', 'NULL', 'F', 'sydney19@adventure-works.com', '60000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '5207 Minute Dr.', 'NULL', '144-555-0165', '2013-05-04', '1-2 Miles'], ['28983', '298', 'AW00028983', 'NULL', 'Sean', 'NULL', 'Lopez', '0', '1952-07-24', 'S', 'NULL', 'M', 'sean45@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '660 West M Street', 'NULL', '824-555-0128', '2013-08-11', '1-2 Miles'], ['28984', '631', 'AW00028984', 'NULL', 'Katherine', 'NULL', 'Cox', '0', '1947-06-10', 'M', 'NULL', 'F', 'katherine14@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9264 Slow Creek Road', 'NULL', '553-555-0199', '2013-07-23', '10+ Miles'], ['28985', '383', 'AW00028985', 'NULL', 'Andrew', 'B', 'Taylor', '0', '1947-08-03', 'S', 'NULL', 'M', 'andrew18@adventure-works.com', '50000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '9863 Ridge Place', 'NULL', '601-555-0139', '2013-03-23', '1-2 Miles'], ['28986', '71', 'AW00028986', 'NULL', 'Caleb', 'J', 'King', '0', '1949-01-21', 'M', 'NULL', 'M', 'caleb47@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '5701 El Dorado', 'NULL', '692-555-0115', '2013-08-01', '1-2 Miles'], ['28987', '385', 'AW00028987', 'NULL', 'Jessica', 'P', 'Harris', '0', '1948-12-03', 'S', 'NULL', 'F', 'jessica61@adventure-works.com', '60000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '3136 Mcnutt Ave.', 'NULL', '558-555-0181', '2014-01-21', '10+ Miles'], ['28988', '310', 'AW00028988', 'NULL', 'Harold', 'C', 'Perez', '0', '1949-08-21', 'S', 'NULL', 'M', 'harold18@adventure-works.com', '30000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '5592 Byers Rd.', 'NULL', '104-555-0162', '2011-06-01', '10+ Miles'], ['28989', '545', 'AW00028989', 'NULL', 'Angela', 'NULL', 'Cox', '0', '1949-07-16', 'S', 'NULL', 'F', 'angela36@adventure-works.com', '30000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '8829 Concord', 'NULL', '253-555-0185', '2011-06-21', '10+ Miles'], ['28990', '311', 'AW00028990', 'NULL', 'Ann', 'E', 'Raman', '0', '1955-03-03', 'S', 'NULL', 'F', 'ann17@adventure-works.com', '30000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '874 Olivera Road', 'NULL', '592-555-0112', '2011-06-19', '10+ Miles'], ['28991', '536', 'AW00028991', 'NULL', 'Timothy', 'E', 'Ward', '0', '1952-07-19', 'S', 'NULL', 'M', 'timothy13@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4322 Conifer Court', 'NULL', '668-555-0141', '2013-03-29', '10+ Miles'], ['28992', '49', 'AW00028992', 'NULL', 'Darren', 'NULL', 'Fernandez', '0', '1952-07-06', 'S', 'NULL', 'M', 'darren17@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '1925 Pacheco Street', 'NULL', '198-555-0189', '2013-07-19', '1-2 Miles'], ['28993', '545', 'AW00028993', 'NULL', 'Destiny', 'NULL', 'Perry', '0', '1951-05-12', 'M', 'NULL', 'F', 'destiny56@adventure-works.com', '30000.00', '5', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '3', '3414 Jason Court', 'NULL', '291-555-0190', '2011-06-18', '1-2 Miles'], ['28994', '334', 'AW00028994', 'NULL', 'Noah', 'E', 'Hayes', '0', '1951-08-31', 'S', 'NULL', 'M', 'noah20@adventure-works.com', '40000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '4', '3680 Wilson Lane', 'NULL', '115-555-0193', '2013-07-27', '2-5 Miles'], ['28995', '614', 'AW00028995', 'NULL', 'Alexandra', 'E', 'Wright', '0', '1952-03-19', 'S', 'NULL', 'F', 'alexandra61@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '4152 Prestwick Drive', 'NULL', '319-555-0160', '2013-06-01', '10+ Miles'], ['28996', '49', 'AW00028996', 'NULL', 'Rachel', 'S', 'Rivera', '0', '1969-08-01', 'M', 'NULL', 'F', 'rachel37@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '1', '8762 Kiska Court', 'NULL', '421-555-0144', '2013-08-16', '2-5 Miles'], ['28997', '307', 'AW00028997', 'NULL', 'Hector', 'NULL', 'Carlson', '0', '1953-05-26', 'S', 'NULL', 'M', 'hector16@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '1', '1667 Warren Street', 'NULL', '192-555-0128', '2011-06-03', '2-5 Miles'], ['28998', '311', 'AW00028998', 'NULL', 'Kristina', 'NULL', 'Rodriguez', '0', '1952-09-09', 'M', 'NULL', 'F', 'kristina19@adventure-works.com', '40000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '491 Heights Avenue', 'NULL', '851-555-0179', '2013-02-20', '10+ Miles'], ['28999', '331', 'AW00028999', 'NULL', 'Edward', 'A', 'Martinez', '0', '1958-10-20', 'M', 'NULL', 'M', 'edward40@adventure-works.com', '70000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '4616 Sutcliffe Pl', 'NULL', '890-555-0115', '2013-07-25', '2-5 Miles'], ['29000', '632', 'AW00029000', 'NULL', 'Nathan', 'A', 'Baker', '0', '1953-02-18', 'S', 'NULL', 'M', 'nathan44@adventure-works.com', '70000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '1773 Lafayette Street', 'NULL', '514-555-0123', '2013-02-20', '10+ Miles'], ['29001', '49', 'AW00029001', 'NULL', 'Carl', 'H', 'Nath', '0', '1964-04-12', 'S', 'NULL', 'M', 'carl17@adventure-works.com', '70000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '1', '7419 Heights Avenue', 'NULL', '144-555-0197', '2013-12-04', '2-5 Miles'], ['29002', '623', 'AW00029002', 'NULL', 'Hannah', 'F', 'Walker', '0', '1953-09-20', 'M', 'NULL', 'F', 'hannah21@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '8357 Sandy Cove Lane', 'NULL', '176-555-0136', '2013-03-19', '10+ Miles'], ['29003', '307', 'AW00029003', 'NULL', 'Veronica', 'NULL', 'Perez', '0', '1953-10-16', 'M', 'NULL', 'F', 'veronica23@adventure-works.com', '70000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3858 Vista Diablo', 'NULL', '416-555-0114', '2013-09-08', '10+ Miles'], ['29004', '369', 'AW00029004', 'NULL', 'Andrew', 'C', 'Thomas', '0', '1965-05-20', 'M', 'NULL', 'M', 'andrew20@adventure-works.com', '70000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '4310 Kenston Dr.', 'NULL', '188-555-0113', '2011-06-07', '10+ Miles'], ['29005', '70', 'AW00029005', 'NULL', 'Cameron', 'L', 'Gonzales', '0', '1955-03-16', 'S', 'NULL', 'M', 'cameron12@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '3406 Raven Court', 'NULL', '536-555-0117', '2013-03-05', '10+ Miles'], ['29006', '539', 'AW00029006', 'NULL', 'Christian', 'L', 'Kumar', '0', '1954-08-25', 'S', 'NULL', 'M', 'christian14@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '4804 Haynes Court', 'NULL', '226-555-0182', '2013-08-03', '10+ Miles'], ['29007', '552', 'AW00029007', 'NULL', 'Elijah', 'NULL', 'Perry', '0', '1955-06-25', 'S', 'NULL', 'M', 'elijah11@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2406 Kane Circle', 'NULL', '148-555-0130', '2013-12-03', '10+ Miles'], ['29008', '301', 'AW00029008', 'NULL', 'Andres', 'L', 'Luo', '0', '1955-06-01', 'S', 'NULL', 'M', 'andres3@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '0', '466 E St.', 'NULL', '160-555-0126', '2011-06-23', '2-5 Miles'], ['29009', '302', 'AW00029009', 'NULL', 'Stanley', 'M', 'Arun', '0', '1960-10-13', 'M', 'NULL', 'M', 'stanley7@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '9996 Solano Drive', 'NULL', '738-555-0163', '2013-07-14', '10+ Miles'], ['29010', '310', 'AW00029010', 'NULL', 'Jennifer', 'L', 'Long', '0', '1955-06-01', 'S', 'NULL', 'F', 'jennifer83@adventure-works.com', '60000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '0', '466 E St.', 'NULL', '507-555-0199', '2011-06-22', '2-5 Miles'], ['29011', '360', 'AW00029011', 'NULL', 'Allison', 'M', 'Roberts', '0', '1955-04-12', 'M', 'NULL', 'F', 'allison26@adventure-works.com', '70000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8827 Bidwell Street', 'NULL', '970-555-0155', '2011-05-31', '10+ Miles'], ['29012', '62', 'AW00029012', 'NULL', 'Jeremiah', 'M', 'Taylor', '0', '1960-12-30', 'M', 'NULL', 'M', 'jeremiah2@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5906 Walnut Place', 'NULL', '117-555-0116', '2013-10-23', '10+ Miles'], ['29013', '71', 'AW00029013', 'NULL', 'Emma', 'E', 'Hall', '0', '1961-05-06', 'S', 'NULL', 'F', 'emma23@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '6059 Mt. Dell', 'NULL', '507-555-0154', '2012-02-21', '10+ Miles'], ['29014', '614', 'AW00029014', 'NULL', 'Ryan', 'K', 'Powell', '0', '1955-08-04', 'M', 'NULL', 'M', 'ryan11@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '20 Chestnut Ave', 'NULL', '113-555-0122', '2013-02-04', '10+ Miles'], ['29015', '618', 'AW00029015', 'NULL', 'Trinity', 'Y', 'Murphy', '0', '1955-08-03', 'M', 'NULL', 'F', 'trinity13@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2745 Mt. Dias Blvd.', 'NULL', '737-555-0136', '2013-05-24', '10+ Miles'], ['29016', '627', 'AW00029016', 'NULL', 'Jackson', 'G', 'Perez', '0', '1955-09-17', 'S', 'NULL', 'M', 'jackson33@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '2204 Terry Lynn Lane', 'NULL', '518-555-0124', '2011-06-21', '2-5 Miles'], ['29017', '553', 'AW00029017', 'NULL', 'Gabriel', 'NULL', 'Long', '0', '1955-12-24', 'M', 'NULL', 'M', 'gabriel6@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '5092 Second Street', 'NULL', '909-555-0167', '2011-06-15', '2-5 Miles'], ['29018', '301', 'AW00029018', 'NULL', 'Drew', 'NULL', 'Luo', '0', '1955-12-11', 'M', 'NULL', 'M', 'drew6@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '7316 Starflower Dr.', 'NULL', '874-555-0182', '2013-11-19', '10+ Miles'], ['29019', '334', 'AW00029019', 'NULL', 'Isaiah', 'NULL', 'Morris', '0', '1955-12-24', 'S', 'NULL', 'M', 'isaiah18@adventure-works.com', '70000.00', '4', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '8093 Ladera Court', 'NULL', '801-555-0159', '2011-06-20', '1-2 Miles'], ['29020', '372', 'AW00029020', 'NULL', 'Jackson', 'W', 'Young', '0', '1961-01-14', 'S', 'NULL', 'M', 'jackson48@adventure-works.com', '80000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '7233 Sunset Circle', 'NULL', '521-555-0180', '2013-06-27', '5-10 Miles'], ['29021', '71', 'AW00029021', 'NULL', 'William', 'NULL', 'Clark', '0', '1957-02-14', 'S', 'NULL', 'M', 'william14@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '7039 Miwok Way', 'NULL', '926-555-0189', '2013-08-02', '10+ Miles'], ['29022', '546', 'AW00029022', 'NULL', 'Sydney', 'NULL', 'Diaz', '0', '1957-05-02', 'S', 'NULL', 'F', 'sydney43@adventure-works.com', '60000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '7775 San Ysidro Court', 'NULL', '162-555-0124', '2013-09-30', '10+ Miles'], ['29023', '635', 'AW00029023', 'NULL', 'Dalton', 'C', 'Campbell', '0', '1957-06-22', 'M', 'NULL', 'M', 'dalton41@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '5483 Cornwall Court', 'NULL', '106-555-0177', '2013-10-12', '10+ Miles'], ['29024', '301', 'AW00029024', 'NULL', 'Deanna', 'NULL', 'Blanco', '0', '1962-09-05', 'S', 'NULL', 'F', 'deanna42@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5298 Green View Court', 'NULL', '190-555-0171', '2014-01-22', '10+ Miles'], ['29025', '325', 'AW00029025', 'NULL', 'Miguel', 'K', 'Hayes', '0', '1956-08-02', 'S', 'NULL', 'M', 'miguel69@adventure-works.com', '60000.00', '2', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2356 Shannon Ln.', 'NULL', '331-555-0131', '2013-02-23', '10+ Miles'], ['29026', '325', 'AW00029026', 'NULL', 'Sydney', 'NULL', 'Mitchell', '0', '1957-10-23', 'M', 'NULL', 'F', 'sydney52@adventure-works.com', '40000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '8354 Hamiliton Avenue', 'NULL', '337-555-0175', '2013-08-18', '2-5 Miles'], ['29027', '50', 'AW00029027', 'NULL', 'Jacob', 'N', 'Walker', '0', '1963-09-23', 'S', 'NULL', 'M', 'jacob19@adventure-works.com', '70000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '7814 Milburn Dr.', 'NULL', '324-555-0135', '2013-12-15', '2-5 Miles'], ['29028', '302', 'AW00029028', 'NULL', 'Samuel', 'NULL', 'Parker', '0', '1958-05-02', 'S', 'NULL', 'M', 'samuel30@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7511 Azores Circle', 'NULL', '920-555-0199', '2013-10-11', '10+ Miles'], ['29029', '539', 'AW00029029', 'NULL', 'Marcus', 'NULL', 'Bennett', '0', '1958-02-24', 'S', 'NULL', 'M', 'marcus50@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '252 Cunha Ct.', 'NULL', '761-555-0188', '2013-11-22', '10+ Miles'], ['29030', '369', 'AW00029030', 'NULL', 'Jeremy', 'D', 'Adams', '0', '1963-05-07', 'M', 'NULL', 'M', 'jeremy10@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '259 1 Drive', 'NULL', '542-555-0149', '2013-12-20', '10+ Miles'], ['29031', '611', 'AW00029031', 'NULL', 'Brandon', 'K', 'Chen', '0', '1974-06-03', 'M', 'NULL', 'M', 'brandon22@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6325 El Pueblo Place', 'NULL', '321-555-0114', '2013-11-10', '10+ Miles'], ['29032', '339', 'AW00029032', 'NULL', 'Taylor', 'D', 'Ramirez', '0', '1957-08-09', 'S', 'NULL', 'F', 'taylor19@adventure-works.com', '70000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3026 Anchor Drive', 'NULL', '148-555-0115', '2011-06-14', '2-5 Miles'], ['29033', '325', 'AW00029033', 'NULL', 'Natalie', 'A', 'Cooper', '0', '1964-09-12', 'M', 'NULL', 'F', 'natalie11@adventure-works.com', '60000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '1745 Marina Pkwy.', 'NULL', '277-555-0173', '2013-06-14', '2-5 Miles'], ['29034', '614', 'AW00029034', 'NULL', 'Jonathan', 'NULL', 'Patterson', '0', '1958-07-15', 'M', 'NULL', 'M', 'jonathan10@adventure-works.com', '60000.00', '3', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '3756 Lime Ridge Drive', 'NULL', '327-555-0114', '2013-06-15', '2-5 Miles'], ['29035', '385', 'AW00029035', 'NULL', 'Elijah', 'NULL', 'Scott', '0', '1959-02-19', 'S', 'NULL', 'M', 'elijah40@adventure-works.com', '60000.00', '3', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4547 Bola Raton Court', 'NULL', '496-555-0147', '2013-12-16', '10+ Miles'], ['29036', '607', 'AW00029036', 'NULL', 'Rebecca', 'NULL', 'Baker', '0', '1964-10-21', 'M', 'NULL', 'F', 'rebecca18@adventure-works.com', '60000.00', '3', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4414 Marion Ct.', 'NULL', '842-555-0134', '2013-12-31', '10+ Miles'], ['29037', '50', 'AW00029037', 'NULL', 'Brandon', 'A', 'Lewis', '0', '1972-04-14', 'M', 'NULL', 'M', 'brandon51@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '4861 Doncaster Dr.', 'NULL', '935-555-0146', '2013-05-07', '0-1 Miles'], ['29038', '334', 'AW00029038', 'NULL', 'Vanessa', 'S', 'Hughes', '0', '1972-04-21', 'S', 'NULL', 'F', 'vanessa12@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '7346 Lion Circle', 'NULL', '944-555-0160', '2013-12-19', '0-1 Miles'], ['29039', '641', 'AW00029039', 'NULL', 'Xavier', 'NULL', 'Hayes', '0', '1986-04-21', 'S', 'NULL', 'M', 'xavier63@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '2', '2652 Eastgate', 'NULL', '782-555-0135', '2013-10-29', '0-1 Miles'], ['29040', '299', 'AW00029040', 'NULL', 'Colleen', 'A', 'Liu', '0', '1980-03-16', 'S', 'NULL', 'F', 'colleen4@adventure-works.com', '70000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '2', '4838 Gill Dr.', 'NULL', '542-555-0171', '2013-02-06', '0-1 Miles'], ['29041', '62', 'AW00029041', 'NULL', 'Charles', 'B', 'Collins', '0', '1977-10-08', 'S', 'NULL', 'M', 'charles45@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '9467 Morning Glory Dr', 'NULL', '959-555-0199', '2013-12-25', '1-2 Miles'], ['29042', '51', 'AW00029042', 'NULL', 'Edward', 'NULL', 'Jackson', '0', '1973-08-01', 'M', 'NULL', 'M', 'edward34@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '7353 Algiers Drive', 'NULL', '183-555-0137', '2013-01-11', '1-2 Miles'], ['29043', '70', 'AW00029043', 'NULL', 'Luke', 'NULL', 'Alexander', '0', '1974-01-12', 'M', 'NULL', 'M', 'luke8@adventure-works.com', '80000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '1383 Button Court', 'NULL', '129-555-0118', '2013-01-16', '1-2 Miles'], ['29044', '547', 'AW00029044', 'NULL', 'Olivia', 'L', 'Wilson', '0', '1973-08-30', 'S', 'NULL', 'F', 'olivia6@adventure-works.com', '90000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '1869 Pine Hallow Rd.', 'NULL', '443-555-0140', '2011-06-18', '1-2 Miles'], ['29045', '339', 'AW00029045', 'NULL', 'Anna', 'A', 'Jones', '0', '1973-05-09', 'S', 'NULL', 'F', 'anna64@adventure-works.com', '110000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '4', '1005 Matterhorn Ct.', 'NULL', '679-555-0115', '2013-04-24', '1-2 Miles'], ['29046', '648', 'AW00029046', 'NULL', 'Gabriella', 'NULL', 'Richardson', '0', '1968-08-18', 'S', 'NULL', 'F', 'gabriella7@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '0', '3917 Catnip Court', 'NULL', '477-555-0118', '2013-07-17', '0-1 Miles'], ['29047', '60', 'AW00029047', 'NULL', 'Jack', 'I', 'Lopez', '0', '1968-11-29', 'M', 'NULL', 'M', 'jack48@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '0', '9730 Krueger Drive', 'NULL', '605-555-0130', '2013-07-28', '1-2 Miles'], ['29048', '299', 'AW00029048', 'NULL', 'William', 'NULL', 'Harris', '0', '1979-09-30', 'S', 'NULL', 'M', 'william9@adventure-works.com', '110000.00', '2', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '4736 S. Royal Links Circle', 'NULL', '652-555-0181', '2011-06-10', '0-1 Miles'], ['29049', '547', 'AW00029049', 'NULL', 'Kelly', 'S', 'Simmons', '0', '1985-03-25', 'S', 'NULL', 'F', 'kelly20@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1133 Concord Place', 'NULL', '123-555-0180', '2013-04-05', '5-10 Miles'], ['29050', '298', 'AW00029050', 'NULL', 'Jack', 'NULL', 'Russell', '0', '1985-01-18', 'S', 'NULL', 'M', 'jack20@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1733 Thistle Circle', 'NULL', '144-555-0188', '2013-12-10', '5-10 Miles'], ['29051', '302', 'AW00029051', 'NULL', 'Michele', 'P', 'She', '0', '1985-02-21', 'S', 'NULL', 'F', 'michele0@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '5222 Happy Valley Road', 'NULL', '645-555-0175', '2013-09-03', '1-2 Miles'], ['29052', '331', 'AW00029052', 'NULL', 'Ian', 'L', 'Peterson', '0', '1984-08-03', 'S', 'NULL', 'M', 'ian71@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '9147 Weber Bryan', 'NULL', '728-555-0133', '2013-04-01', '5-10 Miles'], ['29053', '4', 'AW00029053', 'NULL', 'Nelson', 'L', 'Gomez', '0', '1950-04-02', 'S', 'NULL', 'M', 'nelson1@adventure-works.com', '10000.00', '5', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '26 Amador Ct.', 'NULL', '1 (11) 500 555-0111', '2013-05-15', '1-2 Miles'], ['29054', '11', 'AW00029054', 'NULL', 'Abby', 'J', 'Kapoor', '0', '1950-03-03', 'M', 'NULL', 'F', 'abby0@adventure-works.com', '20000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2749 Greenbush Drive', 'NULL', '1 (11) 500 555-0189', '2013-06-16', '5-10 Miles'], ['29055', '26', 'AW00029055', 'NULL', 'Monica', 'L', 'Sai', '0', '1955-11-08', 'M', 'NULL', 'F', 'monica6@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4794 Curtis Drive', 'NULL', '1 (11) 500 555-0131', '2013-05-31', '5-10 Miles'], ['29056', '383', 'AW00029056', 'NULL', 'Angelica', 'NULL', 'Griffin', '0', '1984-09-01', 'M', 'NULL', 'F', 'angelica20@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '121 Keith Court', 'NULL', '807-555-0129', '2011-06-10', '5-10 Miles'], ['29057', '298', 'AW00029057', 'NULL', 'Latoya', 'J', 'Andersen', '0', '1983-11-06', 'S', 'NULL', 'F', 'latoya11@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6136 North 68th St', 'NULL', '960-555-0124', '2013-06-18', '1-2 Miles'], ['29058', '312', 'AW00029058', 'NULL', 'Olivia', 'L', 'Reed', '0', '1983-07-03', 'S', 'NULL', 'F', 'olivia28@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1736 Windsor Drive', 'NULL', '102-555-0150', '2011-06-06', '1-2 Miles'], ['29059', '315', 'AW00029059', 'NULL', 'Jocelyn', 'O', 'Perry', '0', '1983-12-18', 'S', 'NULL', 'F', 'jocelyn8@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5455 Granola Dr', 'NULL', '407-555-0157', '2011-06-26', '5-10 Miles'], ['29060', '331', 'AW00029060', 'NULL', 'David', 'NULL', 'Washington', '0', '1983-09-29', 'S', 'NULL', 'M', 'david46@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3743 Greenbelt Way', 'NULL', '110-555-0116', '2011-06-20', '5-10 Miles'], ['29061', '15', 'AW00029061', 'NULL', 'Jaime', 'O', 'Kumar', '0', '1950-10-17', 'S', 'NULL', 'M', 'jaime31@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2049 Jason Court', 'NULL', '1 (11) 500 555-0170', '2013-12-10', '5-10 Miles'], ['29062', '38', 'AW00029062', 'NULL', 'Dennis', 'NULL', 'Liu', '0', '1950-10-19', 'M', 'NULL', 'M', 'dennis5@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2923 St Paul Circle', 'NULL', '1 (11) 500 555-0169', '2013-06-17', '5-10 Miles'], ['29063', '35', 'AW00029063', 'NULL', 'Alan', 'L', 'Liang', '0', '1963-02-18', 'S', 'NULL', 'M', 'alan20@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4971 Twincreek Ct.', 'NULL', '1 (11) 500 555-0161', '2013-06-07', '1-2 Miles'], ['29064', '33', 'AW00029064', 'NULL', 'Jose', 'NULL', 'Butler', '0', '1952-06-08', 'S', 'NULL', 'M', 'jose8@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2109 Harvey Way', 'NULL', '1 (11) 500 555-0154', '2013-06-21', '5-10 Miles'], ['29065', '27', 'AW00029065', 'NULL', 'Pamela', 'NULL', 'Rodriguez', '0', '1951-08-21', 'S', 'NULL', 'F', 'pamela22@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '832 Heights Ave.', 'NULL', '1 (11) 500 555-0160', '2013-06-13', '1-2 Miles'], ['29066', '40', 'AW00029066', 'NULL', 'Ricky', 'NULL', 'Suarez', '0', '1951-07-28', 'M', 'NULL', 'M', 'ricky20@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '9605 William Reed Drive', 'NULL', '1 (11) 500 555-0128', '2013-07-17', '5-10 Miles'], ['29067', '34', 'AW00029067', 'NULL', 'Russell', 'E', 'Chander', '0', '1957-05-06', 'M', 'NULL', 'M', 'russell18@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8547 Lyon Circle', 'NULL', '1 (11) 500 555-0115', '2013-08-07', '5-10 Miles'], ['29068', '8', 'AW00029068', 'NULL', 'Cassandra', 'D', 'Madan', '0', '1952-09-14', 'S', 'NULL', 'F', 'cassandra8@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9409 Cedar Point Loop', 'NULL', '1 (11) 500 555-0129', '2013-06-03', '1-2 Miles'], ['29069', '35', 'AW00029069', 'NULL', 'Clarence', 'NULL', 'Lin', '0', '1952-11-10', 'S', 'NULL', 'M', 'clarence3@adventure-works.com', '20000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1930 Corte Del Sol', 'NULL', '1 (11) 500 555-0198', '2013-06-24', '5-10 Miles'], ['29070', '334', 'AW00029070', 'NULL', 'Arianna', 'H', 'Simmons', '0', '1983-11-12', 'S', 'NULL', 'F', 'arianna13@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '24 San Vincente Drive', 'NULL', '581-555-0195', '2011-06-29', '5-10 Miles'], ['29071', '53', 'AW00029071', 'NULL', 'Megan', 'NULL', 'Thomas', '0', '1983-05-18', 'S', 'NULL', 'F', 'megan14@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '2516 Bonifacio St.', 'NULL', '774-555-0158', '2013-05-16', '1-2 Miles'], ['29072', '68', 'AW00029072', 'NULL', 'Emma', 'NULL', 'Ramirez', '0', '1983-02-15', 'S', 'NULL', 'F', 'emma43@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '3713 Rollingwood Dr.', 'NULL', '476-555-0139', '2013-12-24', '5-10 Miles'], ['29073', '609', 'AW00029073', 'NULL', 'Melanie', 'M', 'Barnes', '0', '1982-08-19', 'S', 'NULL', 'F', 'melanie18@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '9341 Galloway Drive', 'NULL', '276-555-0149', '2013-04-30', '1-2 Miles'], ['29074', '633', 'AW00029074', 'NULL', 'Joan', 'R', 'Long', '0', '1983-01-25', 'S', 'NULL', 'F', 'joan9@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3571 N St.', 'NULL', '834-555-0133', '2013-06-08', '1-2 Miles'], ['29075', '548', 'AW00029075', 'NULL', 'Jack', 'R', 'Wright', '0', '1983-01-02', 'S', 'NULL', 'M', 'jack56@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '5232 Black Point Pl.', 'NULL', '997-555-0136', '2013-04-02', '5-10 Miles'], ['29076', '322', 'AW00029076', 'NULL', 'Megan', 'NULL', 'Miller', '0', '1982-09-01', 'S', 'NULL', 'F', 'megan9@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9911 Northgate Road', 'NULL', '828-555-0199', '2013-12-16', '1-2 Miles'], ['29077', '369', 'AW00029077', 'Mr.', 'Blake', 'C', 'Henderson', '0', '1983-05-23', 'S', 'NULL', 'M', 'blake52@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9365 G St.', 'NULL', '926-555-0187', '2013-11-07', '5-10 Miles'], ['29078', '369', 'AW00029078', 'NULL', 'Victoria', 'NULL', 'Sanders', '0', '1983-03-27', 'M', 'NULL', 'F', 'victoria47@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1267 Scenic Drive', 'NULL', '985-555-0114', '2013-08-18', '5-10 Miles'], ['29079', '336', 'AW00029079', 'NULL', 'Brian', 'NULL', 'Rogers', '0', '1981-12-05', 'M', 'NULL', 'M', 'brian31@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7375 Greendell Rd.', 'NULL', '530-555-0166', '2013-01-28', '1-2 Miles'], ['29080', '7', 'AW00029080', 'NULL', 'Yolanda', 'NULL', 'Nara', '0', '1955-01-14', 'M', 'NULL', 'F', 'yolanda15@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '2556 Rivewview', 'NULL', '1 (11) 500 555-0178', '2013-07-25', '5-10 Miles'], ['29081', '30', 'AW00029081', 'NULL', 'Darren', 'NULL', 'Lopez', '0', '1960-03-13', 'S', 'NULL', 'M', 'darren18@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5086 Rampo Ct.', 'NULL', '1 (11) 500 555-0132', '2013-07-24', '5-10 Miles'], ['29082', '19', 'AW00029082', 'NULL', 'Sabrina', 'L', 'Ramos', '0', '1960-01-19', 'S', 'NULL', 'F', 'sabrina11@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '868 Aspen Dr.', 'NULL', '1 (11) 500 555-0143', '2013-06-30', '5-10 Miles'], ['29083', '8', 'AW00029083', 'NULL', 'Toni', 'M', 'Sullivan', '0', '1956-02-18', 'S', 'NULL', 'F', 'toni13@adventure-works.com', '10000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9595 Burning Barn Dr.', 'NULL', '1 (11) 500 555-0122', '2013-09-26', '5-10 Miles'], ['29084', '25', 'AW00029084', 'NULL', 'Beth', 'L', 'Hernandez', '0', '1955-12-21', 'S', 'NULL', 'F', 'beth6@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5234 Esperanza Drive', 'NULL', '1 (11) 500 555-0145', '2013-07-01', '5-10 Miles'], ['29085', '28', 'AW00029085', 'NULL', 'Brad', 'M', 'Goel', '0', '1956-05-26', 'M', 'NULL', 'M', 'brad20@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '8305 California St.', 'NULL', '1 (11) 500 555-0167', '2013-07-17', '5-10 Miles'], ['29086', '26', 'AW00029086', 'NULL', 'Frank', 'F', 'Diaz', '0', '1955-07-13', 'S', 'NULL', 'M', 'frank33@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2333 62nd Ave', 'NULL', '1 (11) 500 555-0149', '2013-07-10', '1-2 Miles'], ['29087', '10', 'AW00029087', 'NULL', 'Steve', 'NULL', 'Ye', '0', '1956-04-14', 'M', 'NULL', 'M', 'steve13@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '6986 Countrywood Ct.', 'NULL', '1 (11) 500 555-0118', '2013-08-14', '5-10 Miles'], ['29088', '10', 'AW00029088', 'NULL', 'Tamara', 'NULL', 'Anand', '0', '1955-08-29', 'S', 'NULL', 'F', 'tamara31@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '1766 Virgina Hills Drive', 'NULL', '1 (11) 500 555-0112', '2013-08-06', '5-10 Miles'], ['29089', '301', 'AW00029089', 'NULL', 'Noah', 'L', 'Henderson', '0', '1985-07-12', 'S', 'NULL', 'M', 'noah1@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '4067 Elm Road', 'NULL', '490-555-0162', '2013-04-07', '5-10 Miles'], ['29090', '6', 'AW00029090', 'NULL', 'Lacey', 'NULL', 'Ye', '0', '1958-02-18', 'M', 'NULL', 'F', 'lacey22@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '8922 Preston Ct', 'NULL', '1 (11) 500 555-0144', '2013-08-27', '1-2 Miles'], ['29091', '33', 'AW00029091', 'NULL', 'Mallory', 'NULL', 'Hernandez', '0', '1958-04-11', 'M', 'NULL', 'F', 'mallory11@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '4499 Alpha Way', 'NULL', '1 (11) 500 555-0118', '2013-08-04', '5-10 Miles'], ['29092', '40', 'AW00029092', 'NULL', 'Jessie', 'NULL', 'Ma', '0', '1969-05-22', 'S', 'NULL', 'M', 'jessie20@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '3', '584 Laguna St.', 'NULL', '1 (11) 500 555-0116', '2013-05-30', '1-2 Miles'], ['29093', '12', 'AW00029093', 'NULL', 'Erik', 'J', 'Blanco', '0', '1958-04-04', 'M', 'NULL', 'M', 'erik16@adventure-works.com', '20000.00', '2', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '3', '734 Clayton Rd.', 'NULL', '1 (11) 500 555-0161', '2013-08-19', '5-10 Miles'], ['29094', '33', 'AW00029094', 'NULL', 'Jessie', 'NULL', 'He', '0', '1957-12-24', 'M', 'NULL', 'M', 'jessie23@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6111 Newcastle Road', 'NULL', '1 (11) 500 555-0158', '2013-08-11', '5-10 Miles'], ['29095', '5', 'AW00029095', 'NULL', 'Jaime', 'E', 'Jimenez', '0', '1957-09-25', 'M', 'NULL', 'M', 'jaime47@adventure-works.com', '30000.00', '3', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2376 Holiday Hills Dr.', 'NULL', '1 (11) 500 555-0137', '2013-08-08', '1-2 Miles'], ['29096', '32', 'AW00029096', 'NULL', 'Margaret', 'C', 'Stewart', '0', '1958-08-10', 'M', 'NULL', 'F', 'margaret6@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3553 S. 38th Street', 'NULL', '1 (11) 500 555-0197', '2013-08-07', '5-10 Miles'], ['29097', '27', 'AW00029097', 'NULL', 'Bonnie', 'A', 'Beck', '0', '1959-06-09', 'S', 'NULL', 'F', 'bonnie26@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4550 Glenellen Court', 'NULL', '1 (11) 500 555-0114', '2013-08-20', '5-10 Miles'], ['29098', '8', 'AW00029098', 'NULL', 'Jimmy', 'NULL', 'Gill', '0', '1958-10-08', 'M', 'NULL', 'M', 'jimmy17@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9302 Veracruz', 'NULL', '1 (11) 500 555-0136', '2013-08-02', '1-2 Miles'], ['29099', '30', 'AW00029099', 'NULL', 'Tony', 'NULL', 'Shen', '0', '1959-01-09', 'M', 'NULL', 'M', 'tony5@adventure-works.com', '40000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9643 North Star Dr', 'NULL', '1 (11) 500 555-0123', '2013-09-22', '5-10 Miles'], ['29100', '40', 'AW00029100', 'NULL', 'Vanessa', 'J', 'Diaz', '0', '1965-01-15', 'S', 'NULL', 'F', 'vanessa22@adventure-works.com', '40000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '378 Trees Drive', 'NULL', '1 (11) 500 555-0190', '2013-11-29', '5-10 Miles'], ['29101', '14', 'AW00029101', 'NULL', 'Monique', 'M', 'Rubio', '0', '1965-06-04', 'S', 'NULL', 'F', 'monique17@adventure-works.com', '40000.00', '3', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '1', '2', '5385 Sony Hill Circle', 'NULL', '1 (11) 500 555-0177', '2013-10-31', '5-10 Miles'], ['29102', '31', 'AW00029102', 'NULL', 'Marie', 'L', 'Mehta', '0', '1971-09-18', 'S', 'NULL', 'F', 'marie15@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9170 Glen Ellen Court', 'NULL', '1 (11) 500 555-0165', '2013-04-01', '1-2 Miles'], ['29103', '7', 'AW00029103', 'NULL', 'Karl', 'NULL', 'Raji', '0', '1966-11-04', 'M', 'NULL', 'M', 'karl21@adventure-works.com', '80000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7545 Stanford Way', 'NULL', '1 (11) 500 555-0146', '2013-04-01', '5-10 Miles'], ['29104', '69', 'AW00029104', 'NULL', 'Nathan', 'L', 'Zhang', '0', '1981-01-12', 'M', 'NULL', 'M', 'nathan20@adventure-works.com', '40000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '7538 Adobe Dr', 'NULL', '509-555-0189', '2013-11-06', '1-2 Miles'], ['29105', '301', 'AW00029105', 'NULL', 'Martha', 'NULL', 'Ma', '0', '1981-05-10', 'M', 'NULL', 'F', 'martha15@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9593 Delaware Dr.', 'NULL', '735-555-0183', '2013-04-14', '5-10 Miles'], ['29106', '302', 'AW00029106', 'NULL', 'Calvin', 'NULL', 'Beck', '0', '1980-09-03', 'S', 'NULL', 'M', 'calvin19@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6878 Dublin', 'NULL', '286-555-0133', '2011-06-26', '1-2 Miles'], ['29107', '311', 'AW00029107', 'NULL', 'Tonya', 'A', 'Luo', '0', '1980-10-14', 'S', 'NULL', 'F', 'tonya6@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1724 Vancover Way', 'NULL', '700-555-0132', '2013-04-19', '5-10 Miles'], ['29108', '316', 'AW00029108', 'NULL', 'Seth', 'E', 'Evans', '0', '1980-12-19', 'S', 'NULL', 'M', 'seth45@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '6675 Logan Ct', 'NULL', '894-555-0175', '2011-06-11', '1-2 Miles'], ['29109', '360', 'AW00029109', 'NULL', 'Elizabeth', 'NULL', 'Miller', '0', '1980-01-14', 'M', 'NULL', 'F', 'elizabeth10@adventure-works.com', '50000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '157 Tara St.', 'NULL', '194-555-0113', '2013-05-01', '5-10 Miles'], ['29110', '338', 'AW00029110', 'NULL', 'Sydney', 'M', 'Smith', '0', '1978-10-09', 'S', 'NULL', 'F', 'sydney64@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '719 Sycamore Drive', 'NULL', '641-555-0152', '2011-06-17', '5-10 Miles'], ['29111', '301', 'AW00029111', 'NULL', 'Dale', 'A', 'Anand', '0', '1984-11-21', 'S', 'NULL', 'M', 'dale20@adventure-works.com', '70000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '827 Near Dr.', 'NULL', '587-555-0116', '2011-06-09', '0-1 Miles'], ['29112', '298', 'AW00029112', 'NULL', 'Edward', 'S', 'Powell', '0', '1981-12-22', 'S', 'NULL', 'M', 'edward57@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '9797 Cobblestone Ct.', 'NULL', '387-555-0144', '2013-05-11', '1-2 Miles'], ['29113', '33', 'AW00029113', 'NULL', 'AlÃ\xadcia', 'J', 'Anand', '0', '1961-11-23', 'S', 'NULL', 'F', 'alÃ\xadcia18@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '2176 Apollo Way', 'NULL', '1 (11) 500 555-0159', '2013-04-24', '1-2 Miles'], ['29114', '14', 'AW00029114', 'NULL', 'Levi', 'NULL', 'Raman', '0', '1973-03-15', 'M', 'NULL', 'M', 'levi11@adventure-works.com', '80000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6934 Dos Encinas', 'NULL', '1 (11) 500 555-0170', '2013-04-13', '5-10 Miles'], ['29115', '35', 'AW00029115', 'NULL', 'Jacquelyn', 'NULL', 'Munoz', '0', '1962-08-08', 'M', 'NULL', 'F', 'jacquelyn7@adventure-works.com', '70000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '6907 Woodchuck Pl', 'NULL', '1 (11) 500 555-0116', '2013-04-13', '5-10 Miles'], ['29116', '36', 'AW00029116', 'NULL', 'Janelle', 'T', 'Patel', '0', '1980-04-30', 'M', 'NULL', 'F', 'janelle3@adventure-works.com', '100000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '3504 Mesa Vista Dr.', 'NULL', '1 (11) 500 555-0118', '2013-04-08', '2-5 Miles'], ['29117', '26', 'AW00029117', 'NULL', 'Glenn', 'L', 'She', '0', '1969-01-31', 'S', 'NULL', 'M', 'glenn24@adventure-works.com', '100000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '5625 7810th Avenue', 'NULL', '1 (11) 500 555-0130', '2013-06-03', '0-1 Miles'], ['29118', '33', 'AW00029118', 'NULL', 'Noah', 'E', 'Griffin', '0', '1963-08-06', 'S', 'NULL', 'M', 'noah18@adventure-works.com', '100000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '5816 Yukon Street', 'NULL', '1 (11) 500 555-0128', '2013-08-05', '0-1 Miles'], ['29119', '7', 'AW00029119', 'NULL', 'Lee', 'NULL', 'Oliver', '0', '1964-04-11', 'S', 'NULL', 'M', 'lee20@adventure-works.com', '100000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '2345 Firestone Drive', 'NULL', '1 (11) 500 555-0189', '2013-10-31', '0-1 Miles'], ['29120', '23', 'AW00029120', 'NULL', 'Kaitlyn', 'NULL', 'Brown', '0', '1963-09-20', 'S', 'NULL', 'F', 'kaitlyn27@adventure-works.com', '100000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '3574 Haven Hill Drive', 'NULL', '1 (11) 500 555-0158', '2013-06-08', '2-5 Miles'], ['29121', '20', 'AW00029121', 'NULL', 'Julie', 'M', 'Luo', '0', '1964-09-12', 'S', 'NULL', 'F', 'julie10@adventure-works.com', '100000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '2061 Hillsborough Dr', 'NULL', '1 (11) 500 555-0163', '2013-09-10', '2-5 Miles'], ['29122', '30', 'AW00029122', 'NULL', 'Shannon', 'S', 'Munoz', '0', '1964-09-01', 'M', 'NULL', 'M', 'shannon28@adventure-works.com', '100000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '8840 D Kiska Ct', 'NULL', '1 (11) 500 555-0181', '2013-07-30', '2-5 Miles'], ['29123', '23', 'AW00029123', 'NULL', 'Tonya', 'NULL', 'Goel', '0', '1965-06-18', 'M', 'NULL', 'F', 'tonya19@adventure-works.com', '100000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '323 Chocolate Court', 'NULL', '1 (11) 500 555-0169', '2013-10-26', '2-5 Miles'], ['29124', '50', 'AW00029124', 'NULL', 'Angel', 'J', 'Edwards', '0', '1979-07-14', 'M', 'NULL', 'M', 'angel23@adventure-works.com', '50000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3654 Alaska Dr.', 'NULL', '980-555-0148', '2013-05-14', '5-10 Miles'], ['29125', '648', 'AW00029125', 'NULL', 'Andrea', 'D', 'Reed', '0', '1980-06-08', 'M', 'NULL', 'F', 'andrea20@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '8565 Marie Drive', 'NULL', '912-555-0135', '2013-11-11', '5-10 Miles'], ['29126', '301', 'AW00029126', 'NULL', 'Chloe', 'NULL', 'Cox', '0', '1980-03-25', 'S', 'NULL', 'F', 'chloe56@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '2477 Macalven Drive', 'NULL', '237-555-0112', '2011-06-01', '1-2 Miles'], ['29127', '310', 'AW00029127', 'NULL', 'Bryan', 'L', 'Murphy', '0', '1972-05-18', 'M', 'NULL', 'M', 'bryan15@adventure-works.com', '120000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '7368 South Royal Links', 'NULL', '511-555-0166', '2013-03-24', '2-5 Miles'], ['29128', '326', 'AW00029128', 'NULL', 'Alyssa', 'NULL', 'Reed', '0', '1983-03-10', 'M', 'NULL', 'F', 'alyssa28@adventure-works.com', '130000.00', '0', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '2559 Gumwood', 'NULL', '966-555-0118', '2011-06-07', '0-1 Miles'], ['29129', '361', 'AW00029129', 'NULL', 'Timothy', 'NULL', 'Watson', '0', '1971-08-29', 'M', 'NULL', 'M', 'timothy2@adventure-works.com', '130000.00', '1', '1', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '4', '5474 Limewood Pl.', 'NULL', '196-555-0160', '2013-05-03', '0-1 Miles'], ['29130', '71', 'AW00029130', 'NULL', 'Hannah', 'A', 'Washington', '0', '1963-03-22', 'M', 'NULL', 'F', 'hannah35@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7559 W. Buchanan Rd.', 'NULL', '614-555-0182', '2013-02-06', '5-10 Miles'], ['29131', '325', 'AW00029131', 'NULL', 'Brandon', 'NULL', 'Coleman', '0', '1975-05-13', 'S', 'NULL', 'M', 'brandon3@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5938 William Way', 'NULL', '521-555-0139', '2013-12-10', '2-5 Miles'], ['29132', '314', 'AW00029132', 'NULL', 'Brianna', 'E', 'Cook', '0', '1969-12-14', 'S', 'NULL', 'F', 'brianna29@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '2383 Pepper Drive', 'NULL', '411-555-0118', '2011-06-23', '2-5 Miles'], ['29133', '546', 'AW00029133', 'NULL', 'Sydney', 'L', 'King', '0', '1969-09-14', 'S', 'NULL', 'F', 'sydney60@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '9845 Barberry Court', 'NULL', '363-555-0155', '2013-12-25', '0-1 Miles'], ['29134', '612', 'AW00029134', 'NULL', 'Pedro', 'NULL', 'Dominguez', '0', '1969-09-13', 'M', 'NULL', 'M', 'pedro33@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '4594 Hill Drive', 'NULL', '967-555-0121', '2013-10-06', '10+ Miles'], ['29135', '50', 'AW00029135', 'NULL', 'Adam', 'C', 'Allen', '0', '1970-04-03', 'M', 'NULL', 'M', 'adam52@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3491 Cook Street', 'NULL', '252-555-0173', '2012-02-22', '2-5 Miles'], ['29136', '298', 'AW00029136', 'NULL', 'Caroline', 'L', 'Bryant', '0', '1969-11-05', 'M', 'NULL', 'F', 'caroline19@adventure-works.com', '60000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2603 Brenda Circle', 'NULL', '574-555-0157', '2011-06-10', '2-5 Miles'], ['29137', '53', 'AW00029137', 'NULL', 'Jack', 'M', 'Allen', '0', '1974-07-16', 'M', 'NULL', 'M', 'jack58@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3450 Oakleaf Ct.', 'NULL', '407-555-0140', '2013-01-25', '2-5 Miles'], ['29138', '385', 'AW00029138', 'NULL', 'Eduardo', 'E', 'Wood', '0', '1979-08-09', 'M', 'NULL', 'M', 'eduardo46@adventure-works.com', '70000.00', '4', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '1367 Sheppard Way', 'NULL', '598-555-0125', '2011-06-30', '2-5 Miles'], ['29139', '374', 'AW00029139', 'NULL', 'Riley', 'L', 'Coleman', '0', '1974-02-19', 'S', 'NULL', 'F', 'riley4@adventure-works.com', '60000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '460 Almond Avve', 'NULL', '464-555-0189', '2011-06-06', '0-1 Miles'], ['29140', '632', 'AW00029140', 'NULL', 'Richard', 'NULL', 'Ward', '0', '1974-11-24', 'S', 'NULL', 'M', 'richard84@adventure-works.com', '60000.00', '3', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '5592 Eagle Peak Ave.', 'NULL', '667-555-0151', '2011-07-06', '2-5 Miles'], ['29141', '299', 'AW00029141', 'NULL', 'Suzanne', 'R', 'Wang', '0', '1973-07-13', 'S', 'NULL', 'F', 'suzanne2@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9819 Anchor Court', 'NULL', '429-555-0185', '2011-07-08', '0-1 Miles'], ['29142', '302', 'AW00029142', 'NULL', 'Ashley', 'C', 'Smith', '0', '1973-05-20', 'M', 'NULL', 'F', 'ashley0@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6613 Benton St.', 'NULL', '847-555-0116', '2011-07-06', '2-5 Miles'], ['29143', '334', 'AW00029143', 'NULL', 'Grace', 'NULL', 'Jenkins', '0', '1973-03-12', 'S', 'NULL', 'F', 'grace54@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3284 Bynum Way', 'NULL', '146-555-0116', '2011-07-02', '0-1 Miles'], ['29144', '634', 'AW00029144', 'NULL', 'Brandon', 'R', 'Zhang', '0', '1967-08-11', 'M', 'NULL', 'M', 'brandon20@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '8461 Everett Ct', 'NULL', '822-555-0128', '2011-07-24', '2-5 Miles'], ['29145', '631', 'AW00029145', 'NULL', 'Shelby', 'L', 'Gray', '0', '1968-02-07', 'M', 'NULL', 'F', 'shelby6@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '938 San Ysidro Court', 'NULL', '744-555-0162', '2011-07-19', '2-5 Miles'], ['29146', '614', 'AW00029146', 'NULL', 'Ian', 'E', 'Henderson', '0', '1968-04-06', 'M', 'NULL', 'M', 'ian45@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6366 Baker Dr.', 'NULL', '313-555-0114', '2011-07-08', '2-5 Miles'], ['29147', '627', 'AW00029147', 'NULL', 'Mary', 'S', 'Roberts', '0', '1966-08-14', 'S', 'NULL', 'F', 'mary17@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '3043 Rock Creek Pl.', 'NULL', '559-555-0110', '2011-07-27', '0-1 Miles'], ['29148', '339', 'AW00029148', 'NULL', 'Gabriella', 'D', 'Murphy', '0', '1967-05-13', 'S', 'NULL', 'F', 'gabriella13@adventure-works.com', '40000.00', '4', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '7271 Anyway St', 'NULL', '733-555-0148', '2011-07-21', '2-5 Miles'], ['29149', '49', 'AW00029149', 'NULL', 'Ariana', 'NULL', 'Bell', '0', '1967-02-17', 'M', 'NULL', 'F', 'ariana12@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4328 Liszt Way', 'NULL', '868-555-0159', '2012-03-17', '2-5 Miles'], ['29150', '542', 'AW00029150', 'NULL', 'Wyatt', 'C', 'Griffin', '0', '1967-01-09', 'M', 'NULL', 'M', 'wyatt49@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '879 St. Andrews Way', 'NULL', '171-555-0168', '2011-07-31', '2-5 Miles'], ['29151', '307', 'AW00029151', 'NULL', 'Caroline', 'NULL', 'Long', '0', '1966-09-20', 'M', 'NULL', 'F', 'caroline10@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '6189 Mt. McKinley Ct', 'NULL', '933-555-0167', '2011-07-04', '0-1 Miles'], ['29152', '68', 'AW00029152', 'NULL', 'Steven', 'H', 'Sanders', '0', '1967-01-22', 'M', 'NULL', 'M', 'steven13@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '4612 A St.', 'NULL', '382-555-0123', '2012-03-18', '0-1 Miles'], ['29153', '300', 'AW00029153', 'NULL', 'Pedro', 'NULL', 'Arun', '0', '1971-03-14', 'S', 'NULL', 'M', 'pedro7@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '8041 Erie Dr.', 'NULL', '720-555-0187', '2013-05-14', '0-1 Miles'], ['29154', '52', 'AW00029154', 'NULL', 'Eduardo', 'NULL', 'Bennett', '0', '1973-03-15', 'S', 'NULL', 'M', 'eduardo45@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6453 Pacific', 'NULL', '587-555-0119', '2012-04-25', '2-5 Miles'], ['29155', '633', 'AW00029155', 'NULL', 'Gabriella', 'L', 'Kelly', '0', '1978-10-04', 'S', 'NULL', 'F', 'gabriella0@adventure-works.com', '60000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '9389 RaceCourt', 'NULL', '963-555-0150', '2011-07-28', '0-1 Miles'], ['29156', '360', 'AW00029156', 'NULL', 'Ashley', 'J', 'Barnes', '0', '1978-10-18', 'S', 'NULL', 'F', 'ashley29@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '3142 Grenadine Way', 'NULL', '610-555-0118', '2011-07-22', '0-1 Miles'], ['29157', '368', 'AW00029157', 'NULL', 'Seth', 'NULL', 'Powell', '0', '1978-04-23', 'S', 'NULL', 'M', 'seth56@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '1065 Almond St.', 'NULL', '651-555-0153', '2011-07-17', '2-5 Miles'], ['29158', '612', 'AW00029158', 'NULL', 'Ian', 'A', 'Edwards', '0', '1971-12-08', 'M', 'NULL', 'M', 'ian38@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '2969 Broadmoor Avenue', 'NULL', '107-555-0166', '2011-07-10', '0-1 Miles'], ['29159', '68', 'AW00029159', 'NULL', 'Emma', 'NULL', 'Morgan', '0', '1971-07-11', 'M', 'NULL', 'F', 'emma30@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '5890 Ardith Drive', 'NULL', '343-555-0150', '2012-04-23', '2-5 Miles'], ['29160', '627', 'AW00029160', 'NULL', 'Logan', 'N', 'Baker', '0', '1975-08-22', 'S', 'NULL', 'M', 'logan41@adventure-works.com', '60000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '3014 Stanford Street', 'NULL', '173-555-0170', '2013-07-09', '2-5 Miles'], ['29161', '348', 'AW00029161', 'NULL', 'Thomas', 'NULL', 'Martinez', '0', '1965-01-20', 'S', 'NULL', 'M', 'thomas81@adventure-works.com', '60000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3008 Lolita Drive', 'NULL', '162-555-0144', '2013-10-29', '0-1 Miles'], ['29162', '548', 'AW00029162', 'NULL', 'Xavier', 'NULL', 'Murphy', '0', '1975-08-09', 'M', 'NULL', 'M', 'xavier82@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '42 Clayton Rd.', 'NULL', '838-555-0145', '2013-05-20', '2-5 Miles'], ['29163', '547', 'AW00029163', 'NULL', 'Mason', 'R', 'Murphy', '0', '1964-08-05', 'S', 'NULL', 'M', 'mason14@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '4977 Candlestick Dr.', 'NULL', '653-555-0175', '2011-07-11', '0-1 Miles'], ['29164', '546', 'AW00029164', 'NULL', 'Jennifer', 'D', 'James', '0', '1976-03-18', 'M', 'NULL', 'F', 'jennifer70@adventure-works.com', '60000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '3416 Cunha Ct', 'NULL', '333-555-0121', '2013-06-09', '2-5 Miles'], ['29165', '54', 'AW00029165', 'NULL', 'Benjamin', 'NULL', 'Perry', '0', '1970-06-13', 'S', 'NULL', 'M', 'benjamin8@adventure-works.com', '70000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '1', '3575 Tulip St', 'NULL', '590-555-0180', '2013-02-26', '0-1 Miles'], ['29166', '299', 'AW00029166', 'NULL', 'Jaime', 'NULL', 'Hernandez', '0', '1964-10-29', 'S', 'NULL', 'M', 'jaime46@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '2664 Escobar', 'NULL', '474-555-0136', '2011-07-13', '0-1 Miles'], ['29167', '611', 'AW00029167', 'NULL', 'Dawn', 'L', 'Shen', '0', '1975-09-05', 'S', 'NULL', 'F', 'dawn26@adventure-works.com', '80000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '2880 Ponderosa Dr.', 'NULL', '786-555-0191', '2011-07-04', '0-1 Miles'], ['29168', '307', 'AW00029168', 'NULL', 'Derrick', 'NULL', 'Romero', '0', '1975-08-22', 'S', 'NULL', 'M', 'derrick9@adventure-works.com', '80000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '5186 Oeffler Ln.', 'NULL', '781-555-0172', '2011-07-21', '0-1 Miles'], ['29169', '611', 'AW00029169', 'NULL', 'Victoria', 'C', 'Bailey', '0', '1964-03-17', 'S', 'NULL', 'F', 'victoria33@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9090 Cristobal', 'NULL', '286-555-0132', '2011-07-09', '0-1 Miles'], ['29170', '302', 'AW00029170', 'NULL', 'Alexandra', 'J', 'Adams', '0', '1964-04-14', 'S', 'NULL', 'F', 'alexandra57@adventure-works.com', '60000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3215 Polson Court', 'NULL', '629-555-0159', '2011-07-03', '0-1 Miles'], ['29171', '612', 'AW00029171', 'NULL', 'Jay', 'D', 'Alvarez', '0', '1963-11-01', 'M', 'NULL', 'M', 'jay34@adventure-works.com', '70000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '2', '9590 Sutton Circle', 'NULL', '398-555-0192', '2013-09-13', '2-5 Miles'], ['29172', '311', 'AW00029172', 'NULL', 'Arturo', 'NULL', 'Carson', '0', '1975-04-19', 'S', 'NULL', 'M', 'arturo41@adventure-works.com', '70000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '911 Nicholas Drive', 'NULL', '215-555-0124', '2013-12-24', '2-5 Miles'], ['29173', '648', 'AW00029173', 'NULL', 'Richard', 'NULL', 'Bradley', '0', '1969-11-16', 'S', 'NULL', 'M', 'richard57@adventure-works.com', '70000.00', '5', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '3305 East Altarinda Dr.', 'NULL', '498-555-0175', '2013-04-27', '0-1 Miles'], ['29174', '633', 'AW00029174', 'NULL', 'Richard', 'NULL', 'Parker', '0', '1964-05-14', 'S', 'NULL', 'M', 'richard36@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '0', '0', '3098 Eastgate Ave', 'NULL', '183-555-0141', '2011-07-04', '0-1 Miles'], ['29175', '612', 'AW00029175', 'NULL', 'Sean', 'D', 'Rivera', '0', '1964-02-03', 'M', 'NULL', 'M', 'sean24@adventure-works.com', '80000.00', '5', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '6080 Candelero Pl.', 'NULL', '837-555-0175', '2011-07-31', '0-1 Miles'], ['29176', '63', 'AW00029176', 'NULL', 'Luke', 'NULL', 'Evans', '0', '1963-08-08', 'M', 'NULL', 'M', 'luke32@adventure-works.com', '80000.00', '5', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '1565 Esperanea Dr.', 'NULL', '436-555-0118', '2013-04-18', '0-1 Miles'], ['29177', '307', 'AW00029177', 'NULL', 'Frank', 'NULL', 'Martin', '0', '1940-11-02', 'M', 'NULL', 'M', 'frank30@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '3448 Concord', 'NULL', '730-555-0167', '2013-04-28', '2-5 Miles'], ['29178', '11', 'AW00029178', 'NULL', 'Candice', 'NULL', 'She', '0', '1975-03-01', 'M', 'NULL', 'F', 'candice7@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '7077 Blue Jay Drive', 'NULL', '1 (11) 500 555-0145', '2013-04-24', '0-1 Miles'], ['29179', '40', 'AW00029179', 'NULL', 'Patricia', 'K', 'Mehta', '0', '1974-12-08', 'M', 'NULL', 'F', 'patricia17@adventure-works.com', '90000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '2524 Garden Ave.', 'NULL', '1 (11) 500 555-0110', '2013-03-30', '0-1 Miles'], ['29180', '11', 'AW00029180', 'NULL', 'Erik', 'T', 'Gomez', '0', '1974-10-03', 'M', 'NULL', 'M', 'erik2@adventure-works.com', '100000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '0', '5905 Hawthorne Dr.', 'NULL', '1 (11) 500 555-0183', '2013-04-28', '0-1 Miles'], ['29181', '28', 'AW00029181', 'NULL', 'Melinda', 'NULL', 'Suarez', '0', '1979-05-10', 'S', 'NULL', 'F', 'melinda14@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3823 Birch Bark Dr', 'NULL', '1 (11) 500 555-0132', '2013-09-23', '0-1 Miles'], ['29182', '14', 'AW00029182', 'NULL', 'Wesley', 'K', 'Xu', '0', '1979-12-23', 'M', 'NULL', 'M', 'wesley12@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '8604 Dolores Way', 'NULL', '1 (11) 500 555-0170', '2013-08-30', '2-5 Miles'], ['29183', '25', 'AW00029183', 'NULL', 'Gabrielle', 'NULL', 'Simmons', '0', '1976-05-23', 'M', 'NULL', 'F', 'gabrielle37@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '3664 Colt Ct.', 'NULL', '1 (11) 500 555-0135', '2013-04-13', '0-1 Miles'], ['29184', '29', 'AW00029184', 'NULL', 'Kristi', 'I', 'Madan', '0', '1975-10-10', 'M', 'NULL', 'F', 'kristi24@adventure-works.com', '80000.00', '4', '4', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '1', '6492 Palms Dr.', 'NULL', '1 (11) 500 555-0176', '2013-04-22', '0-1 Miles'], ['29185', '19', 'AW00029185', 'NULL', 'Warren', 'R', 'Li', '0', '1974-03-21', 'M', 'NULL', 'M', 'warren20@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '7632 Willbrook Court', 'NULL', '1 (11) 500 555-0139', '2013-09-16', '2-5 Miles'], ['29186', '27', 'AW00029186', 'NULL', 'Mathew', 'A', 'Serrano', '0', '1979-06-16', 'S', 'NULL', 'M', 'mathew12@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '926 Morning Way', 'NULL', '1 (11) 500 555-0114', '2013-09-17', '0-1 Miles'], ['29187', '32', 'AW00029187', 'NULL', 'Jerome', 'L', 'Ramos', '0', '1973-10-10', 'M', 'NULL', 'M', 'jerome16@adventure-works.com', '60000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5510 Chickpea Ct.', 'NULL', '1 (11) 500 555-0162', '2013-10-23', '2-5 Miles'], ['29188', '24', 'AW00029188', 'NULL', 'Colin', 'NULL', 'Kumar', '0', '1979-09-16', 'S', 'NULL', 'M', 'colin31@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '3', '7085 Valley Run', 'NULL', '1 (11) 500 555-0136', '2013-07-04', '10+ Miles'], ['29189', '12', 'AW00029189', 'NULL', 'Roy', 'C', 'Dominguez', '0', '1972-12-20', 'S', 'NULL', 'M', 'roy32@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '3', '9130 San Ramon Road', 'NULL', '1 (11) 500 555-0116', '2013-08-17', '10+ Miles'], ['29190', '14', 'AW00029190', 'NULL', 'Kaitlin', 'C', 'Suri', '0', '1975-02-08', 'S', 'NULL', 'F', 'kaitlin0@adventure-works.com', '120000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '9955 Terra Grand', 'NULL', '1 (11) 500 555-0188', '2013-04-17', '0-1 Miles'], ['29191', '18', 'AW00029191', 'NULL', 'Chelsea', 'NULL', 'Weber', '0', '1975-05-19', 'S', 'NULL', 'F', 'chelsea4@adventure-works.com', '130000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '7938 Blue Ridge', 'NULL', '1 (11) 500 555-0121', '2013-04-16', '0-1 Miles'], ['29192', '40', 'AW00029192', 'NULL', 'Jessica', 'R', 'Ramirez', '0', '1973-04-25', 'M', 'NULL', 'F', 'jessica19@adventure-works.com', '70000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '6312 San Ramon Road', 'NULL', '1 (11) 500 555-0177', '2013-04-23', '10+ Miles'], ['29193', '13', 'AW00029193', 'NULL', 'Alejandro', 'W', 'Liang', '0', '1972-03-05', 'S', 'NULL', 'M', 'alejandro20@adventure-works.com', '80000.00', '5', '5', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '3', '2894 Encino Dr.', 'NULL', '1 (11) 500 555-0140', '2013-12-10', '0-1 Miles'], ['29194', '19', 'AW00029194', 'NULL', 'Grace', 'B', 'Powell', '0', '1977-10-21', 'M', 'NULL', 'F', 'grace56@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '4566 Bermad Drive', 'NULL', '1 (11) 500 555-0113', '2013-04-15', '2-5 Miles'], ['29195', '19', 'AW00029195', 'NULL', 'Barbara', 'NULL', 'Xu', '0', '1977-10-06', 'M', 'NULL', 'F', 'barbara22@adventure-works.com', '90000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '9241 St George Dr.', 'NULL', '1 (11) 500 555-0194', '2013-04-06', '0-1 Miles'], ['29196', '23', 'AW00029196', 'NULL', 'Darren', 'NULL', 'Serrano', '0', '1971-07-21', 'M', 'NULL', 'M', 'darren39@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '6369 Ellis Street', 'NULL', '1 (11) 500 555-0140', '2013-04-09', '2-5 Miles'], ['29197', '69', 'AW00029197', 'NULL', 'Morgan', 'NULL', 'Brown', '0', '1959-01-01', 'S', 'NULL', 'F', 'morgan27@adventure-works.com', '60000.00', '3', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4647 Maywood Lane', 'NULL', '604-555-0190', '2013-11-12', '2-5 Miles'], ['29198', '383', 'AW00029198', 'NULL', 'Faith', 'NULL', 'Ramirez', '0', '1959-01-03', 'M', 'NULL', 'F', 'faith28@adventure-works.com', '60000.00', '3', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '3558 Pebble Glen Drive', '# 214', '199-555-0117', '2011-07-17', '10+ Miles'], ['29199', '322', 'AW00029199', 'NULL', 'James', 'M', 'Wilson', '0', '1959-04-06', 'S', 'NULL', 'M', 'james72@adventure-works.com', '60000.00', '3', '1', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '3607 Cloudview Dr.', 'NULL', '526-555-0183', '2013-09-06', '2-5 Miles'], ['29200', '536', 'AW00029200', 'NULL', 'Jackson', 'NULL', 'Collins', '0', '1962-08-25', 'M', 'NULL', 'M', 'jackson32@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '8221 Argyll Ave.', 'NULL', '212-555-0155', '2013-07-24', '5-10 Miles'], ['29201', '299', 'AW00029201', 'NULL', 'Kara', 'E', 'Jai', '0', '1968-05-14', 'S', 'NULL', 'F', 'kara10@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '0', '4228 Creekside Drive', 'NULL', '976-555-0195', '2011-07-22', '0-1 Miles'], ['29202', '612', 'AW00029202', 'NULL', 'Jerry', 'NULL', 'Kumar', '0', '1963-05-18', 'M', 'NULL', 'M', 'jerry8@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '1410 N Ranchford Court', 'NULL', '161-555-0175', '2011-07-14', '5-10 Miles'], ['29203', '307', 'AW00029203', 'NULL', 'Laura', 'NULL', 'Hu', '0', '1968-04-24', 'M', 'NULL', 'F', 'laura26@adventure-works.com', '70000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '8502 Diver Way', 'NULL', '402-555-0192', '2011-07-28', '5-10 Miles'], ['29204', '644', 'AW00029204', 'NULL', 'Austin', 'NULL', 'Sharma', '0', '1968-11-22', 'S', 'NULL', 'M', 'austin27@adventure-works.com', '90000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '3874 Claudia Court', 'NULL', '121-555-0169', '2011-07-08', '2-5 Miles'], ['29205', '383', 'AW00029205', 'NULL', 'David', 'V', 'Long', '0', '1962-05-16', 'M', 'NULL', 'M', 'david42@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1180 Rhea Ct', 'NULL', '415-555-0123', '2013-11-28', '5-10 Miles'], ['29206', '326', 'AW00029206', 'NULL', 'Nicholas', 'NULL', 'Anderson', '0', '1962-02-20', 'M', 'NULL', 'M', 'nicholas11@adventure-works.com', '80000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '77 Birchwood', 'NULL', '811-555-0156', '2013-04-18', '5-10 Miles'], ['29207', '642', 'AW00029207', 'NULL', 'Katelyn', 'O', 'James', '0', '1967-01-23', 'M', 'NULL', 'F', 'katelyn6@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '2082 Satin Court', 'NULL', '431-555-0164', '2011-07-24', '5-10 Miles'], ['29208', '609', 'AW00029208', 'NULL', 'Amber', 'NULL', 'Lopez', '0', '1967-11-09', 'M', 'NULL', 'F', 'amber21@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '2719 Clearland Circle', 'NULL', '912-555-0164', '2011-07-23', '1-2 Miles'], ['29209', '71', 'AW00029209', 'NULL', 'Jordan', 'NULL', 'Evans', '0', '1976-09-01', 'M', 'NULL', 'M', 'jordan54@adventure-works.com', '90000.00', '4', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '5023 Stephine Way', 'NULL', '628-555-0181', '2013-02-26', '2-5 Miles'], ['29210', '616', 'AW00029210', 'NULL', 'Devin', 'M', 'Peterson', '0', '1971-02-04', 'M', 'NULL', 'M', 'devin72@adventure-works.com', '100000.00', '3', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '7091 Glen Arms Dr.', 'NULL', '162-555-0182', '2013-08-24', '2-5 Miles'], ['29211', '626', 'AW00029211', 'NULL', 'Stephanie', 'NULL', 'Ross', '0', '1976-06-10', 'M', 'NULL', 'F', 'stephanie31@adventure-works.com', '100000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '9318 Hawkridge Terrace', 'NULL', '128-555-0175', '2013-12-05', '2-5 Miles'], ['29212', '627', 'AW00029212', 'NULL', 'Jocelyn', 'NULL', 'Gonzales', '0', '1971-06-14', 'S', 'NULL', 'F', 'jocelyn16@adventure-works.com', '100000.00', '4', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '2348 Fruitwood', 'NULL', '757-555-0163', '2013-10-11', '2-5 Miles'], ['29213', '49', 'AW00029213', 'NULL', 'Jodi', 'NULL', 'Luo', '0', '1975-10-03', 'S', 'NULL', 'F', 'jodi6@adventure-works.com', '80000.00', '4', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '0', '1663 Park Glen Court', 'NULL', '958-555-0116', '2013-09-15', '0-1 Miles'], ['29214', '71', 'AW00029214', 'NULL', 'Joseph', 'E', 'Martinez', '0', '1969-12-23', 'S', 'NULL', 'M', 'joseph24@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '1999 Orangewood Court', 'NULL', '370-555-0118', '2013-02-15', '2-5 Miles'], ['29215', '539', 'AW00029215', 'NULL', 'Abigail', 'NULL', 'Barnes', '0', '1975-03-10', 'S', 'NULL', 'F', 'abigail71@adventure-works.com', '90000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '8674 Marina Vill Pkwy.', 'NULL', '121-555-0184', '2014-01-09', '0-1 Miles'], ['29216', '543', 'AW00029216', 'NULL', 'Antonio', 'NULL', 'Wood', '0', '1969-11-16', 'S', 'NULL', 'M', 'antonio2@adventure-works.com', '90000.00', '5', '5', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '2569 Serrana Ct.', 'NULL', '341-555-0163', '2014-01-27', '0-1 Miles'], ['29217', '642', 'AW00029217', 'NULL', 'Alexis', 'D', 'Wilson', '0', '1970-05-23', 'M', 'NULL', 'F', 'alexis6@adventure-works.com', '100000.00', '5', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '8096 Mt. Washington Way', 'NULL', '645-555-0187', '2013-04-20', '2-5 Miles'], ['29218', '552', 'AW00029218', 'NULL', 'Brandon', 'T', 'Moore', '0', '1969-09-29', 'S', 'NULL', 'M', 'brandon47@adventure-works.com', '100000.00', '5', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '1911 Almond Avenue', 'NULL', '187-555-0180', '2013-08-30', '2-5 Miles'], ['29219', '307', 'AW00029219', 'NULL', 'Darren', 'NULL', 'Arun', '0', '1969-12-15', 'S', 'NULL', 'M', 'darren9@adventure-works.com', '130000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '5137 Napa Court', 'NULL', '160-555-0114', '2014-01-21', '1-2 Miles'], ['29220', '310', 'AW00029220', 'NULL', 'Melinda', 'NULL', 'Ramos', '0', '1980-09-16', 'S', 'NULL', 'F', 'melinda12@adventure-works.com', '130000.00', '2', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '5867 North Ridge Drive', 'NULL', '204-555-0116', '2013-08-05', '0-1 Miles'], ['29221', '348', 'AW00029221', 'NULL', 'Kelly', 'NULL', 'Bennett', '0', '1969-12-07', 'S', 'NULL', 'F', 'kelly5@adventure-works.com', '150000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '666 Lafayette Street', 'NULL', '619-555-0132', '2011-07-20', '1-2 Miles'], ['29222', '374', 'AW00029222', 'NULL', 'Evan', 'R', 'Perez', '0', '1975-05-01', 'M', 'NULL', 'M', 'evan28@adventure-works.com', '160000.00', '0', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '8779 Knollview Court', 'NULL', '170-555-0111', '2011-07-12', '0-1 Miles'], ['29223', '611', 'AW00029223', 'NULL', 'Angel', 'NULL', 'Phillips', '0', '1961-07-14', 'S', 'NULL', 'M', 'angel28@adventure-works.com', '70000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '0', '6387 Balhan Dr.', 'NULL', '939-555-0115', '2011-07-28', '0-1 Miles'], ['29224', '311', 'AW00029224', 'NULL', 'Kaylee', 'NULL', 'Bailey', '0', '1962-01-05', 'M', 'NULL', 'F', 'kaylee12@adventure-works.com', '70000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '0', '6809 El Capitan Lane', 'NULL', '985-555-0144', '2013-03-05', '5-10 Miles'], ['29225', '632', 'AW00029225', 'NULL', 'Matthew', 'NULL', 'Lee', '0', '1967-04-06', 'S', 'NULL', 'M', 'matthew26@adventure-works.com', '80000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '7086 O St.', 'NULL', '220-555-0158', '2011-07-31', '0-1 Miles'], ['29226', '634', 'AW00029226', 'NULL', 'Katherine', 'A', 'Lee', '0', '1939-10-16', 'S', 'NULL', 'F', 'katherine93@adventure-works.com', '60000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '6694 Falcon Dr.', 'NULL', '679-555-0126', '2013-07-18', '5-10 Miles'], ['29227', '307', 'AW00029227', 'NULL', 'Levi', 'I', 'Patel', '0', '1939-07-05', 'S', 'NULL', 'M', 'levi2@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '5309 Diane Ct.', 'NULL', '534-555-0178', '2013-11-12', '5-10 Miles'], ['29228', '345', 'AW00029228', 'NULL', 'Courtney', 'NULL', 'Campbell', '0', '1939-12-22', 'S', 'NULL', 'F', 'courtney4@adventure-works.com', '130000.00', '1', '2', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '5518 Baldwin Dr.', '# 215', '189-555-0178', '2013-02-18', '1-2 Miles'], ['29229', '49', 'AW00029229', 'NULL', 'Lance', 'A', 'Moreno', '0', '1969-04-23', 'S', 'NULL', 'M', 'lance6@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '6682 Fountainhead Ct.', 'NULL', '906-555-0186', '2013-09-07', '0-1 Miles'], ['29230', '50', 'AW00029230', 'NULL', 'Kaitlyn', 'B', 'Diaz', '0', '1969-02-01', 'S', 'NULL', 'F', 'kaitlyn89@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '4932 La Jolla', 'NULL', '961-555-0119', '2013-02-27', '0-1 Miles'], ['29231', '69', 'AW00029231', 'NULL', 'Brittany', 'NULL', 'Simmons', '0', '1980-01-06', 'S', 'NULL', 'F', 'brittany13@adventure-works.com', '80000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '7378 Fairfield Avenue', 'NULL', '197-555-0115', '2013-11-06', '0-1 Miles'], ['29232', '545', 'AW00029232', 'NULL', 'Samantha', 'V', 'Simmons', '0', '1979-09-04', 'S', 'NULL', 'F', 'samantha38@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '2288 Morning Way', 'NULL', '178-555-0186', '2013-04-01', '10+ Miles'], ['29233', '631', 'AW00029233', 'NULL', 'Caitlin', 'NULL', 'Sanders', '0', '1969-02-21', 'S', 'NULL', 'F', 'caitlin3@adventure-works.com', '90000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '6820 Willow Pass Dr', 'NULL', '506-555-0115', '2013-10-23', '10+ Miles'], ['29234', '314', 'AW00029234', 'NULL', 'Kevin', 'NULL', 'Lopez', '0', '1969-04-06', 'M', 'NULL', 'M', 'kevin58@adventure-works.com', '110000.00', '5', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '4770 Blue Jay Drive', 'NULL', '934-555-0113', '2013-07-09', '5-10 Miles'], ['29235', '316', 'AW00029235', 'NULL', 'Isaiah', 'W', 'Rogers', '0', '1969-06-21', 'S', 'NULL', 'M', 'isaiah19@adventure-works.com', '120000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '1007 Cardinet Dr.', 'NULL', '500-555-0133', '2013-08-16', '1-2 Miles'], ['29236', '316', 'AW00029236', 'NULL', 'Eric', 'NULL', 'Young', '0', '1968-10-01', 'S', 'NULL', 'M', 'eric58@adventure-works.com', '120000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '5738 Bent Tree Lane', 'NULL', '212-555-0155', '2011-07-09', '5-10 Miles'], ['29237', '334', 'AW00029237', 'NULL', 'Jennifer', 'B', 'Jenkins', '0', '1969-02-13', 'S', 'NULL', 'F', 'jennifer81@adventure-works.com', '120000.00', '4', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '7942 Palms', 'NULL', '257-555-0141', '2011-07-30', '5-10 Miles'], ['29238', '374', 'AW00029238', 'NULL', 'Xavier', 'NULL', 'Powell', '0', '1968-12-12', 'S', 'NULL', 'M', 'xavier50@adventure-works.com', '150000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '8004 Broadmoor Ave.', 'NULL', '701-555-0120', '2011-07-17', '1-2 Miles'], ['29239', '374', 'AW00029239', 'NULL', 'Samantha', 'R', 'Miller', '0', '1968-12-11', 'S', 'NULL', 'F', 'samantha7@adventure-works.com', '150000.00', '4', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '7467 Canyon Road', 'NULL', '666-555-0138', '2011-07-22', '1-2 Miles'], ['29240', '71', 'AW00029240', 'NULL', 'Madeline', 'NULL', 'Allen', '0', '1967-12-30', 'S', 'NULL', 'F', 'madeline21@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '7207 St. Andrews Way', 'NULL', '666-555-0160', '2013-12-20', '0-1 Miles'], ['29241', '609', 'AW00029241', 'NULL', 'Sophia', 'NULL', 'Evans', '0', '1973-08-24', 'S', 'NULL', 'F', 'sophia0@adventure-works.com', '90000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '3510 Brook Way', 'NULL', '165-555-0114', '2013-03-28', '1-2 Miles'], ['29242', '648', 'AW00029242', 'NULL', 'Blake', 'D', 'Thomas', '0', '1968-03-31', 'M', 'NULL', 'M', 'blake10@adventure-works.com', '100000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '4', '2313 B Southampton Rd', 'NULL', '116-555-0151', '2011-07-26', '5-10 Miles'], ['29243', '298', 'AW00029243', 'NULL', 'Jared', 'NULL', 'Torres', '0', '1968-06-18', 'S', 'NULL', 'M', 'jared7@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '1', '6666 Tosca Way', 'NULL', '646-555-0117', '2013-10-25', '5-10 Miles'], ['29244', '307', 'AW00029244', 'NULL', 'Eric', 'NULL', 'Ross', '0', '1968-02-19', 'S', 'NULL', 'M', 'eric12@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '1519 Birch Bark Road', 'NULL', '837-555-0153', '2014-01-06', '5-10 Miles'], ['29245', '352', 'AW00029245', 'NULL', 'Angel', 'H', 'Roberts', '0', '1968-06-14', 'M', 'NULL', 'M', 'angel26@adventure-works.com', '130000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '4', '3189 Oakgrove', 'NULL', '352-555-0128', '2013-12-04', '0-1 Miles'], ['29246', '359', 'AW00029246', 'NULL', 'Thomas', 'NULL', 'Williams', '0', '1967-12-02', 'S', 'NULL', 'M', 'thomas62@adventure-works.com', '130000.00', '1', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '4', '4566 Magnolia Ave.', 'NULL', '561-555-0188', '2013-09-30', '2-5 Miles'], ['29247', '51', 'AW00029247', 'NULL', 'Sara', 'NULL', 'Gray', '0', '1977-12-18', 'S', 'NULL', 'F', 'sara6@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '8803 La Mar Ct', 'NULL', '182-555-0192', '2013-02-15', '5-10 Miles'], ['29248', '634', 'AW00029248', 'NULL', 'Jonathan', 'B', 'Martin', '0', '1966-12-17', 'S', 'NULL', 'M', 'jonathan68@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '3332 Walnut Blvd.', 'NULL', '220-555-0128', '2013-02-15', '5-10 Miles'], ['29249', '638', 'AW00029249', 'NULL', 'Austin', 'H', 'Long', '0', '1966-12-17', 'M', 'NULL', 'M', 'austin5@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '6126 Virgil Street', 'NULL', '412-555-0173', '2013-02-17', '5-10 Miles'], ['29250', '648', 'AW00029250', 'NULL', 'Anthony', 'V', 'Williams', '0', '1972-04-12', 'S', 'NULL', 'M', 'anthony11@adventure-works.com', '100000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '4', '4051 Show Rd.', 'NULL', '681-555-0164', '2013-04-25', '1-2 Miles'], ['29251', '300', 'AW00029251', 'NULL', 'Mandy', 'NULL', 'Zhou', '0', '1966-09-01', 'M', 'NULL', 'F', 'mandy10@adventure-works.com', '110000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '4625 Dos Encinas', 'NULL', '392-555-0163', '2013-04-03', '5-10 Miles'], ['29252', '352', 'AW00029252', 'NULL', 'Alex', 'NULL', 'Parker', '0', '1967-03-08', 'M', 'NULL', 'M', 'alex26@adventure-works.com', '130000.00', '1', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '3', '7581 Alaska Dr.', 'NULL', '613-555-0123', '2011-07-30', '0-1 Miles'], ['29253', '360', 'AW00029253', 'NULL', 'Savannah', 'M', 'Green', '0', '1966-11-22', 'S', 'NULL', 'F', 'savannah37@adventure-works.com', '130000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '3', '438 Post Road', 'NULL', '426-555-0196', '2013-06-16', '2-5 Miles'], ['29254', '614', 'AW00029254', 'NULL', 'Erin', 'NULL', 'Sanchez', '0', '1961-04-13', 'M', 'NULL', 'F', 'erin27@adventure-works.com', '60000.00', '2', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4077 Roxbury Drive', 'NULL', '904-555-0179', '2011-07-17', '5-10 Miles'], ['29255', '374', 'AW00029255', 'NULL', 'Kyle', 'C', 'Washington', '0', '1960-10-08', 'S', 'NULL', 'M', 'kyle8@adventure-works.com', '80000.00', '3', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '1386 Eastgate', 'NULL', '242-555-0183', '2011-07-01', '1-2 Miles'], ['29256', '68', 'AW00029256', 'NULL', 'Noah', 'NULL', 'Harris', '0', '1961-05-06', 'M', 'NULL', 'M', 'noah55@adventure-works.com', '90000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '1', '3614 Golf Club Road', 'NULL', '566-555-0114', '2013-03-19', '10+ Miles'], ['29257', '348', 'AW00029257', 'NULL', 'Jeremiah', 'L', 'Russell', '0', '1961-04-24', 'S', 'NULL', 'M', 'jeremiah35@adventure-works.com', '90000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '8984 Brook Way', 'NULL', '393-555-0136', '2013-10-19', '10+ Miles'], ['29258', '648', 'AW00029258', 'NULL', 'Makayla', 'E', 'James', '0', '1961-03-21', 'M', 'NULL', 'F', 'makayla8@adventure-works.com', '90000.00', '2', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '1', '7422 Roseann Drive', 'NULL', '151-555-0161', '2011-07-30', '10+ Miles'], ['29259', '62', 'AW00029259', 'NULL', 'Jonathan', 'NULL', 'Davis', '0', '1960-03-09', 'S', 'NULL', 'M', 'jonathan55@adventure-works.com', '70000.00', '2', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '9217 Juliet Court', 'NULL', '540-555-0150', '2013-10-05', '5-10 Miles'], ['29260', '310', 'AW00029260', 'NULL', 'Ricky', 'S', 'Carlson', '0', '1940-11-23', 'S', 'NULL', 'M', 'ricky19@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '3177 Dover Way', 'NULL', '208-555-0112', '2013-09-10', '1-2 Miles'], ['29261', '361', 'AW00029261', 'NULL', 'Robert', 'M', 'Turner', '0', '1940-09-11', 'S', 'NULL', 'M', 'robert48@adventure-works.com', '130000.00', '2', '3', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '3444 Elkwood Dr.', 'NULL', '827-555-0114', '2011-07-23', '0-1 Miles'], ['29262', '536', 'AW00029262', 'NULL', 'Cassie', 'NULL', 'Raje', '0', '1941-08-21', 'S', 'NULL', 'F', 'cassie12@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '1727 The Trees Drive', 'NULL', '827-555-0119', '2014-01-24', '1-2 Miles'], ['29263', '300', 'AW00029263', 'NULL', 'Nathan', 'NULL', 'Li', '0', '1941-11-21', 'M', 'NULL', 'M', 'nathan23@adventure-works.com', '70000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '2025 Sunset Meadows', 'NULL', '667-555-0117', '2013-11-28', '1-2 Miles'], ['29264', '312', 'AW00029264', 'NULL', 'Riley', 'NULL', 'Brooks', '0', '1941-07-26', 'M', 'NULL', 'F', 'riley21@adventure-works.com', '90000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '4903 Lemonwood Drive', 'NULL', '999-555-0126', '2011-07-11', '1-2 Miles'], ['29265', '314', 'AW00029265', 'NULL', 'Marissa', 'C', 'Diaz', '0', '1942-05-08', 'S', 'NULL', 'F', 'marissa17@adventure-works.com', '90000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '6272 Maywood Ln', 'NULL', '390-555-0145', '2011-07-31', '1-2 Miles'], ['29266', '51', 'AW00029266', 'NULL', 'Lucas', 'NULL', 'Anderson', '0', '1966-01-02', 'S', 'NULL', 'M', 'lucas23@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '3', '4332 Listing Ct', 'NULL', '990-555-0111', '2013-04-05', '1-2 Miles'], ['29267', '63', 'AW00029267', 'NULL', 'Jordan', 'A', 'Perez', '0', '1971-10-16', 'M', 'NULL', 'F', 'jordan40@adventure-works.com', '80000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '3', '8989 Twincreek Ct.', 'NULL', '394-555-0196', '2013-07-24', '5-10 Miles'], ['29268', '614', 'AW00029268', 'NULL', 'Marcus', 'Z', 'Thomas', '0', '1965-11-19', 'M', 'NULL', 'M', 'marcus11@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '6291 Winter Lane', 'NULL', '169-555-0183', '2013-02-19', '5-10 Miles'], ['29269', '543', 'AW00029269', 'NULL', 'Vanessa', 'NULL', 'Griffin', '0', '1965-11-11', 'M', 'NULL', 'F', 'vanessa21@adventure-works.com', '90000.00', '4', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '337 Forest Way', 'NULL', '497-555-0173', '2013-10-05', '5-10 Miles'], ['29270', '641', 'AW00029270', 'NULL', 'Carlos', 'M', 'Allen', '0', '1965-07-11', 'M', 'NULL', 'M', 'carlos45@adventure-works.com', '100000.00', '0', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '1', '5018 W. Watson Court', 'NULL', '688-555-0171', '2013-08-25', '5-10 Miles'], ['29271', '552', 'AW00029271', 'NULL', 'Antonio', 'NULL', 'Henderson', '0', '1971-06-22', 'S', 'NULL', 'M', 'antonio5@adventure-works.com', '100000.00', '0', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '1', '8763 Lori Dr.', 'NULL', '519-555-0159', '2013-05-11', '1-2 Miles'], ['29272', '298', 'AW00029272', 'NULL', 'Alex', 'B', 'King', '0', '1965-07-13', 'M', 'NULL', 'M', 'alex48@adventure-works.com', '100000.00', '0', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '5992 Leeds Ct.', 'NULL', '140-555-0122', '2013-08-26', '5-10 Miles'], ['29273', '298', 'AW00029273', 'NULL', 'Timothy', 'O', 'Lopez', '0', '1971-02-08', 'M', 'NULL', 'M', 'timothy38@adventure-works.com', '100000.00', '0', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '1', '2', '2155 Zartop Street', 'NULL', '137-555-0130', '2013-08-26', '5-10 Miles'], ['29274', '335', 'AW00029274', 'NULL', 'Miguel', 'A', 'Green', '0', '1966-01-19', 'S', 'NULL', 'M', 'miguel31@adventure-works.com', '120000.00', '5', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '3', '1962 Ferndale Lane', 'NULL', '290-555-0145', '2011-07-05', '5-10 Miles'], ['29275', '372', 'AW00029275', 'NULL', 'Taylor', 'NULL', 'Thomas', '0', '1958-11-12', 'S', 'NULL', 'F', 'taylor58@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '8476 Kingswood Circle', 'NULL', '293-555-0179', '2011-07-06', '1-2 Miles'], ['29276', '633', 'AW00029276', 'NULL', 'Sydney', 'G', 'Flores', '0', '1959-02-19', 'M', 'NULL', 'F', 'sydney34@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '7948 Rambling Lane', 'NULL', '621-555-0147', '2011-07-14', '5-10 Miles'], ['29277', '59', 'AW00029277', 'NULL', 'Samantha', 'A', 'Mohamed', '0', '1958-10-25', 'S', 'NULL', 'F', 'samantha9@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '2', '5331 Buskrik Avenue', 'NULL', '832-555-0138', '2013-03-02', '1-2 Miles'], ['29278', '337', 'AW00029278', 'NULL', 'Janet', 'L', 'Scott', '0', '1964-08-14', 'S', 'NULL', 'F', 'janet33@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '2616 Northridge Drive', 'NULL', '422-555-0144', '2011-07-12', '5-10 Miles'], ['29279', '335', 'AW00029279', 'NULL', 'Hailey', 'NULL', 'Turner', '0', '1959-01-18', 'S', 'NULL', 'F', 'hailey47@adventure-works.com', '70000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '1218 Trasher Road', 'NULL', '114-555-0115', '2011-08-17', '5-10 Miles'], ['29280', '644', 'AW00029280', 'NULL', 'Erin', 'NULL', 'Cook', '0', '1967-08-05', 'S', 'NULL', 'F', 'erin25@adventure-works.com', '40000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '5484 The Trees Dr.', 'NULL', '895-555-0155', '2011-08-22', '1-2 Miles'], ['29281', '68', 'AW00029281', 'NULL', 'Charles', 'T', 'Anderson', '0', '1961-02-22', 'S', 'NULL', 'M', 'charles13@adventure-works.com', '40000.00', '4', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Professional', 'Profesional', 'Cadre', '0', '2', '8446 San Gabriel', 'NULL', '178-555-0112', '2012-04-25', '1-2 Miles'], ['29282', '66', 'AW00029282', 'NULL', 'Taylor', 'E', 'Jackson', '0', '1955-03-13', 'M', 'NULL', 'F', 'taylor59@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '1', '2', '4845 Park Lane Circle', 'NULL', '559-555-0129', '2013-12-30', '5-10 Miles'], ['29283', '311', 'AW00029283', 'Mr.', 'Jeff', 'NULL', 'Smith', '0', '1955-01-07', 'M', 'NULL', 'M', 'jeff4@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '6992 Tara St.', 'NULL', '515-555-0100', '2013-06-01', '1-2 Miles'], ['29284', '607', 'AW00029284', 'NULL', 'Riley', 'NULL', 'Hughes', '0', '1955-06-03', 'S', 'NULL', 'F', 'riley9@adventure-works.com', '30000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '240 Crown Court', 'NULL', '842-555-0173', '2013-12-11', '1-2 Miles'], ['29285', '300', 'AW00029285', 'NULL', 'Thomas', 'NULL', 'Adams', '0', '1954-07-14', 'S', 'NULL', 'M', 'thomas51@adventure-works.com', '40000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Professional', 'Profesional', 'Cadre', '0', '2', '3862 Citrus Avenue', 'NULL', '475-555-0159', '2011-08-10', '1-2 Miles'], ['29286', '28', 'AW00029286', 'NULL', 'Rodney', 'D', 'Alvarez', '0', '1975-05-17', 'S', 'NULL', 'M', 'rodney0@adventure-works.com', '60000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '5068 N Francisco Way', 'NULL', '1 (11) 500 555-0196', '2013-03-24', '0-1 Miles'], ['29287', '28', 'AW00029287', 'NULL', 'Suzanne', 'NULL', 'Lin', '0', '1969-08-24', 'M', 'NULL', 'F', 'suzanne9@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '8221 Anchor Ave.', 'NULL', '1 (11) 500 555-0135', '2013-01-31', '5-10 Miles'], ['29288', '3', 'AW00029288', 'NULL', 'Glenn', 'NULL', 'Lin', '0', '1981-04-13', 'M', 'NULL', 'M', 'glenn8@adventure-works.com', '60000.00', '4', '4', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '3494 Radar Blvd', 'NULL', '1 (11) 500 555-0111', '2014-01-25', '0-1 Miles'], ['29289', '20', 'AW00029289', 'NULL', 'Devon', 'NULL', 'Raje', '0', '1975-08-24', 'S', 'NULL', 'M', 'devon11@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '644 North Ranchford', 'NULL', '1 (11) 500 555-0182', '2013-04-03', '5-10 Miles'], ['29290', '4', 'AW00029290', 'NULL', 'Troy', 'M', 'Garcia', '0', '1969-04-13', 'S', 'NULL', 'M', 'troy16@adventure-works.com', '60000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '9772 Mountain View Drive', 'NULL', '1 (11) 500 555-0173', '2013-02-12', '0-1 Miles'], ['29291', '25', 'AW00029291', 'NULL', 'Nancy', 'C', 'Subram', '0', '1969-04-21', 'M', 'NULL', 'F', 'nancy16@adventure-works.com', '60000.00', '3', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '2320 Wee Donegal', 'NULL', '1 (11) 500 555-0183', '2013-09-29', '0-1 Miles'], ['29292', '34', 'AW00029292', 'NULL', 'Diana', 'L', 'Dominguez', '0', '1978-01-03', 'S', 'NULL', 'F', 'diana12@adventure-works.com', '90000.00', '2', '2', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '3931 Scott Street', 'NULL', '1 (11) 500 555-0117', '2013-04-07', '0-1 Miles'], ['29293', '24', 'AW00029293', 'NULL', 'Nuan', 'NULL', 'Wu', '0', '1972-11-29', 'S', 'NULL', 'M', 'nuan1@adventure-works.com', '90000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '7717 Amador Valley Blvd.', 'NULL', '1 (11) 500 555-0113', '2013-04-14', '1-2 Miles'], ['29294', '27', 'AW00029294', 'NULL', 'Allison', 'J', 'Cooper', '0', '1966-12-15', 'S', 'NULL', 'F', 'allison17@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '6121 Monetary Way', 'NULL', '1 (11) 500 555-0132', '2013-10-28', '0-1 Miles'], ['29295', '17', 'AW00029295', 'NULL', 'Glenn', 'A', 'Li', '0', '1971-08-25', 'S', 'NULL', 'M', 'glenn4@adventure-works.com', '110000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '1', '2', '3574 East Lake Court', 'NULL', '1 (11) 500 555-0144', '2013-04-29', '1-2 Miles'], ['29296', '18', 'AW00029296', 'NULL', 'Nichole', 'A', 'Luo', '0', '1972-05-19', 'S', 'NULL', 'F', 'nichole5@adventure-works.com', '110000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '3', '2427 Arnold Dr', 'NULL', '1 (11) 500 555-0110', '2013-11-05', '1-2 Miles'], ['29297', '19', 'AW00029297', 'NULL', 'Nina', 'NULL', 'Pal', '0', '1971-10-19', 'S', 'NULL', 'F', 'nina12@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '3902 Clay Rd.', 'NULL', '1 (11) 500 555-0111', '2013-10-09', '0-1 Miles'], ['29298', '7', 'AW00029298', 'NULL', 'Diana', 'J', 'Moreno', '0', '1965-12-29', 'S', 'NULL', 'F', 'diana5@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '1889 Carmel Dr', 'NULL', '1 (11) 500 555-0140', '2013-10-24', '5-10 Miles'], ['29299', '15', 'AW00029299', 'NULL', 'Bethany', 'NULL', 'Kumar', '0', '1966-04-17', 'M', 'NULL', 'F', 'bethany11@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4716 Mayhew Way', 'NULL', '1 (11) 500 555-0141', '2013-11-06', '5-10 Miles'], ['29300', '20', 'AW00029300', 'NULL', 'Joe', 'NULL', 'Madan', '0', '1971-04-26', 'S', 'NULL', 'M', 'joe10@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '4665 Military Way E.', 'NULL', '1 (11) 500 555-0157', '2013-05-27', '5-10 Miles'], ['29301', '9', 'AW00029301', 'NULL', 'Alvin', 'R', 'Nath', '0', '1976-11-03', 'M', 'NULL', 'M', 'alvin39@adventure-works.com', '80000.00', '5', '5', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '4', '6231 Sequoia Woods Pl.', 'NULL', '1 (11) 500 555-0124', '2013-04-25', '1-2 Miles'], ['29302', '34', 'AW00029302', 'NULL', 'Carolyn', 'S', 'Fernandez', '0', '1969-07-18', 'S', 'NULL', 'F', 'carolyn15@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '5639 Lee Lane', 'NULL', '1 (11) 500 555-0134', '2013-05-06', '5-10 Miles'], ['29303', '37', 'AW00029303', 'NULL', 'Arturo', 'P', 'Pal', '0', '1970-01-19', 'S', 'NULL', 'M', 'arturo37@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '9705 Via Del Sol', 'NULL', '1 (11) 500 555-0172', '2013-05-23', '5-10 Miles'], ['29304', '40', 'AW00029304', 'NULL', 'Willie', 'NULL', 'Wang', '0', '1965-03-01', 'M', 'NULL', 'M', 'willie2@adventure-works.com', '100000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '5376 Catanzaro Way', 'NULL', '1 (11) 500 555-0170', '2013-04-02', '10+ Miles'], ['29305', '8', 'AW00029305', 'NULL', 'Beth', 'M', 'Alvarez', '0', '1964-11-09', 'S', 'NULL', 'F', 'beth7@adventure-works.com', '100000.00', '5', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3407 Pine Dr.', 'NULL', '1 (11) 500 555-0153', '2013-12-29', '10+ Miles'], ['29306', '33', 'AW00029306', 'NULL', 'Rafael', 'NULL', 'Anand', '0', '1974-08-12', 'S', 'NULL', 'M', 'rafael46@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '3287 Corte Poquito', 'NULL', '1 (11) 500 555-0178', '2013-05-16', '0-1 Miles'], ['29307', '22', 'AW00029307', 'NULL', 'Ross', 'R', 'Malhotra', '0', '1968-09-01', 'S', 'NULL', 'M', 'ross4@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '9862 Ahneita Dr.', 'NULL', '1 (11) 500 555-0152', '2013-01-29', '5-10 Miles'], ['29308', '31', 'AW00029308', 'NULL', 'Phillip', 'NULL', 'Vance', '0', '1980-01-06', 'S', 'NULL', 'M', 'phillip4@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '7378 Fairfield Avenue', 'NULL', '1 (11) 500 555-0144', '2013-05-07', '0-1 Miles'], ['29309', '30', 'AW00029309', 'NULL', 'Rodney', 'L', 'Navarro', '0', '1968-09-28', 'S', 'NULL', 'M', 'rodney6@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '2', '5515 West Boyd Rd', 'NULL', '1 (11) 500 555-0172', '2013-05-21', '5-10 Miles'], ['29310', '32', 'AW00029310', 'NULL', 'Armando', 'NULL', 'Gutierrez', '0', '1969-04-21', 'S', 'NULL', 'M', 'armando11@adventure-works.com', '70000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '2', '8364 Encinal Place', 'NULL', '1 (11) 500 555-0183', '2013-05-17', '5-10 Miles'], ['29311', '23', 'AW00029311', 'NULL', 'Marie', 'NULL', 'Carlson', '0', '1967-11-07', 'S', 'NULL', 'F', 'marie42@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '3740 Azalea Avenue', 'NULL', '1 (11) 500 555-0156', '2013-11-23', '5-10 Miles'], ['29312', '13', 'AW00029312', 'NULL', 'Colleen', 'E', 'She', '0', '1973-04-14', 'S', 'NULL', 'F', 'colleen24@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2556 San Remo Ct', 'NULL', '1 (11) 500 555-0169', '2013-05-15', '5-10 Miles'], ['29313', '28', 'AW00029313', 'NULL', 'Jésus', 'NULL', 'Sanz', '0', '1967-04-07', 'M', 'NULL', 'M', 'jésus19@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '4459 Kingswood Circle', 'NULL', '1 (11) 500 555-0111', '2013-11-07', '5-10 Miles'], ['29314', '24', 'AW00029314', 'NULL', 'Meredith', 'NULL', 'Malhotra', '0', '1972-11-02', 'M', 'NULL', 'F', 'meredith3@adventure-works.com', '60000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '7539 Shepberry Court', 'NULL', '1 (11) 500 555-0179', '2013-11-20', '5-10 Miles'], ['29315', '6', 'AW00029315', 'NULL', 'Jill', 'NULL', 'Gomez', '0', '1975-04-06', 'M', 'NULL', 'F', 'jill8@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '1', '6594 Glen Wood Drive', 'NULL', '1 (11) 500 555-0116', '2013-05-10', '5-10 Miles'], ['29316', '8', 'AW00029316', 'NULL', 'Max', 'C', 'Romero', '0', '1964-05-21', 'S', 'NULL', 'M', 'max9@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '19, rue Surcouf', 'NULL', '1 (11) 500 555-0168', '2013-05-13', '2-5 Miles'], ['29317', '20', 'AW00029317', 'NULL', 'James', 'S', 'Hill', '0', '1963-12-31', 'S', 'NULL', 'M', 'james64@adventure-works.com', '90000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '19 Winding Lane', 'NULL', '1 (11) 500 555-0116', '2013-05-25', '2-5 Miles'], ['29318', '14', 'AW00029318', 'NULL', 'Edgar', 'B', 'Perez', '0', '1964-05-17', 'M', 'NULL', 'M', 'edgar22@adventure-works.com', '100000.00', '4', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '6586 El Rancho Drive', 'NULL', '1 (11) 500 555-0119', '2013-05-09', '1-2 Miles'], ['29319', '14', 'AW00029319', 'NULL', 'Alvin', 'C', 'Pal', '0', '1963-01-11', 'S', 'NULL', 'M', 'alvin34@adventure-works.com', '70000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', '5323 Stanford St', 'NULL', '1 (11) 500 555-0127', '2013-05-02', '0-1 Miles'], ['29320', '7', 'AW00029320', 'NULL', 'Wesley', 'NULL', 'Huang', '0', '1971-02-10', 'M', 'NULL', 'M', 'wesley6@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '1760 Lisa Lee Lane', 'NULL', '1 (11) 500 555-0120', '2013-08-29', '5-10 Miles'], ['29321', '26', 'AW00029321', 'NULL', 'Roger', 'NULL', 'Zheng', '0', '1966-03-02', 'S', 'NULL', 'M', 'roger23@adventure-works.com', '70000.00', '5', '4', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '8315 Rolando Avenue', 'NULL', '1 (11) 500 555-0163', '2013-05-25', '5-10 Miles'], ['29322', '545', 'AW00029322', 'NULL', 'Gavin', 'K', 'Alexander', '0', '1981-11-21', 'S', 'NULL', 'M', 'gavin17@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '396 Deer Ridge Way', 'NULL', '146-555-0174', '2013-12-19', '5-10 Miles'], ['29323', '60', 'AW00029323', 'NULL', 'Andrea', 'NULL', 'Cooper', '0', '1981-09-12', 'S', 'NULL', 'F', 'andrea17@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '134 Peachwillow Street', 'NULL', '586-555-0120', '2013-08-13', '5-10 Miles'], ['29324', '607', 'AW00029324', 'NULL', 'Kayla', 'NULL', 'Williams', '0', '1981-10-23', 'M', 'NULL', 'F', 'kayla2@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '3748 Bellwood Dr.', 'NULL', '174-555-0183', '2013-04-03', '5-10 Miles'], ['29325', '611', 'AW00029325', 'NULL', 'Cameron', 'E', 'Thomas', '0', '1982-02-15', 'M', 'NULL', 'M', 'cameron29@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '831 Valley Crest Dr.', 'NULL', '947-555-0132', '2013-08-18', '0-1 Miles'], ['29326', '311', 'AW00029326', 'NULL', 'Victoria', 'C', 'Diaz', '0', '1985-08-16', 'S', 'NULL', 'F', 'victoria68@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '4222 San Jose Dr.', 'NULL', '855-555-0159', '2011-08-10', '0-1 Miles'], ['29327', '611', 'AW00029327', 'NULL', 'Allen', 'NULL', 'Chandra', '0', '1986-02-09', 'M', 'NULL', 'M', 'allen2@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '1475 Doyle', 'NULL', '467-555-0129', '2013-07-09', '0-1 Miles'], ['29328', '325', 'AW00029328', 'NULL', 'Jason', 'NULL', 'Alexander', '0', '1985-04-11', 'M', 'NULL', 'M', 'jason16@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2794 N. Civic Drive', 'NULL', '551-555-0182', '2013-08-16', '5-10 Miles'], ['29329', '547', 'AW00029329', 'NULL', 'Lucas', 'NULL', 'Campbell', '0', '1984-08-17', 'S', 'NULL', 'M', 'lucas8@adventure-works.com', '30000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2382 Arbor Drive', 'NULL', '780-555-0119', '2013-11-15', '5-10 Miles'], ['29330', '552', 'AW00029330', 'NULL', 'Alexa', 'W', 'Ward', '0', '1986-01-09', 'M', 'NULL', 'F', 'alexa10@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '2228 Vista Avenue', 'NULL', '118-555-0167', '2013-09-09', '5-10 Miles'], ['29331', '6', 'AW00029331', 'NULL', 'Melvin', 'NULL', 'Yuan', '0', '1948-03-11', 'M', 'NULL', 'M', 'melvin7@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '4135 Kaywood Drive', 'NULL', '1 (11) 500 555-0142', '2013-08-19', '0-1 Miles'], ['29332', '10', 'AW00029332', 'NULL', 'Shawna', 'L', 'Goel', '0', '1943-02-08', 'S', 'NULL', 'F', 'shawna18@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '8001 Pinetree Court', 'NULL', '1 (11) 500 555-0190', '2013-03-16', '5-10 Miles'], ['29333', '27', 'AW00029333', 'NULL', 'Abby', 'NULL', 'Martinez', '0', '1943-03-10', 'S', 'NULL', 'F', 'abby15@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '1023 Hawkins Street', 'NULL', '1 (11) 500 555-0150', '2013-03-08', '0-1 Miles'], ['29334', '644', 'AW00029334', 'NULL', 'Paige', 'A', 'Howard', '0', '1984-11-08', 'S', 'NULL', 'F', 'paige35@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6068 Campbell Ave', 'NULL', '318-555-0161', '2011-08-14', '0-1 Miles'], ['29335', '637', 'AW00029335', 'NULL', 'Justin', 'NULL', 'Bryant', '0', '1983-09-07', 'S', 'NULL', 'M', 'justin15@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '151 Book Ct', 'NULL', '444-555-0144', '2011-08-15', '0-1 Miles'], ['29336', '63', 'AW00029336', 'NULL', 'Nathaniel', 'S', 'Bailey', '0', '1984-01-14', 'S', 'NULL', 'M', 'nathaniel17@adventure-works.com', '40000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '296 Peachwillow St.', 'NULL', '880-555-0145', '2012-04-22', '0-1 Miles'], ['29337', '22', 'AW00029337', 'NULL', 'Hector', 'A', 'Gomez', '0', '1943-08-18', 'S', 'NULL', 'M', 'hector21@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '3788 Linden Lane', 'NULL', '1 (11) 500 555-0116', '2013-05-15', '5-10 Miles'], ['29338', '9', 'AW00029338', 'NULL', 'Bridget', 'NULL', 'Shan', '0', '1944-02-18', 'M', 'NULL', 'F', 'bridget12@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '7929 Blocking Ct.', 'NULL', '1 (11) 500 555-0160', '2013-07-24', '5-10 Miles'], ['29339', '52', 'AW00029339', 'NULL', 'Brandon', 'NULL', 'Li', '0', '1985-04-10', 'S', 'NULL', 'M', 'brandon23@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '6365 Sun View Way', 'NULL', '286-555-0116', '2013-12-23', '5-10 Miles'], ['29340', '52', 'AW00029340', 'NULL', 'Rachel', 'J', 'Cox', '0', '1985-04-03', 'S', 'NULL', 'F', 'rachel39@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '9576 Pepperidge Place', 'NULL', '610-555-0146', '2011-08-26', '0-1 Miles'], ['29341', '54', 'AW00029341', 'NULL', 'Lucas', 'J', 'Stewart', '0', '1984-12-29', 'S', 'NULL', 'M', 'lucas92@adventure-works.com', '30000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Clerical', 'Administrativo', 'Employé', '0', '2', '3272 Ryan Court', 'NULL', '432-555-0130', '2013-09-07', '5-10 Miles'], ['29342', '23', 'AW00029342', 'NULL', 'Cassie', 'M', 'Anand', '0', '1946-02-17', 'M', 'NULL', 'F', 'cassie20@adventure-works.com', '30000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2474 Banbury Ct', 'NULL', '1 (11) 500 555-0123', '2013-08-11', '0-1 Miles'], ['29343', '40', 'AW00029343', 'NULL', 'Glenn', 'R', 'Wu', '0', '1945-10-12', 'M', 'NULL', 'M', 'glenn7@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '5934 Warmcastle Ct.', 'NULL', '1 (11) 500 555-0127', '2013-12-19', '0-1 Miles'], ['29344', '5', 'AW00029344', 'NULL', 'Gilbert', 'NULL', 'Ye', '0', '1948-05-09', 'S', 'NULL', 'M', 'gilbert7@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '1', '2', '2775 Delta View Ln.', '#9', '1 (11) 500 555-0115', '2013-12-26', '5-10 Miles'], ['29345', '10', 'AW00029345', 'NULL', 'Randall', 'T', 'Diaz', '0', '1958-08-22', 'S', 'NULL', 'M', 'randall4@adventure-works.com', '40000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Management', 'Gestión', 'Direction', '0', '2', '8446 San Gabriel', 'NULL', '1 (11) 500 555-0156', '2013-12-27', '0-1 Miles'], ['29346', '39', 'AW00029346', 'NULL', 'Briana', 'L', 'Ortega', '0', '1948-01-09', 'S', 'NULL', 'F', 'briana18@adventure-works.com', '50000.00', '2', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Management', 'Gestión', 'Direction', '0', '1', '7995 Edwards Ave.', 'NULL', '1 (11) 500 555-0116', '2013-11-29', '0-1 Miles'], ['29347', '361', 'AW00029347', 'NULL', 'Jonathan', 'NULL', 'Edwards', '0', '1976-08-11', 'M', 'NULL', 'M', 'jonathan31@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '1', '7932 Hope Drive', 'NULL', '703-555-0127', '2013-02-26', '0-1 Miles'], ['29348', '637', 'AW00029348', 'NULL', 'Miguel', 'NULL', 'Bryant', '0', '1971-01-12', 'M', 'NULL', 'M', 'miguel64@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '261 Oak Park Blvd.', 'NULL', '716-555-0159', '2013-08-23', '2-5 Miles'], ['29349', '548', 'AW00029349', 'NULL', 'Gabrielle', 'NULL', 'Bryant', '0', '1976-09-30', 'S', 'NULL', 'F', 'gabrielle40@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '25 La Jolla', 'NULL', '202-555-0116', '2013-07-25', '0-1 Miles'], ['29350', '383', 'AW00029350', 'NULL', 'Julia', 'NULL', 'Thompson', '0', '1971-05-09', 'S', 'NULL', 'F', 'julia37@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1774 Tice Valley Blvd.', 'NULL', '120-555-0111', '2011-08-15', '2-5 Miles'], ['29351', '49', 'AW00029351', 'NULL', 'Jason', 'A', 'Hall', '0', '1970-12-24', 'S', 'NULL', 'M', 'jason49@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '8618 Rose Street', 'NULL', '158-555-0156', '2013-10-11', '0-1 Miles'], ['29352', '300', 'AW00029352', 'NULL', 'Lydia', 'C', 'Gonzalez', '0', '1971-02-08', 'S', 'NULL', 'F', 'lydia17@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '3', '6984 Wardlow Lane', '# 116', '959-555-0196', '2011-08-08', '10+ Miles'], ['29353', '612', 'AW00029353', 'NULL', 'Orlando', 'NULL', 'Gomez', '0', '1982-02-10', 'M', 'NULL', 'M', 'orlando2@adventure-works.com', '50000.00', '3', '3', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '3', '414 Joseph Ave', 'NULL', '828-555-0125', '2013-09-01', '10+ Miles'], ['29354', '627', 'AW00029354', 'NULL', 'Isaiah', 'B', 'Edwards', '0', '1971-03-11', 'S', 'NULL', 'M', 'isaiah23@adventure-works.com', '60000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Professional', 'Profesional', 'Cadre', '1', '0', '3694 Sun View Court', 'NULL', '727-555-0161', '2011-08-23', '2-5 Miles'], ['29355', '153', 'AW00029355', 'NULL', 'Virginia', 'NULL', 'Fernandez', '0', '1974-05-03', 'M', 'NULL', 'F', 'virginia18@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Krönerweg 9679', 'Einkaufsabteilung', '1 (11) 500 555-0116', '2012-12-31', '0-1 Miles'], ['29356', '131', 'AW00029356', 'NULL', 'Casey', 'S', 'Diaz', '0', '1974-01-30', 'M', 'NULL', 'M', 'casey26@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Postfach 99 92 92', 'NULL', '1 (11) 500 555-0111', '2013-01-04', '0-1 Miles'], ['29357', '237', 'AW00029357', 'NULL', 'Richard', 'M', 'Brown', '0', '1979-05-05', 'S', 'NULL', 'M', 'richard44@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '7867 F Mt Hood Circle', 'NULL', '1 (11) 500 555-0182', '2013-10-03', '0-1 Miles'], ['29358', '244', 'AW00029358', 'NULL', 'Priscilla', 'NULL', 'Chande', '0', '1974-01-29', 'M', 'NULL', 'F', 'priscilla13@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '3639 Blackridge Drive', 'NULL', '1 (11) 500 555-0179', '2013-10-31', '0-1 Miles'], ['29359', '245', 'AW00029359', 'NULL', 'Harold', 'C', 'Fernandez', '0', '1974-05-20', 'M', 'NULL', 'M', 'harold13@adventure-works.com', '40000.00', '0', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '1105 N. 48th St', 'NULL', '1 (11) 500 555-0125', '2013-11-13', '0-1 Miles'], ['29360', '261', 'AW00029360', 'NULL', 'Bryant', 'R', 'Rodriguez', '0', '1979-09-06', 'S', 'NULL', 'M', 'bryant18@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '7008 Mines Road', 'NULL', '1 (11) 500 555-0151', '2013-11-02', '0-1 Miles'], ['29361', '220', 'AW00029361', 'NULL', 'Sheena', 'NULL', 'Nara', '0', '1972-11-30', 'S', 'NULL', 'F', 'sheena15@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '33, rue Georges-Clémenceau', 'NULL', '1 (11) 500 555-0114', '2012-07-07', '2-5 Miles'], ['29362', '127', 'AW00029362', 'NULL', 'Emmanuel', 'E', 'Chandra', '0', '1973-03-25', 'S', 'NULL', 'M', 'emmanuel2@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Kalkweg 4435', 'NULL', '1 (11) 500 555-0143', '2013-11-11', '2-5 Miles'], ['29363', '147', 'AW00029363', 'NULL', 'Cristina', 'R', 'Jai', '0', '1973-06-23', 'S', 'NULL', 'F', 'cristina11@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Postfach 22 99 99', 'NULL', '1 (11) 500 555-0191', '2013-11-04', '2-5 Miles'], ['29364', '214', 'AW00029364', 'NULL', 'Lee', 'NULL', 'Rubio', '0', '1971-09-21', 'M', 'NULL', 'M', 'lee19@adventure-works.com', '10000.00', '4', '4', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '32, rue des Grands Champs', 'NULL', '1 (11) 500 555-0129', '2012-07-23', '0-1 Miles'], ['29365', '175', 'AW00029365', 'NULL', 'Cheryl', 'M', 'Carlson', '0', '1971-07-07', 'S', 'NULL', 'F', 'cheryl21@adventure-works.com', '20000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Helsenbergbogen 6', 'NULL', '1 (11) 500 555-0161', '2013-11-01', '2-5 Miles'], ['29366', '237', 'AW00029366', 'NULL', 'Dominic', 'NULL', 'Patel', '0', '1973-01-07', 'S', 'NULL', 'M', 'dominic4@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '7334 Sterling Hill', 'NULL', '1 (11) 500 555-0163', '2013-11-20', '0-1 Miles'], ['29367', '266', 'AW00029367', 'NULL', 'Randy', 'G', 'Ye', '0', '1983-09-06', 'S', 'NULL', 'M', 'randy11@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '5417 N Jackson Way', 'NULL', '1 (11) 500 555-0166', '2013-11-21', '0-1 Miles'], ['29368', '270', 'AW00029368', 'NULL', 'Jermaine', 'A', 'Kapoor', '0', '1972-12-09', 'S', 'NULL', 'M', 'jermaine0@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', '8947 Rio Grande Drive', 'NULL', '1 (11) 500 555-0117', '2013-11-06', '0-1 Miles'], ['29369', '277', 'AW00029369', 'NULL', 'Arturo', 'NULL', 'He', '0', '1984-03-19', 'S', 'NULL', 'M', 'arturo20@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '6353 Dan Ysidro Court', 'NULL', '1 (11) 500 555-0133', '2013-12-13', '0-1 Miles'], ['29370', '155', 'AW00029370', 'NULL', 'Mason', 'M', 'Kelly', '0', '1933-04-16', 'S', 'NULL', 'M', 'mason4@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Zeiter Weg 9563', 'NULL', '1 (11) 500 555-0173', '2013-10-01', '2-5 Miles'], ['29371', '160', 'AW00029371', 'NULL', 'Matthew', 'NULL', 'Walker', '0', '1972-06-12', 'M', 'NULL', 'M', 'matthew27@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Auf der Krone 75', 'NULL', '1 (11) 500 555-0178', '2013-10-31', '0-1 Miles'], ['29372', '219', 'AW00029372', 'NULL', 'Daisy', 'NULL', 'Sanz', '0', '1972-03-31', 'M', 'NULL', 'F', 'daisy15@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '44, quai de Grenelle', 'NULL', '1 (11) 500 555-0166', '2013-06-22', '0-1 Miles'], ['29373', '258', 'AW00029373', 'NULL', 'Bobby', 'J', 'Subram', '0', '1972-01-22', 'M', 'NULL', 'M', 'bobby9@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '4051 Sun View Terrace', 'NULL', '1 (11) 500 555-0118', '2013-05-10', '0-1 Miles'], ['29374', '142', 'AW00029374', 'NULL', 'Shane', 'R', 'Sai', '0', '1970-11-18', 'M', 'NULL', 'M', 'shane9@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Lieblingsweg 333', 'NULL', '1 (11) 500 555-0138', '2013-12-02', '0-1 Miles'], ['29375', '145', 'AW00029375', 'NULL', 'Sergio', 'A', 'Malhotra', '0', '1971-03-06', 'M', 'NULL', 'M', 'sergio5@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', 'Erlenweg 9294', 'NULL', '1 (11) 500 555-0148', '2013-12-25', '0-1 Miles'], ['29376', '262', 'AW00029376', 'NULL', 'Matthew', 'D', 'Robinson', '0', '1971-03-09', 'S', 'NULL', 'M', 'matthew23@adventure-works.com', '20000.00', '2', '2', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '4523 Via Cortez', 'NULL', '1 (11) 500 555-0117', '2013-08-01', '0-1 Miles'], ['29377', '175', 'AW00029377', 'NULL', 'Rebekah', 'NULL', 'Carlson', '0', '1971-02-24', 'M', 'NULL', 'F', 'rebekah38@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '1869 Pine Hallow Rd.', 'NULL', '1 (11) 500 555-0154', '2013-07-14', '0-1 Miles'], ['29378', '183', 'AW00029378', 'NULL', 'Dominic', 'NULL', 'Vance', '0', '1970-08-13', 'M', 'NULL', 'M', 'dominic5@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '2', '432, avenue de l´ Union Centrale', 'NULL', '1 (11) 500 555-0123', '2013-11-11', '0-1 Miles'], ['29379', '179', 'AW00029379', 'NULL', 'Craig', 'R', 'Gill', '0', '1976-05-09', 'M', 'NULL', 'M', 'craig13@adventure-works.com', '30000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '2', '75, avenue de la Gare', 'NULL', '1 (11) 500 555-0135', '2013-04-25', '0-1 Miles'], ['29380', '217', 'AW00029380', 'NULL', 'Teresa', 'NULL', 'Blanco', '0', '1970-04-14', 'M', 'NULL', 'F', 'teresa16@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '70, place de la République', 'NULL', '1 (11) 500 555-0114', '2012-07-25', '0-1 Miles'], ['29381', '149', 'AW00029381', 'NULL', 'Melvin', 'M', 'Shen', '0', '1969-11-06', 'M', 'NULL', 'M', 'melvin2@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Lindenalle 800', 'NULL', '1 (11) 500 555-0174', '2013-12-23', '0-1 Miles'], ['29382', '275', 'AW00029382', 'NULL', 'Karla', 'C', 'Deng', '0', '1970-03-13', 'M', 'NULL', 'F', 'karla1@adventure-works.com', '20000.00', '3', '3', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '6469 Apple Drive', 'NULL', '1 (11) 500 555-0149', '2013-05-30', '0-1 Miles'], ['29383', '230', 'AW00029383', 'NULL', 'Kaitlin', 'NULL', 'Vance', '0', '1968-12-13', 'S', 'NULL', 'F', 'kaitlin4@adventure-works.com', '10000.00', '3', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '8435 Kenmore', 'B105', '1 (11) 500 555-0113', '2013-09-01', '0-1 Miles'], ['29384', '278', 'AW00029384', 'NULL', 'Latasha', 'NULL', 'Sanz', '0', '1968-11-29', 'M', 'NULL', 'F', 'latasha20@adventure-works.com', '10000.00', '4', '2', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '1233 Vista Bonita', 'NULL', '1 (11) 500 555-0192', '2013-06-14', '0-1 Miles'], ['29385', '124', 'AW00029385', 'NULL', 'Don', 'A', 'Lal', '0', '1968-09-01', 'S', 'NULL', 'M', 'don8@adventure-works.com', '20000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Werftstr 566', 'NULL', '1 (11) 500 555-0172', '2011-01-19', '0-1 Miles'], ['29386', '277', 'AW00029386', 'NULL', 'Franklin', 'S', 'Wang', '0', '1948-11-03', 'S', 'NULL', 'M', 'franklin1@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '1946 Bayside Way', 'NULL', '1 (11) 500 555-0168', '2013-03-14', '2-5 Miles'], ['29387', '196', 'AW00029387', 'NULL', 'Jenny', 'W', 'Cai', '0', '1944-11-29', 'S', 'NULL', 'F', 'jenny23@adventure-works.com', '10000.00', '4', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '5, rue de Courtaboeuf', 'NULL', '1 (11) 500 555-0145', '2013-06-12', '0-1 Miles'], ['29388', '193', 'AW00029388', 'NULL', 'Calvin', 'L', 'Kumar', '0', '1977-04-19', 'M', 'NULL', 'M', 'calvin8@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '14, place Beaubernard', 'NULL', '1 (11) 500 555-0133', '2012-07-19', '0-1 Miles'], ['29389', '196', 'AW00029389', 'NULL', 'Thomas', 'P', 'Phillips', '0', '1971-08-18', 'M', 'NULL', 'M', 'thomas43@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '387, chaussée de Tournai', 'NULL', '1 (11) 500 555-0110', '2012-07-30', '0-1 Miles'], ['29390', '200', 'AW00029390', 'NULL', 'Summer', 'S', 'Rodriguez', '0', '1971-11-11', 'S', 'NULL', 'F', 'summer17@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '159, avenue du Québec', 'NULL', '1 (11) 500 555-0111', '2012-08-02', '0-1 Miles'], ['29391', '155', 'AW00029391', 'NULL', 'Ebony', 'NULL', 'Chandra', '0', '1972-04-12', 'S', 'NULL', 'F', 'ebony1@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', 'Potsdamer Straße 539', 'NULL', '1 (11) 500 555-0154', '2011-04-30', '0-1 Miles'], ['29392', '260', 'AW00029392', 'NULL', 'Tamara', 'B', 'Andersen', '0', '1971-12-15', 'M', 'NULL', 'F', 'tamara24@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', '5047 Northwood Dr.', 'NULL', '1 (11) 500 555-0133', '2013-12-08', '0-1 Miles'], ['29393', '225', 'AW00029393', 'NULL', 'Sheena', 'NULL', 'Rai', '0', '1969-05-12', 'S', 'NULL', 'F', 'sheena16@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '0', '66, rue de Fontfroide', 'NULL', '1 (11) 500 555-0114', '2013-01-29', '0-1 Miles'], ['29394', '115', 'AW00029394', 'NULL', 'Raquel', 'NULL', 'Torres', '0', '1973-11-01', 'S', 'NULL', 'F', 'raquel8@adventure-works.com', '30000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Postenweg 3138', 'NULL', '1 (11) 500 555-0123', '2013-03-22', '2-5 Miles'], ['29395', '203', 'AW00029395', 'NULL', 'Lydia', 'NULL', 'Rana', '0', '1939-10-06', 'S', 'NULL', 'F', 'lydia10@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '182, avenue des Laurentides', 'NULL', '1 (11) 500 555-0182', '2013-12-05', '1-2 Miles'], ['29396', '154', 'AW00029396', 'NULL', 'Arturo', 'S', 'Zeng', '0', '1939-11-29', 'M', 'NULL', 'M', 'arturo24@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '1', 'Kurfürstenstr 5054', 'NULL', '1 (11) 500 555-0188', '2013-05-06', '0-1 Miles'], ['29397', '193', 'AW00029397', 'NULL', 'Walter', 'E', 'Ramos', '0', '1976-05-10', 'M', 'NULL', 'M', 'walter10@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '2408, rue Maillard', 'NULL', '1 (11) 500 555-0143', '2012-08-08', '0-1 Miles'], ['29398', '168', 'AW00029398', 'NULL', 'Bruce', 'G', 'Suri', '0', '1971-01-17', 'S', 'NULL', 'M', 'bruce0@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '0', '0', 'Hansaallee 5989', 'NULL', '1 (11) 500 555-0179', '2011-04-12', '0-1 Miles'], ['29399', '158', 'AW00029399', 'NULL', 'Janet', 'NULL', 'Gomez', '0', '1976-01-31', 'S', 'NULL', 'F', 'janet6@adventure-works.com', '40000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Professional', 'Profesional', 'Cadre', '1', '0', 'Unter Linden 942', 'NULL', '1 (11) 500 555-0196', '2011-04-10', '0-1 Miles'], ['29400', '151', 'AW00029400', 'NULL', 'Marvin', 'NULL', 'Browning', '0', '1976-10-20', 'M', 'NULL', 'M', 'marvin16@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Buergermeister-ulrich-str 098', 'NULL', '1 (11) 500 555-0155', '2011-05-06', '0-1 Miles'], ['29401', '271', 'AW00029401', 'NULL', 'Jésus', 'NULL', 'Gomez', '0', '1976-10-28', 'M', 'NULL', 'M', 'jésus2@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6288 Augustine Dr.', 'NULL', '1 (11) 500 555-0114', '2013-01-22', '0-1 Miles'], ['29402', '208', 'AW00029402', 'NULL', 'Damien', 'K', 'Andersen', '0', '1969-10-19', 'S', 'NULL', 'M', 'damien29@adventure-works.com', '30000.00', '2', '2', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '2, rue de Maubeuge', 'NULL', '1 (11) 500 555-0154', '2013-10-01', '0-1 Miles'], ['29403', '160', 'AW00029403', 'NULL', 'Erik', 'R', 'Romero', '0', '1970-01-02', 'M', 'NULL', 'M', 'erik9@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', 'Krönerweg 7677', 'NULL', '1 (11) 500 555-0130', '2011-05-24', '0-1 Miles'], ['29404', '209', 'AW00029404', 'NULL', 'Chloe', 'L', 'Ross', '0', '1974-05-02', 'S', 'NULL', 'F', 'chloe70@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '0', '9402, rue Lauriston', 'NULL', '1 (11) 500 555-0184', '2012-08-05', '0-1 Miles'], ['29405', '209', 'AW00029405', 'NULL', 'Meagan', 'F', 'Vance', '0', '1983-06-22', 'S', 'NULL', 'F', 'meagan4@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '622, rue Villedo', 'NULL', '1 (11) 500 555-0139', '2013-08-13', '2-5 Miles'], ['29406', '127', 'AW00029406', 'NULL', 'Melissa', 'A', 'Ward', '0', '1982-03-25', 'M', 'NULL', 'F', 'melissa34@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', 'Kapellstr 4561', 'NULL', '1 (11) 500 555-0122', '2013-08-01', '0-1 Miles'], ['29407', '236', 'AW00029407', 'Ms.', 'Samantha', 'NULL', 'Smith', '0', '1981-11-08', 'M', 'NULL', 'F', 'samantha1@adventure-works.com', '20000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '9021 Onley Dr', 'NULL', '978-555-0100', '2013-06-27', '0-1 Miles'], ['29408', '211', 'AW00029408', 'NULL', 'Heather', 'M', 'Chen', '0', '1985-02-20', 'M', 'NULL', 'F', 'heather2@adventure-works.com', '20000.00', '4', '4', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '135, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0149', '2013-07-31', '0-1 Miles'], ['29409', '147', 'AW00029409', 'NULL', 'Kelsey', 'NULL', 'Pal', '0', '1985-04-21', 'S', 'NULL', 'F', 'kelsey12@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Holzstr 4222', 'NULL', '1 (11) 500 555-0194', '2013-04-12', '0-1 Miles'], ['29410', '120', 'AW00029410', 'NULL', 'Lucas', 'W', 'Price', '0', '1984-08-20', 'S', 'NULL', 'M', 'lucas49@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', 'Buergermeister-ulrich-str 44', 'NULL', '1 (11) 500 555-0191', '2011-05-28', '0-1 Miles'], ['29411', '279', 'AW00029411', 'NULL', 'Cara', 'NULL', 'Lin', '0', '1974-10-13', 'M', 'NULL', 'F', 'cara4@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '8568 Rolando Ave.', 'NULL', '1 (11) 500 555-0182', '2013-02-14', '0-1 Miles'], ['29412', '207', 'AW00029412', 'NULL', 'Melinda', 'K', 'Gutierrez', '0', '1973-09-14', 'M', 'NULL', 'F', 'melinda6@adventure-works.com', '40000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '1', '555, quai Paul Doumer', 'NULL', '1 (11) 500 555-0155', '2012-08-09', '0-1 Miles'], ['29413', '206', 'AW00029413', 'NULL', 'Arthur', 'T', 'Garcia', '0', '1984-03-06', 'M', 'NULL', 'M', 'arthur17@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '2', '9, avenue du Président-Kennedy', 'NULL', '1 (11) 500 555-0179', '2013-12-14', '0-1 Miles'], ['29414', '190', 'AW00029414', 'NULL', 'Lydia', 'B', 'Patel', '0', '1984-02-22', 'S', 'NULL', 'F', 'lydia2@adventure-works.com', '30000.00', '3', '3', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '2', '87, rue de la Comédie', 'NULL', '1 (11) 500 555-0191', '2012-08-20', '0-1 Miles'], ['29415', '223', 'AW00029415', 'NULL', 'Oscar', 'L', 'Flores', '0', '1983-03-25', 'S', 'NULL', 'M', 'oscar20@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '1', '1', '816, avenue des Champs-Elysées', 'NULL', '1 (11) 500 555-0112', '2012-08-02', '2-5 Miles'], ['29416', '234', 'AW00029416', 'NULL', 'Pedro', 'P', 'Ramos', '0', '1981-02-09', 'S', 'NULL', 'M', 'pedro38@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '9640 Alderwood Lane', 'NULL', '1 (11) 500 555-0153', '2013-07-14', '0-1 Miles'], ['29417', '150', 'AW00029417', 'NULL', 'Kellie', 'B', 'Vazquez', '0', '1980-08-29', 'M', 'NULL', 'F', 'kellie13@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Heideweg 6457', 'NULL', '1 (11) 500 555-0183', '2013-07-10', '0-1 Miles'], ['29418', '163', 'AW00029418', 'NULL', 'Lindsey', 'NULL', 'Sharma', '0', '1981-04-19', 'S', 'NULL', 'F', 'lindsey10@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Zollstr 680', 'Verkaufsabteilung', '1 (11) 500 555-0134', '2013-12-22', '5-10 Miles'], ['29419', '222', 'AW00029419', 'NULL', 'Carrie', 'NULL', 'Vazquez', '0', '1982-05-23', 'S', 'NULL', 'F', 'carrie13@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '570, rue de Fontfroide', 'NULL', '1 (11) 500 555-0177', '2013-10-07', '2-5 Miles'], ['29420', '196', 'AW00029420', 'NULL', 'Linda', 'NULL', 'Travers', '0', '1981-07-12', 'M', 'NULL', 'F', 'linda27@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '80, avenue des Champs-Elysées', 'NULL', '1 (11) 500 555-0169', '2013-09-16', '2-5 Miles'], ['29421', '223', 'AW00029421', 'NULL', 'Blake', 'NULL', 'Williams', '0', '1981-08-18', 'S', 'NULL', 'M', 'blake1@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '211bis, rue des Peupliers', 'NULL', '1 (11) 500 555-0154', '2013-12-02', '2-5 Miles'], ['29422', '209', 'AW00029422', 'NULL', 'Ian', 'C', 'Adams', '0', '1982-02-16', 'S', 'NULL', 'M', 'ian30@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '7963 Elk Dr', '#4', '1 (11) 500 555-0151', '2013-10-14', '2-5 Miles'], ['29423', '209', 'AW00029423', 'NULL', 'Tony', 'W', 'Luo', '0', '1981-12-06', 'S', 'NULL', 'M', 'tony9@adventure-works.com', '20000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '705, boulevard du Montparnasse', 'NULL', '1 (11) 500 555-0135', '2013-11-22', '2-5 Miles'], ['29424', '176', 'AW00029424', 'NULL', 'Erik', 'NULL', 'Gill', '0', '1980-02-02', 'M', 'NULL', 'M', 'erik14@adventure-works.com', '10000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Postfach 66 11 66', 'NULL', '1 (11) 500 555-0169', '2013-06-24', '0-1 Miles'], ['29425', '265', 'AW00029425', 'NULL', 'Tommy', 'J', 'Xie', '0', '1980-01-23', 'S', 'NULL', 'M', 'tommy1@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '6473 Clay Way', 'NULL', '1 (11) 500 555-0128', '2013-02-04', '0-1 Miles'], ['29426', '199', 'AW00029426', 'NULL', 'Neil', 'NULL', 'Gomez', '0', '1980-03-31', 'S', 'NULL', 'M', 'neil2@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '21, impasse Ste-Madeleine', 'NULL', '1 (11) 500 555-0117', '2013-10-12', '0-1 Miles'], ['29427', '199', 'AW00029427', 'NULL', 'Wesley', 'J', 'Chen', '0', '1980-02-08', 'S', 'NULL', 'M', 'wesley2@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '40, rue des Rosiers', 'NULL', '1 (11) 500 555-0124', '2013-05-17', '0-1 Miles'], ['29428', '156', 'AW00029428', 'NULL', 'Kristopher', 'E', 'Perez', '0', '1979-12-09', 'M', 'NULL', 'M', 'kristopher20@adventure-works.com', '20000.00', '0', '0', 'Partial High School', 'Educación secundaria (en curso)', 'Niveau bac', 'Manual', 'Obrero', 'Ouvrier', '1', '2', 'Altendorfer Straße 39', 'Einkaufsabteilung', '1 (11) 500 555-0183', '2013-02-05', '1-2 Miles'], ['29429', '203', 'AW00029429', 'NULL', 'Marie', 'NULL', 'Suarez', '0', '1980-11-18', 'S', 'NULL', 'F', 'marie43@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', '6186, place du Tertre', 'NULL', '1 (11) 500 555-0111', '2013-12-12', '0-1 Miles'], ['29430', '156', 'AW00029430', 'NULL', 'Donna', 'H', 'Goel', '0', '1981-05-03', 'S', 'NULL', 'F', 'donna17@adventure-works.com', '30000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Clerical', 'Administrativo', 'Employé', '0', '1', 'Galeriestr 6818', 'NULL', '1 (11) 500 555-0192', '2013-08-24', '0-1 Miles'], ['29431', '232', 'AW00029431', 'NULL', 'Marie', 'F', 'Gutierrez', '0', '1981-03-16', 'M', 'NULL', 'F', 'marie34@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '0', '0', '156 East Lake Court', 'NULL', '1 (11) 500 555-0152', '2013-03-07', '0-1 Miles'], ['29432', '243', 'AW00029432', 'NULL', 'Gabrielle', 'E', 'Roberts', '0', '1981-01-04', 'M', 'NULL', 'F', 'gabrielle48@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '2657 Honey Trail Lane', 'NULL', '1 (11) 500 555-0144', '2013-04-07', '0-1 Miles'], ['29433', '267', 'AW00029433', 'NULL', 'Thomas', 'M', 'King', '0', '1986-02-10', 'M', 'NULL', 'M', 'thomas55@adventure-works.com', '40000.00', '1', '1', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Skilled Manual', 'Obrero especializado', 'Technicien', '1', '0', '6557 Artnell Ct.', 'NULL', '1 (11) 500 555-0128', '2013-04-05', '1-2 Miles'], ['29434', '161', 'AW00029434', 'NULL', 'Donna', 'D', 'Yuan', '0', '1968-03-31', 'M', 'NULL', 'F', 'donna6@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Potsdamer Straße 646', 'NULL', '1 (11) 500 555-0162', '2013-04-03', '0-1 Miles'], ['29435', '178', 'AW00029435', 'NULL', 'Stanley', 'NULL', 'Rodriguez', '0', '1968-05-10', 'M', 'NULL', 'M', 'stanley21@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Zeiter Weg 2264', 'NULL', '1 (11) 500 555-0166', '2013-04-22', '0-1 Miles'], ['29436', '132', 'AW00029436', 'NULL', 'Adriana', 'C', 'Raman', '0', '1966-07-17', 'S', 'NULL', 'F', 'adriana13@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '0', '0', 'Carlsplatz 4', 'NULL', '1 (11) 500 555-0164', '2013-04-30', '0-1 Miles'], ['29437', '223', 'AW00029437', 'NULL', 'Haley', 'A', 'Bell', '0', '1967-12-30', 'S', 'NULL', 'F', 'haley5@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '37, avenue de Norvege', 'NULL', '1 (11) 500 555-0187', '2013-09-27', '0-1 Miles'], ['29438', '143', 'AW00029438', 'NULL', 'Terrance', 'G', 'Fernandez', '0', '1972-07-14', 'M', 'NULL', 'M', 'terrance13@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Residenz Straße 944', 'Verkaufsabteilung', '1 (11) 500 555-0133', '2013-05-11', '0-1 Miles'], ['29439', '240', 'AW00029439', 'NULL', 'Laura', 'M', 'Zhu', '0', '1972-10-12', 'M', 'NULL', 'F', 'laura19@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9621 Alamo Court', 'NULL', '1 (11) 500 555-0197', '2013-07-05', '0-1 Miles'], ['29440', '159', 'AW00029440', 'NULL', 'Rafael', 'A', 'Cai', '0', '1967-04-09', 'S', 'NULL', 'M', 'rafael21@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Hellweg 4754', 'NULL', '1 (11) 500 555-0129', '2013-12-03', '0-1 Miles'], ['29441', '171', 'AW00029441', 'NULL', 'Adriana', 'L', 'Patel', '0', '1942-02-01', 'M', 'NULL', 'F', 'adriana3@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Karl Liebknecht str 577', 'NULL', '1 (11) 500 555-0125', '2013-12-25', '0-1 Miles'], ['29442', '174', 'AW00029442', 'NULL', 'Damien', 'M', 'Yuan', '0', '1969-08-30', 'S', 'NULL', 'M', 'damien24@adventure-works.com', '10000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Hellweg 4644', 'NULL', '1 (11) 500 555-0195', '2013-04-19', '0-1 Miles'], ['29443', '267', 'AW00029443', 'NULL', 'Gabriel', 'R', 'Phillips', '0', '1962-02-25', 'S', 'NULL', 'M', 'gabriel36@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '7669 Alpine Dr.', 'NULL', '1 (11) 500 555-0114', '2013-06-26', '0-1 Miles'], ['29444', '275', 'AW00029444', 'NULL', 'Beth', 'NULL', 'Blanco', '0', '1962-03-08', 'M', 'NULL', 'F', 'beth18@adventure-works.com', '20000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '7006 Royal Links Ct.', 'NULL', '1 (11) 500 555-0174', '2013-10-08', '0-1 Miles'], ['29445', '186', 'AW00029445', 'NULL', 'Bonnie', 'A', 'Lal', '0', '1943-03-27', 'S', 'NULL', 'F', 'bonnie14@adventure-works.com', '10000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '1', '539, avenue du Québec', 'NULL', '1 (11) 500 555-0191', '2013-09-07', '0-1 Miles'], ['29446', '156', 'AW00029446', 'NULL', 'Jamie', 'P', 'Ma', '0', '1942-10-14', 'S', 'NULL', 'F', 'jamie19@adventure-works.com', '20000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Alderweg 4518', 'NULL', '1 (11) 500 555-0142', '2013-12-01', '0-1 Miles'], ['29447', '186', 'AW00029447', 'NULL', 'Lindsay', 'K', 'Deng', '0', '1943-11-22', 'S', 'NULL', 'F', 'lindsay1@adventure-works.com', '10000.00', '2', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '0', '1', '3535, rue des Grands Champs', 'NULL', '1 (11) 500 555-0189', '2013-12-26', '2-5 Miles'], ['29448', '132', 'AW00029448', 'NULL', 'Lindsey', 'J', 'Yuan', '0', '1947-05-28', 'S', 'NULL', 'F', 'lindsey7@adventure-works.com', '20000.00', '1', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', 'Carlsplatz 123', 'NULL', '1 (11) 500 555-0147', '2011-05-01', '0-1 Miles'], ['29449', '135', 'AW00029449', 'NULL', 'Laura', 'C', 'Chen', '0', '1946-12-04', 'S', 'NULL', 'F', 'laura9@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Winter der Böck 254', 'NULL', '1 (11) 500 555-0166', '2011-05-13', '0-1 Miles'], ['29450', '180', 'AW00029450', 'NULL', 'Bradley', 'R', 'Chande', '0', '1948-05-06', 'S', 'NULL', 'M', 'bradley17@adventure-works.com', '10000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '1, place de Brazaville', 'NULL', '1 (11) 500 555-0169', '2012-09-16', '1-2 Miles'], ['29451', '202', 'AW00029451', 'NULL', 'Geoffrey', 'A', 'Lopez', '0', '1959-03-19', 'S', 'NULL', 'M', 'geoffrey14@adventure-works.com', '10000.00', '3', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '5911, rue des Ecoles', 'NULL', '1 (11) 500 555-0143', '2013-02-08', '2-5 Miles'], ['29452', '3', 'AW00029452', 'NULL', 'Meredith', 'J', 'Romero', '0', '1984-11-19', 'S', 'NULL', 'F', 'meredith32@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '8335 West Hookston Road', 'NULL', '1 (11) 500 555-0187', '2013-08-10', '2-5 Miles'], ['29453', '36', 'AW00029453', 'NULL', 'Victor', 'R', 'Vazquez', '0', '1986-02-22', 'M', 'NULL', 'M', 'victor15@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9302 Blue Ridge', 'NULL', '1 (11) 500 555-0194', '2013-09-03', '0-1 Miles'], ['29454', '21', 'AW00029454', 'NULL', 'Victoria', 'NULL', 'Bradley', '0', '1983-07-24', 'M', 'NULL', 'F', 'victoria31@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '1227 Wesley Court', 'NULL', '1 (11) 500 555-0125', '2013-09-14', '2-5 Miles'], ['29455', '39', 'AW00029455', 'NULL', 'Dawn', 'D', 'Zeng', '0', '1984-01-06', 'M', 'NULL', 'F', 'dawn23@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '460 Skyline Dr', 'NULL', '1 (11) 500 555-0161', '2013-09-27', '2-5 Miles'], ['29456', '5', 'AW00029456', 'NULL', 'Lindsay', 'NULL', 'She', '0', '1983-12-25', 'S', 'NULL', 'F', 'lindsay0@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '8241 Seawind Dr.', 'NULL', '1 (11) 500 555-0142', '2013-09-08', '2-5 Miles'], ['29457', '33', 'AW00029457', 'NULL', 'Cynthia', 'NULL', 'Kapoor', '0', '1984-01-25', 'S', 'NULL', 'F', 'cynthia5@adventure-works.com', '10000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '7045 Creekside Drive', 'NULL', '1 (11) 500 555-0180', '2013-09-12', '2-5 Miles'], ['29458', '17', 'AW00029458', 'NULL', 'Danny', 'M', 'Moreno', '0', '1982-08-24', 'S', 'NULL', 'M', 'danny7@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '1', '1170 Shaw Rd', 'NULL', '1 (11) 500 555-0188', '2013-09-14', '2-5 Miles'], ['29459', '25', 'AW00029459', 'NULL', 'Marco', 'L', 'Malhotra', '0', '1982-11-01', 'S', 'NULL', 'M', 'marco5@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '8168 Eaker Way', 'NULL', '1 (11) 500 555-0172', '2013-09-19', '2-5 Miles'], ['29460', '38', 'AW00029460', 'NULL', 'Andres', 'E', 'Chander', '0', '1982-09-12', 'M', 'NULL', 'M', 'andres13@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '2', '6030 Double Court', 'NULL', '1 (11) 500 555-0133', '2013-09-06', '0-1 Miles'], ['29461', '29', 'AW00029461', 'NULL', 'Colin', 'C', 'Xu', '0', '1983-04-08', 'M', 'NULL', 'M', 'colin28@adventure-works.com', '10000.00', '0', '0', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '2', '1654 Bonari Court', 'NULL', '1 (11) 500 555-0146', '2013-10-19', '0-1 Miles'], ['29462', '26', 'AW00029462', 'NULL', 'Clinton', 'NULL', 'Hernandez', '0', '1985-01-18', 'S', 'NULL', 'M', 'clinton0@adventure-works.com', '20000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1733 Thistle Circle', 'NULL', '1 (11) 500 555-0189', '2013-09-30', '0-1 Miles'], ['29463', '23', 'AW00029463', 'NULL', 'Lucas', 'NULL', 'Gonzales', '0', '1984-02-17', 'S', 'NULL', 'M', 'lucas65@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '6908 Woodchuck Pl.', 'NULL', '1 (11) 500 555-0172', '2013-10-09', '2-5 Miles'], ['29464', '26', 'AW00029464', 'NULL', 'Eugene', 'NULL', 'Gao', '0', '1983-03-05', 'S', 'NULL', 'M', 'eugene19@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '4581 Coldwater Drive', 'NULL', '1 (11) 500 555-0177', '2013-10-15', '1-2 Miles'], ['29465', '8', 'AW00029465', 'NULL', 'Roy', 'NULL', 'Gill', '0', '1982-12-17', 'S', 'NULL', 'M', 'roy33@adventure-works.com', '20000.00', '0', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '1', '0', '4072 South Hampton Road', 'NULL', '1 (11) 500 555-0110', '2013-10-20', '0-1 Miles'], ['29466', '161', 'AW00029466', 'NULL', 'Lance', 'NULL', 'Jimenez', '0', '1949-05-25', 'M', 'NULL', 'M', 'lance5@adventure-works.com', '30000.00', '1', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Auf Der Steige 532', 'NULL', '1 (11) 500 555-0126', '2011-06-15', '0-1 Miles'], ['29467', '178', 'AW00029467', 'NULL', 'Monica', 'J', 'Mehta', '0', '1972-10-12', 'M', 'NULL', 'F', 'monica14@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', 'Bundesallee 2461', 'NULL', '1 (11) 500 555-0121', '2011-06-04', '0-1 Miles'], ['29468', '236', 'AW00029468', 'NULL', 'Jacqueline', 'H', 'Morris', '0', '1972-06-23', 'M', 'NULL', 'F', 'jacqueline43@adventure-works.com', '30000.00', '4', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '6934 Santa Cruz Dr.', 'NULL', '1 (11) 500 555-0131', '2013-06-04', '0-1 Miles'], ['29469', '264', 'AW00029469', 'NULL', 'Dominique', 'M', 'Saunders', '0', '1977-10-20', 'M', 'NULL', 'F', 'dominique8@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', '3792 Westwood Ct.', 'NULL', '1 (11) 500 555-0172', '2013-06-16', '0-1 Miles'], ['29470', '221', 'AW00029470', 'NULL', 'Nathan', 'NULL', 'Roberts', '0', '1971-08-22', 'S', 'NULL', 'M', 'nathan33@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '29, boulevard Beau Marchais', 'NULL', '1 (11) 500 555-0111', '2013-12-05', '1-2 Miles'], ['29471', '186', 'AW00029471', 'NULL', 'Dana', 'NULL', 'Ortega', '0', '1965-09-23', 'S', 'NULL', 'F', 'dana15@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '80, rue de Fontfroide', 'NULL', '1 (11) 500 555-0148', '2014-01-21', '2-5 Miles'], ['29472', '193', 'AW00029472', 'NULL', 'Lacey', 'M', 'Sharma', '0', '1965-09-11', 'M', 'NULL', 'F', 'lacey44@adventure-works.com', '10000.00', '1', '1', 'High School', 'Educación secundaria', 'Bac + 2', 'Manual', 'Obrero', 'Ouvrier', '0', '1', '21, avenue Reille', 'NULL', '1 (11) 500 555-0178', '2013-09-01', '1-2 Miles'], ['29473', '262', 'AW00029473', 'NULL', 'Carmen', 'J', 'Subram', '0', '1965-11-19', 'S', 'NULL', 'F', 'carmen16@adventure-works.com', '20000.00', '1', '1', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '0', '6467 Buena Vista', 'NULL', '1 (11) 500 555-0129', '2013-06-03', '2-5 Miles'], ['29474', '174', 'AW00029474', 'NULL', 'Jaime', 'B', 'Raje', '0', '1965-04-02', 'M', 'NULL', 'M', 'jaime36@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Potsdamer Straße 646', 'NULL', '1 (11) 500 555-0174', '2011-06-19', '0-1 Miles'], ['29475', '147', 'AW00029475', 'NULL', 'Jared', 'A', 'Ward', '0', '1976-03-18', 'S', 'NULL', 'M', 'jared6@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Erftplatz 876', 'NULL', '1 (11) 500 555-0135', '2011-06-29', '2-5 Miles'], ['29476', '147', 'AW00029476', 'NULL', 'Elizabeth', 'NULL', 'Bradley', '0', '1964-12-30', 'M', 'NULL', 'F', 'elizabeth30@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'Nonnendamm 2', 'NULL', '1 (11) 500 555-0177', '2011-07-21', '0-1 Miles'], ['29477', '253', 'AW00029477', 'NULL', 'Neil', 'N', 'Ruiz', '0', '1965-01-02', 'M', 'NULL', 'M', 'neil3@adventure-works.com', '20000.00', '2', '0', 'Partial College', 'Estudios universitarios (en curso)', 'Baccalauréat', 'Manual', 'Obrero', 'Ouvrier', '0', '1', 'P.O. Box 9178', 'NULL', '1 (11) 500 555-0114', '2013-06-18', '1-2 Miles'], ['29478', '269', 'AW00029478', 'NULL', 'Darren', 'D', 'Carlson', '0', '1964-11-21', 'S', 'NULL', 'M', 'darren41@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '5240 Premier Pl.', 'NULL', '1 (11) 500 555-0132', '2013-06-26', '0-1 Miles'], ['29479', '209', 'AW00029479', 'NULL', 'Tommy', 'L', 'Tang', '0', '1969-06-30', 'M', 'NULL', 'M', 'tommy2@adventure-works.com', '30000.00', '1', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '111, rue Maillard', 'NULL', '1 (11) 500 555-0136', '2012-09-04', '0-1 Miles'], ['29480', '248', 'AW00029480', 'NULL', 'Nina', 'W', 'Raji', '0', '1977-05-06', 'S', 'NULL', 'F', 'nina21@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '1', '0', '9 Katherine Drive', 'NULL', '1 (11) 500 555-0146', '2013-07-17', '0-1 Miles'], ['29481', '120', 'AW00029481', 'NULL', 'Ivan', 'NULL', 'Suri', '0', '1965-07-04', 'S', 'NULL', 'M', 'ivan0@adventure-works.com', '30000.00', '3', '0', 'Graduate Degree', 'Estudios de postgrado', 'Bac + 3', 'Clerical', 'Administrativo', 'Employé', '0', '0', 'Knaackstr 4', 'NULL', '1 (11) 500 555-0144', '2011-08-13', '0-1 Miles'], ['29482', '179', 'AW00029482', 'NULL', 'Clayton', 'NULL', 'Zhang', '0', '1964-09-01', 'M', 'NULL', 'M', 'clayton0@adventure-works.com', '30000.00', '3', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '1080, quai de Grenelle', 'NULL', '1 (11) 500 555-0137', '2012-09-18', '0-1 Miles'], ['29483', '217', 'AW00029483', 'NULL', 'Jésus', 'L', 'Navarro', '0', '1965-06-06', 'M', 'NULL', 'M', 'jésus9@adventure-works.com', '30000.00', '0', '0', 'Bachelors', 'Licenciatura', 'Bac + 4', 'Clerical', 'Administrativo', 'Employé', '1', '0', '244, rue de la Centenaire', 'NULL', '1 (11) 500 555-0141', '2012-09-09', '0-1 Miles']]
In [38]:
#Steps of reading CSV files using pandas
#CSV stands for “Comma Separated Values.” It is the simplest form of storing data in tabular form as plain text.

import pandas as pd
DimCustomer= pd.read_csv("DimCustomer.csv")
DimCustomer
Out[38]:
CustomerKey GeographyKey CustomerAlternateKey Title FirstName MiddleName LastName NameStyle BirthDate MaritalStatus ... EnglishOccupation SpanishOccupation FrenchOccupation HouseOwnerFlag NumberCarsOwned AddressLine1 AddressLine2 Phone DateFirstPurchase CommuteDistance
0 11000 26 AW00011000 NaN Jon V Yang 0 1971-10-06 M ... Professional Profesional Cadre 1 0 3761 N. 14th St NaN 1 (11) 500 555-0162 2011-01-19 1-2 Miles
1 11001 37 AW00011001 NaN Eugene L Huang 0 1976-05-10 S ... Professional Profesional Cadre 0 1 2243 W St. NaN 1 (11) 500 555-0110 2011-01-15 0-1 Miles
2 11002 31 AW00011002 NaN Ruben NaN Torres 0 1971-02-09 M ... Professional Profesional Cadre 1 1 5844 Linden Land NaN 1 (11) 500 555-0184 2011-01-07 2-5 Miles
3 11003 11 AW00011003 NaN Christy NaN Zhu 0 1973-08-14 S ... Professional Profesional Cadre 0 1 1825 Village Pl. NaN 1 (11) 500 555-0162 2010-12-29 5-10 Miles
4 11004 19 AW00011004 NaN Elizabeth NaN Johnson 0 1979-08-05 S ... Professional Profesional Cadre 1 4 7553 Harness Circle NaN 1 (11) 500 555-0131 2011-01-23 1-2 Miles
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
18479 29479 209 AW00029479 NaN Tommy L Tang 0 1969-06-30 M ... Clerical Administrativo Employé 1 0 111, rue Maillard NaN 1 (11) 500 555-0136 2012-09-04 0-1 Miles
18480 29480 248 AW00029480 NaN Nina W Raji 0 1977-05-06 S ... Clerical Administrativo Employé 1 0 9 Katherine Drive NaN 1 (11) 500 555-0146 2013-07-17 0-1 Miles
18481 29481 120 AW00029481 NaN Ivan NaN Suri 0 1965-07-04 S ... Clerical Administrativo Employé 0 0 Knaackstr 4 NaN 1 (11) 500 555-0144 2011-08-13 0-1 Miles
18482 29482 179 AW00029482 NaN Clayton NaN Zhang 0 1964-09-01 M ... Clerical Administrativo Employé 1 0 1080, quai de Grenelle NaN 1 (11) 500 555-0137 2012-09-18 0-1 Miles
18483 29483 217 AW00029483 NaN Jésus L Navarro 0 1965-06-06 M ... Clerical Administrativo Employé 1 0 244, rue de la Centenaire NaN 1 (11) 500 555-0141 2012-09-09 0-1 Miles

18484 rows × 29 columns

In [39]:
#3. Extract the field names
#.columns is used to obtain the header/field names

DimCustomer.columns 
Out[39]:
Index(['CustomerKey', 'GeographyKey', 'CustomerAlternateKey', 'Title',
       'FirstName', 'MiddleName', 'LastName', 'NameStyle', 'BirthDate',
       'MaritalStatus', 'Suffix', 'Gender', 'EmailAddress', 'YearlyIncome',
       'TotalChildren', 'NumberChildrenAtHome', 'EnglishEducation',
       'SpanishEducation', 'FrenchEducation', 'EnglishOccupation',
       'SpanishOccupation', 'FrenchOccupation', 'HouseOwnerFlag',
       'NumberCarsOwned', 'AddressLine1', 'AddressLine2', 'Phone',
       'DateFirstPurchase', 'CommuteDistance'],
      dtype='object')
In [40]:
pd.set_option('display.max_rows', 5)
print (DimCustomer)
       CustomerKey  GeographyKey CustomerAlternateKey Title FirstName  \
0            11000            26           AW00011000   NaN       Jon   
1            11001            37           AW00011001   NaN    Eugene   
...            ...           ...                  ...   ...       ...   
18482        29482           179           AW00029482   NaN   Clayton   
18483        29483           217           AW00029483   NaN     Jésus   

      MiddleName LastName  NameStyle   BirthDate MaritalStatus  ...  \
0              V     Yang          0  1971-10-06             M  ...   
1              L    Huang          0  1976-05-10             S  ...   
...          ...      ...        ...         ...           ...  ...   
18482        NaN    Zhang          0  1964-09-01             M  ...   
18483          L  Navarro          0  1965-06-06             M  ...   

      EnglishOccupation SpanishOccupation FrenchOccupation  HouseOwnerFlag  \
0          Professional       Profesional            Cadre               1   
1          Professional       Profesional            Cadre               0   
...                 ...               ...              ...             ...   
18482          Clerical    Administrativo          Employé               1   
18483          Clerical    Administrativo          Employé               1   

       NumberCarsOwned               AddressLine1 AddressLine2  \
0                    0            3761 N. 14th St          NaN   
1                    1                 2243 W St.          NaN   
...                ...                        ...          ...   
18482                0     1080, quai de Grenelle          NaN   
18483                0  244, rue de la Centenaire          NaN   

                     Phone DateFirstPurchase CommuteDistance  
0      1 (11) 500 555-0162        2011-01-19       1-2 Miles  
1      1 (11) 500 555-0110        2011-01-15       0-1 Miles  
...                    ...               ...             ...  
18482  1 (11) 500 555-0137        2012-09-18       0-1 Miles  
18483  1 (11) 500 555-0141        2012-09-09       0-1 Miles  

[18484 rows x 29 columns]

Using SQLlite with Python
¶

image.png

SQLite is a C library that provides a lightweight disk-based database that doesn’t require a separate server process and allows accessing the database using a nonstandard variant of the SQL query language.¶

In [16]:
import sqlite3

print(sqlite3.version)
print(sqlite3.sqlite_version)
2.6.0
3.37.2
In [17]:
#1) Connect to the database.  In Memory in this case.

db = sqlite3.connect(':memory:')
In [18]:
#2) Create a cursor to use to execute SQL statements.

cursor = db.cursor()
In [19]:
#3) Use the cursor to execute SQL statements to the database.
#Note:  We always execute a commit after the statement.

cursor.execute('''CREATE TABLE IF NOT EXISTS books(id INTEGER PRIMARY KEY, 
                   title TEXT, author TEXT, price TEXT, year TEXT)
''')
db.commit()
In [20]:
cursor.execute('''INSERT INTO books values (1, 'Learning SQL', 'Alan Beaulieu', 71.00, 2020)
''')
cursor.execute('''INSERT INTO books values (2, "'SQL for Data Analysis", 'Douglas Adams', 102.00, 2021)
''')
db.commit()
In [21]:
lstbooks = cursor.execute('''select * from books;''').fetchall()
db.commit()
print(lstbooks)
[(1, 'Learning SQL', 'Alan Beaulieu', '71.0', '2020'), (2, "'SQL for Data Analysis", 'Douglas Adams', '102.0', '2021')]
In [22]:
#type 
type(lstbooks)
Out[22]:
list
In [23]:
#using a dataframe

import sqlite3
import pandas as pd

# convert query results to a dataframe
dfbook = pd.read_sql_query("SELECT * FROM books", db)
dfbook.head()
Out[23]:
id title author price year
0 1 Learning SQL Alan Beaulieu 71.0 2020
1 2 'SQL for Data Analysis Douglas Adams 102.0 2021
In [10]:
#Dropping the table

cursor = db.cursor()
cursor.execute('''DROP TABLE books''')
db.commit()
In [24]:
#check if the table books has been dropped

booksdf = cursor.execute('''select * from books;''').fetchall()
db.commit()
In [27]:
cursor.close()
#conn.close()

Accessing SQL Server from Python with ODBC
¶

What Python package should I use?¶

Connecting to SQL Server requires installing a Python package in your code that supports connections to SQL Server.

Connecting to the database¶

In order to connect to the database you use the connect method of the Connection object.

pypyodbc.connect(‘Driver = {drivername};Server=servername; Database=databaseName; uid=username;pwd=password)

Driver - identifies the driver you wish to use to connect to the database, the correct driver to use will depend on which database product you are using. Since we are using SQL Server, our driver should be SQL Server. Server - identifies the server where SQL Server is running. If you are running SQL Server on the same PC where you are running your Python code the server name will be localhost Database - is the name of your database in SQL Server. I have created a database called IndustryConnect_AdvancedTaskDW. uid and pwd - are the SQL Server username and password that has permissions to log into the database and perform the desired actions. In this example I am logging in with the default system admin testuser and password Testuser1234.

image.png

In [42]:
import pyodbc
import pandas as pd
from sqlalchemy import create_engine, event
from sqlalchemy.engine.url import URL


pg_conn = pyodbc.connect("DRIVER={SQL Server};"
                          "SERVER=localhost;"
                          "DATABASE=IndustryConnect_AdvancedTaskDW;"
                          "UID=testuser;"
                          "PWD=Testuser1234;")
                         
query = '''SELECT * FROM DimGeography'''
                 
df = pd.read_sql(query, pg_conn)

print(df.head(3))

print(type(df))
C:\Users\pamel\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\local-packages\Python310\site-packages\pandas\io\sql.py:761: UserWarning: pandas only support SQLAlchemy connectable(engine/connection) ordatabase string URI or sqlite3 DBAPI2 connectionother DBAPI2 objects are not tested, please consider using SQLAlchemy
  warnings.warn(
   GeographyKey  Postcode                          Suburb      City  \
0             1     200.0  Australian National University  Canberra   
1             2     221.0                          Barton  Canberra   
2             3     800.0                          Darwin    Darwin   

         District Statecode                         State   Latitude  \
0            None       ACT  Australian Capital Territory -35.277272   
1  South Canberra       ACT  Australian Capital Territory -35.201371   
2          Darwin        NT            Northern Territory -12.801028   

    Longitude  
0  149.117136  
1  149.095065  
2  130.955789  
<class 'pandas.core.frame.DataFrame'>
In [51]:
import pyodbc
import pandas as pd

pg_conn = pyodbc.connect("DRIVER={SQL Server};"
                          "SERVER=localhost;"
                          "DATABASE=AdventureWorks2014;"
                          "UID=testuser;"
                          "PWD=Testuser1234;")

query = '''SELECT * FROM [Person].[Person] WHERE BusinessEntityID = 7'''


df = pd.read_sql(query, pg_conn)

print(df.head(3))

print(type(df))
   BusinessEntityID PersonType  NameStyle Title FirstName MiddleName LastName  \
0                 7         EM      False  None     Dylan          A   Miller   

  Suffix  EmailPromotion AdditionalContactInfo  \
0   None               2                  None   

                                        Demographics  \
0  <IndividualSurvey xmlns="http://schemas.micros...   

                                rowguid ModifiedDate  
0  C45E8AB8-01BE-4B76-B215-820C8368181A   2009-02-01  
<class 'pandas.core.frame.DataFrame'>
C:\Users\pamel\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\local-packages\Python310\site-packages\pandas\io\sql.py:761: UserWarning: pandas only support SQLAlchemy connectable(engine/connection) ordatabase string URI or sqlite3 DBAPI2 connectionother DBAPI2 objects are not tested, please consider using SQLAlchemy
  warnings.warn(
In [41]:
import pyodbc
import pandas as pd


pg_conn = pyodbc.connect("DRIVER={SQL Server};"
                          "SERVER=localhost;"
                          "DATABASE=AdventureWorks2014;"
                          "UID=testuser;"
                          "PWD=Testuser1234;")

## this sql statement will show how to get persons with first name equal to Gail.

query = "SELECT   BusinessEntityID, PersonType, FirstName, LastName FROM [Person].[Person] WHERE FirstName = 'Gail' "
 
##Also, we have an example to show all the persons with the last name that ends will the letter l
query2 = "SELECT distinct FirstName, LastName FROM [Person].[Person] WHERE LastName LIKE '%l'"

## the code in parentheses is the subquery.
## a subquery in a where clause that returns 1 row
query3 = """SELECT cat.ProductCategoryID,cat.Name cat_name,subcat.Name subcat_name FROM [AdventureWorks2014].[Production].[ProductCategory] cat 
            INNER JOIN [AdventureWorks2014].[Production].[ProductSubcategory] subcat ON cat.ProductCategoryID = subcat.ProductCategoryID 
            WHERE cat.ProductCategoryID =( SELECT cat.ProductCategoryID
                                        FROM [AdventureWorks2014].[Production].[ProductCategory] cat WHERE cat.ProductCategoryID = 1)"""



df = pd.read_sql(query, pg_conn)

ef = pd.read_sql(query2,pg_conn)

eg = pd.read_sql(query3,pg_conn)

## this will print the first query 
print(df.head(6))

print(type(df))
C:\Users\pamel\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\local-packages\Python310\site-packages\pandas\io\sql.py:761: UserWarning: pandas only support SQLAlchemy connectable(engine/connection) ordatabase string URI or sqlite3 DBAPI2 connectionother DBAPI2 objects are not tested, please consider using SQLAlchemy
  warnings.warn(
    BusinessEntityID PersonType FirstName   LastName
0              12208         IN      Gail  Alexander
1              12196         IN      Gail     Butler
..               ...        ...       ...        ...
4              12212         IN      Gail    Griffin
5              12044         IN      Gail      Moore

[6 rows x 4 columns]
<class 'pandas.core.frame.DataFrame'>
C:\Users\pamel\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\local-packages\Python310\site-packages\pandas\io\sql.py:761: UserWarning: pandas only support SQLAlchemy connectable(engine/connection) ordatabase string URI or sqlite3 DBAPI2 connectionother DBAPI2 objects are not tested, please consider using SQLAlchemy
  warnings.warn(
C:\Users\pamel\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\local-packages\Python310\site-packages\pandas\io\sql.py:761: UserWarning: pandas only support SQLAlchemy connectable(engine/connection) ordatabase string URI or sqlite3 DBAPI2 connectionother DBAPI2 objects are not tested, please consider using SQLAlchemy
  warnings.warn(
In [174]:
## this will print the sql query2 return FirstName and LastName
print(ef.head(10))

print(type(ef))
    FirstName   LastName
0   Catherine       Abel
1      Angela  Barbariol
2        Josh   Barnhill
3     Abigail       Bell
4      Adrian       Bell
5        Alex       Bell
6       Alexa       Bell
7   Alexandra       Bell
8  Alexandria       Bell
9     Allison       Bell
<class 'pandas.core.frame.DataFrame'>
In [79]:
## this will print the sql query3 for ProductCategoryid = 1
print(eg.head(3))

print(type(eg))
   ProductCategoryID cat_name     subcat_name
0                  1    Bikes  Mountain Bikes
1                  1    Bikes      Road Bikes
2                  1    Bikes   Touring Bikes
<class 'pandas.core.frame.DataFrame'>